:root {
    --available-bg: var(--bs-light);
    --available-fg: var(--bs-black);
    --unavailable-bg: var(--bs-gray-500);
    --unavailable-fg: var(--bs-black);
}

.table td.inpast {
    background-color: var(--bs-secondary-bg);
    color: var(--bs-secondary-color);
}
.booked {
    background-color: var(--unavailable-bg) !important;
    color: var(--unavailable-fg);
}
.table .booked.firstday {
    background-image : linear-gradient(to right bottom, var(--available-bg) 50%, var(--unavailable-bg) 50%) !important;
}
.table .lastday {
    background-image : linear-gradient(to right bottom, var(--unavailable-bg) 50%, var(--available-bg) 50%) !important;
}
.date-day.checkdates {
    background: #5CA8B2 !important;
    color: #fff !important;
}

.quote-viewrates {
    display: none;
}

.quote-menu-wrapper {
    /*position: relative;
    margin-top: 20px;*/
}
.quote-menu-wrapper .quote-menu {
    display: none;
    opacity: 0;
    z-index: 999;
    cursor: default;
    margin: 0;
    padding: 0;
    background: #eee;
    border-radius: 4px;
    width: 240px;
    height: 280px;
    position: absolute;
    transform: translate3d(0, 0px, 0);
    transition: all 0.5s cubic-bezier(0.6, -0.28, 0.735, 0.045);
}
.quote-menu-wrapper .quote-menu .arrow-down {
    position: absolute;
    right: 95px;
    bottom: -20px;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #eee;
    box-shadow: 0px 20px 10px -7px #777;
}
.quote-menu-wrapper .onclick-quote-menu {
    opacity: 1;
    transform: translate3d(5px, -3px, 0);
    transition: all 0.5s cubic-bezier(0.6, -0.28, 0.735, 0.045);
}

.quote-close {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #222;
    border-radius: 50px;
    color: #fff;
    padding: 2px 8px;
    opacity: 0.7;
    font-weight: bold;
    cursor: pointer;
}

.quote-image img {
    width: 100%;
    max-height: 160px;
}
.quote-title {
    margin: 3px;
}
.quote-message {
    display: none;
}
@media (max-width: 600px) {
    .quote-menu {
        position: fixed !important;
        bottom: 0px;
        left: -5px;
        width: 100% !important;
    }
    .quote-image {
        text-align: center;
    }
    .quote-image img {
        width: auto;
    }
}
