@charset 'utf-8';

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@1,300;1,800&display=swap');
@import url('bootstrap.min.css');

html, body {
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
}

body {
    display: flex;
    flex-flow: row;
    justify-content: center;
    overflow-x: hidden;
}


.cover-site {
    min-width: 100%;
    min-height: 100%;
    position: fixed;
    background-size: 100vmin;
    background-attachment: fixed;
    transition: background-image 200ms;
    background: url('../img/12.webp') no-repeat center 0;
    -webkit-filter: blur(4px);
    filter: blur(4px);
}

#bgCover {
    height: 100%;
    width: 100%;
    position: absolute;
    background-image: url('../img/jpradio.png');
    background-repeat: no-repeat;
    background-position: center 70%;
    background-size: cover;
    -webkit-filter: blur(10px);
    filter: blur(10px);
    transition: all 400ms linear;
    transform: scale(1.31); 
    z-index: 1;
    opacity: 0.5;
}



.bg-mask {
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 2;
}

.web-player {
    height: 100%;
    color: #fefefe;
    padding: 5px;
    position: relative;
    z-index: 3;
    margin-top: 25px;
}

.cover-album {
    max-width: 80%;
    margin: auto;
    background: url('../img/jpradio.png') no-repeat;
    background-size: cover;
    border: 2px solid #fefefe;
    box-shadow: 0px 5px 10px 3px rgba(0, 0, 0, 0.4);
    transition: background-image 1s;
    border-radius: 10px;
    margin-bottom: 15px;
}



#currentCoverArt {
    width: 100%;
    height: 316px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
  
    transition: background-image 1s;
}


.logo {
    display: none;
}

.info-current-song {
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.info-current-song h2 {
    font-size: 38px;
    text-transform: uppercase;
    font-weight: 800;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
   
}

.info-current-song h3 {
    font-size: 22px;
    font-weight: 600;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
}

.current-song {
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);

}

.current-artist {
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);

}

.play-pause {
    font-size: 65px;
}

.play-pause i {
    cursor: pointer;
}

.volume-icon {
    font-size: 28px;
    margin-top: -10px;
}

.volume-slide {
     /* Adicionando sombra */
     text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
}

.volume-control {
    display: none;
}

.vagalume a {
    color: #fefefe;
    text-decoration: underline;
}

.lyrics {
    text-transform: uppercase;
    text-decoration: none;
    color: #fefefe;
    font-size: 1em;
    font-weight: 400;
    outline: none;
    transition: .3s;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
}

.lyrics:active {
    text-decoration: none;
    color: #fefefe;
}

.lyrics:visited {
    text-decoration: none;
    color: #fefefe;
}

.modal-content {
    background-color: rgba(0, 100, 200, 0.8);
    color: #fefefe !important;
    border-radius: 20px;
}

.modal-content .close {
    border-radius: 20px;
    background-color: #960000;
}

.hidden {
    display: none; 
  }

/* Chrome */
input[type=range] {
    appearance: none;
    background: transparent;
    width: 100%;
}

input[type=range]:focus {
    outline: none;
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 5px;
    cursor: pointer;
    animation: 0.2s;
    box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
    background: #fefefe;
}

input[type=range]::-webkit-slider-thumb {
    box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #fefefe;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -8px;
}

/* Firefox */
input[type=range]::-moz-range-track {
    width: 100%;
    height: 5px;
    cursor: pointer;
    animation: 0.2s;
    box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
    background: #fefefe;
}

input[type=range]::-moz-range-thumb {
    box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
    border: 0px solid #000000;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #fefefe;
    cursor: pointer;
}

/* IE e Edge */
input[type=range]::-ms-track {
    width: 100%;
    height: 5px;
    cursor: pointer;
    animation: 0.2s;
    background: transparent;
    border-color: transparent;
    border-width: 10px 0;
    top: -10px;
    color: transparent;
}

input[type=range]::-ms-fill-lower {
    background: #fefefe;
    border: 0px solid #000101;
    box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
}

input[type=range]::-ms-fill-upper {
    background: #fefefe;
    border: 0px solid #000101;
    box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
}

input[type=range]::-ms-thumb {
    box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
    border: 0px solid #000000;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #fefefe;
    cursor: pointer;
}


.historic h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 600;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
    color: #fefefe;
    border-bottom: 2px solid #fefefe;
    margin: 10px 0;
    padding: 10px 0;
}

.historic h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
    color: #fefefe;
    border-top: 2px solid #fefefe;
    margin-top: 10px;
    padding-top: 10px;
}



.historic article {
    margin: 5px 0;
    padding: 10px;
    background-color: none;
}

.historic .cover-historic { 
    width: 95px;
    height: 95px;
    margin-right: 15px;
    float: left;
    border-radius: 10px;
    background: url('../img/cover-taktradio.png') no-repeat;
    background-size: cover;
    border: 2px solid #fefefe;
   
    box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.3);
    transition: background-image 1s;
}

.historic .music-info {
    color: white;
    font-family: 'Poppins', sans-serif;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
}


.historic .music-info .song {
    width: 100%;
    font-weight: bold;
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: -5px;
    color: white;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
}

@media(max-width: 370px) {
    .cover-album {
        max-width: 100%;
    }
}

@media(min-width: 576px) {
    .volume-control {
        display: flex;
    }

    .call-lyrics {
        margin: 20px 0 0 60px;
    }
}

@media(min-width: 768px) {
    body {
        align-items: center;
    }

    .h1-logo {
        text-align: center;
    }

    .logo {
        display: block;
        z-index: 2;
    }

    .logo img {
        max-width: 200px;
    }

    .web-player {
        height: auto;
        margin-top: 0;
    }

    .cover-album {
        margin: 10px auto;
        min-width: 320px;
        height: 320px;
    }

    .logo img {
        max-width: 300px;
        margin: 65px 0;
    }

    .info-current-song {
        margin-top: 20px;
        text-align: left;
    }

    .volume-control {
        margin-top: 10%;
    }
}

#buttonPlay {
    padding-left: 10px;
}
#playerButton {
    color: black;
}
.play-pause i {
    cursor: pointer;
}
.btn-play {
    background-color: white;
    border: none;
    color: black;
    padding: 10px 20px; /* Reduzindo o preenchimento */
    font-size: 14px; /* Reduzindo o tamanho da fonte */
    font-weight: bold;
    cursor: pointer;
    border-radius: 20px;
    width: auto; /* Largura automática */
    transition: transform .2s;
    box-shadow: 1px 3px #30303022;
}

.btn-play:focus {outline:0;}

.btn-play:hover {
    box-shadow: 1px 5px rgba(100,100,255,.2);
    transform: scale(1.1);
}

.close{
    color: white;
}

.btn-taktradio{color:#fff;background-color:#db1543;border-color:#db1543;margin:0 10px}
.btn-taktradio:hover,.btn-taktradio:visited{color:#fff;background-color:#c73771;border-color:#db1543}
.btn-taktradio.focus,.btn-taktradio:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}

.btn-open {
    background-color: rgba(0,123,255,.1);
    border: none;
    margin: 25px 0;
    padding: 8px 16px; /* Reduzindo o preenchimento */
    font-size: 12px; /* Reduzindo o tamanho da fonte */
    font-weight: bold;
    cursor: pointer;
    border-radius: 20px;
    width: auto; /* Largura automática */
    transition: transform 0.6s;
    box-shadow: 1px 3px rgba(100,100,255,.1);
}

.btn-open:focus {outline:0;}

.btn-open:hover {
    box-shadow: 1px 5px rgba(100,100,255,.2);
    transform: translate(-10px,0) scale(0.9);
}

#openButton {
    color:mistyrose;
}

a {
    color: mistyrose;
    text-decoration: none;
}

a:hover, a:active {
    color: mistyrose;
    text-decoration: none;
}