/* ============================================================
   BOOTSTRAP 5 → BOOTSTRAP 3 SHIM
   Compatibilidade das utilitárias do BS5 usadas nos templates
   de hotéis, agora rodando sobre Bootstrap 3.
   ============================================================ */

/* Grid: col-* (BS5) ↔ col-xs-* (BS3) */
.col-1, .col-2, .col-3, .col-4, .col-5, .col-6,
.col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
    float: left;
    box-sizing: border-box;
}
.col-1  { width: 8.3333%; }
.col-2  { width: 16.6667%; }
.col-3  { width: 25%; }
.col-4  { width: 33.3333%; }
.col-5  { width: 41.6667%; }
.col-6  { width: 50%; }
.col-7  { width: 58.3333%; }
.col-8  { width: 66.6667%; }
.col-9  { width: 75%; }
.col-10 { width: 83.3333%; }
.col-11 { width: 91.6667%; }
.col-12 { width: 100%; }

/* Display utilities (BS5 → BS3) */
.d-none         { display: none !important; }
.d-block        { display: block !important; }
.d-inline       { display: inline !important; }
.d-inline-block { display: inline-block !important; }
.d-flex         { display: flex !important; }
.d-inline-flex  { display: inline-flex !important; }

@media (min-width: 768px) {
    .d-md-none         { display: none !important; }
    .d-md-block        { display: block !important; }
    .d-md-inline       { display: inline !important; }
    .d-md-inline-block { display: inline-block !important; }
    .d-md-flex         { display: flex !important; }
}
@media (min-width: 992px) {
    .d-lg-none  { display: none !important; }
    .d-lg-block { display: block !important; }
    .d-lg-flex  { display: flex !important; }
}

/* Flex utilities */
.justify-content-start    { justify-content: flex-start !important; }
.justify-content-end      { justify-content: flex-end !important; }
.justify-content-center   { justify-content: center !important; }
.justify-content-between  { justify-content: space-between !important; }
.justify-content-around   { justify-content: space-around !important; }
.align-items-start    { align-items: flex-start !important; }
.align-items-end      { align-items: flex-end !important; }
.align-items-center   { align-items: center !important; }
.align-items-stretch  { align-items: stretch !important; }

/* Text utilities */
.text-start  { text-align: left !important; }
.text-end    { text-align: right !important; }
.text-center { text-align: center !important; }

/* Sizing */
.w-100 { width: 100% !important; }
.w-75  { width: 75% !important; }
.w-50  { width: 50% !important; }
.w-25  { width: 25% !important; }
.h-100 { height: 100% !important; }

/* Spacing (BS5 mapeado para a escala 0/.25/.5/1/1.5/3 rem) */
.m-0  { margin: 0 !important; }
.mt-0 { margin-top: 0 !important; }     .mb-0 { margin-bottom: 0 !important; }
.ms-0 { margin-left: 0 !important; }    .me-0 { margin-right: 0 !important; }
.mx-0 { margin-left: 0 !important; margin-right: 0 !important; }
.my-0 { margin-top: 0 !important; margin-bottom: 0 !important; }

.m-1  { margin: .25rem !important; }
.mt-1 { margin-top: .25rem !important; }     .mb-1 { margin-bottom: .25rem !important; }
.ms-1 { margin-left: .25rem !important; }    .me-1 { margin-right: .25rem !important; }
.mx-1 { margin-left: .25rem !important; margin-right: .25rem !important; }
.my-1 { margin-top: .25rem !important; margin-bottom: .25rem !important; }

.m-2  { margin: .5rem !important; }
.mt-2 { margin-top: .5rem !important; }      .mb-2 { margin-bottom: .5rem !important; }
.ms-2 { margin-left: .5rem !important; }     .me-2 { margin-right: .5rem !important; }
.mx-2 { margin-left: .5rem !important; margin-right: .5rem !important; }
.my-2 { margin-top: .5rem !important; margin-bottom: .5rem !important; }

.m-3  { margin: 1rem !important; }
.mt-3 { margin-top: 1rem !important; }       .mb-3 { margin-bottom: 1rem !important; }
.ms-3 { margin-left: 1rem !important; }      .me-3 { margin-right: 1rem !important; }
.mx-3 { margin-left: 1rem !important; margin-right: 1rem !important; }
.my-3 { margin-top: 1rem !important; margin-bottom: 1rem !important; }

.m-4  { margin: 1.5rem !important; }
.mt-4 { margin-top: 1.5rem !important; }     .mb-4 { margin-bottom: 1.5rem !important; }
.ms-4 { margin-left: 1.5rem !important; }    .me-4 { margin-right: 1.5rem !important; }

.m-5  { margin: 3rem !important; }
.mt-5 { margin-top: 3rem !important; }       .mb-5 { margin-bottom: 3rem !important; }
.ms-5 { margin-left: 3rem !important; }      .me-5 { margin-right: 3rem !important; }

.p-0  { padding: 0 !important; }
.pt-0 { padding-top: 0 !important; }    .pb-0 { padding-bottom: 0 !important; }
.ps-0 { padding-left: 0 !important; }   .pe-0 { padding-right: 0 !important; }
.px-0 { padding-left: 0 !important; padding-right: 0 !important; }
.py-0 { padding-top: 0 !important; padding-bottom: 0 !important; }

.p-1  { padding: .25rem !important; }
.pt-1 { padding-top: .25rem !important; }   .pb-1 { padding-bottom: .25rem !important; }
.ps-1 { padding-left: .25rem !important; }  .pe-1 { padding-right: .25rem !important; }
.px-1 { padding-left: .25rem !important; padding-right: .25rem !important; }
.py-1 { padding-top: .25rem !important; padding-bottom: .25rem !important; }

.p-2  { padding: .5rem !important; }
.pt-2 { padding-top: .5rem !important; }    .pb-2 { padding-bottom: .5rem !important; }
.ps-2 { padding-left: .5rem !important; }   .pe-2 { padding-right: .5rem !important; }
.px-2 { padding-left: .5rem !important; padding-right: .5rem !important; }
.py-2 { padding-top: .5rem !important; padding-bottom: .5rem !important; }

.p-3  { padding: 1rem !important; }
.pt-3 { padding-top: 1rem !important; }     .pb-3 { padding-bottom: 1rem !important; }
.ps-3 { padding-left: 1rem !important; }    .pe-3 { padding-right: 1rem !important; }
.px-3 { padding-left: 1rem !important; padding-right: 1rem !important; }
.py-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }

@media (min-width: 768px) {
    .mt-md-0 { margin-top: 0 !important; }       .mb-md-0 { margin-bottom: 0 !important; }
    .ms-md-0 { margin-left: 0 !important; }      .me-md-0 { margin-right: 0 !important; }
    .pt-md-0 { padding-top: 0 !important; }      .pb-md-0 { padding-bottom: 0 !important; }
    .ps-md-0 { padding-left: 0 !important; }     .pe-md-0 { padding-right: 0 !important; }
    .mt-md-3 { margin-top: 1rem !important; }    .mb-md-3 { margin-bottom: 1rem !important; }
}

/* Forms (BS5 → BS3) */
.form-select {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}
.form-select-sm { height: 28px; padding: 4px 8px; font-size: 12px; }
.form-label     { display: inline-block; margin-bottom: .5rem; }

/* form-check (BS5) ↔ checkbox/radio (BS3) */
.form-check       { position: relative; display: block; padding-left: 1.5em; margin-bottom: .125rem; }
.form-check-input { float: left; margin-left: -1.5em; margin-top: .25em; }
.form-check-label { margin-bottom: 0; }

/* input-group: BS5 usa input-group-text, BS3 usa input-group-addon */
.input-group-text {
    display: table-cell;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: #555;
    text-align: center;
    background-color: #eee;
    border: 1px solid #ccc;
    border-radius: 4px;
    white-space: nowrap;
    vertical-align: middle;
}

/* Imagens / acessibilidade */
.img-fluid { display: block; max-width: 100%; height: auto; }
.visually-hidden {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0);
    white-space: nowrap; border: 0;
}

/* Botão de fechar (BS5) */
.btn-close {
    box-sizing: content-box;
    width: 1em; height: 1em;
    padding: .25em;
    color: #000;
    background: transparent;
    border: 0;
    opacity: .5;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
}
.btn-close::before { content: "\00d7"; font-weight: 700; font-size: 1.5em; }
.btn-close:hover { opacity: 1; }

/* container-md (BS5 só existe a partir de 768px) */
@media (max-width: 767px) {
    .container-md { width: auto; padding-left: 0; padding-right: 0; }
}

/* Clearfix automático para .row do BS3 quando usado com .col-* (BS5) */
.row::after { content: ""; display: table; clear: both; }

/* HEADER */
@media (min-width: 1400px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1170px;
    }
}

.navbar-default {
    margin: 0;
    padding: 0;
}

#navbarNav {
    padding-right: 0;
}

#mainmenu a {
    display: block;
}

#mainmenu a.logo-vpd {
    margin: 0;
    padding: 0;
}

.menu-california .dropdown-toggle::after {
    content: none;
}

span.cart-product-count {
    position: absolute;
    top: 29px;
    right: 25px;
    background: #00b2a6;
    border-radius: 50%;
    color: #fff;
    width: 19px;
    height: 18px;
    font-size: 9px;
    padding-bottom: 20px;
    border: none;
    text-align: center;
}

/* Mobile Menu */

a.btn-close {
    --bs-btn-close-bg: none;
}

@media (max-width: 768px) {
    li.menu-item a {
        padding: 10px 0;
        display: block;
    }
}

/* ------------------------------------------------------
    BUTTONS 
------------------------------------------------------ */

.btn-submit {
    color: #FFF;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 7px;
    padding: 15px;
    border: none;
}

.btn {
    color: #FFF;
    font-size: 14px;
    font-weight: 500;
    text-transform: lowercase;
    border-radius: 10px;
    background: #00294C;
    padding: 12px 25px;
    border: none;
}

.btn--blue-dark-gradient {
    background: linear-gradient(180deg, #00294C 0%, #034C8B 98.35%);
    transition: all .3s;
}

.btn--blue-dark-gradient:hover {
    background: linear-gradient(180deg, #00294C 0%, #00427b 98.35%);
}

.btn--blue-dark {
    color: #fff;
    background: #00294C;
}

.btn--blue-dark:hover {
    color: #fff;
    background: #004b8c;
}


.btn--white-g {
    color: #fff;
    background: transparent;
    border: solid 1px #fff;
}

.btn--white-g:hover {
    color: #00294C;
    background: #fff;
    border: solid 1px #fff;
}

.hotels-home-search__form .btn-people {
    padding: 0;
    color: #000;
    background: #fff;
    border-radius: 0;
    font-size: 14px;
    border: none;
    height: 22px !important;
    display: block;
    width: 100%;
    text-align: left;
}

.edit-selection-details .btn-people {
    font-size: 14px;
    font-weight: 500;
    text-transform: lowercase;
    border-radius: 10px;
    background-color: #fff;
    padding: 8px 14px;
    border: solid 1px #bdc3c7 ;
    width: 100%;
    text-align: left;
    color: #34495e;
}

.btn-people:focus {
    outline: none !important;
}

.dropdown-menu {
    background: #fff;
    border-radius: 5px;
    border: 1px solid #D2D2D2;
}
@media (max-width: 768px) {
    .dropdown-menu {
        padding-top: 10px;
    }
}


.dropdown-menu>li>a:hover {
    background: #fff;
}

select.form-select.form-control {
    border: 1px solid #D2D2D2;
}

.children-age-inputs {
    margin: 0 24px;
}

.close-people-selection {
    padding: 18px;
    padding-top: 8px;
}

span.dropdown-item.btn-close-dropdown {
    text-align: center;
    border: solid 1px #00294C;
    color: #00294C;
    background: #f7f7f7;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    display: inline-block;
    padding: 6px;
}



/* ------------------------------------------------------
    PAGES 
------------------------------------------------------ */
.general-pagewrap {
    background-color: #fff;
}

.pages {
    margin-top: 40px;
    background: #fff;
    font-family: 'Montserrat', sans-serif;
    padding-bottom: 80px;
}

.page-hoteis {
    font-family: 'Montserrat', sans-serif !important;
}

.form-control, .select2-search input[type=text] {
    font-family: 'Montserrat', sans-serif !important;
}
/* ------------------------------------------------------
    HOTEIS 
------------------------------------------------------ */

.page-hotels-home.pages {
    margin-top: 0;
}


/* hoteis vitrine */
.hotels-home-header {
    position: relative;
    overflow: hidden;
}


.hotels-home-header .hotels-title {
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
    left: 0;
    top: 0;
    padding-top: 60px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.50) 32.22%, rgba(0, 0, 0, 0.80) 61.78%);
}

@media (min-width: 768px) {
    .hotels-home-header .hotels-title {
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        padding: 25px 35px;
        text-align: left;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.70) 61.78%);

        display: flex;
        align-items: center;
        justify-content: start;
    }
}

.hotels-title h1 {
    color: #FFF;
    font-size: 27px;
    font-weight: 800;
    margin: 0;
}

.hotels-home-search {
    margin-top: -60px;
}

/* Mobile-only fix:
   evita quebra do layout da vitrine (overflow horizontal e campos na mesma linha). */
@media (max-width: 767px) {
    .page-hotels-home.pages {
        overflow-x: hidden;
    }

    .page-hotels-home .hotels-home-header img {
        width: 100% !important;
        display: block;
    }

    .page-hotels-home .hotels-home-search {
        margin-top: -60px;
    }

    .page-hotels-home .hotels-home-search__form {
        padding: 10px 10px 12px;
    }

    .page-hotels-home .hotels-home-search__form .row.d-flex {
        display: block !important;
        width: auto !important;
        margin-left: -15px;
        margin-right: -15px;
    }

    .page-hotels-home .hotels-home-search__form .row.d-flex>[class*="col-"],
    .page-hotels-home .hotels-home-search__form .row.d-flex>.col-md-2,
    .page-hotels-home .hotels-home-search__form .row.d-flex>.col-md-3 {
        float: none;
        width: 100% !important;
        max-width: 100%;
        display: block;
        padding-left: 15px !important;
        padding-right: 15px !important;
        margin-bottom: 8px !important;
    }

    .page-hotels-home .hotels-home-search__form .row.d-flex>.col-md-2:last-child {
        margin-bottom: 0 !important;
    }

    .page-hotels-home .hotels-home-search__form .btn-submit {
        width: 100%;
    }
}

.hotels-home-search__form {
    background: #fff;
    border-radius: 10px;
    padding: 10px 15px 15px;
    position: relative;
    z-index: 10;
    box-shadow: 0px 0px 6px -2px rgba(0, 0, 0, 0.30);
}

.hotels-home-search__form .input-item {
    border-radius: 7px;
    border: 1px solid #D2D2D2;
    padding: 10px;
}

.hotels-home-search__form .input-item input {
    padding: 0 5px;
    height: auto;
}

.hotels-home-search__form label {
    color: #9d9d9d;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: normal;
    margin-bottom: 0px;
    display: block;
    padding: 3px 0;
}

.hotels-home-search__form .input-group {
    margin-top: 0px;
    height: 22px !important;
}

.hotels-home-search__form input {
    border: 0;
    background: #fff;
    color: #000;
}

.hotels-home-search__form span.input-group-text {
    background: #fff;
    border: 0;
    padding: 0;
    width: 18px;
}


p.price.ng-binding.priceFull {
    margin: 0;
    margin-bottom: -5px;
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
}

/* location input */

.page-hotels-home select#location,
.page-hotels-details select#location,
#editSearchMobile select#location {
    height: auto;
}

.page-hotels-home .input-group,
.page-hotels-details .input-group,
#editSearchMobile .input-group {
    position: relative;
}

.page-hotels-home span.input-group-text {
    width: 18px;
}

.page-hotels-home .absolute-icon,
.page-hotels-results .absolute-icon,
#editSearchMobile .absolute-icon {
    position: absolute;
    top: 5px;
    left: 0;
    z-index: 10;
}

.page-hotels-details .absolute-icon,
#editSearchMobile .absolute-icon {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    height: 100%;
}

/* Offcanvas mobile (resultados): check-in/check-out com input-group 100%
   e coluna fixa de ícone com 40px. */
@media (max-width: 767px) {
    #editSearchMobile .date-mobile-item .input-group {
        width: 100% !important;
        display: flex;
        align-items: center;
    }

    #editSearchMobile .date-mobile-item .input-group>span.input-group-text {
        width: 40px !important;
        min-width: 40px !important;
        max-width: 40px !important;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }

    #editSearchMobile .date-mobile-item .input-group>input.form-control {
        flex: 1 1 auto;
        min-width: 0;
        width: calc(100% - 40px) !important;
    }
}

.page-hotels-home .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn),
.page-hotels-details .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn),
#editSearchMobile .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    display: block !important;
}

/* Localização (home): o selectpicker usa .input-group-btn e precisa ser travado
   para não expandir pela largura do texto selecionado. */
.page-hotels-home .input-group {
    width: 100%;
    table-layout: fixed;
}

.page-hotels-home .input-group .bootstrap-select.input-group-btn {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
}

.page-hotels-home .input-group .bootstrap-select.input-group-btn>.dropdown-toggle {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
}

.page-hotels-home .input-group .input-group-btn {
    width: 100% !important;
}

/* Localização (resultados + offcanvas mobile): mesmo comportamento da vitrine */
.page-hotels-results .location-input-item .input-group,
#editSearchMobile .location-input-item .input-group {
    width: 100%;
    table-layout: fixed;
}

.page-hotels-results .location-input-item .input-group .bootstrap-select.input-group-btn,
#editSearchMobile .location-input-item .input-group .bootstrap-select.input-group-btn {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
}

.page-hotels-results .location-input-item .input-group .bootstrap-select.input-group-btn>.dropdown-toggle,
#editSearchMobile .location-input-item .input-group .bootstrap-select.input-group-btn>.dropdown-toggle {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
}

.page-hotels-results .location-input-item .input-group .input-group-btn,
#editSearchMobile .location-input-item .input-group .input-group-btn {
    width: 100% !important;
}

/* .dropdown.bootstrap-select.show-tick {
    margin-top: -10px;
} */

.page-hotels-home .bootstrap-select>.dropdown-toggle,
.page-hotels-home button.btn.dropdown-toggle.btn-light {
    float: left;
    width: 100%;
    min-height: 22px !important;
    padding: 0 34px 0 30px;
    color: #000 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0;
    line-height: 22px !important;
    box-shadow: none !important;
    height: 22px !important;
}

.page-hotels-home .input-group-btn .btn,
.page-hotels-home .input-group-btn .btn-default,
.page-hotels-home .input-group-btn .btn-default:hover {
    min-height: 22px !important;
    height: 22px !important;
    line-height: 22px !important;
}

/* Home: Check-in / Check-out com altura fixa de 22px */
.page-hotels-home .hotels-home-search__form input#checkin,
.page-hotels-home .hotels-home-search__form input#checkout {
    min-height: 22px !important;
    height: 22px !important;
    line-height: 22px !important;
    padding: 0 5px !important;
}

.page-hotels-home .hotels-home-search__form input#checkin.form-control,
.page-hotels-home .hotels-home-search__form input#checkout.form-control {
    min-height: 22px !important;
    height: 22px !important;
}

.page-hotels-home .hotels-home-search__form .input-group>span.input-group-text {
    min-height: 22px !important;
    height: 22px !important;
}

.page-hotels-home .bootstrap-select>.dropdown-toggle.btn-default,
.page-hotels-home .bootstrap-select>.dropdown-toggle.btn-light {
    color: #000 !important;
    background: transparent !important;
    border: 0 !important;
}

.page-hotels-home .bootstrap-select .filter-option,
.page-hotels-home .bootstrap-select .filter-option-inner,
.page-hotels-home .bootstrap-select .filter-option-inner-inner {
    color: #000 !important;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px !important;
    height: 22px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    display: block;
    width: 100% !important;
    max-width: 100% !important;
}

.page-hotels-home .bootstrap-select .filter-option {
    top: 0 !important;
}

.page-hotels-results .location-input-item .bootstrap-select .filter-option,
.page-hotels-results .location-input-item .bootstrap-select .filter-option-inner,
.page-hotels-results .location-input-item .bootstrap-select .filter-option-inner-inner,
#editSearchMobile .location-input-item .bootstrap-select .filter-option,
#editSearchMobile .location-input-item .bootstrap-select .filter-option-inner,
#editSearchMobile .location-input-item .bootstrap-select .filter-option-inner-inner {
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    display: block;
    width: 100% !important;
    max-width: 100% !important;
}

.page-hotels-home .bootstrap-select>.dropdown-toggle.bs-placeholder .filter-option,
.page-hotels-home .bootstrap-select>.dropdown-toggle.bs-placeholder .filter-option-inner,
.page-hotels-home .bootstrap-select>.dropdown-toggle.bs-placeholder .filter-option-inner-inner {
    color: #000 !important;
    opacity: 1;
    height: 22px !important;
    line-height: 22px !important;
}

.page-hotels-home .bootstrap-select .bs-caret,
.page-hotels-home .bootstrap-select .caret {
    color: #000;
}

/* Caret da localização: menor e sempre para baixo */
.page-hotels-home .bootstrap-select .dropdown-toggle .caret,
.page-hotels-home .bootstrap-select.open .dropdown-toggle .caret,
.page-hotels-home .bootstrap-select.dropup .dropdown-toggle .caret {
    border-top: 4px solid #000 !important;
    border-right: 4px solid transparent !important;
    border-left: 4px solid transparent !important;
    border-bottom: 0 !important;
    margin-top: -2px !important;
    transform: none !important;
}

.page-hotels-results .location-input-item .bootstrap-select .dropdown-toggle .caret,
.page-hotels-results .location-input-item .bootstrap-select.open .dropdown-toggle .caret,
.page-hotels-results .location-input-item .bootstrap-select.dropup .dropdown-toggle .caret,
#editSearchMobile .location-input-item .bootstrap-select .dropdown-toggle .caret,
#editSearchMobile .location-input-item .bootstrap-select.open .dropdown-toggle .caret,
#editSearchMobile .location-input-item .bootstrap-select.dropup .dropdown-toggle .caret {
    border-top: 4px solid #000 !important;
    border-right: 4px solid transparent !important;
    border-left: 4px solid transparent !important;
    border-bottom: 0 !important;
    transform: none !important;
}

.page-hotels-home .bootstrap-select .dropdown-toggle:focus,
.page-hotels-home .bootstrap-select.open .dropdown-toggle {
    outline: 0 !important;
    box-shadow: none !important;
}

.page-hotels-home .bootstrap-select .dropdown-menu {
    margin-top: 14px;
    border: 2px solid #d2d2d2;
    border-radius: 12px;
    padding: 10px 0;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
}

.page-hotels-results .location-input-item .bootstrap-select .dropdown-menu,
#editSearchMobile .location-input-item .bootstrap-select .dropdown-menu {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
}

.bootstrap-select .dropdown-toggle .filter-option {
    position: static;
    top: 0;
    left: 0;
    float: left;
    height: 100%;
    width: 100%;
    text-align: left;
    overflow: hidden;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
}
.page-hotels-home .bootstrap-select .dropdown-menu>li>a {
    padding: 8px 16px;
    color: #5b6e86;
    font-size: 12px;
}


.page-hotels-details .bootstrap-select>.dropdown-toggle,
.page-hotels-details button.btn.dropdown-toggle.btn-light {
    color: #000;
    background: #fff;
    padding-left: 50px;
}

#editSearchMobile .bootstrap-select>.dropdown-toggle,
#editSearchMobile button.btn.dropdown-toggle.btn-light {
    color: #000;
    background: #fff;
    padding-left: 50px;
    border-radius: 5px;
    border: 2px solid #bdc3c7;
}


.page-hotels-results .bootstrap-select>.dropdown-toggle,
.page-hotels-results button.btn.dropdown-toggle.btn-light {
    float: left;
    padding: 12px 25px;
    color: #000;
    background: #fff;
    border-radius: 0;
    /* margin-top: -5px; */
}

/* date input */
.date-input-wrapper {
    position: relative;
}

.date-input-wrapper input[type="date"] {
    cursor: pointer;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
}

input[type="date"]::-webkit-inner-spin-button {
    display: none;
}

input[type="date"]::-webkit-clear-button {
    display: none;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
    border: none;
    background: #fff;
    font-weight: normal;
    color: #555;
}

.page-hotels-home .counter-input {
    height: 22px;
}

.page-hotels-details .counter-input {
    border: solid 1px #eee;
    border-radius: 20px;
    /* height: 42px; */
    border: 2px solid #bdc3c7;
    border-radius: 6px;
    color: #000;
    background: #fff;
    padding: 10px 12px;
}

#editSearchMobile .counter-input {
    border: solid 1px #eee;
    border-radius: 20px;
    height: 42px;
    border: 2px solid #bdc3c7;
    border-radius: 6px;
    color: #000;
    background: #fff;
    padding: 4px 12px;
}

.page-hotels-home .counter-input span,
.page-hotels-details .counter-input span,
#editSearchMobile .counter-input span {
    /* padding: 0 10px; */
    padding-right: 10px;
}

.page-hotels-results span.numberAdults,
.page-hotels-results span.numberChildren {
    padding-right: 10px;
}

button.btn-plusminus {
    border: 0;
    background: transparent;
    color: #00294C;
    padding-right: 10px;
}

.page-template-page-brightline-search #ui-datepicker-div {
    display: none;
}

.ui-datepicker .ui-datepicker-title {
    padding: 10px 0;
    text-align: center;
    color: #fff;
    background: #00294C;
}

.ui-datepicker .ui-datepicker-next span,
.ui-datepicker .ui-datepicker-prev span {
    color: #dcfaff;
}



/* destques */

.hotels-home-featured {
    margin-top: 20px;
}

.hotels-home-featured h2 {
    color: #05A7BD;
    text-align: center;
    font-size: 25px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 20px;
}

.hotels-home-featured__item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.hotels-home-featured__item img {
    width: 100%;
    transition: 0.2s all ease-in-out;
}

.hotels-home-featured__item:hover img {
    transform: scale(1.2);
}

.hotels-home-featured__item__overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #00000040;
    padding: 35px 30px;
    transition: 0.2s all ease-in-out;

    display: flex;
    justify-content: start;
    align-items: end;
}

.hotels-home-featured__item:hover .hotels-home-featured__item__overlay {
    background: #00000000;
}

.hotels-home-featured__item__overlay h3 {
    color: #FFF;
    font-size: 23px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0;
}


/* header */

.hotels-results-header {
    position: relative;
    overflow: hidden;
}


.hotels-results-header .hotels-title {
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
    left: 0;
    top: 0;
    padding-top: 60px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.50) 32.22%, rgba(0, 0, 0, 0.80) 61.78%);
}

@media (min-width: 768px) {
    .hotels-results-header {
        border-radius: 20px;
    }

    .hotels-results-header .hotels-title {
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        padding: 25px 35px;
        text-align: left;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 32.22%, rgba(0, 0, 0, 0.80) 61.78%);

        display: flex;
        align-items: end;
        justify-content: start;
    }
}

/* resultados */

.hotels-results {
    margin-top: 0px;
}

@media (min-width: 768px) {
    .hotels-results {
        margin-top: 60px;
    }
}

/* sidebar MOBILE*/

.hotels-search-mobile {
    padding: 30px;
    margin-top: -100px;
    position: relative;
    z-index: 1000;
}

.hotel-search-review {
    background: #00294C;
    border-radius: 20px;
    color: #fff;
    padding: 20px;
}

.hotel-search-review__item {
    color: #FFF;
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 10px;
}

.btn--edit-search {
    color: #fff;
    font-size: 15px;
    font-weight: bold;
}

.btn--edit-search:hover {
    color: var(--green);
}

#editSearchMobile {
    background: #00294C;
    color: #fff;
}

@media screen and (max-width: 992px) {
    #editSearchMobile .offcanvas-header .btn-close {
        background: none;
    }

    #editSearchMobile .btn-close:after {
        color: #fff;
        content: "\f00d";
        font-family: "FontAwesome";
        transition-property: all .2s linear 0s;
        -moz-transition: all .2s linear 0s;
        -webkit-transition: all .2s linear 0s;
        -o-transition: all .2s linear 0s;
        font-size: 24px;
        position: absolute;
        top: 26px;
        right: 14px;
    }
}

/* sidebar */

.hotels-search-sidebar .input-item {
    border-radius: 7px;
    border: 1px solid #D2D2D2;
    padding: 5px 15px;
}

.hotels-search-sidebar button.btn.dropdown-toggle.btn-default {
    border: none;
    width: 100%;
    max-width: 85%;
}

.hotels-search-sidebar label {
    color: #666;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: normal;
    margin-bottom: 0px;
}

.hotels-search-sidebar input {
    border: 0;
    background: #fff;
    color: #000;
}

.hotels-search-sidebar .form-control {
    margin-left: 5px !important;
    background: transparent;
}

.hotels-search-sidebar .form-group.focus .input-group-btn .btn-default, 
.hotels-search-sidebar .input-group.focus .input-group-btn .btn-default {
    color: #34495e;
    background-color: #fff;
}

.hotels-search-sidebar .children-age-resultados .form-select {
    border: 1px solid #D2D2D2 !important;
    margin-left: 0 !important;
    padding-left: 15px !important;
}

.chosen-choices,
.hotels-search-sidebar select {
    border: 0 !important;
    background: #fff;
    color: #000;
    background-image: none !important;
    padding: 0 !important;
    margin-left: 5px !important;
}

li.search-choice {
    background: #f7f7f7 !important;
    border: solid 1px #eee !important;
}

.hotels-search-sidebar span.input-group-text {
    background: #fff;
    border: 0;
    padding-left: 0;
    padding-right: 0;
}

/* listagem resultados */

.hotels-results__info {
    margin-bottom: 20px;
}


.hotels-results__info p {
    font-size: 13px;
    margin: 0;
}

@media (min-width: 768px) {
    .hotels-results__info p {
        font-size: 15px;
    }
}

.hotels-results__info select {
    font-size: 14px;
    padding: 5px;
    padding-left: 11px;
    max-width: 200px;
    height: 34px;
    border: solid 1px #ccc;
    margin-left: 10px;
}

@media (min-width: 768px) {
    .hotels-results__info select {
        margin-left: 0;
    }
}

.hotel-results__item {
    border-radius: 16px;
    background: #FFF;
    box-shadow: 0px 0px 6px -2px rgba(0, 0, 0, 0.50);
    margin-bottom: 25px;
    overflow: hidden;
}


.hotel-results__item__content {
    padding: 20px 25px 25px 15px;
}

.hotel-results__item__image img {
    width: 100%;
}

@media (min-width: 768px) {
    .hotel-results__item>.row {
        display: flex;
        align-items: stretch;
    }

    .hotel-results__item>.row>[class*="col-"] {
        float: none;
        display: flex;
        flex-direction: column;
    }

    .hotel-results__item__image {
        height: 100%;
        display: flex;
    }

    .hotel-results__item__image img {
        width: 100%;
        max-width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        display: block;
    }
}


.hotel-results__item__content h2 {
    color: #414361;
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0;
    margin-bottom: 10px;
}

.hotel-results__item__content p {
    color: #414361;
    font-size: 15px;
    font-weight: 300;
    margin: 0;
}

.hotel-results__item__content__info p {
    margin-bottom: 20px;
    font-size: 13px;
}

p.hotel-region-cat {
    color: #2a2a2a;
    font-weight: 600;
    background: #f7f7f7;
    display: inline-block;
    padding: 4px 8px;
    border-radius: 5px;
    font-size: 12px !important;
    margin-bottom: 12px !important;
    border: solid 1px #eee;
}

@media (min-width: 768px) {
    .hotel-results__item__content__info p {
        margin-bottom: 0;
        font-size: 15px;
    }
}

.hotel-results__item__content__price {}

.hotel-results__item__content__price p {
    color: #414361;
    text-align: left;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.425px;
}

@media (min-width: 768px) {
    .hotel-results__item__content__price p {
        text-align: right;
    }
}

.hotel-results__item__content__price p.price {
    color: #414361;
    font-size: 22px;
    font-weight: 600;
    line-height: 31px;
    letter-spacing: 0.44px;
    margin-bottom: 10px;
}

.hotel-results__item__content__price p.ps {
    color: #414361;
    text-align: left;
    font-size: 11px;
    font-weight: 300;
    line-height: normal;
    margin-top: 10px;
}

@media (min-width: 768px) {
    .hotel-results__item__content__price p.ps {
        text-align: right;
    }
}

@media (max-width: 767px) {
    /* Resultados mobile: conteúdo em coluna única */
    .page-hotels-results .hotel-results__item__content .row.d-flex {
        display: block !important;
    }

    .page-hotels-results .hotel-results__item__content .row.d-flex>[class*="col-"] {
        width: 100% !important;
        max-width: 100% !important;
        float: none;
        display: block;
    }

    .page-hotels-results .hotel-results__item__content__info,
    .page-hotels-results .hotel-results__item__content__price {
        width: 100%;
    }

    .page-hotels-results .hotel-results__item__content__info p.hotel-region-cat {
        display: inline-block;
        margin-bottom: 10px;
    }

    .page-hotels-results .hotel-results__item__content__price {
        text-align: left !important;
        margin-top: 10px;
    }

    .page-hotels-results .hotel-results__item__content__price p,
    .page-hotels-results .hotel-results__item__content__price p.ps {
        text-align: left !important;
    }

    .page-hotels-results .hotel-results__item__content__price .btn {
        display: inline-block;
        margin-top: 10px;
    }
}




/* -------------------------------------- DETALHES -------------------------------------- */

.hotel-details-review-selection {
    background: #00294C;
    padding: 10px 20px;
    border-radius: 20px;
    color: #fff;
    position: relative;
}

.hotel-details-review-selection ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hotel-details-review-selection ul li {
    color: #fff;
    display: block;
    font-size: 14px;
}

.edit-selection__details-form .dropdown-menu  li  {
    display: block;
}


.btn--details-edit-search {
    display: inline-block;
    padding: 10px;
    background: #16a085;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .hotel-details-review-selection ul.hotel-details-review-selection__resume li {
        margin-right: 5px;
        display: inline-block;
        font-size: 15px;
    }

    .hotel-details-review-selection ul.hotel-details-review-selection__resume li:after {
        content: " • ";
        color: #fff;
        opacity: 0.3;
        margin-left: 5px;
    }

    .hotel-details-review-selection ul.hotel-details-review-selection__resume li:last-child:after {
        display: none;
    }


}


.edit-selection-details {
    background: #00294C;
    padding: 10px 20px 20px 20px;
    border-radius: 20px;
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
}

@media (max-width: 767px) {
    .page-hotels-details {
        overflow-x: hidden;
    }

    .page-hotels-details .hotel-details-review-selection {
        overflow: hidden;
    }

    .page-hotels-details .edit-selection-details {
        max-width: 100%;
        box-sizing: border-box;
    }
}

.edit-selection-details__header {
    position: relative;
}

.edit-selection-details__header h4 {
    margin: 10px 0 6px 0;
    font-size: 24px;
}

.edit-selection-details__header .close-edit-selection {
    position: absolute;
    top: 0;
    right: 5px;
}

.hotel-details-title h1 {
    color: #1E2047;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 10px;
}

#hotelGallery {
    border-radius: 0px;
    overflow: hidden;
    background-color: black;
    width: 100%;
}

#hotelGallery .carousel-inner,
#hotelGallery .carousel-inner > .item,
#hotelGallery .carousel-inner > .active {
    width: 100% !important;
}

#hotelGallery .carousel-item img,
#hotelGallery .item img {
    height: 420px;
    display: block;
    position: relative;
    width: 100%;
    object-fit: cover;
    object-position: center center;
    margin: 0 auto;
}

.hotel-details-info {}

.hotel-details-info__description {}

.hotel-details-info__description ul {
    padding: 0;
    margin-bottom: 50px;
}

.hotel-details-info__description li {
    font-size: 16px;
    color: #7f8c8d;
}



.hotel-details-info h2 {
    color: #646464;
    font-size: 20px;
    font-weight: 700;
}

.hotel-details-info__amenities ul {
    padding: 0;
    list-style: none;
}

.hotel-details-info__amenities ul li {
    display: inline-flex;
    align-items: center;
    border-radius: 16.5px;
    background: #FFF;
    box-shadow: 0px 0px 6px -2px rgba(0, 0, 0, 0.50);
    color: #414361;
    font-size: 13px;
    font-weight: 700;
    /* padding: 3px 10px; */
}

.hotel-details-info__amenities ul li span {
    padding: 3px 10px 3px 3px;
}

.hotel-details-info__amenities ul li img {
    width: 30px;
    height: 30px;
}

.hotel-details-info__options {
    margin-top: 60px;
}

.hotel-details-info__options__item {
    border-radius: 15px;
    background: #00294C;
    /* border: solid 2px #00294C; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    color: #fff;
    margin-bottom: 15px;
}

.hotel-details-info__options__item.selected {
    /* border: solid 2px #FFAD0B; */
    background: #003462;
}

.hotel-details-selection {
    display: flex;
    align-items: center;
}

.hotel-details-room h4 {
    color: #FFF;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    margin-bottom: 5px;
}

.hotel-details-room p {
    color: #FFF;
    font-size: 14px;
    font-weight: 300;
    margin: 0;
}

.hotel-details-price {
    margin-top: 10px;
}

.hotel-details-price p {
    margin: 0;
    text-align: left;
    color: #84B6D3;
    font-size: 15px;
    font-weight: 300;
}

@media (min-width: 768px) {
    .hotel-details-price {
        margin-top: 0;
    }

    .hotel-details-price p {
        text-align: right;
    }
}

.hotel-details-price p.price {
    color: #FFF;
    font-size: 20px;
    font-weight: 900;
    line-height: 24px;
    letter-spacing: 0.34px;
}

.hotel-details-action {
    margin-left: 20px;
    border-radius: 15px;
    border: 1px solid #006BA1;
    background: #FFF;

    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    cursor: pointer;
    width: 90px;
    height: 60px;
}

@media (min-width: 768px) {
    .hotel-details-action {
        margin-left: 20px;
        border-radius: 15px;
        border: 1px solid #006BA1;
        background: #FFF;
        color: #00294C;
        font-size: 12px;
        font-weight: 700;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px 20px;
        cursor: pointer;
        width: 130px;
        height: 60px;
    }
}

.hotel-details-action p {
    margin: 0;
    color: #00294C;
    font-size: 12px;
    font-weight: 700;
}

.hotel-details-info__options__item.selected .hotel-details-action i {
    text-align: center;
    color: #00294C;
    font-size: 12px;
    font-weight: 700;
}

/* sidebar */

.hotel-details-sidebar {
    border-radius: 10px;
    background: linear-gradient(180deg, #00294C 0%, #034C8B 98.35%);
    padding: 15px;
}

.hotel-details-sidebar h4 {
    color: #FFF;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    line-height: 31px;
    text-transform: uppercase;
    margin-bottom: 0;
}

.hotel-details-sidebar__resume {
    padding: 15px;
}

.hotel-search-review__item {
    color: #F3CE88;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
}

.hotel-details-sidebar__payments {
    /* background: #FFF; */
    /* border: solid 1px #D2D2D2; */
    /* padding: 15px; */
    /* border-radius: 10px; */
    /* margin-bottom: 15px; */
    margin-bottom: 15px;
}

.hotel-details-sidebar__payments__checks {
    background: #FFF;
    padding: 15px 15px 10px 15px;
    border-radius: 10px 10px 0 0;
}

.hotel-details-sidebar__payments h4 {
    color: #414361;
    font-size: 13px;
    font-weight: 600;
    line-height: normal;
    margin-top: 0;
    text-align: left;
    margin-bottom: 15px;
}

.hotel-details-sidebar__payments label {
    line-height: 2;
    display: block;
    color: #000;
    font-size: 14px;
    font-weight: 300;
}

/* Forma de pagamento: versão compacta/alinhada */
.hotel-details-sidebar__payments__checks .form-check {
    display: flex;
    align-items: center;
    padding-left: 0;
    margin-bottom: 8px;
    min-height: 26px;
}

.hotel-details-sidebar__payments__checks .form-check-input {
    position: static;
    float: none;
    margin: 0 10px 0 0;
    width: 18px;
    height: 18px;
    min-width: 18px;
}

.hotel-details-sidebar__payments__checks .form-check-label {
    margin: 0;
    line-height: 1.35;
    color: #000;
    font-size: 14px;
    font-weight: 400;
}

@media (max-width: 767px) {
    .hotel-details-sidebar__payments__checks {
        padding: 12px 12px 0;
    }

    .hotel-details-sidebar__payments__checks h4 {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .hotel-details-sidebar__payments__checks .form-check {
        margin-bottom: 7px;
        min-height: 24px;
    }

    .hotel-details-sidebar__payments__checks .form-check-input {
        width: 16px;
        height: 16px;
        min-width: 16px;
        margin-right: 8px;
    }

    .hotel-details-sidebar__payments__checks .form-check-label {
        font-size: 12px;
        line-height: 1.25;
    }
}

.hotel-details-sidebar__payments__total {
    background: url(../images/hoteis/bg-card-price.svg) no-repeat;
    background-size: 100% auto;
    background-position: center top;
    display: flex;
    justify-content: space-between;
    /* margin-top: 20px; */
    margin-bottom: 0;
    padding: 15px;
    padding-top: 25px;
    margin-top: -3px;
}

@media (min-width: 768px) {
    .hotel-details-sidebar__payments__total {
        background: url(../images/hoteis/bg-card-price-lg.svg) no-repeat;
        background-size: 100% auto;
        background-position: center top;
        padding: 25px 15px 20px;
        margin-top: -3px;
    }
}

.hotel-details-sidebar__payments__total p {
    color: #414361;
    font-size: 14px;
    font-weight: 300;
    margin: 0;
    text-transform: uppercase;
    line-height: 20px;
}

.hotel-details-sidebar__payments__total p.total-price {
    color: #FFAD0B;
    font-size: 19px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 20px;
}

.hotel-details-sidebar__reservation .input-item {
    border-radius: 7px;
    /* border: 1px solid #D2D2D2; */
    background: #FFF;
    padding: 15px;
}

.hotel-details-sidebar__reservation .input-item label {
    color: #414361;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0;
}

.hotel-details-sidebar__reservation .input-item .form-control {
    border: none;
    background: transparent;
    padding: 0;
    height: auto;
}

.hotel-details-submit {
    margin-top: 10px;
}

@media (min-width: 768px) {
    .hotel-details-submit {
        margin-top: 20px;
    }
}

.hotel-details-submit p.note {
    color: #000;
    font-size: 13px;
    font-weight: 300;
    text-align: center;
}

.btn--yellow {
    color: #FFF;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 7px;
    background: #FFAD0B;
    width: 100%;
}

.btn--yellow:hover {
    background: #aa7100;
}

#modalHotelReservation .btn-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: 0;
}

#modalHotelReservation .modal-body {
    padding: 0;
}

#modalHotelReservation .hotel-details-sidebar {
    border-radius: 5px;
}

#modalHotelReservation h4 {
    text-align: left;
    margin-top: 15px;
    padding-left: 10px;
    font-size: 16px;
}

/*


.multiselect-container {
    position: absolute;
    list-style-type: none;
    margin: 5px 0 0 0;
    width: 100%;
    padding: 10px 0;
    border: none;
    -webkit-box-shadow: 0px 10px 23px -16px rgba(0, 0, 0, 0.14);
    -moz-box-shadow: 0px 10px 23px -16px rgba(0, 0, 0, 0.14);
    box-shadow: 0px 10px 23px -16px rgba(0, 0, 0, 0.14); }
  
  .multiselect-container .input-group {
    margin: 5px; }
  
  .multiselect-container > li {
    padding: 0;
    font-size: 14px; }
  
  .multiselect-container > li > a.multiselect-all label {
    font-weight: 700;
    color: gray; }
  
  .multiselect-container > li.multiselect-group label {
    margin: 0;
    padding: 3px 20px 3px 20px;
    height: 100%;
    font-weight: 700; }
  
  .multiselect-container > li.multiselect-group-clickable label {
    cursor: pointer; }
  
  .multiselect-container > li > a {
    padding: 5px 0;
    color: #000;
    display: block; }
  
  .multiselect-container > li > a > label {
    display: block;
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
    .multiselect-container > li > a > label:before {
      content: "";
      display: inline-block;
      position: relative;
      height: 20px;
      width: 20px;
      border: 2px solid rgba(0, 0, 0, 0.2);
      border-radius: 4px;
      background-color: transparent;
      margin-right: 15px;
      vertical-align: middle; }
  
  .multiselect-container > li.active > a > label:before {
    font-family: 'fontAwesome';
    content: "\f00c";
    color: #fff;
    background-color: #52de97;
    border: 0;
    display: inline-block;
    padding: 0;
    line-height: 1.2;
    padding-left: 2px; }
  
  .multiselect-container > li > a > label.radio, .multiselect-container > li > a > label.checkbox {
    margin: 0; }
  
  .multiselect-container > li > a > label > input[type=checkbox] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0; }
  
  .btn-group > .btn-group:nth-child(2) > .multiselect.btn {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px; }
  
  .form-inline .multiselect-container label.checkbox, .form-inline .multiselect-container label.radio {
    padding: 3px 20px 3px 40px; }
  
  .form-inline .multiselect-container li a label.checkbox input[type=checkbox],
  .form-inline .multiselect-container li a label.radio input[type=radio] {
    margin-left: -20px;
    margin-right: 0; }
  
  .btn-group {
    height: 52px;
    width: calc(100% - 150px); }
    .btn-group button {
      border-radius: 4px;
      background: #fff;
      -webkit-box-shadow: 0px 10px 23px -16px rgba(0, 0, 0, 0.14);
      -moz-box-shadow: 0px 10px 23px -16px rgba(0, 0, 0, 0.14);
      box-shadow: 0px 10px 23px -16px rgba(0, 0, 0, 0.14);
      padding: 0 10px;
      text-align: left;
      position: relative; }
      .btn-group button:after {
        position: absolute;
        top: 50%;
        right: 20px;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        color: #999999; }
      .btn-group button:focus {
        -webkit-box-shadow: 0px 10px 23px -16px rgba(0, 0, 0, 0.14);
        -moz-box-shadow: 0px 10px 23px -16px rgba(0, 0, 0, 0.14);
        box-shadow: 0px 10px 23px -16px rgba(0, 0, 0, 0.14);
        padding: 0 10px; }
  
  .sl {
    color: gray;
    width: 150px; }
*/


/* ------------------------------------------------  DISNEYLAND PARIS ---------------------------------------- */

.paris-image {
    border-radius: 20px;
    overflow: hidden;
}

.paris-form {
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    padding: 30px;
    text-align: center;
    margin-top: -25%;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .paris-form {
        margin-left: -20%;
        margin-top: 15%;
        width: unset;
    }
}

.paris-form h1 {
    color: #4000ff;
    font-size: 27px;
    font-weight: 800;
    margin-top: 0;
}

.paris-form p {
    color: #0E0E0E;
    font-size: 14px;
    font-weight: 400;
    line-height: 121.126%;
}

.paris-form form p {
    text-align: left;
    color: #000;
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: left;
    margin-bottom: 20px;
}

.paris-form form p span {
    margin-top: 7px;
    display: block;
}

.paris-form form input.wpcf7-form-control.wpcf7-submit.btn.btn-primary {
    display: block;
    margin: 0 auto;
    color: #FFF;
    font-size: 15px;
    font-weight: 700;
    padding: 10px 70px;
}


/* CHOSEN */

.hotels-home-search__form .chosen-container-multi .chosen-choices {
    overflow-y: scroll !important;
    max-height: 42px !important;
    height: 42px;
}

.chosen-container-multi .chosen-choices li.search-field {
    height: 42px;
}


li.search-field:fist-child>input {
    height: 42px !important;
}

.chosen-container-multi .chosen-choices li.search-field:first-child input[type=text] {
    margin: 1px 0;
    padding: 0;
    height: 42px;
    font-size: 15px;
    color: #34495e;
}

.edit-selection-details .chosen-container-multi .chosen-choices {
    overflow-y: scroll !important;
    max-height: 42px !important;
    height: 42px;
    margin-left: 0 !important;
}



.hotels-sub-group {
    padding: 6px 6px 6px 26px !important;
    font-size: 12px;
}

.hotels-main-group {
    font-weight: bold !important;
    padding-left: 16px !important;
    margin: 0 !important;
}



/* loader */
.loading img {
    width: 70px;
    margin: 240px auto 0;
    display: block;
}

.loading {
    background: #f7f7f6d1;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    left: 0;
    z-index: 9999;
}


.hotel-details-review-selection ul.hotel-details-review-selection__resume a {
    color: white;
    font-weight: 900;
    margin-right: 10px;
}

@media (min-width: 768px) {
    .hotel-details-review-selection ul.hotel-details-review-selection__resume li:first-child:after {
        content: "|";
        margin-right: 10px;
    }
}



li.menu-california {
    position: relative;
}

.hoteis-disney-message {
    border-radius: 5px;
    border: solid 1px #35abbe;
    padding: 10px 15px;
    font-size: 13px;
    text-align: center;
    background: #edfcff;
    line-height: 17px;
    color: #35abbe;
    margin-bottom: 10px;
    font-weight: 600;
}