body {
    padding-bottom: 109px;
    font-size: 16px;
    font-family: 'Roboto' !important;
    font-weight: 400;
}
body:not(:has(#flotante)) {
    padding-bottom: 0;
}

b,
strong,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Roboto' !important;
}

#modificar-fechas {
    box-shadow: none;
    margin: 0;
    padding: 0;
    justify-content: end;
    background-color: transparent;
}

#ver-legales{
    color: var(--tts-primary-color);
    cursor: pointer;
    font-weight: bold;
}

.mt-3 {
    margin-top: 12px
}

.separador {
    width: 100%;
    border-bottom: #a1a1a1 solid 1px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.banner {
    width: 100%;
    margin-bottom: 15px;
    position: relative;
}

.banner img {
    width: 100%;
    height: 30vh;
    object-fit: cover;
}

.banner .noches {
    position: absolute;
    bottom: -15px;
    left: 30px;
    background: #FFF;
    color: var(--tts-primary-color);
    border-radius: 5px;
    font-weight: bold;
}

.banner .noches span {
    background-color: var(--tts-primary-color);
    border-radius: 5px;
    filter: opacity(0.1);
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
}

.banner .noches b {
    padding: 10px;
    display: block;
}

.contenido {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 15px;
}

.contenido h1 {
    margin: 0;
    padding: 0;
    font-size: 22px;
    margin-bottom: 15px;
}

.contenido small {
    color: #a1a1a1;
    font-size: 16px;
}

.contenido h2,
h3 {
    margin: 0;
    padding: 0;
    margin-bottom: 5px;
}

.contenido h2 {
    color: var(--tts-primary-color);
}

.contenido h3 {
    font-size: 18px;
}

.contenido .detalle-item {
    margin-top: 17px;
}

.contenido .alert-normal {
    margin-top: 30px;
    margin-bottom: 40px;
    /*padding: 16px;*/
    /*border: var(--tts-primary-color) solid 2px;*/
    color: var(--tts-primary-color);
    border-radius: 15px;
    font-weight: 700;
    /*text-align: center;*/
}

.contenido .best-option {
    width: 100%;
    object-fit: cover;
    border-radius: 10px 10px;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
}

.contenido .best-option .tarjeta {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    border: #d1d1d1 solid 1px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    min-height: 175px;
}


.contenido .best-option .tarjeta h3 {
    margin-top: 0px;
}

.contenido .best-option .img {
    flex: auto !important;
    background-size: cover;
}

.toggle-carousel-btn {
    background-color: #000000a1;
    color: #FFF;
    padding: 5px 14px;
    border-radius: 5px;
    position: absolute;
    bottom: 30px;
    right: 20px;
    cursor: pointer;
}

.toggle-carousel-btn:hover {
    background-color: #000;
}

.flotante-detalle {
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
    border: #d1d1d1 1px solid;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flotante-active {
    box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    bottom: 0px;
    z-index: 100;
    margin: 0;
    border-radius: 0;
    bottom: 0px;
    padding: 10px 20px 10px 20px;
}

.flotante-active button {
    margin: 0;
}

.flotante-detalle .descuento {
    background-color: #fff;
    border: 1px solid #fff;
    color: var(--tts-primary-color);
    font-weight: bold;
    display: inline-block;
    margin-top: 5px;
    margin-right: 20px;
    padding: 4px 4px 2px 4px;
    border-radius: 5px;
    transform: translateY(-5px);
    font-size: 16px;
    line-height: 1;
}

.flotante-detalle .quiero-btn {
    border-radius: 5px;
    flex-wrap: nowrap;
    width: auto;
    display: flex;
    align-items: center;
    padding: 24px 20px;
    font-size: 18px;
    font-weight: 700;
}


.modificadores-content {
    display: flex;
    border: #a1a1a1 solid 1px;
    border-radius: 10px;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    margin-top: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.modificadores-content button {
    width: 100px;
    margin-left: auto;
    padding: 24px 20px;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}



/* Fondo modal: negro con opacidad al 50% */
.modal-cm {
    display: none;
    /* Por defecto, estará oculto */
    position: fixed;
    /* Posición fija */
    z-index: 100;
    /* Se situará por encima de otros elementos de la página*/
    left: 0;
    top: 0;
    width: 100%;
    /* Ancho completo */
    height: 100%;
    /* Algura completa */
    overflow: auto;
    /* Se activará el scroll si es necesario */
    background-color: rgb(0 0 0 / 76%);
    /* Color negro con opacidad del 50% */
}

/* Ventana o caja modal */
.modal-cm .contenido-modal {
    position: relative;
    /* Relativo con respecto al contenedor -modal- */
    background-color: white;
    border: #a1a1a1 solid 1px;
    margin: auto;
    /* Centrada */
    padding: 20px;
    max-width: 425px;
    -webkit-animation-name: animarsuperior;
    -webkit-animation-duration: 0.5s;
    animation-name: animarsuperior;
    animation-duration: 0.5s;
    border-radius: opx 0px 9px 9px;
}

.modal-cm .contenido-modal .modal-cm-cerrar {
    font-size: 3rem;
    color: #000;
}

.modal-cm .contenido-modal .modal-cm-cerrar:hover {
    color: #000;
    font-size: 3rem;
    cursor: pointer;
}

.modal-cm .mc-header {
    color: var(--tts-primary-color);
    margin: 0px;
    margin-bottom: 17px;
    display: flex;
    align-items: center;
}

.modal-cm .mc-header h2 {
    margin: 0;
}



.btn-paquete {
    padding: 24px 20px;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    flex-direction: column-reverse;
    align-content: center;
    justify-content: center;
}

.flex-horizontal{
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
}
.flex-horizontal .small {
    padding-left: 5px;

}
.flex-horizontal span {
    padding-right: 5px;
}

.fa-star {
    color: #ffdd55;
    margin-right: 5px;
}

#fecha-contenedor {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

#fecha-contenedor .ui-widget.ui-widget-content {
    border: none;
}

#fecha-contenedor .ui-datepicker {
    width: 100% !important;
}

#fecha-contenedor div.ui-datepicker-header {
    background-color: transparent;
    color: #393939;
    border: none;
    border-bottom: #a1a1a1 solid 1px;
}

#fecha-contenedor .ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
    color: #393939 !important;
}


.pasajero-controlador {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

.pasajero-controlador input {
    border: none;
    width: 50px;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
}

.pasajero-controlador span {
    border: #393939 solid 2px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    display: inline-block;
    font-size: 18px;
    width: 40px;
    height: 40px;
    padding-top: 3%;
    text-align: center;
    color: var(--tts-primary-color);
}

.pasajero-controlador .disable {
    color: #a1a1a1 !important;
}

.form-input-cm {
    width: 100%;
    margin: 5px 0 22px 0;
    border: none;
    border-radius: 5px;
    border: #d5d5d5 solid 1px;
    padding: 1px;
    position: relative;
}

.form-input-cm input {
    width: 100%;
    padding: 10px;
    border: none;
}

.form-input-cm input:focus,
input:focus-visible {
    border: none;
}

.form-input-cm label {
    position: absolute;
    top: calc(50% - 9px);
    left: 7px;
}

/* Al hacer focus o si tiene contenido, sube el label */
.form-input-cm input:focus+label,
.form-input-cm input:not(:placeholder-shown)+label {
    top: -8px;
    left: 7px;
    font-size: 12px;
    color: var(--tts-primary-color, #3498db);
    background-color: #FFF;
    padding-left: 5px;
    padding-right: 5px;
}

.editor-fecha-pax {
    position: absolute;
    height: 40px;
    width: 100%;
    top: 3px;
    cursor: pointer;
}

.modificadores-label {
    display: flex;
    flex-direction: row;
    flex: auto;
}

@media (max-width: 337px) {

}

@media (max-width: 425px) {
    .modal-cm .contenido-modal {
        width: calc(100% - 30px);
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 86px;
    }

    .flotante-detalle .container {
        width: 100% !important;
    }

    .contenido .best-option {
        flex-direction: column !important;
    }

    .modificadores-content {
        align-items: normal;
    }

    .modificadores-label {
        flex-direction: column;
    }

    .movil-hiden {
        display: none !important;
        transform: translateY(-10px);
        opacity: 0;
        transition: opacity 0.5s ease, transform 0.5s ease;
    }
    #quiero-btn.quiero-btn-flotante {
        position: absolute;
        right: 10px;
        top: 38%;
        box-shadow: none;
        transform: translateY(-50%);
    }
}

@media (min-width: 768px) {
    .flotante-detalle .precio-contenedor {
        min-width: 230px;
    }

    .flotante-active {
        padding: 20px 20px 20px 20px;
    }
}

@media (max-width: 357px) {
    .flotante-detalle .descuento {
        margin-left: 0;
        margin-top: 0px !important;
    }
}

@media (max-width: 767px) {
    footer a.logoWeb {
        display: none;
    }
}

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

.container {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

.burger-menu {
    font-size: 24px;
}

.grid-images table {
    width: 100%;
}

.grid-images td {
    border: 2px solid white;
}

.grid-images .img-1 {
    width: 60%;
    height: 300px;
}

.grid-images .img-2 {
    width: 40%;
    height: 194px;
}

.grid-images .img-3 {
    width: 50%;
    height: 106px;
}

.grid-images .img-4 {
    width: 50%;
    height: 106px;
}

.grid-images img {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover;
}

.grid-images .img-mosaico {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.whatsapp-float{
    bottom: 130px;
}

#fecha-especifica{
    width: 100%;
    padding: 10px;
    border: #a7a7a7 solid 1px;
    border-radius: 5px;
}

.mi-select2-personalizado {
    border: 2px solid #00aaff;
    border-radius: 6px;
}
.mi-select2-personalizado .select2-selection--single {
    padding: 12px;
}
#form-fecha-personas .select2-container .select2-selection--single {
    height: auto;       /* Permite que crezca con padding */
    min-height: 49px;   /* Ajusta si quieres un mínimo */
    padding: 10px 12px; /* Padding vertical y horizontal */
}
#form-fecha-personas .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 49px;
    position: absolute;
    top: 0px;
    right: 10px;
    width: 20px;
}
#form-fecha-personas .select2-container .select2-selection--single .select2-selection__rendered {
    display: block;
    padding-left: 0px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #E52629 !important;
    color: white;
}

#flotante {
    background-color: #1B1B1B;
    border: none;
    border-top: 1px solid #fff;
}

#flotante .movil-hiden, #flotante .precio-contenedor h3, #flotante .precio-flotante {
    color: #fff !important;
}

#flotante .precio-contenedor small {
    color: #ccc !important;
}

.titulo-detalle {
    margin-bottom: 15px;
}

.titulo-flotante {
    margin: 0;
}
.cuotas-flotante {
    display: flex;
    align-items: center;
}
.subtitulo-flotante
{
    color: #ccc !important;
    font-size: 16px;
    font-weight: 400;
}
.cuotas-flotante-mobile
{
    margin-top: 5px;
    display: none;
}
.detalle-contenedor {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.info-contenedor {
    flex-grow: 1;
}

.descuento.descuento-mobile-xxs {
    display: none;
    margin: 0;
    transform: none;
    margin-left: 30px;
    white-space: nowrap;
}

.itinerario-count{
    background-color: #000000a1;
    color: #FFF;
    padding: 5px 14px;
    border-radius: 5px;
    position: absolute;
    bottom: 30px;
    right: 20px;
    cursor: pointer;
}

@media (max-width: 769px) {
    .cuotas-flotante-mobile {
        display: flex;
    }
    h3.precio-base
    {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 3px;
    }
}

@media (max-width: 500px) {
    .precio-flotante .descuento {
        display: none;
    }
    .descuento.descuento-mobile-xxs {
        display: inline-block;
    }
}


#carusel-estatico .img-banner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 306px;
}