.hotel-date-range {
    position: relative;
}

.hotel-date-trigger {
    text-align: left;
    background: #fff;
}

.hotel-date-icon {
    color: #258792;
    font-size: .8rem;
}

.hotel-date-popover {
    position: absolute;
    top: calc(100% + .4rem);
    left: 0;
    z-index: 1050;
    width: min(720px, calc(100vw - 2rem));
    background: #fff;
    border: 1px solid #cfdfe3;
    border-radius: .75rem;
    box-shadow: 0 1rem 2.5rem rgba(18, 69, 78, .18);
    padding: 1rem;
}

.hotel-date-calendars {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.hotel-calendar-navigation {
    display: grid;
    grid-template-columns: auto auto minmax(0, 1fr) auto auto;
    align-items: center;
    gap: .4rem;
}

.hotel-calendar-jump {
    display: flex;
    justify-content: center;
    gap: .4rem;
}

.hotel-calendar-year-select {
    max-width: 7.5rem;
}

.hotel-calendar-month-select {
    max-width: 6.5rem;
}

.hotel-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: .2rem;
}

.hotel-calendar-weekday {
    color: #6c757d;
    font-size: .78rem;
    text-align: center;
    padding: .3rem 0;
}

.hotel-calendar-day {
    border: 0;
    background: transparent;
    border-radius: .4rem;
    min-height: 2.25rem;
    color: #163f46;
}

.hotel-calendar-day:hover {
    background: #dff1f2;
}

.hotel-calendar-day.in-range,
.hotel-calendar-day.preview-range {
    background: #e2f3f3;
    border-radius: 0;
}

.hotel-calendar-day.range-start,
.hotel-calendar-day.range-end {
    background: #258792;
    color: #fff;
    border-radius: .4rem;
}

.hotel-calendar-blank {
    min-height: 2.25rem;
}

@media (max-width: 767.98px) {
    .hotel-date-popover {
        position: fixed;
        inset: 1rem;
        width: auto;
        overflow-y: auto;
    }

    .hotel-date-calendars {
        grid-template-columns: 1fr;
    }

    .hotel-calendar-navigation {
        gap: .25rem;
    }
}
