/* =============================================================
 * BASE STYLES
 * ============================================================*/
.datepicker
{
    box-sizing: border-box;
    overflow: hidden;
    position: absolute;
    width: 260px;
    z-index: 1;
    top: 60px;
    right: 0;
}
@media (min-width: 320px)
{
    .datepicker
    {
        width: 300px;
    }
}
@media (min-width: 480px)
{
    .datepicker
    {
        width: 460px;
    }
}
@media (min-width: 768px)
{
    .datepicker
    {
        width: 820px;
    }
}

.datepicker__inner
{
    overflow: hidden;
}

@media (min-width: 480px)
{
    .datepicker__months
    {
        overflow: hidden;
    }
}

.datepicker__month
{
    border-collapse: collapse;
    text-align: center;
    width: 100%;
}

@media (min-width: 480px)
{
    .datepicker__month
    {
        width: 200px;
    }
}
@media (min-width: 768px)
{
    .datepicker__month
    {
        width: 350px;
    }
}

@media (min-width: 480px)
{
    .datepicker__month--month1
    {
        float: left;
    }
}

.datepicker__month--month2
{
    display: none;
}
@media (min-width: 768px)
{
    .datepicker__month--month2
    {
        display: table;
        float: right;
    }
}

.datepicker__month-day--valid
{
    cursor: pointer;
}

.datepicker__month-day--lastMonth,
.datepicker__month-day--nextMonth
{
    visibility: hidden;
}

.datepicker__month-button
{
    cursor: pointer;
}

@media (min-width: 480px)
{
    .datepicker__month-button--disabled
    {
        visibility: hidden;
    }
}

.datepicker__info--feedback
{
    display: none;
}

.datepicker__info--error,
.datepicker__info--help
{
    display: block;
}

.datepicker__close-button
{
    cursor: pointer;
}

.datepicker__tooltip
{
    position: absolute;
}

/* =============================================================
 * THEME
 * ============================================================*/
.datepicker
{
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 8px 8px 40px 5px rgba(0, 0, 0, 0.08);
    color: #fff;
    font-family: var(--primary-font);
    font-size: 1.125rem;
    line-height: 120%;
}

.datepicker__inner
{
    padding: 20px;
}

.datepicker__month
{
    font-size: 1.125rem;
}

@media (min-width: 480px)
{
    .datepicker__months
    {
        position: relative;
    }
    .datepicker__months:before
    {
        background: rgba(0, 0, 0, 0.28);
        bottom: 0;
        content: '';
        display: block;
        left: 50%;
        position: absolute;
        top: 0;
        width: 1px;
    }
}

.datepicker__month-caption
{
    height: 2.5em;
    vertical-align: middle;
}

.datepicker__month-name
{
}

.datepicker__week-days
{
    height: 2em;
    vertical-align: middle;
}

.datepicker__week-name
{
    font-size: 1.125rem;
    font-weight: 200;
    padding-top: 20px;
}

.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: #fff;
    padding: 9px 15px;
}

.datepicker__month-day--no-checkin
{
    position: relative;
}
.datepicker__month-day--no-checkin:after
{
    background-color: rgba(255, 0, 0, 0.1);
    bottom: 0;
    content: '';
    display: block;
    left: 0;
    position: absolute;
    right: 50%;
    top: 0;
    z-index: -1;
}

.datepicker__month-day--no-checkout
{
    position: relative;
}
.datepicker__month-day--no-checkout:after
{
    background-color: rgba(255, 0, 0, 0.1);
    bottom: 0;
    content: '';
    display: block;
    left: 50%;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}

.datepicker__month-day--invalid
{
    color: #e8ebf4;
    opacity: .3;
    cursor:not-allowed;
}

.datepicker__month-day--disabled
{
    color: #e8ebf4;
    position: relative;
    opacity: .3;
    cursor:not-allowed;
}
.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--day-of-week-disabled
{
    background-color: rgba(232, 235, 244, 0.5);
}

.datepicker__month-day--selected
{
    background-color: #777777;
    color: #fff;
}
/*
.datepicker__month-day--selected:after
{
    display: none;
}
*/

.datepicker__month-day--hovering
{
    background-color: #777777;
    color: #fff;
}

.datepicker__month-day--today
{
    background-color: #4a4a49;
    color: #fff;
}

.datepicker__month-day--first-day-selected,
.datepicker__month-day--last-day-selected
{
/*    background-color: #4DC247;*/
    color: #fff;
/*    border-radius: 50%;*/
    background-color: transparent;
    position: relative;
}

.datepicker__month-day--first-day-selected::before,
.datepicker__month-day--last-day-selected::before
{
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 100%;
    background-color: #777777;
    z-index: -1;
}

.datepicker__month-day--last-day-selected::before
{
    left: 0;
}

.datepicker__month-day--first-day-selected::after,
.datepicker__month-day--last-day-selected::after
{
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: #4DC247;
    border-radius: 50%;
    z-index: -1;
}

.datepicker__month-button
{
    transition-duration: 0.5s;
    transition-property: color, background-color, border-color;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 100%;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border: 1px solid #fff;
    position: relative;
    font-size: 0;
}

.datepicker__month-button::after
{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 13px;
    background-size: 100% 100%;
    background: url(../../icons/arrow-left.svg);
    filter: contrast(0) brightness(2);
    transition: filter ease .5s;
}

.datepicker__month-button.datepicker__month-button--next::after
{
    transform: translate(-50%, -50%) rotate(180deg);
}

.datepicker__month-button:hover
{
    background-color: #FFF;
    color: #fff;
}

.datepicker__month-button:hover:after
{
    filter: none;
}

.datepicker__topbar
{
    margin-bottom: 20px;
    position: relative;
}

.datepicker__info-text
{
    font-size: 1rem;
}

.datepicker__info--selected
{
    font-size: 1rem;
    text-transform: uppercase;
}

.datepicker__info--selected-label
{

}

.datepicker__info-text--selected-days
{
    font-size: .875rem;
    font-style: normal;
}

.datepicker__info--error
{
    color: red;
    font-size: .875rem;
}

.datepicker__info--help
{
}

.datepicker__close-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: #4dc247;
    border-radius: 4px;
    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;
    display: none;
}
.datepicker__close-button:hover
{
    background-color: #4a4a49;
    color: #fff;
}
@media (min-width: 768px)
{
    .datepicker__close-button
    {
        margin-top: 0;
        position: absolute;
        right: 0;
        top: 0;
    }
}

.datepicker__tooltip
{
    background-color: #777777;
    border-radius: 2px;
    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 #777777;
    bottom: -4px;
    content: '';
    left: 50%;
    margin-left: -4px;
    position: absolute;
}

/*# sourceMappingURL=hotel-datepicker.css.map */

@media(max-width: 1025px)
{
    .datepicker__month
    {
        max-width: 50%;
        font-size: 1rem;
    }

    .datepicker__week-name
    {
        font-size: 1rem;
    }

    .datepicker__month-day
    {
        padding: 6px 5px;
    }

    .datepicker__month-day--first-day-selected::after, .datepicker__month-day--last-day-selected::after
    {
        width: 33px;
        height: 33px;
    }

}

@media(max-width: 767px)
{
    .datepicker__month
    {
        width: 100%;
        max-width: unset;
    }

    .datepicker__month--month2
    {
        margin-top: 20px;
    }

    .datepicker__months::before
    {
        content: none;
    }

    .datepicker__month-button
    {
        width: 40px;
        height: 40px;
    }

}
