

html {
    font-size: 14px;
    font-family: 'nexa', sans-serif;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.square-button {
    border-radius: 0 !important;
    height: calc(100% - 2px); /*ajusta el valor si es necesario  */
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-container {
    display: flex;
    align-items: center;
}

#search-input {
    height: 30px; /*ajusta este valor según sea necesario  */
    line-height: 40px;
    /*asegura que el texto esté centrado verticalmente */
}

#search-button {
    height: 30px; /*debe coincidir con la altura del input  */
    width: 40px; /*ajusta este valor para hacerlo cuadrado si es necesario  */
    padding: 0;
}
#search-input:focus {
    border-color: #ff0000 !important; /*color del borde cuando está enfocado  */
    outline: none; /* elimina el borde azul predeterminado de enfoque en algunos navegadores  */
}
.modal-content {
    text-align: center;
}

.payment-option {
    display: inline-block;
    width: 200px;
    padding: 20px;
    margin: 10px;
    border-radius: 10px;
    border: 2px solid #d4d4d4;
    cursor: pointer;
    transition: 0.3s;
}

    .payment-option:hover {
        border-color: #007bff;
    }

    .payment-option.selected {
        border-color: #007bff;
        background-color: #e7f1ff;
    }

    .payment-option h4 {
        margin: 0;
    }

    .payment-option p {
        margin: 5px 0 0;
    }

.payment-option-blue {
    border-color: #007bff;
    background-color: #e7f1ff;
}

    .payment-option-blue h4, .payment-option-blue p {
        color: #007bff;
    }

.modal-backdrop {
    z-index: 1040 !important;
}

.modal {
    z-index: 1050 !important;
}

.modal-dialog {
    z-index: 1060 !important;
}

.filter-menu {
    width: 250px;
    padding: 10px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    color: #000;
}

    .filter-menu h3 {
        font-size: 16px;
        margin: 10px 0;
        font-weight: bold;
    }

.filter-group {
    margin-bottom: 20px;
}

    .filter-group label {
        display: block;
        margin: 5px 0;
        font-size: 14px;
    }

    .filter-group input[type="checkbox"] {
        margin-right: 5px;
    }

.filter-title {
    cursor: pointer;
    padding: 5px 0;
    border-bottom: 1px solid #ddd;
}

.filter-content {
    display: none;
    padding-left: 10px;
}

    .filter-content.show {
        display: block;
    }

.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left-color: #000;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}
#loadingspinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: tr;*/
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050; /*asegúrate de que esté encima del modal  */
}

.spinner-border {
    width: 3rem;
    height: 3rem;
    border-width: 0.25em;
}

[data-kt-stepper-element="content"] {
    flex-direction: column; /* alinea los elementos verticalmente  */
    justify-content: center; /* centra verticalmente  */
    align-items: center; /*centra horizontalmente  */
    text-align: center; /* opcional: centra el texto en todos los elementos hijos  */
}
#table::-webkit-scrollbar {
    width: 12px; /*ancho de la scrollbar  */
}

#table::-webkit-scrollbar-track {
    background: #f1f1f1; /*color del track (fondo)  */
}

#table::-webkit-scrollbar-thumb {
    background-color: #888; /* color de la scrollbar  */
    border-radius: 10px; /*bordes redondeados  */
    border: 3px solid #f1f1f1; /*espacio entre scrollbar y track  */
}

    #table::-webkit-scrollbar-thumb:hover {
        background: #555; /*color al pasar el cursor por encima  */
    }
.custom-modal-body {
    background-image: url('/img/logobbva.png'); /*cambia esta ruta por la imagen que desees usar */
    background-size: cover;
    /*ajusta la imagen para que cubra todo el fondo */
    background-position: center;
}

.select2-container--default .select2-selection--single {
    z-index: 1000; /*ajusta según tus necesidades */
}

.select2-container--open {
    z-index: 9999;  
}
/* Para dispositivos de pantalla pequeña */
    @media (max-width: 576px) {
        .event-card {
            padding: 1rem;
            height: auto; /* Permitir altura dinámica */
        }

        .date strong,
        .date span,
        .category,
        .price-info .real-price,
        .price-info .discounted-price {
            font-size: 0.8em; /* Reducir tamaño de fuente */
        }

        .discount-container .discount-percentage {
            font-size: 1.2em; /* Reducir el tamaño del descuento */
        }

        .offer-button {
            font-size: 0.9em; /* Ajustar el tamaño del botón */
        }

        /* Ajuste de tamaño para el ícono de compartir */
        .fa-share-nodes {
            font-size: 1.5em;
        }
    }
