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

    font-family: 'Open Sans', sans-serif;
}
a{
    color: #FFF;
    text-decoration: none;
}
/*Loader*/
.loader{
    width: 100%;
    height: 100%;
    position: fixed;
    background: rgb(0, 0, 0);
    z-index: 10000000;
    visibility: visible;
    transition: all 0.5s ease-in-out;
}
.myfusaLoader{
    color: wheat;
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
    left: calc(50% - 118px);
    top: calc(50% - 30px);
}
/*EFECTO loader*/

.lds-facebook {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
    left: calc(50% - 40px);
    top: calc(50% - 40px);
}
  .lds-facebook div {
    display: inline-block;
    position: absolute;
    left: 8px;
    width: 16px;
    background: #fff;
    animation: lds-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
  }
  .lds-facebook div:nth-child(1) {
    left: 8px;
    animation-delay: -0.24s;
  }
  .lds-facebook div:nth-child(2) {
    left: 32px;
    animation-delay: -0.12s;
  }
  .lds-facebook div:nth-child(3) {
    left: 56px;
    animation-delay: 0;
  }
  @keyframes lds-facebook {
    0% {
      top: 8px;
      height: 64px;
    }
    50%, 100% {
      top: 24px;
      height: 32px;
    }
  }
  
 

header{
    width: 100%;
    height: auto;
    background: linear-gradient( to right,rgba(0, 0, 0, 0.726), rgba(0, 0, 0, 0.726)), url('https://images.pexels.com/photos/8888886/pexels-photo-8888886.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940');
    background-size: cover;
    background-attachment: fixed;
}
/*link myfusa*/
.myfusa{
    text-decoration: none;
    padding: 20px;
}
/*titulo*/
h2{
    text-align: center;
    font-size: 50px;
    padding: 100px 0 50px 0 ;
    letter-spacing: 15px;
    color: rgb(255, 255, 255);



    
 }
h3{
    text-align: center;
    padding: 20px 0;
    color: rgb(236, 236, 236);
 
}
h4{
    text-align: center;
    font-size: 13px;
    padding: 10px 100px 150px ;
    color: rgb(236, 236, 236);
 }
.contactUs{
    text-decoration:underline;
    color: rgb(240, 240, 49);
}
.contactUs:hover{
    color: rgb(255, 255, 0);

}
.myfusa{
    position: absolute;
     font-size: 30px;
     text-decoration: none;
     color: #ffffff;
     transition: all 0.5s linear;
}
.myfusa:hover{
    color: #dfdfdf;

}
/******************************Contenedor de todas las canciones**********/
#contenedor{
    width: auto;
    height:auto;
    background: rgb(37, 37, 37);
    padding-bottom: 30px;
}

  
/**********************CONTENEDOR DE CADA CANCION*********************/
#waveform{
    width: 80%;
    height:auto;
    padding-top: 8px;
    padding-bottom: 5px;

    background: rgb(25, 25, 25);
    color: rgb(87, 86, 27);
    margin:0 0 0 20%;
    border-bottom: solid rgb(73, 73, 73) 1px;
   box-shadow: 
        inset 0px 5px 20px -3px rgb(17, 17, 17),
        inset 0px -5px 20px -3px rgb(17, 17, 17); ;
    
}
/**********************NOMBRE ARTISTAS*********************/

.txtArtistas{
    font-size: 13px;    
    margin: 13px 0 0 20px;
    max-width: 50%;
    position: absolute;
    display: inline-block;
    color: rgb(138, 138, 138);
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}
.txtArtistas:hover{
    color: rgb(104, 104, 104);

}
/**********************NOMBRE CANCION*********************/

.txt {
    font-size: 17px;    
    margin: 35px 0 0 20px;
    max-width: 50%;
    position: absolute;
    display: inline-block;
    color: rgb(204, 204, 204);
    letter-spacing: 1px;

}
/**********************PRECIO*********************/

.txtPrecio{
    font-size: 17px;    
    width: 30px;
    display: inline-block;
    position: absolute;
    padding-top: 45px;
    left: calc(95% - 12px); 
    color: rgb(204, 204, 204);
}
/****************CHECKBOX*******************/
 
label input{
    appearance: none;
    display: none;
}
label span{
    /*cuidado*/
    position: absolute;
    display: inline-block;
    width: 25px;
    height: 25px;
    
    margin: 10px;

    left: calc(95% - 20px); 
    z-index: 10;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    transition: 0.5s;

}
 
label span::before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgb(192, 192, 192);
    box-shadow: 5px 5px 8px 2px rgb(20, 20, 20), 0 -24px 0 rgb(192, 192, 192);
    transition: 0.5s;

    
}
label input:checked ~ span::before{
    background: #0f0;
    box-shadow: 0 0 0 transparent;
    box-shadow: 5px 5px 5px 1px rgb(14, 14, 14);

}

label span::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: rgb(223, 223, 223);
    box-shadow:  22px 0 0 rgb(223, 223, 223);
    transition: 0.5s;
    
}
label input:checked ~ span::after{
    height: 50%;
    background: #0f0;
    box-shadow: 0 0 0 transparent;
    
}
label input:checked ~ span.check{
    transform: rotate(-45deg) translate(10px, -9px);

}

 /**********************FIN CHECKBOX*********************/

/**********************BOTON*********************/

.playBtn{
    position: relative;
    margin: 10px  0 0px 20px;
    width: 55px;
    height: 55px;
    padding: 10px;
    background: rgb(27, 27, 27);
    /*rgb(177, 82, 82)*/
    border-radius: 100%;
    border:solid 1px rgb(20, 20, 20);
     transition: all 0.5s ease-in-out;
     /*Sombra*/
      box-shadow: 0px 0px 5px 2px rgb(8, 8, 8),
     inset 3px 4px 8px -1px rgb(37, 37, 37),
     inset 2px -2px 10px -1px rgb(46, 46, 46);
     
}
 
.playBtn:hover{
   /*background: rgb(160, 13, 13);
   */
   border:solid 1px rgb(218, 189, 44);

 }
 


.playImg{
    width: 30px;
    height: auto;
    cursor: pointer;
    filter: invert(70%);
    transition: all 0.2s ease-in-out;
    position: relative;
    left: 2px;
  
    /*para que la imagen no se pueda arrastrar*/
    user-zoom: none; 
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
 }
 
.playImg:hover{
    filter: invert(180%);
    transform: scale(1.01);
}    
/*****************************************CART**********************************************/
/*---------BOTON CART*/
.cart{
    position: fixed;
    top: calc(100% - 50px);
    width: 100%;
    height: 80px;
    text-align: center;
    background: black;
    z-index: 1000;
    padding-top: 5px;
}
 
.cart2{
    width: 200px;
    height: 40px;
    background: rgb(44, 44, 44);
    color: rgb(214, 214, 214);
    transition: 0.5s;
    z-index: 1000;
    border: solid ;
    cursor: pointer;
    border:solid 1px rgb(119, 107, 50);

}
    
.cart2:hover{
    border:solid 1px rgb(218, 189, 44);
}

 




/*****************************ASIDE***********/
aside{
    width: 20%;
    height: calc(100vh - 100px);
    position: sticky;
    top: 0;
    z-index: 1000;
    float: left;   
    overflow: auto;
    background: rgb(37, 37, 37);
    transition: all 0.5s ease-in-out;
  }
/****************************/

.btn {		
    width: 100%;
	position: relative;	
 
 	color: var(--inv);
 	transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);	
	cursor: pointer;
	user-select: none;
    --def: #ffffff; 	
	--inv: rgb(133, 126, 27);


    display: inline-block ;
    padding: 20px 15%;
    box-shadow: 0px 24px 3px -25px rgb(143, 143, 143);
    text-decoration: none;
    color: rgb(223, 223, 223);
    font-size: 13px;
}

.btn:before, .btn:after {
	content: '';
	position: absolute;	
	transition: inherit;
	z-index: -1;
}

.btn:hover {
	color: var(--def);
	transition-delay: .1s;
    box-shadow: none;
 
}

.btn:hover:before {
	transition-delay: 0s;
}

.btn:hover:after {
	background: var(--inv);
	transition-delay: .15s;
    box-shadow: none;

}
/* From Left */
.from-left:before, 
.from-left:after {
	top: 0;
	width: 0;
	height: 100%;
}
.from-left:before {
	right: 0;
	border: 1px solid var(--inv);
	border-left: 0;
	border-right: 0;	
}
.from-left:after {
	left: 0;
}
.from-left:hover:before,
.from-left:hover:after {
	width: 100%;
}
footer{
    width: 100%;
    height: 100px;
    position: relative;
    background: black;
    color: wheat;
    text-align: center;
    padding-top: 10px;
}
.contenedorNav{
    visibility:hidden;
    position: sticky;
    top: 0;
    background: rgb(65, 65, 65);
    z-index: 10000;
}
 
.home{
    visibility: hidden;
    display: none;
}
 /****************RESPONSIVE 700px***************/
 @media (max-width:700px) {
    .myfusa{
        font-size: 20px;
        padding: 10px;
    }
    h2{
        padding: 40px 0 0 0;
    }
     /*titulos*/
     h4{
        padding: 0 4vw 50px ;
        
    }
     /*para que el checkbox no quede muy al borde*/
    label span{
        left: calc(95% - 40px); 
    }
    /*para que el precio no quede muy al borde*/
    .txtPrecio{
        left: calc(95% - 32px); 
        font-size: 15px;
        margin: 0;

    }
    .txtArtistas{
        margin: 4px 0 0 10px;

    }
    .txt{
        font-size: 16px;
        margin: 25px 0 0 10px;
        max-width: 55%;

    }
    .playBtn{
        margin: 5px 0 0 8px; 
    }
    aside{
        width:0;
        top: 50px;
        text-align: center;
      }
    #waveform{
        width: 100%;
        margin: 0; 
    }





    .contenedorNav{
        visibility:visible;
    }
    /*MENU*/
    .contenedorMenu{
        width: 50px;
        height: 50px;
        display: inline-block;
        position: relative;
        cursor: pointer;
        left: 25%;
    
}
    
    .unoMenu{
        width: 35px;
        height: 5px;
        background: rgb(133, 133, 133);
        position: relative;
        left: 7px;
        margin: 8px 0;
        transition: all 0.5s ease-in-out;
     }
 
    .dosMenu{
        width: 35px;
        height: 5px;
        background: rgb(133, 133, 133);
        position: relative;
        left: 7px;
        margin: 8px 0;
        transition: all 0.5s ease-in-out;

    }
    .tresMenu{
        width: 35px;
        height: 5px;
        background: rgb(133, 133, 133);
        position: relative;
        left: 7px;
        margin: 5px 0;
        transition: all 0.5s ease-in-out;
     }
     /*HOME*/
     .home{
        visibility: visible;
        position: relative;
        width: 35px;
        height:35px;
        filter: invert(1);
        opacity: 50%;
        left: 50%;
        margin: 0 0 10px 0;
        display: inline-block;

      }
}
/**************************************PRE COMPRA****************/
/*Para quitar el scroll*/
::-webkit-scrollbar {
    display: none;
}
/*volver*/
.volver{
    color: gray;
    margin: 10px 0 0 10px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}
.volver:hover{
    color: rgb(177, 177, 177);

}
/*CONTENEDOR PRE COMPRA*/
.contenedorPreCompra{
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    z-index: 200000;
    background: linear-gradient(to right, rgb(3, 3, 3) 0%, rgb(3, 3, 3) 50%, rgb(21, 21, 21) 50%, rgb(21, 21, 21) 100% );
    visibility: hidden;

}
/*Contenedor de las canciones*/
.contenedorCanciones{
    width: 50%;
    height: auto;
    max-height: 45%;
    position: relative;
    display: inline-block;
    /*background: rgb(133, 40, 40);*/
    overflow-y: scroll;
    font-size: 20px;
    padding: 0px 0px 20px 0px;
    margin-top: 15%;
    /*box-shadow: inset 10px 10px 25px 1px rgba(26, 26, 26, 0.308);
    */
}
.datosCanciones{
    display: inline-block;
    color: #fff;
    position: relative;
    font-size: 15px;
    padding:20px 0 0 15%;
    text-align: left;
 }
/*Contenedor del total*/
.contenedorTotal{
    width: 45%;
    height: 30px;
    position:  relative;
    display: inline-block;
    padding: 5px 0px 0px 5%;
    border-top: solid 1.5px rgba(143, 143, 143, 0.164);
    left: 2.5%;
}
/*titulo selected songs*/
.selectedSongs{
 
    text-align: center;
    padding: 0;
    color: rgb(236, 236, 236);
    
}
/*Subtitulo Selected songs*/
.selectedSongs2{
    width: 90%;
    position: relative;
    font-weight: 100;
    text-align: center;
    padding: 10px 0 20px 0;
    color: rgb(236, 236, 236);
    border-bottom: solid 1.5px rgba(143, 143, 143, 0.164);
    left: 5%;

    /*
    box-shadow: 0px 24px 3px -25px rgb(143, 143, 143);
    */
}
/*La palabra TOTAL*/
.totalPalabra{
    color: #ffffff;

    letter-spacing: 5px;
    display: inline-block;

}
/*EL NUMERO total*/
.total{
    position: relative;
    letter-spacing: 2px;
    color: rgb(184, 184, 26);
    
    font-size: 20px;
    display: inline-block;
    left: 55%;
}
.almost{
    width: 50%;
    height: 100%;
    float: right;
    top: 0;
    position: relative;
}
@media (max-width:650px) {
    .almost{
        width: 100%;
        height: 30%;
        float: none;
        top: 0;
        position: relative;
    }
    .continue {
        font-size: 777px;
       
    }
    .tituloAlmost{
        font-size: 35px;
        margin: 0px;
        padding: 0px;
    }
    .contenedorCanciones{
        width: 100%;
        height: 30%;
        max-height: 45%;
        position: relative;
        top: 0;
    }
    .contenedorTotal{
        width: 100%;
        height: 30px;
        position:  relative;
         padding: 5px 0px 0px 15%;
         left: 2.5%;
    }
    .total{
        position: absolute;
 
        left:  60%;
    }
    .contenedorPreCompra{
 
        background: rgb(21, 21, 21);
     
    }
}
/*Titulo de almost*/
.tituloAlmost{
    font-size: 35px;
    margin-top: 15%;
    
}
.continue{
    display: inline-block;
    color: #fff;
    position: relative;
    font-size: 20px;
    padding: 0px 15%;
    text-align: left;
}
@media (max-width:650px) {
 
    .continue{
        display: inline-block;
        color: #fff;
        position: relative;
        font-size: 14px;
        padding: 10px 15% 0px;
        text-align: left;
    }
 
}
/*continuar*/
.continuar{
    padding: 10px 100px;
    cursor: pointer;
    background: rgb(238, 220, 56);
    color: rgb(15, 15, 15);
    border: 0;
    transition: all 0.3s ease-in-out;
    margin: 30px 0 10px 0;
    position: relative;
    left: calc(50% - 120px);
}
.continuar:hover{
    background: rgb(143, 132, 36);

}

/*********************CONTENEDOR COMPRA*****************/
.tituloForm{
    padding: 10px 0 0 0;
}
.tituloPlease{
    font-weight: 100;
    margin-bottom: 50px;
}
.contenedorCompra{
    width: 101vw;
    height: 110vh;
    position: fixed;
    top: 0;
    z-index: 200500;
    background: rgb(26, 26, 26);
    visibility: hidden;
    
}
.contenedorForm{
    width: 70%;
    height: auto;
    background: rgba(0, 0, 0, 0.198);
    margin-left: 15%;
    text-align: center;
    padding: 20px 0;
}


.name{
    width: 45vw;
    padding: 10px 0px 10px 10px;
    color: rgb(223, 220, 75);
    border-style: none;
    background: rgba(0, 0, 0, 0.548);
    margin: 0 0 20px 0;
}
.email{
    width: 45vw;
    padding: 10px 0px 10px 10px;
    color: rgb(223, 220, 75);
    border-style: none;
    background: rgba(0, 0, 0, 0.548);
    margin: 0 0 20px 0;
}
.message{
    width: 45vw;
    min-height: 100px;
    padding: 10px 10px 10px 10px;
    border-style: none;
    background: rgba(0, 0, 0, 0.527);
    margin: 0 0 20px 0;
    max-height: 150px;
 
    font-size: 14px;

    color: rgb(223, 220, 75);
}


@media (max-width:650px) {
    .contenedorForm{
        width: 90%;
        margin-left: 5%;
        padding: 20px 0;
    }
    .tituloPlease{
        font-size: 15px;
    }
    
    .name{
        width: 90%;
        margin: 0 0 20px 0;
    }
    .email{
        width: 90%;
        margin: 0 0 20px 0;
    }
    .message{
        min-width:90%;
        min-height: 150px;
         
        max-height: 200px;
     
     
     }
    
}






.contenedorSubmit{
    position: relative;
    
}
.send{
    width: 100px;
    height: 40px;

    padding: 10px 20px;
    margin: 0 0 0 20px;
    color: rgb(44, 44, 44);
    background: rgb(238, 220, 56);
    font-weight: 1000;
    border-style: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;

     position: relative;
     
      list-style: none;
     text-align: center;
     text-decoration: none;
}
 
 
  .send:hover{
   box-shadow: 5px 5px 1px 1px rgba(0, 0, 0, 0.856);
   text-decoration: none;
   background: rgb(143, 132, 36);
   }
  /******************/

  /*******PAGES*******/
.pages{
    width: 80%;
    margin: auto;
    display: block;
    height: 20px;
    line-height: 20px;
    font-size: 1em;
    text-align: center;
    color: #FFF;
    padding: 20px;
    /*border: 1px solid white*/
}
.pages a{
    color: rgba(238, 220, 56, 1);
    text-decoration: none;
    margin-right: 50px;
    border: 1px solid rgba(238, 220, 56, 1);
    padding: 5px;
    background-color: rgba(44, 44, 44, 1);
}

@media (max-width:800px) {
}






 