.progress-bar {
  width: 100%;
  background-color: #333;
  border-radius: 25px;
  overflow: hidden;
  height: 15px;
  position: relative;
}

.progress-bar-fill {
  height: 100%;
  background-color: #ff5f2a;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
}

.progress-bar-stripes {
  height: 100%;
  background-image: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.2) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0.2) 75%,
    transparent 75%,
    transparent
  );
  background-size: 30px 30px;
  animation: moveStripes 1s linear infinite;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.progress-text {
  float: right;
  color: white;
  font-size: 12px;
  margin-top: 5px;
  font-family: 'DM Sans', sans-serif;
}

@keyframes moveStripes {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 30px 0;
  }
}



/**----------------------------------------
START: CSS DE GSYSTEM
----------------------------------------*/

.g-top{
 margin-top: -0px !important;   
}

.g-plan {
 padding-top: 11px !important;
 margin-top: 20px !important;  
}

.g-padding{
 padding-top: 30px !important;
 padding-bottom: 10px !important;
 background-color: #000;    
}




.g-pagos {
        display: flex;
        justify-content: center; /* Centra horizontalmente */
        flex-wrap: wrap; /* Permite que se ajusten en filas si la pantalla es pequeña */
        gap: 10px; /* Espacio entre las opciones */
        margin: 10px 0 40px; /* Separación arriba y abajo */
    }

    .payment-option {
        position: relative;
        opacity: 0.3;
        cursor: pointer;
        transition: opacity 0.3s ease;
        flex: 1 1 auto;
        max-width: 100px; /* Ancho máximo del botón */
    }

    .payment-option img {
        width: 100%;
        height: auto;
        border-radius: 10px;
    }

    .payment-option .checkmark {
        position: absolute;
        top: 5px;
        right: 5px;
        width: 20px;
        height: 20px;
        background-color: white;
        border-radius: 50%;
        display: none; /* Oculto por defecto */
        justify-content: center;
        align-items: center;
        font-size: 12px;
        font-weight: 600;
        color: #000;
        border: 2px solid #000;
    }

    .payment-option.active .checkmark {
        display: flex; /* Solo se muestra en el botón seleccionado */
    }

    .payment-option.active {
        opacity: 1;
        border: 2px solid #ededed;
        border-radius: 10px;
    }

    /* Ajustes responsivos para pantallas pequeñas */
    @media (max-width: 768px) {
        .payment-option {
            max-width: 80px; /* Ajuste para tablets */
        }
    }

    @media (max-width: 480px) {
        .payment-option {
            max-width: 60px; /* Ajuste para móviles */
        }
    }




/* Ocultamos inicialmente el contenedor g-detalles */
    .g-detalles {
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        transition: all 0.5s ease-in-out;
        overflow: hidden;
    }

    /* Mostrar g-detalles con transición desde arriba */
    .g-detalles.active {
        opacity: 1;
        visibility: visible;
        max-height: 500px; /* Ajusta según sea necesario */
    }




/* Estilos básicos del modal */
  /* Estilo básico para el modal */
.g-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: auto;
    justify-content: center; /* Centrado horizontalmente */
    align-items: center; /* Centrado verticalmente */
}

.modal-content1 {
    background-color: rgba(250, 250, 250, 1); /* Negro con transparencia del 80% */
    margin: 5% auto;
    padding: 40px;
    border-radius: 10px;
    width: 80%;
    max-width: 600px;
    border: 1px solid #ff5f2a; /* Borde naranja */
}


.close {
    color: #2e2e2e;
    float: right;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover, .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.modal-header1 {
    display: flex;
    justify-content: center; /* Centra horizontalmente */
    align-items: center; /* Asegura que esté alineado verticalmente */
    margin-bottom: 20px;
}

.modal-header1 h2 {
    font-size: 24px;
    background-color: #ffd700; /* Color amarillo */
    color: #000; /* Letras negras */
    padding: 10px 20px;
    border-radius: 5px;
    transform: skew(-10deg); /* Inclinación del rectángulo */
    font-weight: bold;
    display: inline-block;
}


/* Estilo del QR Code */
.modal-qr img {
    width: 150px;
    height: 150px;
    display: block;
    margin: 0 auto;
}

/* Estilo detalles */
.details {
    text-align: center;
    margin-top: -10px;
}

/* Alinear el switch y el texto en una fila */
.switch-label {
    display: inline-flex;
    align-items: center; /* Alinear el switch y el texto verticalmente */
    gap: 10px; /* Espacio entre el switch y el texto */
    margin-bottom: 15px; /* Margen inferior para separar el botón */
    margin-top: -10px;
}

.switch1 {
    position: relative;
    display: inline-block;
    width: 34px;
    height: 20px;
}

.switch1 input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider1 {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider1:before {
    position: absolute;
    content: "";
    height: 12px;
    width: 12px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

.switch1 input:checked + .slider1 {
    background-color: #b28f34;
}

.switch1 input:checked + .slider1:before {
    transform: translateX(14px);
}

/* Colocar el botón "Imprimir" en su propia línea */
.print-btn {
    background-color: #ff5f2a;
    color: white;
    border: none;
    padding: 10px 40px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 20px;
    display: block; /* Asegura que el botón esté en su propia línea */
    width: auto;
    margin-left: auto;
    margin-right: auto; /* Centra el botón */
    margin-top: -5px;
}


/* Estilo de los tickets */
.tickets {
    display: flex;
    flex-wrap: wrap; /* Permite que los tickets se distribuyan en filas */
    justify-content: space-between;
    gap: 0px; /* Espacio entre los tickets */
    margin-top: 20px;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 5px; /* Agrega espacio para la barra de desplazamiento */
    margin: 5px;
}

/* Estilo del ticket */
.ticket {
    background-color: #694c2c;
    border-radius: 10px;
    width: 210px;
    margin: 10px auto;
    padding: 10px;
    border: 2px solid #f6b500;
    text-align: center;
    position: relative;
}

/* Ajustes para pantallas más pequeñas */
@media (max-width: 768px) {
    .ticket {
        width: 100%; /* Hace que los tickets ocupen todo el ancho en pantallas más pequeñas */
        margin: 10px 0; /* Ajusta el margen en pantallas pequeñas */
    }
}

@media (max-width: 1024px) {
    .tickets {
        justify-content: center; /* Centra los tickets si hay espacio en pantallas medianas */
    }
}


/* Personalización de la barra de desplazamiento en el contenedor con clase "scroll-custom" */
.scroll-custom::-webkit-scrollbar {
    width: 4px !important; /* Grosor de la barra de desplazamiento */
}

.scroll-custom::-webkit-scrollbar-track {
    background: #fff !important; /* Fondo de la pista de desplazamiento */
}

.scroll-custom::-webkit-scrollbar-thumb {
    background-color: #ff5f2a !important; /* Color de la "barrita" */
    border-radius: 10px !important; /* Redondear la barrita */
}

.scroll-custom::-webkit-scrollbar-thumb:hover {
    background-color: #d48800 !important; /* Color al pasar el mouse sobre la barrita */
}

/* Para Firefox */
.scroll-custom {
    scrollbar-width: thin !important; /* Hace que la barra sea delgada */
    scrollbar-color: #d4d4d4 #fff !important; /* La primera es la barrita, la segunda el fondo */
}




/* Cabecera ajustada */
.header-ticket {
    background-color: #fff;
    padding: 10px;
    border-radius: 10px 10px 0 0;
    text-align: center;
    height: auto; /* Ajuste automático de altura */
}

.buy, .status {
    position: absolute;
    color: #573b07;
}

.buy {
    left: 20px;
}

.status {
    right: 20px;
}

.bandname img{
    width: 60%;
}

.bandname {
    margin-top: 0px;
    color: #573b07;
    font-weight: bold;
    font-size: 16px;
}

/* Imagen con detalles superpuestos */
.imagenfondo {
    position: relative;
    width: 100%; /* Hace que la imagen ocupe el ancho completo */
    max-width: 300px; /* Ancho máximo de la imagen, puedes ajustarlo según tus necesidades */
    height: 180px; /* Altura fija */
    overflow: hidden; /* Asegura que la imagen no salga de su contenedor */
}

.imagenfondo img {
    width: 100%; /* Imagen responsive */
    height: 100%; /* Mantiene la altura fija */
    object-fit: cover; /* Hace que la imagen se ajuste sin perder la proporción */
    margin-top: 0;
}

.overlay-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Fondo oscuro semitransparente */
    color: #fff;
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column; /* Para organizar el contenido en columna */
    justify-content: space-between; /* Espacia los elementos en la columna */
}

.tourname {
    text-align: center; /* Centra el título horizontalmente */
    font-weight: bold;
    font-size: 16px;
    margin-top: 5px;
    margin-bottom: 10px; /* Espacio entre el título y los detalles */
    font-family: 'Poppins', sans-serif;
}

.nombres {
    font-size: 12px;
    text-align: left; /* Alinea el texto a la izquierda */
}

.nombres span {
    display: block;
    margin-bottom: 5px;
}


/* Detalles del evento */
.deetz {
    display: flex;
    justify-content: space-between;
    padding: 5px;
    background-color: #442c00;
    border-radius: 0px 0px 5px 5px;
    color: white;
}

.date, .cost {
    font-weight: bold;
    font-size: 14px;
}

/* Elementos decorativos en la parte inferior */
.rip {
    width: 100%;
    height: 1.2px;
    background-image: repeating-linear-gradient(
        to right,
        #d5d5d5 0,
        #d5d5d5 2px,
        transparent 2px,
        transparent 7px
    ); /* Controla el tamaño y el espacio de los puntos */
    bottom: 5px;
    margin-top: 20px;
    position: relative;
}


.rip:before, .rip:after {
    content: '';
    position: absolute;
    width: 30px; /* Ancho completo del círculo */
    height: 30px; /* Altura completa del círculo */
    background-color: #fff;
    border-radius: 50%; /* Forma de círculo completo */
    border: 2px solid #f6b500; /* Borde dorado */
    top: -15px; /* Alinear verticalmente */
    z-index: 1; /* Aseguramos que esté por encima del fondo */
}

.rip:before {
    left: -27px; /* Posiciona a la izquierda */
    clip-path: inset(0 0 0 15px); /* Muestra solo la mitad izquierda del círculo */
}

.rip:after {
    right: -27px; /* Posiciona a la derecha */
    clip-path: inset(0 15px 0 0); /* Muestra solo la mitad derecha del círculo */
}



.bottom {
    margin-top: 10px;
    padding: 5px;
    background-color: white;
    border-radius: 5px;
    font-size: 22px;
    color: #442c00;
    border: 2px dashed #39290b;
    font-weight: bold;
}








@media print {
    body * {
        visibility: hidden; /* Oculta todo el contenido por defecto */
    }

    #tickets-container, #tickets-container * {
        visibility: visible; /* Asegúrate de que los tickets y su contenido sean visibles */
    }

    #tickets-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
    }

    .scroll-custom {
        overflow: visible !important; /* Asegúrate de que la barra de desplazamiento no interfiera */
    }
}


/* TICKETS COMPRAS */
/* TICKETS COMPRAS */


.tickets-shop {
    text-align: center;
    margin-top: 10px;
    font-family: 'Poppins', serif;
}

.ticket-display {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.ticket-input-container {
    display: flex;
    align-items: center;
    border: 2px solid #fff;
    border-radius: 10px;
    padding: 5px 15px;
    background-color: transparent;
}

.ticket-button {
    background-color: #fff;
    border: none;
    color: #000;
    font-size: 18px;
    margin-right: 10px;
    padding: 6px 15px;
    cursor: default;
    border-radius: 10px;
    font-weight: 600;
}

#ticket-count {
    width: 100px; /* Ancho grande para el casillero */
    font-size: 22px;
    text-align: center;
    border: none;
    background-color: transparent;
    color: #fff;
    font-weight: 600;
    outline: none;
}

.h6new{
    color: #fff;
}

.ticket-buttons {
    display: flex;
    flex-wrap: nowrap; /* No permitir que los botones se envuelvan */
    justify-content: center; /* Asegura que los botones estén centrados */
    gap: 5px; /* Espaciado entre los botones */
    overflow-x: auto; /* Permite desplazamiento horizontal en pantallas pequeñas */
}

.ticket-buttons button {
    background-color: #8200ff;
    color: #fff;
    border: none;
    padding: 15px 25px;
    font-size: 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: 600;
}

.ticket-buttons button:hover {
    background-color: #f6c500;
}

/* Ajustar para pantallas pequeñas */
@media (max-width: 768px) {
    .ticket-buttons {
        justify-content: center; /* Alinea a la izquierda en pantallas pequeñas */
    }

    .ticket-buttons button {
        font-size: 18px; /* Tamaño de fuente más pequeño */
        padding: 12px 20px; /* Ajuste del padding para pantallas más pequeñas */
    }
}

@media (max-width: 480px) {
    .ticket-buttons button {
        font-size: 16px; /* Tamaño de fuente más pequeño aún */
        padding: 10px 15px; /* Ajuste del padding para pantallas muy pequeñas */
    }
}



.g-precio{
    margin-top: -20px;
    font-size: 25px;
    font-weight: 800;
    background-color: #ececec;
    border-radius: 10px;
    padding: 15px !important;
}

.g-subir{
    margin: 20px !important;
    margin-top: -50px !important;
}

.g-fondo {
    position: relative; /* Posiciona el contenedor para que los hijos con posición absoluta se alineen correctamente */
    z-index: 1; /* Asegura que el contenido de la clase g-fondo esté por encima de la imagen */
}

.g-fondo img {
    position: absolute;
    left: 0; /* Alinea la imagen a la izquierda */
    bottom: 0; /* Alinea la imagen a la parte inferior del contenedor */
    width: 32%; /* Tamaño de la imagen en pantallas grandes (PC) */
    z-index: 1; /* Envía la imagen detrás del contenido */
    opacity: 0.9; /* Controla la opacidad de la imagen */
    height: auto; /* Mantiene la proporción de la imagen */
}

/* Media query para pantallas más pequeñas (movil o tablets) */
@media (max-width: 768px) {
    .g-fondo img {
        width: 20%; /* Cambia el tamaño a 20% en pantallas pequeñas */
    }
}


.g-selecciona{
    padding: 0px 70px 10px 70px;
    margin-top: -20px;
}

.numeros {
    display: flex;
    flex-wrap: wrap; /* Permite que los números pasen a la siguiente línea si hay más de 4 */
    justify-content: center; /* Centra los números horizontalmente */
    gap: 5px; /* Espacio entre los números */
    max-width: 400px; /* Ajusta el ancho máximo para que sólo quepan 4 números */
    margin: 0 auto; /* Centra el contenedor */
}

.titulo {
    width: 100%; /* Hace que el título ocupe toda la fila */
    text-align: center; 
    margin-bottom: 5px; 
    font-size: 15px; /* Tamaño de fuente del título */
    font-weight: bold; /* Negrita en el título */
    color: #ff5f2a; /* Color del título */
}
.numero {
    background-color: #fcfdff; /* Fondo gris */
    border: 1px solid #2f2f2f; /* Borde alrededor del número */
    padding: 2px 5px;
    border-radius: 10px;
    width: 80px; /* Ancho fijo para los números */
    text-align: center; 
    font-size: 16px;
    font-weight: 600;
    box-sizing: border-box;
    color: #2f2f2f;
}



.aviso {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 40%; /* Ancho del 40% para pantallas grandes */
    margin: 0 auto; /* Centra el contenedor */
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

/* Media query para pantallas móviles */
@media (max-width: 768px) {
    .aviso {
        width: 100%; /* Cambia el ancho al 100% en pantallas pequeñas */
    }
}


.loader2 {
    display: flex;
    justify-content: space-between;
    width: 60px; /* Ancho del contenedor del loader */
    margin-bottom: 0px; /* Espacio debajo del loader */
}

.loader2 span {
    display: block;
    width: 10px;
    height: 10px;
    background-color: orange; /* Color naranja */
    border-radius: 50%;
    animation: bounce 1.5s infinite ease-in-out;
}

/* Damos diferente tiempo de animación a cada punto */
.loader2 span:nth-child(1) {
    animation-delay: -0.3s;
}
.loader2 span:nth-child(2) {
    animation-delay: -0.15s;
}
.loader2 span:nth-child(3) {
    animation-delay: 0s;
}

/* Animación de rebote */
@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0.5);
    }
    40% {
        transform: scale(1);
    }
}

.mensaje {
    text-align: center;
    font-size: 14px;
    color: #333;
    margin-top: 15px;
}













/* Estilos específicos para las banderas */
.custom-select .country-select[data-flag="us"] {
    background-image: url('https://cdnjs.cloudflare.com/ajax/libs/flag-icon-css/3.5.0/flags/4x3/us.svg') !important;
}

.custom-select .country-select[data-flag="gb"] {
    background-image: url('https://cdnjs.cloudflare.com/ajax/libs/flag-icon-css/3.5.0/flags/4x3/gb.svg') !important;
}

.custom-select .country-select[data-flag="pe"] {
    background-image: url('https://cdnjs.cloudflare.com/ajax/libs/flag-icon-css/3.5.0/flags/4x3/pe.svg') !important;
}

.custom-select .country-select[data-flag="es"] {
    background-image: url('https://cdnjs.cloudflare.com/ajax/libs/flag-icon-css/3.5.0/flags/4x3/es.svg') !important;
}

.custom-select .country-select[data-flag="fr"] {
    background-image: url('https://cdnjs.cloudflare.com/ajax/libs/flag-icon-css/3.5.0/flags/4x3/fr.svg') !important;
}

/* Estilo para el input del teléfono */
.phone-input {
    flex-grow: 1;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-left: 10px;
    font-size: 16px;
}








/* Estilo del checkbox y su etiqueta */
.checkbox-label {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Espaciado entre los elementos */
.form_group {
    margin-bottom: 20px;
}




/* ===================================== */

/* Estilo para el modal */
/* Estilo para el modal */
.publicidad-modal {
    display: none; /* El modal está oculto por defecto */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Fondo semitransparente */
    display: flex;
    justify-content: center; /* Centrado horizontal */
    align-items: center; /* Centrado vertical */
}

.publicidad-content {
    position: relative;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    width: 80%;
    max-width: 500px; /* Tamaño máximo para pantallas grandes */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.publicidad-img img {
    width: 100%; /* Imagen adaptable a todos los dispositivos */
    height: auto;
    border-radius: 10px;
}

/* Botón de cerrar (X) */
.close2 {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    font-weight: 600;
    cursor: pointer;
    color: #fff;
}

.close2:hover,
.close2:focus {
    color: #db0039;
    text-decoration: none;
    cursor: pointer;
}





/* ===================================== */




.banco {
    display: flex; /* Habilita el flexbox para alinear los elementos */
    align-items: center; /* Alinea verticalmente la imagen y el texto */
    justify-content: flex-start; /* Alinea los elementos hacia la izquierda */
}

.banco img {
    width: 25%;
    margin-right: 5px;
}

.banco .text-container {
    display: flex;
    flex-direction: column; /* Alinea el texto en vertical (título arriba, subtítulo abajo) */
}

.banco .title {
    font-size: 1.2em;
    font-weight: bold;
    margin: 0; /* Elimina márgenes adicionales */
}

.banco .desc p {
    font-size: 0.82em;
    margin: 0;
    text-align: left;
}

/* Ajustes para tablets (entre 768px y 1024px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .banco img {
        width: 15%; /* Tamaño intermedio para tablets */
        margin-right: 10px; /* Ajuste del espacio entre la imagen y el texto */
    }

    .banco .title {
        font-size: 1.5em; /* Tamaño intermedio del título */
    }

    .banco .desc p {
        font-size: 0.95em; /* Tamaño intermedio del subtítulo */
    }
}
/* Ajustes para pantallas más grandes (PC, laptops) */
@media (min-width: 1024px) {
    .banco img {
        width: 10%; /* Reduce el tamaño de la imagen en pantallas grandes */
        margin-right: 15px; /* Incrementa el espacio entre la imagen y el texto */
    }

    .banco .title {
        font-size: 3em; /* Aumenta el tamaño del título */
    }

    .banco .desc p {
        font-size: 1.5em; /* Aumenta el tamaño del subtítulo */
    }
}






.subirimg{
    padding-top: 50px !important;
}

.centrarimg{
    display: flex;
    justify-content: space-around !important;
}