@layer propertyStyle, bookingPanel, slideshow, levartStyle;

@font-face {
    font-family: "Revisal";
    src: url("../fonts/Revisal.woff2") format("woff2");
}

:root {


    --container-max-w: 1200px;

    --bg: #fff;

    --parallax-pad: 0;

    --header-height: 150px;
    --header-font-size: 20px;
    --header-font-weight: 700;

    --e-global-typography-primary-font-family: "Lora", zahrah, serif;
    --copy-font: "Poppins", sans-serif;

}

body {
    font-family: var(--copy-font);
    margin: 0;
    color: var(--primary);

    a {
        color: var(--primary);
        text-decoration: none;
    }

    div:is(#content,.container) {
        max-width: var(--container-max-w);
        margin: 0 auto;
        padding: 15px;
    }

    div#content {
        margin-top: 30px;
    }

    div.container:last-child {
        margin-bottom: 30px;
    }

}

header {
    /* control the display of the navigation */
    /* default to none - mobile first */
    --nav-display: none;
    --haburger-contact: none;
    /* display when toggled by #hamburger */
    height: var(--header-height);
    font-size: var(--header-font-size);
    font-weight: var(--header-font-weight);

    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 60;
    border-bottom: 1px solid #d9d9d6;
    padding: 0 12px;

    &[data-nav-open="true"] {
        --nav-display: flex;
    }

    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 0 10px;
        margin: 0 auto;
        height: 100%;

        > a.header-container__site-link {
            flex-basis: 15%;

            img {
                max-width: 215px;
                max-height: 134px;
                object-fit: contain;

                @media (min-width: 1024px) {
                    max-width: 305px;
                }

            }
        }

        .header-container__socials {
            display: flex;
            gap: 10px;
            flex-basis: 10%;

            @media (max-width: 1024px) {
                display: none;
            }

        }

    }

    nav {
        display: var(--nav-display);
        flex-basis: 65%;
        gap: 0;
        max-height: 64px;
        z-index: 50;

        @media (max-width: 1024px) {
            position: fixed;
            right: 0;
            top: 0;
            bottom: 0;
            background: var(--panel-bg);
            flex-direction: column;
            max-height: 100vh;
            width: 80vw;
            max-width: 960px;

            padding: 80px 20px 15px;
        }

        @media (min-width: 1025px) {
            --nav-display: flex;
            position: static;
        }

        > :is(a, div) {

            &::before {
                content: "";
                position: absolute;
                bottom: 0;
                left: 0;
                right: 100%;
                height: 4px;
                color: #fff;
                background-color: var(--accent);
                transition: right 0.25s ease;
            }

            &:is(:hover, :focus, :active)::before {
                right: 0;
            }
        }

        ul {
            padding-inline: 0;

            a {
                display: block;
                padding: 15px;
                font-size: 15px;
                font-weight: 400;
                background-color: #faf9f9;
                color: #999;

                &:is(:hover, :focus, :active) {
                    background-color: #ececec;
                    color: black;
                }
            }
        }

    }

    #hamburger {
        --hamburger-fill: var(--panel-bg);
        --hamburger: inline;
        --xmark: none;
        background-color: transparent;
        border: none;
        padding: 0;
        z-index: 90;

        &.active {
            --hamburger: none;
            --xmark: inline;
            --hamburger-fill: white;
        }

        svg {
            width: 24px;
            height: 24px;
            fill: var(--hamburger-fill);
        }

        svg:first-child {
            display: var(--hamburger);
        }

        svg:last-child {
            display: var(--xmark);
        }

        @media (min-width: 1025px) {
            display: none;
        }
    }

    #hamburgerContactInfo {
        display: none;
        justify-self: flex-end;
        flex: 1;
        flex-direction: column;
        justify-content: flex-end;
        max-width: 226px;

        @media (max-width: 1024px) {
            display: var(--nav-display);
        }

        h3, p {
            margin-block: 0;
            color: #fff;
            font-size: 16px;
        }

        p {
            font-weight: 500;
        }

        a {
            padding: 0;
        }

    }

    a:not(.social-icon-button, .header-container__site-link, ul a) {
        display: inline-block;
        padding: 15px;
        min-height: 20px;
        width: max-content;
        transition: background-color 0.25s ease;
        position: relative;

        /* small screens / hamburger menu */
        @media (max-width: 1024px) {
            padding: 10px;
            font-size: 16px;
            font-weight: 500;
            color: var(--panel-label-color);
        }

        &:is(:hover, :focus, :active) {
            color: var(--accent);
        }

    }

    .nav-group-toggle {

        @media (max-width: 1024px){
            fill: white;
        }

    }

    a.book-now-button {
        background-color: #b0a46e;
        color: #fff;

        @media (max-width: 1024px) {
            width: 100%;
            text-align: center;
        }

        &:hover {

            filter: brightness(110%);
        }
    }

    a.social-icon-button {
        display: inline-flex;
        align-items: center;
        padding: 0;
        border-radius: 10px;
        overflow: hidden;

        &.fbook {
            --social-bg: #1877f2;
        }

        img {
            width: 48px;
            height: 52px;
            object-fit: cover;
        }

    }

}

:where(header, footer) .nav-item-group {
    position: relative;

    &:hover {
        .nav-group-toggle {
            transform: rotateZ(180deg);
        }

        > ul {
            display: block;
        }

        > a {
            color: var(--nav-link-hover);
        }
    }

    .nav-group-toggle {
        transition: transform 0.5s ease;
    }

    ul {
        display: none;
        list-style: none;
        margin-block: 0;
    }

}

#footer {
    background-color: var(--footer-bg);
    padding-block: 40px 0;
    display: flex;
    flex-direction: column;
    align-items: start;
    border-top: 1px solid #f4f4f4;

    .footer-details {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 10px 0;
        gap: 20px;

        @media (max-width: 1024px){
            grid-template-columns: 1fr 1fr;
            max-width: 100vw;
        }

        > div {
            display: flex;
            gap: 10px;
        }

        &.info > div {
            flex-direction: column;
        }

        .footer-details__logo {
            @media (max-width: 1024px){
                grid-column: 1 / -1;
            }
        }
    }

    .footer-details__menu,
    .footer-details__contact {
        @media (max-width: 1024px){
            padding-inline: 8px;
        }
    }

     a.header-container__site-link {
         @media (max-width: 1024px) {
             text-align: center;
         }
     }

    .info {
        padding-bottom: 40px;

        h3 {
            margin-block: 0;
        }

    }

    .sponsors {
        padding-top: 30px;
        position: relative;

        @media (max-width: 1024px){
            grid-template-columns: 1fr;
        }

        &::before {
            content: "";
            position: absolute;
            inset: 0 24px auto;
            height: 1px;
            background-color: #c3aa18;
        }

        > div {
            align-items: center;
            justify-content: center;

            @media (max-width: 1024px){
                flex-wrap: wrap;
            }

            &:first-child img {
                max-height: 125px;
            }

        }

        img {
            width: auto;
            max-height: 70px;
            object-fit: contain;
            flex-basis: calc(33% - 10px);
        }
    }


    .header-container__site-link img {
        width: 260px;
    }

    nav,
    .footer-details__contact > div {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    nav {

        a {
            font-size: 14px;
        }

        ul {
            padding: 0 12px;
        }

        .nav-group-toggle {
            width: 10px;
        }
    }

    .nav-item-group {

        > ul {
            position: absolute;
            padding: 8px;
            background-color: #fff;
            z-index: 1;

            li a:hover {
                color: #666;
            }
        }
    }

    .footer-details__contact {
        p {
            margin-block: 0;
        }

        a {
            text-decoration: underline;
        }
    }

    .header-container__socials {
        display: flex;
        gap: 18px;

        img {
            width: 38px;
        }
    }

}

#LDSSearch {
    --field-gap: 10px;
    --field-50: calc(50% - var(--field-gap)); /* Luke fix for flex-basis: 50% */
    position: sticky;
    top: var(--header-height);
    z-index: 50;
    background-color: var(--panel-bg);
    padding: 15px;
    font-size: 12px;

    @media (max-width: 1024px){
        position: static;
        top: 0;
    }


    #LDSSearch-form {
        display: flex;
        align-items: end;
        gap: 10px 0;
        justify-content: space-between;
        max-width: 1600px;
        margin-inline: auto;
        flex-wrap: wrap;

        @media (min-width: 1024px) {
            justify-content: flex-start;
            align-items: stretch;
            gap: var(--field-gap);
        }

        @media (min-width: 1200px) {
            justify-content: center;
        }

        label {
            font-weight: 500;
        }

    }

    div.LDSSearch-item {
        margin: 0;
        padding: 0;
        min-width: 120px;
        max-width: unset;
        float: none;
        clear: unset;
        flex-basis: var(--field-50);

        @media (min-width: 1024px) {
            flex: 1;
            max-width: 120px;

            display: flex;
            flex-direction: column;
        }

        &.LDSSearch-fromDate,
        &.LDSSearch-toDate {
            flex-basis: var(--field-50);
            order: 1;
        }

        &.LDSSearch-adults,
        &.LDSSearch-children {
            order: 2;
        }

        &.LDSSearch-rooms,
        &.LDSSearch-roomCategory {
            order: 3
        }

        &.LDSSearch-roomCategory {
            @media (min-width: 1024px) {
                order: 1;
            }
        }

        &.LDSSearch-text,
        &.LDSSearch-code,
        &.LDSSearch-fixedStays {
            order: 4;
        }

        &.LDSSearch-submit,
        &.LDSSearch-links {
            order: 5;
            display: flex;
            gap: 10px;
            align-items: center;
            flex-wrap: wrap;
            margin: 0;

            @media (min-width: 1024px) {
                justify-content: center;
            }

        }

        &.LDSSearch-links {

            > div {
                margin: 0;
            }
        }

        .selectboxit-container,
        .selectboxit {
            height: 24px;
            max-height: 24px;
            margin: 0;
            padding: 0;
            align-content: center;

            &.selectboxit {
                height: 24px;
                align-content: center;
            }
        }

        .selectboxit-text {
            height: 100%;
            align-content: center;
        }

    }

    div.LDSSearch-title {
        order: -1; /* always 1st */
        min-width: fit-content;
        text-align: center;
        align-self: center;
        margin-inline: 0;

        @media (max-width: 1024px) {
            width: 100%;
        }

        @media (min-width: 1024px) {
            width: fit-content;
        }

        @media (min-width: 1400px) {
            text-align: right;
            min-width: 180px;
        }
    }

    #LDSSearch-submit {
        margin: 0;
        min-width: max-content;

        button {
            margin: 0;
            font-size: 16px;
            font-family: var(--copy-font);
            padding: 10px 20px;
            width: 100%;

        }
    }

}

header[data-nav-open] ~ #LDSSearch {

    z-index: 40;
}

/* Slideshow container */
.slideshow__container {
    max-width: 100%;
    max-height: 100vw;
    height: var(--img-height); /* set in the template*/
    position: relative;
    margin: auto;
    overflow-x: hidden;
    overflow-y: hidden;
    z-index: 1;

    @media (min-width: 1024px) {
        min-height: 200px;
    }

    &[data-slideshow-height="full"] {
        &,
        > div {
            height: 100vh;
        }
    }

    &[data-slideshow-height=""],
    &[data-slideshow-height="0"] {
        display: none;
    }

    &[data-slides="1"] {
        .slideshow__slide {
            display: block;
            opacity: 1;
        }

    }

    .slideshow-watermark {
        font-family: "Lora", serif;
        font-weight: 400;
        font-style: normal;
        font-size: clamp(36px, 5vw, 64px);
        z-index: 3;
        position: absolute;
        bottom: 50px;
        left: 0;
        right: 0;
        color: #fff;
        text-align: center;
        margin-block: 0;
        font-weight: 400;
    }

}

/* Hide the images by default */
.slideshow__slide {
    display: none;
    opacity: 0;
    min-height: 200px;
    height: var(--img-height); /* set in the template*/;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-image: var(--slide-img);
    background-repeat: no-repeat;
    transition-property: opacity, display;
    transition-duration: 0.5s;
    transition-behavior: allow-discrete;

    &.active {
        display: block;
        opacity: 1;

    }

    &:has(+ .active) {
        opacity: 0.5;
        transition-duration: 0.5s;
    }

    /* Next & previous buttons */

    .prev, .next {
        cursor: pointer;
        position: absolute;
        top: 50%;
        width: auto;
        margin-top: -22px;
        padding: 16px;
        color: white;
        font-weight: bold;
        font-size: 18px;
        transition: 0.3s ease;
        border-radius: 0 3px 3px 0;
        user-select: none;
    }

    /* Position the "next button" to the right */

    .next {
        right: 0;
        border-radius: 3px 0 0 3px;
    }

    .prev {
        left: 0;
        border-radius: 3px 0 0 3px;
    }

    /* On hover, add a black background color with a little bit see-through */

    .prev:hover, .next:hover {
        background-color: rgba(0, 0, 0, 0.8);
    }

    /* Number text (1/3 etc) */

    .numbertext {
        color: #f2f2f2;
        font-size: 12px;
        padding: 8px 12px;
        position: absolute;
        top: 0;
    }

    /* The dots/bullets/indicators */

    .dot {
        cursor: pointer;
        height: 15px;
        width: 15px;
        margin: 0 2px;
        background-color: #bbb;
        border-radius: 50%;
        display: inline-block;
        transition: background-color 0.6s ease;
    }

    .active, .dot:hover {
        background-color: #717171;
    }

    /* Fading animation */

    .fade {
        animation-name: fade;
        animation-duration: 1.5s;
        opacity: 1;
    }

    @keyframes fade {
        from {opacity: .4}
        to {opacity: 1}
    }

}

#LDSPopup-login {

    .LDSPopup-close :is(i, svg) {
        fill: #fff;
    }
}

@layer propertyStyle {
    /**
     * Base Variables
     */
    :root {
        /* Globals */
        /* Font Family */
        --global--font-primary: var(--font-headings, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif);
        --global--font-secondary: var(--font-base, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif);
        /* Colors */
        --global--color-secondary: #007cba;
        --global--color-secondary-hover: #006ba1;
        --global--color-tertiary: #fafafa;
    }

    /**
     * Repsonsive Variables
     */
    @media only screen and (min-width: 830px) {
        :root {
            --responsive--alignwide-width: min(calc(100vw - 2 * var(--global--spacing-horizontal)), 1000px);
        }
    }

    /* Remove extra margin from articles on single post pages. */
    .single .site-main > article,
    .page .site-main > article {
        margin-bottom: 0;
    }

    /* Remove some top padding if the first block on the page is a full-width image, cover, media & text, or group block. */
    .single.hide-post-and-page-titles .entry-content > .wp-block-image.alignfull:first-child,
    .page.hide-post-and-page-titles .entry-content > .wp-block-image.alignfull:first-child,
    .single.hide-post-and-page-titles .entry-content > .wp-block-cover.alignfull:first-child,
    .page.hide-post-and-page-titles .entry-content > .wp-block-cover.alignfull:first-child,
    .single.hide-post-and-page-titles .entry-content > .wp-block-media-text.alignfull:first-child,
    .page.hide-post-and-page-titles .entry-content > .wp-block-media-text.alignfull:first-child,
    .single.hide-post-and-page-titles .entry-content > .wp-block-group.has-background.alignfull:first-child,
    .page.hide-post-and-page-titles .entry-content > .wp-block-group.has-background.alignfull:first-child {
        margin-top: calc(-1 * var(--global--spacing-vertical));
    }

    /* Remove some bottom padding if the last block on the page is a full-width image, cover, media & text, or group block. */
    .page.hide-site-footer .entry-content > .wp-block-image.alignfull:last-child,
    .page.hide-site-footer .entry-content > .wp-block-cover.alignfull:last-child,
    .page.hide-site-footer .entry-content > .wp-block-media-text.alignfull:last-child,
    .single.hide-site-footer.hide-site-footer .entry-content > .wp-block-group.has-background.alignfull:last-child,
    .single.hide-site-footer.hide-comments .entry-content > .wp-block-image.alignfull:last-child,
    .single.hide-site-footer.hide-comments .entry-content > .wp-block-cover.alignfull:last-child,
    .single.hide-site-footer.hide-comments .entry-content > .wp-block-media-text.alignfull:last-child,
    .single.hide-site-footer.hide-comments .entry-content > .wp-block-group.has-background.alignfull:last-child {
        margin-bottom: calc(-1 * var(--global--spacing-vertical));
    }

    /* Center-align headers and footers. */
    .entry-header,
    .page-title,
    .entry-footer,
    .site-info,
    .footer-menu {
        text-align: center;
    }

    /* =============================================================
     * BASE STYLES
     * ============================================================*/
    .datepicker {
        box-sizing: border-box;
        overflow: hidden;
        position: absolute;
        width: 260px;
        z-index: 1;
    }

    .datepicker--inline {
        position: relative;
    }

    .datepicker__inner {
        overflow: hidden;
    }

    .datepicker__month {
        border-collapse: collapse;
        text-align: center;
        width: 100%;
    }

    .datepicker__month--month2 {
        display: none;
    }

    .datepicker__month-day--valid {
        cursor: pointer;
        -webkit-user-select: none;
        user-select: none;
    }

    .datepicker__month-day--lastMonth,
    .datepicker__month-day--nextMonth {
        visibility: hidden;
    }

    .datepicker__month-button {
        cursor: pointer;
        -webkit-user-select: none;
        user-select: none;
    }

    .datepicker__info--feedback {
        display: none;
    }

    .datepicker__info--error,
    .datepicker__info--help {
        display: block;
    }

    .datepicker__buttons {
        -webkit-user-select: none;
        user-select: none;
    }

    .datepicker__close-button,
    .datepicker__clear-button {
        cursor: pointer;
    }

    .datepicker__tooltip {
        position: absolute;
    }

    /* =============================================================
     * THEME
     * ============================================================*/
    .datepicker {
        background-color: #fff;
        border-radius: 4px;
        box-shadow: 8px 8px 40px 5px rgba(0, 0, 0, 0.08);
        color: #000;
        font-family: "Helvetica", "Helvetica Neue", "Arial", sans-serif;
        font-size: 14px;
        line-height: 14px;
    }

    .datepicker__inner {
        padding: 20px;
    }

    .datepicker__month {
        font-size: 12px;
    }

    .datepicker__month-caption {
        border-bottom: 1px solid #dcdcdc;
        height: 2.5em;
        vertical-align: middle;
    }

    .datepicker__month-name {
        text-transform: uppercase;
        border: none;
    }

    .datepicker__week-days {
        height: 2em;
        vertical-align: middle;
    }

    .datepicker__week-name {
        font-size: 11px;
        font-weight: 400;
        text-transform: uppercase;
    }

    .datepicker__month-day {
        transition-duration: 0.2s;
        transition-property: color, background-color, border-color;
        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        color: #333;
        padding: 9px 7px;
        border: 1px solid transparent;
    }

    .datepicker__month-day:focus {
        outline: none;
        background-color: #ffe684;
    }

    .datepicker__month-day--no-checkin {
        position: relative;
    }

    .datepicker__month-day--no-checkin:before {
        bottom: 0;
        content: "";
        display: block;
        left: 0;
        position: absolute;
        z-index: -1;
        width: 0;
        height: 0;
        border-bottom: 8px solid red;
        border-right: 8px solid transparent;
    }

    .datepicker__month-day--no-checkout {
        position: relative;
    }

    .datepicker__month-day--no-checkout:before {
        top: 0;
        content: "";
        display: block;
        right: 0;
        position: absolute;
        z-index: -1;
        width: 0;
        height: 0;
        border-top: 8px solid red;
        border-left: 8px solid transparent;
    }

    .datepicker__month-day--no-checkin.datepicker__month-day--no-checkout:before {
        content: none;
    }

    .datepicker__month-day--invalid {
        color: #e8ebf4;
    }

    .datepicker__month-day--disabled {
        color: #e8ebf4;
        position: relative;
    }

    .datepicker__month-day--disabled:after {
        content: "\00d7";
        left: 50%;
        position: absolute;
        color: red;
        font-size: 16px;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .datepicker__month-day--no-checkin,
    .datepicker__month-day--no-checkout,
    .datepicker__month-day--day-of-week-disabled {
        background-color: rgba(232, 235, 244, 0.5);
    }

    .datepicker__month-day--selected {
        background-color: rgba(56, 88, 233, 0.2);
        color: #fff;
    }

    .datepicker__month-day--selected:after, .datepicker__month-day--selected:before {
        display: none;
    }

    .datepicker__month-day--hovering {
        background-color: rgba(56, 88, 233, 0.3);
        color: #fff;
    }

    .datepicker__month-day--today {
        background-color: #000;
        color: #fff;
    }

    .datepicker__month-day--first-day-selected,
    .datepicker__month-day--last-day-selected {
        background-color: #3858e9;
        color: #fff;
    }

    .datepicker__month-day--last-day-selected:after {
        content: none;
    }

    .datepicker__month-button {
        transition-duration: 0.2s;
        transition-property: color, background-color, border-color;
        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        display: inline-block;
        text-indent: -9999px;
        padding: 5px;
    }

    .datepicker__month-button:after {
        background-repeat: no-repeat;
        background-position: center;
        float: left;
        text-indent: 0;
        content: "";
        width: 12px;
        height: 12px;
    }

    .datepicker__month-button--prev:after {
        background-image: url(../icons/left.svg);
    }

    .datepicker__month-button--next:after {
        background-image: url(../icons/right.svg);
    }

    .datepicker__topbar {
        margin-bottom: 20px;
        position: relative;
    }

    .datepicker--topbar-bottom .datepicker__topbar {
        margin-bottom: 0;
        padding-top: 20px;
        border-top: 1px solid #dcdcdc;
    }

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

    .datepicker__info--selected {
        font-size: 11px;
        text-transform: uppercase;
    }

    .datepicker__info--selected-label {
        color: #333;
    }

    .datepicker__info-text--selected-days {
        font-size: 11px;
        font-style: normal;
    }

    .datepicker__info--error {
        color: red;
        font-size: 13px;
        font-style: italic;
    }

    .datepicker__info--help {
        color: #333;
        font-style: italic;
    }

    .datepicker__close-button,
    .datepicker__clear-button,
    .datepicker__submit-button {
        transition-duration: 0.2s;
        transition-property: color, background-color, border-color;
        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        background-color: #3858e9;
        border-radius: 2px;
        border: none;
        box-shadow: none;
        font-size: 10px;
        color: #fff;
        margin-top: 20px;
        padding: 7px 13px;
        text-decoration: none;
        text-shadow: none;
        text-transform: uppercase;
    }

    .datepicker--topbar-top .datepicker__close-button, .datepicker--topbar-top
    .datepicker__clear-button, .datepicker--topbar-top
    .datepicker__submit-button {
        margin-top: 0;
    }

    .datepicker__close-button:hover,
    .datepicker__clear-button:hover,
    .datepicker__submit-button:hover {
        background-color: #213fd4;
        color: #fff;
    }

    .datepicker__close-button:disabled, .datepicker__close-button[disabled],
    .datepicker__clear-button:disabled,
    .datepicker__clear-button[disabled],
    .datepicker__submit-button:disabled,
    .datepicker__submit-button[disabled] {
        background-color: #c8c9d0;
        color: #fff;
        cursor: not-allowed;
    }

    .datepicker__clear-button + .datepicker__close-button {
        margin-left: 10px;
    }

    .datepicker__clear-button + .datepicker__submit-button {
        margin-left: 10px;
    }

    .datepicker__submit-button {
        width: auto;
    }

    .datepicker__tooltip {
        background-color: #ffe684;
        border-radius: 1px;
        font-size: 11px;
        margin-top: -5px;
        padding: 5px 10px;
    }

    .datepicker__tooltip:after {
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-top: 4px solid #ffe684;
        bottom: -4px;
        content: "";
        left: 50%;
        margin-left: -4px;
        position: absolute;
    }

    @media (min-width: 320px) {
        .datepicker {
            width: 300px;
        }
    }

    @media (min-width: 480px) {
        .datepicker {
            width: 460px;
        }

        .datepicker__months {
            overflow: hidden;
        }

        .datepicker__month {
            width: 200px;
        }

        .datepicker__month--month1 {
            float: left;
        }

        .datepicker__month--month2 {
            display: table;
            float: right;
        }

        .datepicker__month-button--disabled {
            visibility: hidden;
        }

        .datepicker__months {
            position: relative;
        }

        .datepicker__months:before {
            background: #dcdcdc;
            bottom: 0;
            content: "";
            display: block;
            left: 50%;
            position: absolute;
            top: 0;
            width: 1px;
        }
    }

    @media (min-width: 768px) {
        .datepicker {
            width: 640px;
        }

        .datepicker__month {
            width: 240px;
        }

        .datepicker--topbar-has-close-button .datepicker__info,
        .datepicker--topbar-has-clear-button .datepicker__info,
        .datepicker--topbar-has-submit-button .datepicker__info {
            max-width: 325px;
        }

        .datepicker__buttons {
            margin-top: 0;
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
        }
    }
}