

html, body.dashboard {
    height: 100%;
    margin: 0;
    padding: 0;
    
    color: white !important;
    background: linear-gradient(#8d63da, #5c309aab) !important;
}

.navbar-toggler{
        
    position: absolute;
    right: 0;
    }

.sticky{
    position: sticky;
    top: 0;
    z-index: 5000;
}

.box, button{
    user-select: none;
}

.country-code {
    position: relative;
    padding: 5px;
    background-color: white;
    color:#495057;
    cursor: pointer;
    font-size: 1rem;
    border:none;
}

.country-code option{
    text-align: center;
}


.phone-control-container{
    display: flex; 
    border: 1px solid #ccc; 
    border-radius: 5px; 
    overflow: hidden;
    height: calc(1.5em + .75rem + 2px);
    height: 50px;
}
.phone-control-container input{
    border:none !important;
    border-radius: 0 !important;
    flex: 1;
 
}

.event-box.sticky{
    z-index: 1 !important;
}
body.dashboard .content-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ocupa toda la altura de la ventana */
}

body.dashboard .content {
    flex: 1; /* Toma todo el espacio disponible */
}

body.dashboard .sidebar-sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    background: transparent linear-gradient(0deg, #8e44f4cc, #5d34b5cc);
    border-radius: 5px;
    margin-top: 5px;
    padding: 0 20px;
    min-width: 300px;
    box-shadow: 0px 10px 10px #00000036;

}

body.dashboard #sidebar {
   margin: 0;
    padding-top: 200px;      
}

body.dashboard #sidebar a.active{
   background: orange;
}


body.dashboard nav ul.main{
    background: none;
}

#userDropdown{
    width: 70px;
    height: 46px;
    background: orange;
    border-radius: 30px;
    padding: 7px 18px;
    margin-top: 30px;
     box-shadow: 0px 5px 3px #00000036;
}

body.dashboard .main-title{
   color: white;
    font-size: 2em;       
}

body.dashboard .event-box .title{
   color: rebeccapurple;
    font-size: 1.2em;
}

body.dashboard nav{
    z-index: 3;
}



body.dashboard button.special {
    background: linear-gradient(#00ebf7, #8e44f4, #ff51a496) !important;
}

body.dashboard .card{
    color: black !important;
}

body.dashboard .event-box {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    padding: 35px;
    margin-bottom: 20px;
    border-radius: 5px;
    color: black;
    font-weight:100;
}



.toggle-button-container {
    display: flex;
    border-radius: 20px; /* Ajusta para mayor redondez */
    overflow: hidden; /* Mantiene el borde redondo y oculta el desbordamiento */
    border: 2px solid #007BFF; /* Borde azul para el contenedor */
}


#event-download code{
       color: gray;
    background: #f8f9fa;
    padding: 5px;
    border: 1px solid gray;
    font-size: 14px;
}
.toggle-button {
    flex: 1; /* Distribuye el espacio igualmente entre botones */
    padding: 10px 20px;
    border: none; /* Elimina los bordes individuales */
      background: linear-gradient(#00ebf7,#5d34b5);
    color: white;
  text-align: center;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.toggle-button:hover {
      background: linear-gradient(#00ebf7cc,#5d34b5cc);
   
}

.toggle-button.active {
  background: linear-gradient(#00ebf7cc, #cf0ea880);
    border-left: 2px solid #007bff;
    border-right: 2px solid #007bff;
   
}


.custom-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #ccc;
    overflow-y: auto;
    color: black;
}

.custom-lsit li {
    padding: 8px 10px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom-list button {
    padding: 4px 8px;
    margin-left: 10px;
}

#customSelect{
    font-size: 0.8rem;
        max-height: 250PX;
    overflow: scroll;
}

#customSelect .row{
    padding: 20px;
}
#customSelect li{
    padding: 5px;
}


#customSelect ul {
    list-style-type: none; /* Eliminar los puntos de la lista */
    padding: 0;
    margin: 0;
}

#customSelect ul li {
    display: flex; /* Hacer que los hijos del <li> se alineen en línea */
    justify-content: space-between; /* Distribuir el espacio entre el texto y el botón */
    align-items: center; /* Alinear verticalmente */
    padding: 5px 10px;
    border-bottom: 1px solid #ccc; /* Opcional: agregar una línea divisoria */
}

#customSelect ul li span {
    flex: 1; /* Hacer que el texto ocupe todo el espacio disponible */
}

#customSelect ul li button {
    margin-top: 0; /* Espaciado entre el texto y el botón */
}


.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparente */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Asegúrate de que esté por encima de otros elementos */
}

.popup {
    z-index: 1001;
    max-width: 80%;
}

.popup-box{
    background: transparent linear-gradient(0deg, #8e44f4, #5d34b5);
}

.popup>div{
    max-height: 1000px;
    overflow: scroll;
}

.btn-close-custom {
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    border: none;
    background: white;
    color: black;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer; /* Cambia el cursor a una mano cuando se pasa sobre el botón */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px; /* Ajusta esto según tus necesidades */
}
.switch {
      position: relative;
    display: inline-block;
    width: 30px;
    height: 20px;
    top: 9px;

}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}


.switch input[type="checkbox"]:focus + .slider {
  box-shadow: 0 0 5px #2196F3; 
   
}

input:checked + .slider {
   background-color: #00ebf7;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(10px);
  -ms-transform: translateX(10px);
  transform: translateX(10px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}


.invalid-feedback,.invalid-feedback-1{
  font-size: 14px !important;
    color: #ffffff94 !important;
    margin-left: 25px;
}

textarea.form-control{
    
    resize: none;
}


button.finish-button:disabled {
    opacity: 0.5;       // Hace el botón más transparente
    cursor: not-allowed;  // Cambia el cursor para indicar que el botón no es interactivo
    pointer-events: none;  // Asegura que no se puedan recibir eventos de click
}

body{
    background: linear-gradient( #9e45ee, #e748d2) !important;
    color: white!important;
    font-family: 'Poppins', sans-serif !important;
    padding: 0;
    font-size: 1.5rem !important;
    
}

#login-container form,#forgot-password-container form, #verification-container .card{
    max-width: 500px;
    margin: 0 auto;
    border-radius: 30px;
    background: transparent linear-gradient(0deg, #8e44f4cc,#5d34b5cc);
    color: white;
    box-shadow: 0px 10px 10px #00000036;
    font-size: 14px;
       
}

#login-header{
width: 200px;
    height: 100PX;
    margin: 0 auto;
    margin-top: -95px;
    background:  url(../img/logo-simp.webp) no-repeat CENTER;
    background-size: contain;
    cursor: pointer;
   
}


 
#login-container,#forgot-password-container, #register-container, #verification-container{
 margin-top: 200px;
}



#login-container a ,#forgot-password-container  a, #register-container a{
    color: #00ebf7;
    text-decoration: none;

}

#login-container form button ,#forgot-password-container form button,#register-container form button{
    width: 90% !important;
    border-radius: 50px;
    padding: 15px;
    font-weight: bold;
    
}


#login-container form input ,#forgot-password-container form input{
    padding: 10px;
    font-size: 12px;
    
}


.field-container {
        position: relative;
    }
.field-label {
        position: absolute;
        top: 2px;  /* Posición fija en la parte superior dentro del campo */
        left: 25px;
        font-size: 10px;
        color: #999;
        pointer-events: none; /* Hace que el label no interfiera con la entrada de texto */
     display: none;
    }

input:not(:placeholder-shown) + .field-label{
        display: block;
    }


    .textarea-count{
        position: absolute;
        bottom: -2px;
        right: 11px;
        font-size: 12px;
        color: #5d34b4;
        font-weight: bold;
    }


#forgot-password-container h1, #forgot-password-container p, #verification-container h1{
    margin: 0 auto;
     max-width: 500px;
}


button.special{
    background: linear-gradient(#00ebf7, #8e44f47a, #ff51a4a1) !important;
}



#login-container form span{
   font-size: small;
}


#terms-and-conditions .content, #end-user-agreement .content, #privacy-policy .content {
    background: #f149cf;
    box-shadow: 7px 10px 11px #00000030;
    border-radius: 10px;
}


#terms-and-conditions .content-image{
   position: absolute;
    background: url(../img/chars/cake-4.svg) no-repeat;
    background-size: contain;
    top: 50px;
    width: 60vw;
    aspect-ratio: 1;
   /* z-index: -1;   */
}



#terms-and-conditions .content-image-2{
      position: absolute;
    background: url(../img/chars/balloons.svg) no-repeat;
    background-size: contain;
    bottom: 50px;
    width: 50vw;
    aspect-ratio: 1;
   /* z-index: -1;   */

}




#privacy-policy .content-image{
   position: absolute;
    background: url(../img/chars/box-8.svg) no-repeat;
    background-size: contain;
    top: 50px;
    width: 60vw;
    aspect-ratio: 1;
   /* z-index: -1;   */
}



#privacy-policy .content-image-2{
      position: absolute;
    background: url(../img/chars/box-2.svg) no-repeat;
    background-size: contain;
    bottom: 50px;
    width: 50vw;
    right: -225px;
    aspect-ratio: 1;
   /* z-index: -1;   */
    transform: scaleX(-1) rotate(45deg);
}

.row-p-200{
    padding: 0 200px;
}

.row-p-150{
    padding: 0 150px;
}

nav, nav *{
    font-size: 1.5rem;
      transition: transform 0.3s ease; /* Transición suave para el efecto de transformación */

}

nav ul.main{
    
        background: transparent linear-gradient(0deg, #8e44f4cc,#5d34b5cc);
    border-radius: 50px;
    margin-top: 2.8vh;
    transform: translateX(5vw);
    padding: 0 20px;
}

nav li a{
    color: white !important;
}

nav li.active>a{
    color: #00ebf7!important;
}
nav .dropdown-item{
    color: white !important;
}

.dropdown-item.disabled, .dropdown-item:disabled {
  opacity: 0.5;   
}


.dropdown-item.active, .dropdown-item:active {
    background-color: #02cce0 !important;
}

nav .login-item{
    margin-left: 5vw !important;
}


nav .signup-item, button.primary{
    
    background: linear-gradient(#00ebf7,#5d34b5);
    border-radius: 10px;
    padding: 5px 20px;
    box-shadow: 0px 5px 3px #00000036;
    color: white;
    border: none;
    margin-top:20px;
}

nav .shopping-item{
    
      background: linear-gradient(white, #d7d7d7);
    border-radius: 100px;
    padding: 0px 15px;
    box-shadow: 0px 5px 3px #00000036;
    color: white;
    border: none;
    margin-left: 10px;
    margin-top: 30px;
    width: 70px;
    height: 46px;
}

nav{
    
    margin: 0 5vw;
}


nav.shrink {
  transform: scale(0.8);
}


nav .logo {
       position: absolute;
    background: url(../img/logo.png) no-repeat bottom center;
    width: 150px;
    height: 150px;
    background-size: contain;
    top: 0;
    left: 20px;
    z-index: -100;
}


nav.shrink .logo {
       transform: scale(0);
}


  .welcome-section ul,  .birthday-section ul {
           margin-bottom: 20px;
        }
    a.link-1{
    
    background: linear-gradient(90deg,#8d4dff,#00ebf7);
    border-radius: 1em;
    padding: 5px 20px;
    color: white !important;
    text-decoration: none !important;
}

a.link-1:active{
    
    
    color: white;
    }


.badge-data{
        background: white;
        color: black;
        font-weight: 500 !important;
    }


#start-container .step-1 .box{
    
   background: #f149cf;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0px 5px 3px #00000036;
    text-align: center;
    font-size: 14px;
    height: 500px;
}

#start-container .step-3 .box, #start-container .step-4 .box,#start-add-weapons .box{
    
      background: #f149cf;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0px 5px 3px #00000036;
    text-align: center;
    font-size: 14px;
    min-height: 450px;
    width: 200px;
    margin: 10px;
}

#start-add-weapons .box{
 height: unset;   

}

#start-container #start-weapons-container-mobile {
    overflow: scroll;
    max-height: 400px;

}


    
#start-container #start-weapons-container-mobile .box, #step-4-content-mobile .box{
    
    //height: 60px;
    min-height: 60px !important;
    display: block;
    width: 100%  !important;
    OVERFLOW: hidden;
    border-radius: 0 !important;
    margin: 0  !important;
    padding: 15px 0 !important ;
    border: 2px solid #5f2fb5;
    box-shadow: none;
}


#start-container #start-weapons-container-mobile .col-12:first-of-type .box {
    border-radius: 20px 20PX 0 0;
}


#start-container #start-weapons-container-mobile img{
height: 30px;
    width: unset;
    display: inline;
}

 #step-4-content-mobile .box img{
height: 60px;
    width: unset;
    display: inline;
}



 #step-4-content-mobile textarea{
     max-height: 300px;
}





#start-container #start-weapons-container-mobile h3, #step-4-content-mobile .box h3{
height: 30px;
font-size: 12px;
    display: inline;
}
#start-container #start-weapons-container-mobile center, #step-4-content-mobile .box center{
    display: inline;
}

#start-container #start-weapons-container-mobile button.primary{
margin: 20px 0;
}
#start-container .step-3 .box.plus, button.plus  {
    cursor: pointer;
    background: #b18ded;
}



#start-container #start-weapons-container-mobile p{
    display: none;
}

#start-container .step-3 .box.plus img{
    margin-top: 0 !important;
   
}
#start-container .step-3 .box img, #start-container .step-4 .box img, #start-add-weapons .box img{
    margin-top: 0 !important;
}

#start-container textarea{
    padding: 50px;
    height: 520px;
    font-size: 1em;
}

#start-container .textarea-container{
    padding: 50px;
    font-size: 1em;
    background:white;
    color: #555;
    
    border-radius: 5px;
}


#start-container .textarea-container textarea{
    padding: 0;
    font-size: 1em;
    background:transparent;
    border: none;
    height: 150px;
}




#start-container .textarea-container textarea:focus, #start-container .textarea-container textarea:active{
    outline: none;
    border: none;
    box-shadow: none;
}


#start-container .textarea-container:focus-within {
    outline: 0;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.8);
}



#start-container video{
    box-shadow: 0px 5px 3px #00000036;
 border-radius: 10px;
       
}

#start-weapons-container{
    overflow: scroll;
    margin: 0 auto;
    border: 2px solid #5f2fb5;
    min-height: 220px;
    max-height: 500px;
    border-radius: 20px 20px 0 0;
    padding: 20px 0;
}

#start-container .step-3 .total{
    background: #673bb8;
    text-align: right;
    background: transparent linear-gradient(0deg, #8e44f4, #5d34b5);
    border-radius: 0 0 20px 20px;
    margin-top: -2px;
    /* transform: translateX(5vw); */
    padding: 0 20px;
    border: 2px solid #5f2fb5;
}

#start-intro{
    position: fixed;
    background: url(../img/bg/welcome-1.svg) no-repeat bottom;
    background-size: cover;
    color: white;
    aspect-ratio: 1024 / 625;
    width: 100%;
    align-items: center;
    z-index: -1;
}

#start-container{
    background: transparent linear-gradient(0deg, #8e44f4, #5d34b5);
    padding: 50px;
    /*border-radius: 20px;*/
    box-shadow: 0px 5px 3px #00000036;
}


#start-add-weapons{
    background: transparent linear-gradient(0deg, #8e44f4, #5d34b5);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0px 5px 3px #00000036;
}


.birthday-section, .welcome-section,  #contact-us-container{
    
}


.welcome-section  .container ,.birthday-section  .container, #contact-us-container  .container, #faqs-content .container{

    max-width: 1300px;
}
.welcome-section  h1,.birthday-section  h1, #contact-us-container h1, #faqs-content h1{
font-size: 3.5rem;
   
}
 .welcome-section  h2,.birthday-section h2{
}

.welcome-section  h3,.birthday-section h3{

}

#birthday-intro{
 background-image: url(../img/bg/birthday-1.svg);
 color: white;
 aspect-ratio: 1024 / 625; /* Mantiene la relación de aspecto 1024:625 */
  width: 100%; /* Ajusta el ancho según sea necesario */
 padding-bottom: 80px !important;
}

#welcome-intro, #birthday-intro{
    position: relative;
 background: url(../img/bg/welcome-1.svg) no-repeat bottom;
    background-size: cover;
 color: white;
 aspect-ratio: 1024 / 625; /* Mantiene la relación de aspecto 1024:625 */
  width: 100%; /* Ajusta el ancho según sea necesario */
  align-items: center;
    /*z-index: -1;*/
    
}



#faqs-content{
    position: relative;
 background: url(../img/bg/welcome-1.svg) no-repeat top;
    background-size: 100%;
 color: white;
  width: 100%; /* Ajusta el ancho según sea necesario */
  align-items: center;
    padding-top: 20vh; 
    
} 

#contact-us-container .content{
        margin-top: 50px;
 
}

#contact-us-container{
 position: relative;
    width: 100%; /* Ajusta el ancho según sea necesario */
  
    padding-top: 50px;
}



#welcome-intro .content{
    
     display: flex;
    flex-grow: 1;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    max-width: 1350px;

}


#welcome-intro .content-image{
    position: absolute;
    background: url(../img/chars/control-2.png) no-repeat bottom;
    background-size: contain;
    top: 0;
    bottom: -100px;
    right: 0;
    width: 50%;
  //  aspect-ratio: 5 / 6.5;
    
}
#welcome-intro .col{
    position:initial;
}


#birthday-intro .content{
    width: 50%;
    
    
}




#birthday-game{
    position: relative;
    width: 100%; /* Ajusta el ancho según sea necesario */
}



#welcome-about{
position: relative;
width: 100%; 
padding:10vh;
}
#welcome-about .content{
 margin: 0 auto;
 width: 70%;  
}

#welcome-about .content-image-2{
       position: absolute;
    background: url(../img/chars/box-2.svg) no-repeat;
    background-size: contain;
    top: -20px;
    right: 100px;
    width: 20vw;
    aspect-ratio: 1;
    z-index: -1;
}


#welcome-about .content-image{
       position: absolute;
    background: url(../img/chars/box-1.svg) no-repeat;
    background-size: contain;
    top: -50px;
    left: 100px;
    width: 20vw;
    aspect-ratio: 1;
    z-index: -1;
    transform: scaleX(-1) rotate(45deg);
}



#welcome-offerings{
position: relative;
width: 100%; /* Ajusta el ancho según sea necesario */
    
}

#welcome-offerings h1,#welcome-offerings h4{
    color: #eceaea;
}


#welcome-offerings .content-image{   
    background: url(../img/weapons/confetti-2.png) no-repeat;
    background-size: contain;
    aspect-ratio: 1;
    bottom: 0;
    top: 0;
    right: 0;
    position: absolute;
   /* z-index: -1;*/
}


#welcome-game{
position: relative;
width: 100%; /* Ajusta el ancho según sea necesario */
padding:40px;
}

#welcome-weapons{
position: relative;
width: 100%; /* Ajusta el ancho según sea necesario */
    overflow: hidden;
}

#welcome-weapons .content-image{   
background: url(../img/chars/box-4.svg) no-repeat bottom left;
    background-size: contain;
    aspect-ratio: 1;
    bottom: 0;
    top: -80px;
    left: -160px;
    position: absolute;
    transform: scalex(-1);
   /* z-index: -1;*/
}


#welcome-testimonials{
position: relative;
width: 100%; /* Ajusta el ancho según sea necesario */
}




#welcome-testimonials .content-image-2{
       position: absolute;
    background: url(../img/chars/box-5.svg) no-repeat;
    background-size: contain;
    top: -80px;
    right: 0;
    width: 15vw;
    aspect-ratio: 1;
    z-index: -1;
        transform: scaleX(-1) rotate(-45deg);
}


#welcome-testimonials .content-image{
       position: absolute;
    background: url(../img/chars/box-1.svg) no-repeat;
    background-size: contain;
    bottom: -200px;
    left: 0;
    width: 20vw;
    aspect-ratio: 1;
    z-index: -1;
    
        transform: rotate(30deg);

}


#welcome-how-it-works{
position: relative;
color: black;
width: 100%; /* Ajusta el ancho según sea necesario */
}

#welcome-how-it-works h1{
    color: white;
}



#welcome-how-it-works .content-image-2{
    position: absolute;
    background: url(../img/chars/box-7.svg) no-repeat;
    background-size: contain;
    bottom: -300px;
    right: 100px;
    width: 25vw;
    aspect-ratio: 1;
    z-index: -1;
    transform: rotate(45deg);
}


#welcome-how-it-works .content-image{
       position: absolute;
    background: url(../img/chars/box-6.svg) no-repeat;
    background-size: contain;
    bottom: 200px;
    left: 100px;
    width: 20vw;
    aspect-ratio: 1;
    z-index: -1;
    

}



#welcome-game .content{
    padding-top:3vh; 
    
}

#welcome-offerings .content{
    padding-top:2vh; 
    padding-right:1vw; 
    
}




#welcome-benefits{
position: relative;
width: 100%; /* Ajusta el ancho según sea necesario */
padding-bottom:40px;
margin-bottom: 40px;    
}
#welcome-benefits .title{
    position: relative;
    display: inline-block;
    font-weight: 500;
    background-color: transparent;
    border-radius: 10px;
    border: 2px solid white;
    padding: 10px 30px;
    margin-bottom: 20px;
}


#welcome-benefits .content-image-2{
       position: absolute;
    background: url(../img/chars/box-1.svg) no-repeat;
    background-size: contain;
    bottom: -80px;
    right: 60px;
    width: 20vw;
    aspect-ratio: 1;
    z-index: -1;
        transform: scaleX(-1) rotate(45deg);
}


#welcome-benefits .content-image{
       position: absolute;
    background: url(../img/chars/box-5.svg) no-repeat;
    background-size: contain;
    bottom: -200px;
    left: 0;
    width: 15vw;
    aspect-ratio: 1;
    z-index: -1;
    
        transform: scaleX(-1) ;

}



#welcome-benefits .box{
    color: white;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 15px;
    padding: 40px;
    margin: 10px 0;
    box-shadow: 0px 5px 3px #00000036;
    text-align: center;
}


#welcome-benefits .box p{
    color: white;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 15px;
    padding: 15px;
    padding-top: 100px;
    margin: 10px 0;
    box-shadow: 0px 5px 3px #00000036;
    text-align: center;
}


#welcome-benefits .box-1{
    color: white;
    background:#f149cf;
 
}

#welcome-benefits .box-2{
    color: white;
    background:#8e44f4;
 
}

#welcome-benefits .box-3{
    color: black;
    background:#00ebf7;
 
}




#welcome-weapons .box, #faqs-content .box{
   
    color: white;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 15px;
    padding: 15px;
    padding-top: 100px;
    margin: 10px 0;
    box-shadow: 0px 5px 3px #00000036;
    text-align: center;
}

.box img{
    filter: drop-shadow(0px 0px 1px #ccc5); 
    margin-top: -150px;

}
    

#welcome-weapons .box-1,#faqs-content .box-1{
    color: white;
    background:#f149cf;
 
}

#welcome-weapons .box-2,#faqs-content .box-2{
    color: white;
    background:#8e44f4;
 
}

#welcome-weapons .box-3,#faqs-content .box-3{
    color: black;
    background:#00ebf7;
 
}

#welcome-weapons .box-4,#faqs-content .box-4{
    color: white;
    background:linear-gradient(#5f35b7,#8d44f2);
 
}

#welcome-weapons .box-5,#faqs-content .box-5{
    color: black;
    background:#eceaea;
 
}


#welcome-benefits .title::before {    
     content: "";
    position: absolute;
    top: 4px;
    left: 0;
    right: 0;
    bottom: -6px;
    border: 2px solid #37293b;
    pointer-events: none;
    border-radius: inherit;
    z-index: -1;
    background: transparent;
    filter: blur(3px);
    
  }



#welcome-how-it-works .box{
   
    color: white;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 15px;
    padding: 45px;
    margin: 5vh 0;
    box-shadow: 0px 5px 3px #00000036;
    text-align: center;
  
}

#welcome-how-it-works .box-1{
    color: white;
    background:#f149cf;
 
}


.border-shadow{
    background: transparent !important;
    position: relative;
}
.border-shadow::before {    
   
    content: "";
    position: absolute;
    top: 4px;
    left: 0;
    right: 0;
    bottom: -6px;
    border: 2px solid #37293b;
    pointer-events: none;
    border-radius: inherit;
    z-index: -1;
    background: transparent;
    filter: blur(3px);
    
  }



#welcome-testimonials .box{
    border-radius: 10px;
    border: 2px solid white;
    margin-bottom: 20px;
}

#welcome-devices{
position: relative;
width: 100%; /* Ajusta el ancho según sea necesario */
padding:20vh 0;
}


#welcome-devices h1 span{
    color: #eceaea;
}



#welcome-devices .content-image{   
   background: url(../img/monkey-smartphone.png) no-repeat;
    background-size: contain;
    aspect-ratio: 1;
    bottom: 0;
    top: -100px;
    right: -130px;
    position: absolute;
   
}


#birthday-game .col,#birthday-ready .col{
    position: initial;
}


#birthday-game .content-image{
    background: url(../img/chars/monkey-1.png) no-repeat;
    background-size: contain;
    aspect-ratio: 5 / 6.5;
    
}



#birthday-game .content-image-2{
    position: absolute;
    background: url(../img/chars/balloons.svg) no-repeat;
    background-size: contain;
    top: 25px;
    right: 50px;
    width: 15vw;
    aspect-ratio:1;
    z-index: -1;   
}

#birthday-game .content{

}


#birthday-ready .content
{
}







#birthday-ready{
  position: relative;
  width: 100%; /* Ajusta el ancho según sea necesario */
}



#birthday-ready .content-image{

    position: relative;
    background: url(../img/chars/smartphones.png) no-repeat;
    background-size: contain;
    top: -15vh;
    bottom: 0;
    right: 0;
    aspect-ratio: 1;
    /*z-index: -1;*/

}



#birthday-adversaries{
  width: 100%; /* Ajusta el ancho según sea necesario */
 padding-top: 20px;
}





#birthday-weapons{
    width: 100%;
    padding: 5vh 0;
}

#birthday-weapons>div{
        display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}


#birthday-weapons>div>row{
       flex-grow: 1;
    }



#birthday-weapons .intro{
    background: #5d34b5cc;
    border-radius: 200px;
    margin: 2.8vh 0;
    padding: 20px;
    text-align: center;
    box-shadow: 0px 5px 3px #00000036;
    
}




#birthday-boosters{
  width: 100%; 
 padding: 10vh 0;
}

.adversary-box, .weapon-box {
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Alinea el contenido al fondo */
    border-radius: 15px;
    padding: 15px;
    padding-top:100px;
    margin: 10px 0;
    color: white;
    min-height: 350px;
    box-shadow: 0px 5px 3px #00000036;
    font-size: 0.8em;
}


.weapon-box{
    width: 100%;
    height: 430px;
}

.adversary-box{
    width: 100%;
    height: 500px;
}

.row > .col:nth-child(1) .adversary-box {
    background-color: #8e44f4; /* Fondo para la primera caja */
    margin-top: 40px;
}

.row > .col:nth-child(2) .adversary-box {
    background-color: #f149cf; /* Fondo para la segunda caja */
}

.row > .col:nth-child(3) .adversary-box {
    background-color: #00ebf7; /* Fondo para la tercera caja */
    color: #8e44f4;
    
}

.row > .col:nth-child(4) .adversary-box {
    background-color: #8e44f4; /* Fondo para la cuarta caja */
     margin-top: 40px;
}

.weapon-box.style-1{
    background-color: #00ebf7; /* Fondo para la tercera caja */
    color: #8e44f4;
    
}


.weapon-box.style-2  {
    background-color: #5d34b4; /* Fondo para la segunda caja */
}

.weapon-box.style-3 {
    background-color: #ff8b14; /* Fondo para la primera caja */
    margin-top: 40px;
}


.weapon-box.style-4{
    background-color: #f149cf; /* Fondo para la cuarta caja */
     margin-top: 40px;
}

.weapons-cta{
    max-width: 500px;
    margin: 0 auto;
    color: white;
    text-align: center;
 
}
#legal-container{
    padding-top:100px;
    
}

#contact-us-container .title{
    font-weight: bold;
}


#contact-us-container a{
color: #8d4dff;
    text-decoration: none;
}


#contact-us-container .form-container{
    padding: 50px 0;
    border-radius: 30px;
    margin-top: 200px;
    background: transparent linear-gradient(0deg, #8e44f4cc,#5d34b5cc);
    color: white;
      box-shadow: 0px 10px 10px #00000036;
  
}

#contact-us-container label{
  font-weight: bold;
}

#contact-us-container input,#contact-us-container select, #login-container input, #forgot-password-container input,#register-container input{
  border-radius: 40px;
background: #eceaea;
    color: #5d34b4;
     font-weight: bold;
}



#contact-us-container input.input-2,#contact-us-container select.input-2, #login-container input.input-2{

background: transparent;
    color: #eceaea;
    border:3px solid #eceaea;
     
}

#contact-us-container textarea{
  border-radius: 20px;
background: #eceaea;
    color: #5d34b4;
 font-weight: bold;
    padding: 1em;

}

#contact-us-container button.primary{
 text-wrap:nowrap;
}

#contact-us-container ::placeholder{
    color: #5d34b4 !important;
     font-weight: bold;
opacity: 0.5 !important;
}

#contact-us-container input.input-2::placeholder{
    color: #eceaea !important;
}

#welcome-banner{   
    position: relative;
    background: url(../img/img-1.webp) no-repeat;
  
    background-size: cover;
    width: 100%;
    height:900px;
}
#welcome-banner .main-info{
    position: absolute;
    color: white;
    width: 430px;
    margin: 80px 0 0 0;
    background: #000c;
    border-radius: 40px;
    padding: 30px;
    bottom: 70px;
    right: 70px;    
    padding-bottom: 70px;


}

#welcome-banner.birthday-view{
    height: 300px;
     background: url(../img/birthday-img-1.png
   ) no-repeat center;
  
    background-size: cover;
   
}

#welcome-banner .main-info h1{
    font-weight:bold;
}





 
.additional-info{
    background:#009FB9;
    padding:20px;
    color:white;
    
}
.p-8 {
    padding: 8rem !important;
}

.cta-1,.cta-2{
    text-decoration:none;
    color:black;
    cursor:pointer;
}
.cta-1{
    color: #027386 !important;
}
.cta-2{
   color:#BA9AEB !important; 
}



.cta-1:hover,.cta-2:hover{
    opacity:0.8;
}
#product-details{   
    background: black;
    color:white;
    width: 100%;
    
}


#product-details .content-image{   
   background: url(../img/img-2.webp) no-repeat;
    background-size: cover;
    background-position: bottom center;   
    overflow: hidden;
    min-height: 500px;
}


#cakewar-details{   
     background: #8d4df0 linear-gradient(-15deg, #9151F7, #49297C 60%);   
     color:white;
    width: 100%;
    
}


#cakewar-details .content-image{   
}


#cakewar-conditions{   
  color:black;
}

#cakewar-conditions .title{   
   font-weight:bold;
   background:#49297B;
   color:white;
}

#cake-war-birthday-intro .content-image{
    background: url(../img/img-4.webp) no-repeat center;
    background-size: contain;
    min-height: 300px;
}

#cake-war-weapons{
        position: relative;
    padding-top: 220px;
}


#cake-war-weapons .intro{
    position: absolute;
    right: 0;
    width: 500px;
    top: 20px;
    color: white;
    background: #8d4df0;
    padding: 20px 20px 20px 80px;
    border-radius: 100px 0 0 100px;
    
}


#cake-war-boosters{
    color: white;
    background: url(../img/birthday-img-3.png) no-repeat center;
    background-size: cover;
 
}
#popular-weapons{   
    background:black;
    color: white;
}

#popular-weapons .title{   
   font-weight:bold;
   text-align:center;
}

#popular-weapons .content-image{   
   background: url(../img/chars/box-4.webp) no-repeat bottom left;
    background-size: contain;
    top: -300px;
    bottom: 0;
     right: -80px; 
    left: 0;
    position: absolute;
}

.weapon{
    border-radius:100px;
    margin:0 auto;
    text-align: center;
}

.weapon img{
    vertical-align: middle;
    border-radius: 50%;
    width: 70%;
    height: auto;
    object-fit: cover;
}
.weapon-title{
}


#testimonials{
   background: #8d4df0 linear-gradient(-15deg, #49297C 20%, #9151F7);   
      color:white;
    width: 100%;
}

#testimonials .title{
    font-weight:bold;
   text-align:center;
}
.testimonial{
    
    background: white;
    color: black;
    border-radius: 15px;
      
}

.testimonial > div {
    overflow: hidden;
    max-height: 300px; /* max-height inicial igual a la altura */
}



.testimonial h5{
    color: #8D4DF0;
    
}
.testimonial p:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
    }



#available-platforms{
    background: black;
    color:white;
    width: 100%;
}


#available-platforms .title{   
   font-weight:bold;
   text-align:center;
}

#available-platforms .content-image{   
   background: url(../img/img-6.png) no-repeat center;
    background-size: contain;
    
    min-width: 200px;
    min-height: 200px;
    
}

#available-platforms .content-image .gif{   
   width:100%;
    height:100%;
    background:black  url(../img/gif-1.gif) no-repeat center;
    background-size: contain;
    opacity: 0.2;
    animation: opacityChange 10s infinite;
}

@keyframes opacityChange {
    0% { opacity: 0.1; }
    10% { opacity: 0; }
    20% { opacity: 0.3; }
    30% { opacity: 0; }
    40% { opacity: 0.4; }
    50% { opacity: 0.2; }
    60% { opacity: 0; }
    70% { opacity: 0.4; }
    80% { opacity: 0; }
    90% { opacity: 0.5; }
    100% { opacity: 0.1; }
}

#available-platforms .content-image .top{   
   width:100%;
    height:100%;
    background:transparent  url(../img/img-6-top.webp) no-repeat center;
    background-size: contain;
}

#start-celebration{
    background:#8D4DF0;
}

#start-celebration button, .main-info button{

    border-radius: 50px;
    box-shadow: none;
    border: 5px outset #00367aa1;
    padding: 20px 50px;
    cursor:pointer;
    color: white;
    background: linear-gradient(0deg, #0985b0, #08d8da);
}

.main-info button{
position: absolute;
    bottom: -31px;
    left: -20px;
    right: -20px;}

footer{
    
    display: flex !important;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    min-height: 1000px;
    background: url(../img/bg/footer.svg) no-repeat bottom center;
    background-size: cover;
    position:relative;
    aspect-ratio: 1024 / 626; /* Mantiene la relación de aspecto 1024:625 */
    width: 100%; /* Ajusta el ancho según sea necesario */
    color: white;
    
}

footer .options{
    padding: 50px 10px 10px 10px;
    border-radius: 50px 50px 0 0;
       background: transparent linear-gradient(0deg, #8e44f4cc,#5d34b5cc);
    color: white;
    box-shadow: 0px -11px 7px #00000036;
  
}

footer .info{
    bottom: 500px;
    width: 500px;
    color: white;
    margin: 50px 0;
}

footer .logo{

    background: url(../img/logo.png) no-repeat bottom center;
    width: 500px;
    height: 500px;
    background-size: contain;
   
}

footer .copyright{
    text-align: center;
    margin-top: 30px;
}

footer .options a{
    color: white;
    text-decoration: none;
}

.social-links-img{
    background: url(../img/img-8.png) no-repeat;
    background-size: contain;
    
    background-position: -5px -21px;
    
}
#cakewar-conditions .
title, .additional-info{    
    box-shadow: #0000004a 7px -3px 2px 0px;

    
}

#cake-war-adversaries .info{
    background: #fafafa;
}

#cake-war-adversaries .title{
    
    color: #8d4df0;
    font-weight: bold;
    margin-bottom: 15px; 
}

#cake-war-adversaries .content-image{
    background: url(../img/birthday-img-2.png) no-repeat center;
    background-size: contain;
    
    filter: drop-shadow(2px 5px 3px #494365);
    min-height: 300px;
}

#product-details .content-image{    
    
    box-shadow: inset #000000 1px 0px 4px 14px;
}




/* Spotlight styles */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

@keyframes enter {
  0% {
    transform: scale(1.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes exit {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  98% {
    transform: scale(3);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

.spotlight {
  opacity: 1;
  background: #000000ee;
  pointer-events: none;
  background-repeat: no-repeat;
}

 .wide-dropdown {

     
    top: 130% !important;
    border-radius: 5px;
    box-shadow: 5px 5px 12px 0px #0000004d;
    width: 60vw;
    background: #8e45f4 !important;
    color: white;
    border: none !important;
    }

  .coming-soon {
       
    color: white;
    background-color: #8D4DF0;
    padding: 5px 10px;
    border-radius: 5px;
    float: right;
    margin-right: 6px;
    cursor: pointer;
    background: linear-gradient(#10d6e1, #8e44f4fc, #ff51a4eb) !important;
    box-shadow: 0px 5px 3px #0000007d;

}

.invisible-layer{
      position:relative;
}
.invisible-layer>.col-4{
    visibility: hidden; /* Oculta la capa pero mantiene su espacio en el layout */ 
}

.invisible-layer>.row{
    position:absolute;
    top:0;
    left:0;
    right: 0;
    bottom: 0;
}

.flip-card {
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}


.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flip-card-front {
 }

.flip-card-back {
   transform: rotateY(180deg);
    
    transform: rotateY(180deg);
    height: auto;
    padding: 35px;
    border-radius: 5px;
    box-shadow: 10px 7px 9px 0px #3a3a3a57;
    border: 1px solid #333;
    margin-top: -50px;

}

.card-1 .flip-card-back {
   
    background: url(../img/weapon-1-back.webp) no-repeat center;
    background-size: cover;

}


.card-2 .flip-card-back {
   
    background: url(../img/weapon-2-back.webp) no-repeat center;
    background-size: cover;

}


.card-3 .flip-card-back {
   
    background: url(../img/weapon-3-back.webp) no-repeat center;
    background-size: cover;

}



.flip-card p{
 }






@media (max-width: 1300px) {
    
    #faqs-content{
        padding-top: 5vh;
    }
    
    .adversary-box, .weapon-box{
        margin-top: 0 !important;
    }
    
    
.row-p-200,.row-p-150{
    padding: 0;
}

    
    #birthday-weapons .intro{
        background: none;
        box-shadow: unset;
    }

    
    
    #birthday-boosters .w-50{
        width: 75% !important;
    }
    

    
    
    #birthday-game .content-image-2 {
        right: -50px;
    }
    
    #welcome-how-it-works .box {
        margin: 1vh 0;
    }    
    
#welcome-benefits .content-image-2 {
    bottom: -30px;
    right: 225px;
    width: 30vw;
}
    
#welcome-benefits .content-image {
   display: none;
}
    
    
#welcome-about .content-image {
    top: 0;
    bottom: 0;
    width: 60vw;
    left: -30vw;
}
      
#welcome-about .content-image-2 {
    top: 0;
    bottom: 0;
    width: 40vw;
    right: -20vw;
}
    
    
    
#birthday-game .content-image-2{
    width: 20vw;
    
}
    
    
#birthday-adversaries,#birthday-weapons{
    padding: 40px;
    aspect-ratio:unset;
    
}
    
    
    
#contact-us-container .form-container{
margin-top: 80px;
    }
    .p-8 {
        padding: 2vw !important;
        
    }
    #popular-weapons .content-image{
       // display: none;
    }
    
    
#welcome-intro .content-image{
    height: 100%;
    background-position: center;
}

 
}
@media (max-width: 767.98px) {
    
  
    
    #customSelect .col-3,  #customSelect .col-1{
        flex:100% !important;
    }
    
    
    body{
        font-size: 1em !important;
    }
    h1{
        font-size: 2.5rem !important;
    }
    
    
    #faqs-content  .w-50{
        width: 100% !important;
    }


    
        #welcome-about .content-image {
        top: unset;
        bottom: -5px;
        width: 25vw;
        left: -5vw;
     }

    
    #welcome-devices {
        padding: 10vh 0;
`   }   
    #welcome-devices .content-image {
        position: relative;
    }
    
    #welcome-about {
        padding: unset;
    }
    
    #welcome-benefits .content-image-2 {
        bottom: 50px;
        right: -100px;
        width: 30vw;
    }

    #birthday-weapons .intro {
     border-radius: 0; 
        margin: 0;
}
    .weapons-cta{
    
}
    
    
    #birthday-game .content{
       }
    #birthday-game .content-image-2{
        display: none;
    }
    #birthday-game .content-image{
        aspect-ratio: 1;
        width: 70%;
        margin: 0 auto;
    }
    #birthday-ready .content-image {
        top: unset;
        background-position: 10vw;
    }
    
    #contact-us-container .form-container{
margin-top: 0px;
    }
    
    #welcome-intro .content-image{
        position: relative;
        width:100vw;
        height: 70vh;
    }
    

    
    #welcome-intro .content{
        max-width: 500px;
      
        flex-grow: 0;
        margin-top:5vh;
    }
    
    #birthday-intro {
 background: none !important;
padding: 200px 0;
         padding-bottom: 0px !important;
    margin-bottom: -70px !important;
    }
    

    #birthday-intro .content{
    width: 100%;
    
    
    }
    
    footer .info {
        display: none;
}
       
    footer .logo {
        width: 200px;
        
        height: 200px;
}
    
    
    footer .col-sm-12{
        text-align: center;
    }
    
    
    footer .copyright {
    text-align: center;
    margin-top: 0px;
    margin-bottom: 100px;
    padding: 0 50px;
    }
    nav .logo {
        z-index: -100;
    }
    
    #welcome-intro{
         background: none !important;
    }
    
    
    #welcome-devices .content-image {
    background-position: center;
    top: 10px;
    right: 0;
   }
    
    
    
    
    
    .birthday-section{
       
        aspect-ratio:unset !important;
    }

    #birthday-ready button{
        
    text-wrap: nowrap;
    }
        #birthday-intro h1{
    
    
    }
    
    .welcome-section{
        min-height: unset !important;
        overflow: hidden;
        aspect-ratio:unset !important;
    }
    .welcome-section .content{
    }

    
    #welcome-intro{
        overflow: hidden;
    }
    
    body{
    }
    .home .title,.home .cta-1,.home .cta-2{
    }

    .testimonial>div {
        height: inherit;
        overflow-y: visible;
    }
    
    #start-celebration button {
    }
    body>*{
        overflow-x: hidden;
    }
    .weapon-title{
}
    
    .spotlight {
        background: #0000 !important;
    }
    .testimonial > div {
        height: auto; /* Transiciona max-height */
        max-height: none;
      }
 
        #available-platforms .content-image .gif {
    background-size: 190px;
   }
    
    
    #welcome-banner{   
        background: url(../img/img-1m.png) no-repeat center;
        background-size: cover;
      
    }

    
    #welcome-banner .main-info {
        border-radius: 0;
        bottom: -1px;
        right: 0;
        left: 0;
        width: auto;
        border-bottom: 40px #059fb9 solid;
    }
    
    .main-info button {
        position: absolute;
        bottom: -30px;
        left: 15px;
        right: 15px;
    }
    
    .invisible-layer>.row {
        padding: 20px;
    }

    #popular-weapons{   
      overflow:hidden;

    }
    #cake-war-birthday-intro .content-image{
        background-color:black; 
}
 #cake-war-weapons {

 padding-top: 20px;
}
    
    #cake-war-weapons .intro {
    position: relative;
    width: 100%;
    padding: 5px;
    margin:50px 0;
    border-radius: 0;
    height: auto;
}
    
}



@media screen and (max-width: 768px) {
  
    .responsive-table thead {
    display: none;
  }

  .responsive-table tbody,
  .responsive-table tr,
  .responsive-table td {
    display: block;
    width: 100%;
  }

  .responsive-table tr {
    margin-bottom: 1em;
    padding: 12px;
  }
    
  #start-container .responsive-table tr {
    background-color: #f149cf;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 4px 6px;
  }

  .responsive-table td {
    padding: 6px 12px;
    text-align: left !important;
    position: relative;
    display: flex;              /* ✅ clave para alineación horizontal */
    justify-content: space-between;
    align-items: center;
  }

  .responsive-table td::before {
    content: attr(data-label);
    font-weight: bold;
    margin-right: 10px;
  }

    
  #start-container .responsive-table td::before {
    color: white;
    }

    
    #start-container h1{
        font-size: 1.5rem !important;
    }
    
   .step-4 textarea{
        height: 30vh !important;
    }
    
    .step-4 .box{
        width: 100% !important;
        height: 140px !important;
        min-height: 140px !important; 
        margin: 10px 0 !important;
    }
    
     .step-4 img{
        width: 50px !important;
    }
    .step-4 .box p{
        display: none !important;
    }
    
    .step-4 .box h3{
        font-size: 14px !important;
         text-align: left;
    }
    .step-1 .box h3{
        font-size: 16px !important;
        font-weight: bold;
        
    }
}




@media (min-width: 768px) {
   

   
    
    
    #welcome-devices .content-image, 
#welcome-offerings .content-image {
        right: unset;
        max-width: 100%;
    }
    

    #testimonials .col{
       position: relative;
        min-height: 400px;
    }
.testimonial > div {

    transition: max-height 0.3s ease-out; /* Transiciona max-height */
    left: 0;
    right: 0;
}
    .testimonial{
        position: absolute;
        border:1px solid #ccc;
        cursor: pointer;
    }

.testimonial:hover > div {
    max-height: 1000px; 
    transition: max-height 0.1s ease-out; /* Transiciona max-height */
    
}
    
    .flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}
    
}



@media (max-width: 1199.98px) {
    nav .collapse>*{
          scale: 0.8;
    }
 
#welcome-intro, #birthday-intro {
    background: none;
}
#welcome-intro .content, #birthday-intro .content {
    scale: 0.9;
    margin-top: 150PX;
    
}
    

    
}



@media (max-width: 992px) {
    
     
    
     .weapon-box img{
        width: unset;
        max-height: 200px;
    } 
    
    
    .adversary-box img{
        width: unset;
        max-height: 300px;
    } 
    
    .navbar-expand-lg .navbar-nav .nav-link {
        font-size: 0.8em;
    }
    .navbar-collapse{
        background: #8e45f4 !important;
        
    border-radius: 5px;
    box-shadow: 5px 5px 12px 0px #0000004d;
    }   
    
    nav ul.main {
        background:none !important;
        
    margin-left: -50px !important;
    }
    nav .login-item {
    margin-left: 0 !important;
    font-weight: bold;
    font-size: 1.2em;
}
    
    nav .shopping-item {
    position: absolute;
    background: linear-gradient(white, #d7d7d7);
    border-radius: 100px;
    padding: 0px 15px;
    box-shadow: 0px 5px 3px #00000036;
    color: white;
    border: none;
    margin-left: 10px;
    margin-top: 30px;
    width: 47px;
    height: 44px;
    /* float: right; */
    top: -306px;
    right: 0;
}
    
    nav .signup-item{
    margin-bottom:20px;
    }
    
    .wide-dropdown{
        
    box-shadow: none !important;
    width: 100% !important;
    }
    
    #privacy-policy{
        padding: 20px !important;
        
        padding-top: 100px !important;
    }
    
    
    #privacy-policy .content-image, 
    #privacy-policy .content-image-2
    #terms-and-conditions .content-image, 
    #terms-and-conditions .content-image-2{
        display: none;
    }
    
    
    #end-user-agreement,#end-user-agreement>div{
        max-width: unset;     
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    

    #faqs-content{
        background: none;
        padding-top: 130px;
    }
    
    #register-container .w-50{
        width: unset !important;
    }
    

}
