.booking-calendar__title {
    font-size: 28px;
    text-align: center;
}

.reservation-calendar {
    background-color: transparent !important;
    border: none !important;
}

.vc-container {
    font-family: inherit !important;
    --rounded-full: 0px !important;
    --blue-200: #CE2E2B !important;
    --blue-600: #af1c1a !important;
    --blue-700: #CE2E2B !important;
    --blue-900: #a5a5a5 !important;
    width: 100%;
}

.vc-pane {
    /* @include media-breakpoint-down(md) {
        min-width: 100% !important;
    } */
}

.vc-pane:first-child,
.vc-pane:last-child {
    transform: scale(.4);
    /* filter: blur(12px); */

    /* @include media-breakpoint-down(md) {
        filter: none;
    } */

    /* @include media-breakpoint-down(md) {
        transform: none;
    } */
}

.vc-title {
    display: flex;

    /* @include media-breakpoint-down(md) {
        display: flex;
    } */
}

.vc-header {
    padding: 10px 18px 26px !important;
}

.vc-arrows-container {
    top: 40% !important;
    justify-content: space-around !important;
    
    /* @include media-breakpoint-down(md) {
        top: 0 !important;
        justify-content: space-between !important;
    } */
}

.vc-arrow {
    background: #fff !important;
    padding: 20px 15px !important;

    /* @include media-breakpoint-down(md) {
        background: transparent !important;
    } */
}

.vc-arrow:hover {
    background: #fff !important;
}

.vc-title {
    font-size: 32px !important;
    text-transform: capitalize;
    color: var(--blue-700) !important;
}

.vc-weekday {
    text-transform: uppercase;
    color: var(--blue-700) !important;
    padding-bottom: 28px !important;
}

.vc-weeks {
    grid-template-columns: repeat(7, 0fr) !important;
    justify-content: center;

    /* @include media-breakpoint-down(md) {
        grid-template-columns: repeat(7, 1fr) !important;
    } */
}

.vc-day.in-month {
    background: #fff;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.05);
}

.vc-day-content {
    line-height: 60px !important;
    color: #a8a6a3;
    border-radius: 0 !important;
    width: 60px !important;
    height: 60px !important;
}



.vc-day-content:focus {
    background-color: var(--blue-200) !important;
}

.vc-day-content.is-disabled {
    color: #b9b9b9 !important;
    background: #FAF3DD !important;
}

    /* @include media-breakpoint-down(lg) {
        width: 40px !important;
        height: 40px !important;
    } */

.vc-highlight,
.vc-highlight[style] {
    border-radius: none !important;
    width: 60px !important;
    height: 60px !important;
}

.mt-5 {
    margin-top: 1.6rem;
}

.date-panel {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.date-panel .bg-white {
    font-size: 14px;
    color: var(--blue-700);
    box-shadow: 0px 4px 31.68px 0.32px rgba(0, 0, 0, 0.05);
    background: #fff;
    width: 360px;
    padding: 9px 20px;
    margin-right: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.date-panel .bg-white span {
    vertical-align: middle;
}

.date-panel .bg-white .value {
    font-size: 20px;
    font-weight: 600;
    text-align: right;
    white-space: nowrap;
    color: #747474;
}

.date-panel .btn-primary {
    text-transform: uppercase;
    color: white;
    background: #CE2E2B;
    border: none;
    padding: 13px 29px;
    margin-top: 10px;
}

/* .price-component {
    .bg-white {
        font-size: 14px;
        color: $color-text__primary;
        box-shadow: 0px 4px 31.68px 0.32px rgba(0, 0, 0, 0.05);
        width: 360px;
        padding: 9px 20px;
        margin-right: 15px;

        span {
            vertical-align: middle;
        }

        .value {
            font-size: 20px;
            font-weight: 600;
            text-align: right;
            white-space: nowrap;
            color: $text-secondary;
        }

        @include media-breakpoint-down(md) {
            width: 100%;
            margin-bottom: 1rem;
        }
    }

    @include media-breakpoint-down(md) {
        flex-wrap: wrap;
        flex-direction: row;
    }
} */

.explanations {
    font-size: 14px;
    font-weight: 500;
    color: inherit;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.explanation {
    padding: 10px 18px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.explanation .label {
    color: #747474;
    margin-left: 14px;
}

.explanation .square {
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
    width: 20px;
    height: 20px;
}

.explanation .square.waiting {
    background: #e9e9f0;
}

.explanation .square.reserved {
    background: #FAF3DD;
}

.explanation .square.free {
    background: #ffffff;
}

.explanation .square.selected {
    background: #CE2E2B;
}

.reservation-form .form-control {
    border: 1px solid #dbd5c1;
    width: 100%;
    padding: 1.4rem 1rem;
    margin-bottom: 1rem;
}

.calendar__counter {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

/* #kalendar {
    .btn-wrapper {
        position: relative;

        .error-message {
            font-size: 12px;
            line-height: 1.4;
            text-align: center;
            color: $white;
            background: #cc3544;
            width: 100%;
            padding: 8px 12px;
            position: absolute;
            top: -50px;
        }
    }
}

@media (max-width: 1332px) {
    .reservation-calendar .vc-day-content {
        width: 100% !important;
        height: 100% !important;
        padding: 0 30px !important;
    }

    .reservation-calendar .vc-arrows-container {
        justify-content: space-between !important;
    }
}

@media (max-width: 1440px) {
    .reservation-calendar .vc-arrows-container {
        justify-content: space-between !important;
    }
}*/

@media (max-width: 764px) {
    .reservation-calendar .vc-pane:first-child {
        transform: none;
    }

    .reservation-calendar .vc-arrows-container {
        justify-content: space-between !important;
        top: 0 !important;
    }

    .reservation-calendar .vc-arrow {
        padding: 10px 5px !important;
    }

    .reservation-calendar .vc-weeks {
        grid-template-columns: repeat(7, 1fr) !important;
    }

    .reservation-calendar .vc-day-content {
        width: 44px !important;
        height: 44px !important;
        padding: 0 !important;
    }
}