/* GLOBAL STYLES
-------------------------------------------------- */
:root {
    --base-yellow: #ffcc00;
    --base-blue: #1A7AAB;
    --base-grey: #333333;
    --body-color: #5a5a5a;
    --light: #fefbf1;
    --white: #ffffff;
    --black: #000;
    --font-sen: 'Sen', sans-serif;
    --font-buenard: "Buenard", serif;
}

body {
    font-family: var(--font-sen);
    color: var(--body-color);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--base-grey);
}

.font-10 {
    font-size: 10px;
}

.font-11 {
    font-size: 11px;
}

.font-12 {
    font-size: 12px;
}

.font-13 {
    font-size: 13px;
}

.font-14 {
    font-size: 14px;
}

.font-15 {
    font-size: 15px;
}

.font-16 {
    font-size: 16px;
}

.text-bold {
    font-weight: 700;
}

img {
    max-width: 100%;
}

.container {
    position: relative;
    z-index: 11;
}

a.brandButton, button.brandButton, button.btn-book {
    background-color: var(--base-yellow);
    font-family: var(--font-buenard);
    padding: 10px;
    color: var(--base-grey);
    border: 0px;
    font-size: 14px;
    cursor: pointer;
}

.buildingImg {
    height: 207px;
}

/* Banner CSS */
.homePage .mainBanner {
    position: relative;
    background: url(../../images/glsfl/banner1.png);
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-bottom: 100px;
    padding-top: 40px;
}

.topBar {
    display: flex;
    justify-content: space-between;
}

.topBarContact {
    display: flex;
    align-items: center;
    color: var(--white);
    line-height: 1.2;
    text-align: right;
}

.topBarContactIcon {
    padding-right: 10px;
}

.topBarContactInfo a {
    color: var(--white);
    text-decoration: none;
    display: block;
    font-family: var(--font-buenard);
    font-size: 21px;
}

.siteLogo {
    max-width: 200px;
}

.mainHeading {
    padding: 80px 50px;
}

    .mainHeading h1 {
        font-weight: 500;
        font-size: 42px;
        color: var(--white);
        text-shadow: 0px 0px 10px 0px rgba(0,56,80,0.4);
    }

        .mainHeading h1 span {
            color: var(--base-yellow);
        }
/* Property List */
.propertyListSec {
    margin-top: -80px;
    padding-bottom: 50px;
}

.propertyListItem {
    padding: 15px;
    background-color: var(--white);
}

.propertyItemHeader {
    display: flex;
    justify-content: space-between;
    gap: 5px;
    align-items: center;
}

.propertyItemHeader {
    padding-bottom: 15px;
}

.propertyItemAvailability {
    min-width: 128px;
}

.propertyItemTitle h2 {
    margin-bottom: 0;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
}

.propertyItemTitle p {
    margin-bottom: 0;
    font-size: 14px;
}

.propertyItemDetails {
    padding-top: 10px;
}

.propertySubTitle {
    font-size: 21px;
    margin-bottom: 0px;
    line-height: 1.2;
}

.propertySubTitlePrice {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    line-height: 1.2;
}

.propertyPrice {
    font-size: 21px;
    font-weight: 600;
    color: var(--base-grey);
}

    .propertyPrice span {
        font-size: 14px;
        font-weight: 400;
        color: var(--body-color);
    }

.propertyTypeTags {
    display: flex;
    padding-top: 5px;
}

.propertyTag {
    border: 1px solid #d4d4d4;
    padding: 2px 6px 1px;
    line-height: 1.2;
    font-size: 12px;
    font-weight: 500;
    color: var(--base-grey);
    margin-right: 6px;
    text-transform: uppercase;
}

.propertyFeatures {
    padding-top: 10px;
}

    .propertyFeatures ul {
        margin: 0px;
        padding-left: 20px;
    }
/* Footer */
footer {
    border-top: 1px solid rgba(0,0,0,0.05);
    padding: 20px 0;
    background: var(--light);
    font-family: var(--font-buenard);
    font-size: 14px;
}

.footerSec {
    display: flex;
    justify-content: space-between;
}

.footerRight {
    display: flex;
    gap: 30px;
}

footer h4 {
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-sen);
}

footer .socialLinks {
    padding: 20px 0;
}

    footer .socialLinks ul {
        padding: 0;
        margin: 0;
        list-style: none;
        display: flex;
    }

        footer .socialLinks ul li {
            padding-left: 5px;
        }

            footer .socialLinks ul li a {
                height: 25px;
                width: 25px;
                display: flex;
                align-items: center;
                justify-content: center;
            }

                footer .socialLinks ul li a img {
                    max-width: 100%;
                }

footer .termsLinks {
    display: flex;
    gap: 15px;
}

    footer .termsLinks a {
        color: var(--body-color);
        text-decoration: underline;
    }

footer .footerConatctInfo ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

    footer .footerConatctInfo ul a {
        color: var(--body-color);
    }

        footer .footerConatctInfo ul a span {
            margin-right: 5px;
        }

            footer .footerConatctInfo ul a span img {
                max-width: 15px;
            }
/* Property Slider CSS */
button.owl-next,
button.owl-prev {
    position: absolute;
    top: 35%;
    background: none;
}

.owl-theme .owl-nav [class*=owl-]:hover {
    background: none !important;
}

button.owl-next {
    right: 5px;
}

button.owl-prev {
    left: 5px;
}

    button.owl-next img,
    button.owl-prev img {
        max-width: 12px;
    }

.owl-theme .owl-nav {
    margin: 5px !important;
}

.owl-theme .owl-dots .owl-dot span {
    width: 6px !important;
    height: 6px !important;
    margin: 2px 4px !important;
    background: #9694af !important;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: var(--base-yellow) !important;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1199px;
    }
}

@media (max-width:1199px) {
    .propertyItemHeader {
        flex-wrap: wrap;
    }
}

@media (max-width:767px) {
    .mainHeading {
        padding: 50px 0;
    }

        .mainHeading h1 {
            font-size: 30px;
        }

    .footerSec {
        flex-wrap: wrap;
    }

    .footerLeft {
        margin-bottom: 20px;
    }
}

@media (max-width:567px) {
    .siteLogo {
        max-width: 150px;
    }

    .topBarContactInfo a {
        font-size: 18px;
    }

    .mainHeading h1 {
        font-size: 24px;
    }

    .propertyItemTitle h2 {
        font-size: 21px;
    }

    button.brandButton {
        padding: 5px 10px;
    }

    .propertySubTitle {
        font-size: 18px;
    }

    footer {
        text-align: center;
    }

    .footerSec {
        justify-content: center;
    }

    footer .socialLinks ul {
        justify-content: center;
    }

    .footerRight {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Check Avalability Page CSS */
/* Check Avalability Sec */
.bannerSlider.owl-carousel .owl-stage-outer {
    position: relative;
}

    .bannerSlider.owl-carousel .owl-stage-outer:after {
        background-color: rgba(0,0,0,0.2);
        position: absolute;
        width: 100%;
        height: 100%;
        content: "";
        top: 0;
    }

.avalabilityPage .mainBanner {
    position: relative;
}

    .avalabilityPage .mainBanner .topBar {
        position: absolute;
        top: 30px;
        width: calc(100% - 30px);
    }

.bannerSlider.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: -125px;
    position: relative;
}

.checkAvalabilityInner {
    background: var(--white);
    padding: 15px 60px 0;
}

    .checkAvalabilityInner h1 {
        font-size: 42px;
        text-align: center;
        margin: 0;
        line-height: 1.2;
    }

    .checkAvalabilityInner p {
        font-size: 14px;
        text-align: center;
        margin-bottom: 20px;
        line-height: 1.2;
    }

.checkAvalabilityForm {
    display: flex;
    gap: 30px;
    align-items: end;
    margin-bottom: 30px;
}

.checkInSec,
.checkOutSec,
.checkInSec input,
.checkOutSec input {
    width: 100%;
    position: relative;
}

    .checkInSec label,
    .checkOutSec label {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .checkInSec input,
    .checkOutSec input {
        border: 1px solid #51565a;
        border-radius: 0px;
        padding: 8px 0 8px 30px;
        font-size: 14px;
    }

    .checkInSec span,
    .checkOutSec span {
        position: absolute;
        left: 7px;
        z-index: 1;
        bottom: 9px;
    }

.checkAvalabilityButton {
    min-width: 130px;
}

.welcomeSec {
    padding: 20px 0;
    font-size: 14px;
}

.welcomeSecInner {
    padding-left: 60px;
    padding-right: 60px;
}

.welcomeText {
    text-align: center;
    margin-bottom: 30px;
}

    .welcomeText h2 {
        font-size: 24px;
        font-family: var(--font-buenard);
    }

.designedHeading {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 20px;
    font-size: 24px;
    font-family: var(--font-buenard);
    text-align: center;
}

    .designedHeading:after {
        position: absolute;
        width: 60px;
        content: '';
        height: 6px;
        left: calc(50% - 30px);
        bottom: 4px;
        background-color: var(--base-yellow);
    }

    .designedHeading:before {
        position: absolute;
        width: 60px;
        content: '';
        height: 2px;
        left: calc(50% - 30px);
        bottom: 0px;
        background-color: var(--base-yellow);
    }

.apartmentOverview {
    display: flex;
    border: 1px solid rgba(0,0,0,0.05);
    background: var(--light);
    margin-bottom: 30px;
}

.apartmentSlider, .apartmentDetails {
    width: 50%;
}

.propertyDeatilsSlider.owl-theme .owl-dots {
    padding-bottom: 10px;
    margin-top: -36px;
    z-index: 11;
    position: relative;
}

.apartmentDetails {
    padding: 25px;
}

    .apartmentDetails h3 {
        font-size: 21px;
        margin-bottom: 20px;
        font-family: var(--font-buenard);
    }

.propertyDeatilsSlider button.owl-next,
.propertyDeatilsSlider button.owl-prev {
    top: 45%;
}

    .propertyDeatilsSlider button.owl-next img,
    .propertyDeatilsSlider button.owl-prev img {
        max-width: 25px;
    }

.amenitiesSec{
    padding-bottom: 60px;
}

.amenitiesList {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

    .amenitiesList .amenitiesItem {
        display: flex;
        align-items: center;
        font-size: 16px;
        font-family: var(--font-buenard);
    }

        .amenitiesList .amenitiesItem span {
            height: 30px;
            width: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
        }

.bottomCheckAvalabilitySec {
    padding: 60px 0 30px;
}
/* Check Avalability Page Responsiveness */
@media (max-width:991px) {
    .welcomeSecInner {
        padding-left: 0px;
        padding-right: 0px;
    }
}

@media (max-width:767px) {
    .checkAvalabilityInner {
        padding-left: 20px;
        padding-right: 20px;
    }

        .checkAvalabilityInner h1 {
            font-size: 28px;
        }

    .apartmentOverview {
        flex-wrap: wrap;
    }

    .apartmentSlider, .apartmentDetails {
        width: 100%;
    }

    .apartmentSlider {
        order: 1;
    }

    .apartmentDetails {
        order: 2;
    }
}

@media (max-width:576px) {
    .bannerSlider.owl-theme .owl-nav.disabled + .owl-dots {
        margin-top: 0px;
    }

    .checkAvalabilityInner {
        padding-left: 0px;
        padding-right: 0px;
    }

    .checkAvalabilityForm {
        flex-wrap: wrap;
        gap: 10px;
    }

    .checkAvalabilityButton {
        width: 100%;
        text-align: center;
        padding-top: 15px;
    }
}


/* CSS For search result page */
.commonSitePage .mainBanner .topBar {
    position: absolute;
    top: 30px;
    width: calc(100% - 30px);
}

.commonPageBannerSlider {
    max-height: 220px;
    overflow: hidden;
    position: relative;
}

    .commonPageBannerSlider::after {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.3);
        content: "";
    }

.commonSitePage .checkAvalabilitySec, .avalabilityPage .checkAvalabilitySec {
    margin-top: -90px;
}

.searchResultList {
    padding: 15px 60px;
}

.searchResultItem {
    border: 1px solid #d4d4d4;
    padding: 15px;
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.resultLeft {
    max-width: 30%;
}

.resultRight {
    display: flex;
    gap: 10px;
}

.resultItemDetails h2 {
    font-size: 26px;
    color: #000;
}

.resultItemDetails p {
    font-size: 16px;
    padding-bottom: 30px;
    margin-bottom: 0px;
    line-height: 1.2;
}

.resultItemAmaneties ul {
    list-style: none;
    padding: 0;
    column-count: 2;
    margin: 0px;
}

    .resultItemAmaneties ul li span {
        height: 20px;
        width: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 5px;
    }

    .resultItemAmaneties ul li {
        margin-bottom: 10px;
        display: flex;
        align-items: start;
        color: #000;
    }

        .resultItemAmaneties ul li a {
            color: #82878A;
            font-family: var(--font-buenard);
            text-decoration: underline;
        }

.resultItemPrice {
    min-width: 220px;
    display: flex;
    flex-direction: column;
    text-align: right;
    justify-content: space-between;
}

.discountedPrice {
    font-size: 42px;
    color: #000;
    font-weight: 500;
    margin-bottom: 0px;
    line-height: 1.2;
}

.ActualPrice {
    font-size: 18px;
    color: #C21313;
}

.perNightPrice {
    color: #000;
    font-size: 18px;
    margin-top: 20px;
}

    .perNightPrice span {
        color: #a4a4a4;
        font-size: 16px;
    }

.excludesTaxes {
    font-size: 16px;
    color: #000;
}

    .excludesTaxes span {
        text-decoration: underline;
        color: #000;
    }

.itemAvailability {
    font-size: 18px;
    color: #000;
}

    .itemAvailability span {
        color: #0276B1;
    }

.bookNowButton {
    min-width: 200px;
}

.searchResultSlider.owl-theme .owl-dots {
    margin-bottom: 0px;
}

/* Booking summary apge */
.bookingSummaryBanner {
    position: relative;
    margin-top: -90px;
}

.summaryOuter {
    display: flex;
    gap: 20px;
    padding: 20px;
    background-color: #fff;
}

.summaryLeft {
    width: calc(50% - 10px);
}

.summaryRight h1 {
    margin: 0px;
    font-size: 26px;
    color: #000;
}

.bookingDatesSec {
    margin: 15px 0 10px;
    border-top: 1px solid #d4d4d4;
    border-bottom: 1px solid #d4d4d4;
    padding: 8px 0;
    display: flex;
    justify-content: space-between;
}

.datesLeft {
    display: flex;
    gap: 20px;
    align-items: flex-end;
}

.fromDate, .toDate, .datesRight {
    font-size: 16px;
    color: #000;
}

    .fromDate span, .toDate span, .datesRight span {
        display: block;
        font-size: 21px;
    }

.datesRight {
    text-align: left;
    padding-right: 10px;
}

.bookingItemSec {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    color: #000;
}

.applyVoucher, .applyVoucher a {
    color: #8E8E93;
    font-size: 18px;
    text-decoration: underline;
}

.applyVoucher {
    margin: 5px 0;
}

.toatlAmount {
    display: flex;
    justify-content: space-between;
    font-size: 28px;
    color: #000;
}
.errorMsg {
    color: #8E8E93 !important;
    font-size: 14px !important;
}

.bookingContactDetails {
    padding-top: 15px;
    padding-bottom: 40px;
}

.bookingContactOuter {
    padding-top: 15px;
    display: flex;
    gap: 20px;
    width: 100%;
}

    .bookingContactOuter h3 {
        font-size: 21px;
        display: flex;
        justify-content: space-between;
        margin-bottom: 20px;
        font-weight: 700;
        min-height: 30px;
        align-items: center;
    }

    .bookingContactOuter label {
        font-size: 16px;
        display: block;
        width: 100%;
        color: #51565A;
        font-weight: 700;
    }

        .bookingContactOuter label span {
            color: var(--base-yellow);
        }

.bookingFormLeftCol, .bookingFormRightCol {
    width: 50%;
}

.bookingContactInfo {
    width: 65%;
}

.bookingCardDetails {
    width: 35%;
}

.bookingFormRow {
    display: flex;
    gap: 15px;
}

.bookingContactOuter .form-group input,
.bookingContactOuter .form-group select {
    max-width: 100%;
    width: 100%;
    min-width: auto;
    border: 2px solid #51565A80;
    border-radius: 0px;
    color: #8E8E93;
    font-size: 16px;
    min-height: 44px;
    padding-left: 15px;
}

.cancellationPolicy{
    margin-top: 20px;
}

.bookingCompleteButton {
    padding: 20px 0;
    text-align: right;
}

    .bookingCompleteButton .brandButton {
        min-width: 200px;
        font-size: 18px;
    }

    .bookingCompleteButton .brandButton:disabled{
        cursor: not-allowed;
    }

/* Confirmation Page */
.confirmationSecInner {
    padding: 20px;
    margin-top: -90px;
    background-color: #fff;
}

.checkIcon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--base-yellow);
    height: 90px;
    width: 90px;
    border-radius: 50%;
    margin: 0 auto 60px;
}

.checkIconAfter {
    position: absolute;
    border: 1px solid var(--base-yellow);
    height: 96px;
    width: 96px;
    content: "";
    top: -3px;
    left: -3px;
    border-radius: 50%;
}

.thankYouAre {
    text-align: center;
    padding: 50px 0 60px;
}

    .thankYouAre h1 {
        font-size: 38px;
        margin: 0px;
        color: #000;
    }

    .thankYouAre h2 {
        font-size: 21px;
        margin: 0px;
        color: #000;
    }

.confirmedOrderDetails {
    display: flex;
    gap: 20px;
}

.conOrderDetailsLeft, .conOrderDetailsRight {
    width: 50%;
}

    .conOrderDetailsLeft h3 {
        font-size: 18px;
        margin-bottom: 30px;
        color: #000;
    }

    .conOrderDetailsLeft h4, .conOrderDetailsLeft p.personContact {
        color: #000;
    }

    .conOrderDetailsLeft p {
        margin-bottom: 20px;
    }

    .conOrderDetailsRight h3 {
        font-size: 1.5rem;
        color: #000;
    }

    .conOrderDetailsRight h4 {
        font-size: 1.5rem;
        margin: 15px 0;
        color: #000;
    }

    .conOrderDetailsRight .fromDate span, .conOrderDetailsRight .toDate span, .datesRight span {
        font-size: 18px;
    }

.cancellationPolicy {
    margin-bottom: 10px;
    display: inline-block;
}

/* Responsiveness  */
@media (max-width:1199px) {
    .searchResultList {
        padding: 15px 0;
    }
}

@media (max-width:991px) {
    .summaryRight h1 {
        font-size: 21px;
    }

    .bookingItemSec {
        padding: 2px 0;
    }

    .applyVoucher, .applyVoucher a {
        font-size: 14px;
    }

    .toatlAmount {
        font-size: 21px;
    }

    .bookingContactOuter {
        flex-wrap: wrap;
    }

    .bookingContactInfo,
    .bookingCardDetails,
    .resultLeft, .resultRight {
        width: 100%;
    }

    .resultLeft {
        max-width: 100%;
    }

    .searchResultItem {
        flex-wrap: wrap;
    }
}

@media (max-width:767px) {
    .confirmedOrderDetails {
        flex-wrap: wrap;
    }

    .conOrderDetailsLeft, .conOrderDetailsRight,
    .summaryLeft, .summaryRight,
    .resultItemDetails, .resultItemPrice {
        width: 100%;
    }

    .summaryOuter {
        flex-wrap: wrap;
    }

    .bookingSummaryBanner {
        margin-top: -60px;
    }

    .resultRight {
        flex-wrap: wrap;
    }

    .resultItemPrice {
        flex-direction: row;
        align-items: flex-end;
    }

    .resultItemDetails h2 {
        font-size: 21px;
    }

    .discountedPrice {
        font-size: 36px;
    }
}

@media (max-width:567px) {
    .confirmedOrderDetails {
        flex-wrap: wrap;
    }

    .conOrderDetailsLeft, .conOrderDetailsRight, .resultItemPriceTop, .resultItemPriceBottom {
        width: 100%;
    }

    .thankYouAre {
        padding: 10px 0 30px;
    }

    .checkIconAfter {
        width: 56px;
        height: 56px;
    }

    .checkIcon {
        width: 50px;
        height: 50px;
        margin-bottom: 20px;
    }

    .thankYouAre h1 {
        font-size: 22px;
    }

    .thankYouAre h2 {
        font-size: 16px;
    }

    .checkIcon img {
        max-width: 30px;
    }

    .confirmationSecInner, .checkAvalabilitySec.commonSitePage {
        margin-top: -60px;
    }

    .conOrderDetailsLeft h4, .conOrderDetailsRight h4, .toatlAmount {
        font-size: 21px;
    }

    .bookingContactOuter label {
        font-size: 12px;
    }

    .terms\&Conditions {
        margin-top: 25px;
    }

    .resultItemAmaneties ul {
        column-count: 1;
    }

    .resultItemPrice {
        flex-wrap: wrap;
    }

    .discountedPrice {
        font-size: 28px;
    }

    .ActualPrice {
        font-size: 16px;
    }

    .perNightPrice, .itemAvailability {
        font-size: 16px;
    }

        .perNightPrice span, .excludesTaxes {
            font-size: 14px;
        }
}

.soldOut {
    margin: auto;
}

.noPrice{
    display: flex;
    flex-direction: column;
}

.errorNoPrice{
    background-color: var(--base-yellow);
    padding: 10px;
    margin-bottom:25px;
    width: 220px;
    font-size: .90rem;
}
.noPriceError {
    padding: 10px;
    margin-bottom: 25px;
}
.noBook {
    background: #d4d4d4 !important;
    cursor: not-allowed;
    width: 100%;    
}

.apply-spinner {
    padding: 0 12px;
}

.error-message {
    padding: 25px;
    margin: 10px 0;
    border-radius: 10px;
}

.no-longer-avail-msg, .order-processing {
    background-color: lightgray;
    font-weight: bold;
}

.errorMsgBooking {
    background-color: #fd5e71;
}

.error-border {
    border: #fd5e71 2px solid;
}
.summaryRight {
    width: 50%;
}

.resultRight {
    width: 100%;
    justify-content: space-between;
}


/* Price Dropdown */
.dropdown-menu.taxFeesDropdownMenu {
    width: 100%;
    box-shadow: 0px 10px 30px rgba(0,0,0,0.25);
    padding: 12px;
}

    .dropdown-menu.taxFeesDropdownMenu h4 {
        font-size: 16px;
        font-weight: bold;
        margin-bottom: 15px;
    }

.taxFeesDropdownRow {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 15px;
    margin: 0 0 8px 0;
}

.totalAmountRow {
    font-weight: bold;
}

.taxFeesDropdownBookNowRow .brandButton {
    width: 100%;
}

.expLabelSpacer {
    display:block;
    min-height:24px;
    margin-bottom: 0.5rem
}

