.player-section {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 50px;
    background-color: #b9b9c7;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.single-aya{
    list-style-type: none;
    margin-bottom: 60px;
}

.surah-list-items{
    text-align: center;
    width: 100%;
}

.horizontal-line {
    display: flex;
    width: 85%;
    border-bottom: 1px solid #dfdfe0;
    margin-top: 4px;
    margin-bottom: 8px;
    margin-left: 40px;
}

.translation__item {
    display: grid;
    grid-template-columns: auto auto auto;
    grid-gap: 10px;
    direction: rtl;
    justify-content: space-between;
    width: 90%;

}

.col-in-row {
    float: right;
    margin-right: 40px;
    font-size: 29px;
}

.number-in-surah{
    background-color: #694996;
    border: none;
    color: white;
    padding: 11px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    border-radius: 60px;
    width: 20px;
    height: 20px;
}

.play-pause {
    grid-area: one;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}


#pause {
    cursor: pointer;
    display: none;
    color: #694996;
    font-size: 25px;
    width: 25px;
}

#play,
#prev-track,
#next-track {
  cursor: pointer;
  color: #694996;
  font-size: 25px;
  width: 25px;
}


.track-info {
    grid-area: two;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 5%;
    /* border: 1px solid red; */
}


#track-artist {
    color: #694996;
    font-family: "Lato", sans-serif;
    font-weight: bold;
    font-size: 1.125rem;
    text-shadow: 0 0 15px black;
}
  
#track-title {
    color: #694996;
    font-family: "Lato", sans-serif;
    font-size: 1rem;
}
  
.next-prev {
    grid-area: three;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    /* border: 1px solid red; */
}
  
.progress-bar {
    grid-area: four;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    /* border: 1px solid red; */
}
  
#progressBar {
    appearance: none;
    height: 5px;
    background: white;
    width: 57.5%;
    outline: none;
    border-radius: 30px;
    width: 70%;
}
  
#progressBar::-webkit-slider-thumb {
    appearance: none;
    height: 11px;
    width: 11px;
    outline: none;
    background: #694996;
    border-radius: 30px;
    cursor: pointer;
}
  
.track-time {
    grid-area: five;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    /* border: 1px solid red; */
}
  
#currentTime {
    font-family: "Lato", sans-serif;
    font-size: 1rem;
    color: white;
}
  
#durationTime {
    font-family: "Lato", sans-serif;
    font-size: 1rem;
    color: white;
}


.Row {
    display: flex;
    flex-direction:row;
    margin: auto;
    width: 40%;
    padding: 10px;
}

.btn-reader{
    border-radius: 16;
    width: 50px;
    height: 28px;
    color:white;
    background-color: #694996;
}

.nextprev-btn {
    position: relative;
    background-color: #694996;
    color: #FFFFFF;
    padding: 10px;
    width: 140px;
    height: 14px;
    text-align: center;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    text-decoration: none;
    overflow: hidden;
    cursor: pointer;
    font-size: 18px;
    font-family: 'Source Sans Pro', sans-serif;
    padding-left: 19px;
    padding-right: 19px;
    border: 1px solid #cccccc;
    border-radius: 5px;
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 10px;
  }
.nextprev{
    margin-bottom: 180px;
}

.nextprev .prev{
    float: left;
}

.nextprev .next{
    float: right;
}

.prev-inactive{
    background-color: #6f6d72;
    pointer-events: none;
    float: left;
}

.next-inactive{
    background-color: #6f6d72;
    pointer-events: none;
    float: right;
}