/* =============================================================
 * Calendar Library BASE STYLES
 * ============================================================*/

.datepicker {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden;
    position: absolute;
    width: 260px;
    z-index: 1;

    background-color: #fff;
    border-radius: 5px;
    -webkit-box-shadow: 8px 8px 40px 5px rgba(0, 0, 0, 0.08);
    box-shadow: 8px 8px 40px 5px rgba(0, 0, 0, 0.08);
    color: #484c55;
    font-family: "Helvetica", "Helvetica Neue", "Arial", sans-serif;
    font-size: 14px;
    line-height: 14px;
}

.datepicker__inner {
    overflow: hidden;

    padding: 20px;
}

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

    font-size: 12px;
}

.datepicker__month--month2 {
    display: none;
}

.datepicker__month-day--valid {
    cursor: pointer;
}

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

.datepicker__month-button {
    cursor: pointer;

    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-property: color, background-color, border-color;
    transition-property: color, background-color, border-color;
    -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 4px;
    color: #9da6b8;
    display: inline-block;
    padding: 5px 10px;
    background-color: #c9d2d985;
}

.datepicker__info--feedback {
    display: none;
}

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

.datepicker__close-button {
    cursor: pointer;

    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-property: color, background-color, border-color;
    transition-property: color, background-color, border-color;
    -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #746bfd;
    border-radius: 4px;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-size: 10px;
    color: #ffffff;
    margin-top: 20px;
    padding: 7px 13px;
    text-decoration: none;
    text-shadow: none;
    text-transform: uppercase;
}

.datepicker__tooltip {
    position: absolute;

    background-color: #ffe684;
    border-radius: 2px;
    font-size: 11px;
    margin-top: -5px;
    padding: 5px 10px;
}

/* =============================================================
 * Calendar default THEME
 * ============================================================*/
.datepicker__month-caption {
    border-bottom: 1px solid #dcdcdc;
    height: 2.5em;
    vertical-align: middle;
}

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

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

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

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

.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;
}

.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%;
    -webkit-transform: translate(-50%, -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: rgba(116, 107, 253, 0.2);
    color: #fff;
}

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

.datepicker__month-day--hovering {
    background-color: rgba(116, 107, 253, 0.3);
    color: #fff;
}

.datepicker__month-day--today {
    box-shadow:inset 0px 0px 0px 1px rgba(16,48,115,1);
    -webkit-box-shadow:inset 0px 0px 0px 1px rgba(16,48,115,1);
    -moz-box-shadow:inset 0px 0px 0px 1px rgba(16,48,115,1);
    -ms-box-shadow: inset 0px 0px 0px 1px rgba(16,48,115,1);
    background-color: #FFFFFF;
    color: #acb2c1;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px ;
}

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

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

.datepicker__month-button:hover {
    background-color: rgba(16,48,115,1);
    color: #ffffff;
}

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

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

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

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

.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: #acb2c1;
    font-style: italic;
}

.datepicker__close-button:hover {
    background-color: #d6dae5;
    color: #9da6b8;
}

.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;

        position: relative;
    }
    .datepicker__month {
        width: 200px;
    }
    .datepicker__month--month1 {
        float: left;
    }
    .datepicker__month--month2 {
        display: table;
        float: right;
    }
    .datepicker__month-button--disabled {
        visibility: hidden;
    }
    .datepicker__months:before {
        background: #dcdcdc;
        bottom: 0;
        content: '';
        display: block;
        left: 50%;
        position: absolute;
        top: 0;
        width: 1px;
    }
}

@media (min-width: 768px) {
    .datepicker {
        width: 560px;
    }
    .datepicker__month {
        width: 240px;
    }
    .datepicker__close-button {
        margin-top: 0;
        position: absolute;
        right: 0;
        top: 0;
    }
}





/* Calender pop-up start */
.calendar.modal{
    background-color: rgba(16,48,115,0.7);
}
.calendar .modal-content {
    width: 562px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    background-color: #FFFFFF;
}
.calendar .datepicker{
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    position: inherit;
    box-shadow: none;
    -webkit-box-shadow:none;
    -moz-box-shadow:none;
    -ms-box-shadow:none;

}
.calendar .modal-header{
    background-color: #FFFFFF;
}
.calendar .calendar-close{
    padding: 0 11px;
    font-size: 36px;
    line-height: 25px;
    right: 6px;
    position: absolute;
    top: 12px;
}
.calendar .calendar-close svg{
    width: 18px;
    height: 18px;
}
.filter-pop-up-container
.close-btn{
    right: -5px;
    top: 5px;
}
.filter-popup .close-btn svg {
    width: 18px;
    height: 18px;
    color: #000;
}
.calendar .calender-buttons {
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 0 20px;
}
.calendar .calender-buttons button {
    cursor: pointer;
}
.calendar .btn-skip {
    border: none;
    background-color: #FFFFFF;
    font-size: 1rem;
    font-weight: 600;
    padding: 16px 55px 16px 0;
}
.calendar .btn-continue {
    width: 175px;
    padding:10px 15px;
    border: none;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    color: #FFFFFF;
    font-size: 1rem;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
    -ms-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.calendar .btn-continue:hover{
    opacity: .95;
}
.calendar .btn-continue span:first-child {
    font-weight: 700;
    font-size: 1rem;
    display: block;
    line-height: 17px;
}
.calendar .btn-continue span:last-child {
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 17px;
    display: block;
}
.calendar .datepicker__close-button{
    display: none;
}
.calendar .btn-continue:disabled {
    background-color: #c9d2d985;
    color: #757575;
}
/* Calender day color  edit start */
.datepicker__month-day--selected,
.datepicker__month-day--hovering{
    background-color: rgba(16,48,115,0.3);
    color: #484c55;
}
.datepicker__month-day--first-day-selected{
    background-color: #103076;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    color: #FFFFFF;
}
.datepicker__month-day--last-day-selected{
    background-color: #103076;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    color: #FFFFFF;
}
/* Calender day color  edit start */
@media screen and (max-width: 767px) {
    /* Calender pop-up start */
    .modal-content {
        width: 464px;
    }

    .calendar .calendar-close {
        font-size: 42px;
        top: 40px;
        right: -28px;
    }

    .calendar .calender-buttons {
        justify-content: space-between;
    }

    .calendar .btn-skip {
        padding: 16px 12px;
    }
    /* Calender pop-up end */
}

@media (max-width: 479px) {
    /* Calender pop-up start */
    .calendar .modal-content {
        width: 310px;
    }

    .datepicker {
        width: 308px;
    }
    /* Calender pop-up end */
}

/* Calender pop-up end */