.audiolivro {
    background-color: var(--cor-amarelo-claro);
}

.btn-close {
    --bs-btn-close-focus-shadow: transparent;
}

.modal-body-audiolivro {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg_audiolivro {
    width: 100%;
    height: 600px;
    object-fit: cover;
    opacity: 10%;
}

.audiolivro_body {
    position: absolute;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 4rem;
}

.btn_seletor {
    width: 200px;
    height: 52px;
    background: none;
    border-radius: 10PX;
    border: 1px solid var(--cor-vinho-claro);
    font-family: var(--font-secondary);
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
}

.descrition {
    max-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    line-height: normal;
}

.descrition h2 {
    max-width: 100%;
    text-align: center;
    overflow-x: hidden;
    height: 80px;
}

.descrition p {
    word-break: break-all;
    white-space: nowrap;
    width: 80%;
    text-align: center;
}

.controle {
    width: 80%;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
}

#play-pause,
#menosDez,
#maisDez {
    background: none;
    border: none;
}

#play-pause {
    width: 95px;
    height: 95px;
    border-radius: 50%;
    background-color: #641630;
    box-shadow: 4px 5px 10px 0px rgba(0, 0, 0, 0.35);
}

.bi-play-fill,
.bi-pause-fill {
    font-size: 60px;
    color: #ffffff;
}

.fa-step-backward,
.fa-step-forward {
    font-size: 40px;
    color: #641630;
}

.duration {
    text-align: center;
}

.progress-bar {
    width: 315px;
    height: 9px;
    border: none;
    background-color: rgba(149, 48, 90, 0.35);
    border-radius: 5px;
    cursor: pointer;
}

.progress {
    width: 0;
    height: 9px;
    border-radius: 5px;
    background-color: #641630;
}

.tempo {
    display: flex;
    justify-content: center;
    margin-top: .5rem;
}

.btn_variados {
    width: 100%;
    display: flex;
    justify-content: space-around;

}

.bi-hourglass-bottom,
.bi-volume-up,
.bi-volume-mute {
    width: 47px;
    height: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #641630;
    border-radius: 50%;
    border: none;
    color: #ffffff;
    font-size: 25px;
    box-shadow: 4px 5px 10px 0px rgba(0, 0, 0, 0.35);
}

.bi-hourglass-bottom:hover {
    transform: scale(1.05);
}

.bi-volume-up:hover {
    transform: scale(1.05);
}

.btn_velocidade {
    display: flex;
    align-items: center;
    gap: .5rem;
    cursor: pointer;
}

.velocidade {
    width: 30px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: rgba(149, 48, 90, 0.35);
    color: #641630;
    border-radius: 50px;
    padding-top: .5rem;
    opacity: 0;
}

.velocidade h4 {
    font-size: 10px;
    cursor: pointer;
}

.velocidade h4:hover {
    transform: scale(1.1);
    opacity: 0.7;
}

.btn_volume {
    display: flex;
    align-items: center;
    cursor: pointer;
    background: none;
    border: none;
}

.volume {
    -webkit-appearance: none;
    width: 80px;
    height: 5px;
    background-color: rgba(149, 48, 90, 0.35);
    border-radius: 5px;
    margin-right: -1.5rem;
    cursor: pointer;
    transform: rotate(-90deg);
    opacity: 0;
}

.volume::-webkit-slider-thumb {
    -webkit-appearance: none;
    background-color: #641630;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.volume::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

/* 
@media screen and (max-width: 580px){
    .volume{
        right: 70px;
    }
} */