@charset 'utf-8';


@import url('bootstrap.min.css');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}
body{
    background: #cccccb;
}


/* HEADER */
header{
    height: 200px;
}

.container__header{
    max-width: 1140px;
    height: 100%;
    margin: auto;
    padding: 50px;
    padding-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img{
    width: 300px;
}


/* FONDO DESENFOQUE */





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

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



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

.logo {
    display: none;
}

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

.info-current-song h2 {
    font-size: 28px;
    text-transform: uppercase;
    font-weight: 800;
   
}

.info-current-song h3 {
    font-size: 18px;
   
    font-weight: 600;
}

.info-current-song h5 {
    font-size: 13px;
   
    font-weight: 600;
    color: #000000
}

.play-pause {
    font-size: 100px;

   
 
}

.play-pause i {
    cursor: pointer;
}

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

.volume-slide {
    
}

.volume-control {
    display: none;
}

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




/* Chrome */
input[type=range] {
    -webkit-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;
    animate: 0.2s;
    box-shadow: 0px 0px 0px #FF0000, 0px 0px 0px #ffffff;
    background: #ffffff;
}

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

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

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

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

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

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

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


.historic h2 {
    color: #000000;
    font-size: 22px;
    font-weight: bold;
    text-transform: uppercase;
    margin: 10px 0;
    
}


/* ZONA FONDO CANCIONES SONADAS */

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

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

/* COLOR TEXTO INFO ARTISTA */
.historic .music-info {
    color: #292929;
    font-family: 'Questrial', sans-serif;
}


/* COLOR TEXTO CANCION */

.historic .music-info .song {
    width: 100%;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: -5px;
    color: #000000;
}

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

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

    .call-lyrics {
        margin-top: 20px;
    }
}

@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: #FFFFFF;
}
.play-pause i {
    cursor: pointer;
}
.btn-play {
    background-color: hsl(197, 92%, 42%);
    border: none;
    color: rgb(232, 239, 241);
    padding: 12px 25px;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 100%;
    width: 90px;
    height: 90px;
    transition: transform .2s;
    box-shadow: 1px 3px #4e6b09;
}
.btn-play:focus {outline:0;}
.btn-play:hover {
    box-shadow: 1px 5px #1284b122;
    transform: scale(1.1);
}


/* canciones*/
#sectioncanciones{

    padding: 50px 50px;
    background: #ebeaea;

}

#canciones{
    background: #ebeaea;
    
}


/*:::::Pie de Pagina*/
footer{
    width: 100%;
    padding: 50px 0px;
    background-image: url();
    background-size: cover;
    
    /*background-color: #d0f0f8;
    -webkit-mask-image: url("../Images/background-footer.svg");
    mask-image: url("../Images/background-footer.svg");
    -webkit-mask-size: cover;
    mask-size: cover;*/
}

.box__copyright{
    max-width: 1200px;
    margin: auto;
    text-align: center;
    padding: 0px 40px;
}

.box__copyright p{
    margin-top: 20px;
    color: #222221;
}



/*redes*/
#redes{
    background: #0089cb;
    max-width: 1200px;
    margin: auto;
    text-align: center;
    padding: 0px 40px;
    
    
    
    }
    #redes2{
        background: #0089cb;
        
        
        
        
        }
    
#redes1{
    color: #bebebe;
    font-weight: bold;
    font-size: 17px;
    text-transform: uppercase;

}

/*noticias*/
#noticias{

    padding: 50px 50px;
    background: #e0e0e0;

}

.colo {
    background: #e0e0e0;
    width: auto;
    height: 96px;
}


.sm a{
    display: inline-flex;
    text-decoration: none;
    font-size: 36px;
    width: 60px;
    height: 60px;
    color: #ffffff;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: 0 7px;
  }
  
 
  .sm a i{
    transition: transform .3s ease-in;
  }
  .sm a:nth-child(1):hover i{
    background: #0089cb;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: scale(1.5);
  }
  .sm a:nth-child(2):hover i{
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,
    #dc2743 50%,#cc2366 75%,#bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: scale(1.5);
  }
  .sm a:nth-child(3):hover i{
    background: #000000;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: scale(1.5);
  }
  .sm a:nth-child(4):hover i{
    background: #f70000;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: scale(1.5);
  }
  .sm a:nth-child(5):hover i{
    background: #2dbd47;
    -webkit-background-clip:text;
    -webkit-text-fill-color: transparent;
    transform: scale(1.5);
  }
  


  
 