
/***************************** HUÉSPEDES *****************************/
body.no-scroll {
    overflow: hidden;
    height: 100vh;
}

.btn--outline {
    border-width: 1px;
    border-style: solid;
}
.btn--outline:hover {}
.btn--default {
    background-color: inherit;
    color: inherit;
}
.btn--default:hover {
    background-color: inherit;
    color: inherit;
    border-color: inherit;
}

.btn--style-a {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}
.btn--style-a:hover {
    background-color: #fff;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn--style-b {
    background-color: #fff;
    color: var(--primary-color);
    border-color: #fff;
}
.btn--style-b:hover {
    background-color: #fff;
    color: #fff;
    border-color: #fff;
}

body .thickbox.rooms-data,
body .thickbox.hotels-data {
    top: auto !important;
    bottom: 30px !important;
    left: -60px !important;
    height: auto;
    width: auto;
    max-width: 600px;
    display: flex;
    align-items: center;
    z-index: 220;
    display: flex;
    align-items: center;
    justify-content: center;
}

body .thickbox.rooms-data .rooms-modal-pop-up,
body .thickbox.hotels-data .rooms-modal-pop-up {
    background-color: var(--primary-color);
    padding: 15px 20px;
}

body .thickbox.rooms-data .close,
body .thickbox.hotels-data .close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    position: absolute;
    top: 5%;
    right: 30px;
    text-decoration: none;
    font-size: 16px;
}

body .thickbox.rooms-data .rooms-modal-pop-up .room,
body .thickbox.hotels-data .rooms-modal-pop-up .hotel {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 535px;
    position: relative;
    grid-gap: 30px;
}

body .thickbox.rooms-data .rooms-modal-pop-up .room .ages-inputs {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    grid-gap: 30px;
}

body .thickbox.rooms-data .rooms-modal-pop-up .room .ages-inputs .ages-label {
    margin: 0 15px 0 0;
    min-width: 58px;
    max-width: 60px;
    color: #fff;
}

body .thickbox.rooms-data .rooms-modal-pop-up .room .ages-inputs .ages-container {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    grid-gap: 30px;
}

body .thickbox.rooms-data .rooms-modal-pop-up .room select {
    width: 115px;
    padding: 5px 10px;
    outline: 0;
    border: none;
    border-bottom: 1px solid #fff;
    color: #fff;
    filter: brightness(0) saturate(100%) invert(100%) sepia(95%) saturate(0%) hue-rotate(163deg) brightness(105%) contrast(105%);
    background-color: transparent;
    background-position: right 0px center;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    -webkit-appearance: none; /* Eliminar la apariencia por defecto del navegador */
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}
body .thickbox.rooms-data .rooms-modal-pop-up .room select option{
    color: #000;
}

body .thickbox.rooms-data>div .room .icon {
    position: relative;
}


body .thickbox.rooms-data .rooms-modal-pop-up .room .icon.adult::after,
body .thickbox.rooms-data>div .room .icon.child::after,
body .thickbox.rooms-data>div .room .icon.baby::after {
    content: "";
    position: absolute;
    width: 17px;
    height: 17px;
    background-image: url("../../../images/guests-mask/adult-icon.png");
    background-size: cover;
    top: 6px;
    right: 25px;
    filter: var(--image-filter-icon-white);
}

body .thickbox.rooms-data .rooms-modal-pop-up .room .icon.child::after {
    background-image: url("../../../images/guests-mask/children-icon.png");
}

body .thickbox.rooms-data .rooms-modal-pop-up .room .icon.baby::after {
    background-image: url("../../../images/guests-mask/baby-icon.png");
}

body .thickbox.rooms-data .rooms-modal-pop-up #rooms {
    max-height: 60vh;
    margin-bottom: 30px;
    overflow: auto;
    grid-gap: 30px;
    display: flex;
    flex-direction: column;
}

body .thickbox.rooms-data .rooms-modal-pop-up .room .icon.remove {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    position: absolute;
    right: 0;
    top: 2px;
    font-size: 1.5rem;
    font-weight: 700;
}

body .thickbox.rooms-data .rooms-modal-pop-up .room .room-title {
    margin:  0 15px 0 0;
    display: flex;
    align-items: center;
    min-width: 60px;
    color: #fff;
}

body .thickbox.rooms-data .rooms-modal-pop-up .action-buttons-container {
    display: flex;
    gap: 10px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding-bottom: 10px;
}

body .thickbox.rooms-data .rooms-modal-pop-up .guests-accept:hover {
    border-color: #fff;
    background-color: var(--primary-color);
    color: #fff;
}

body .thinkbox__btn {
    display: inline-block;
    width: auto;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    text-transform: none;
    cursor: pointer;
    border-width: 1px;
    border-style: solid;
}

body .promo-container {
    padding: 30px 15px;
}

body .promo-container .field {
    text-align: center;
    margin-bottom: 30px;
}

body .promo-container .form-control {
    text-align: center;
    border-bottom: 1px solid #fff;
}

body .promo-container .form-control::placeholder {
    text-align: center;
}

@media screen and (max-width: 1366px) {
    body .thickbox.rooms-data,
    body .thickbox.hotels-data {
        left: 0;
        bottom: auto;
    }
}
@media screen and (max-width: 1366px) {
    body .thickbox.rooms-data .rooms-modal-pop-up #rooms {
        max-height: 50vh;
    }
}
@media screen and (max-width: 519px) {
    body .thickbox.rooms-data>div {
        padding: var(--mobile-section-space) 15px 15px 15px;
        width: 95vw;
        height: 80vh;
    }

    body .thickbox.rooms-data .rooms-modal-pop-up .room {
        flex-direction: column;
        width: 100%;
    }

    body .thickbox.rooms-data .rooms-modal-pop-up .room select,
    body .thickbox.rooms-data>div .promo-code-container input {
        width: 100%;
    }

    body .thickbox.rooms-data .rooms-modal-pop-up .room .ages-inputs select:nth-child(4) {
        margin-left: 15px;
    }

    body .thickbox.rooms-data .rooms-modal-pop-up .room .icon.remove {
        justify-content: center;
    }

    body .thickbox.rooms-data .rooms-modal-pop-up #rooms {
        margin-top: 50px;
    }

    body .thickbox.rooms-data .rooms-modal-pop-up .room .ages-inputs {
        flex-direction: column;
    }
    body .thickbox.rooms-data,
    body .thickbox.hotels-data {
        position: fixed;
        top: 50% !important;
        bottom: auto !important;
        left: 50% !important;
        transform: translate(-50%, -50%) ;
    }


    body .thickbox.rooms-data .rooms-modal-pop-up .room .icon.remove {
        right: 30px;
    }
    body .thickbox.rooms-data .rooms-modal-pop-up,
    body .thickbox.hotels-data .rooms-modal-pop-up {
        border-radius: 0;
    }

    body .thickbox.rooms-data .rooms-modal-pop-up .action-buttons-container {
        flex-direction: column;
    }

    body .thickbox.rooms-data .rooms-modal-pop-up .action-buttons-container button {
        width: 100%;
    }
}
/*************************FIN HUÉSPEDES*****************************/