#bookingBox {
    position: fixed;
    top: 20px;
    right: 20px;

    width: 360px;

    z-index: 99999;

    border-radius: 12px;

    /* ВИНАГИ ВИДИМ */
    display: block !important;

    opacity: 1;
    visibility: visible;
}


/* =========================
   HEADER
========================= */

#bookingHeader {
    position: relative;
    z-index: 10;

    background: #198754;
    color: #fff;

    padding: 14px 18px;

    border-radius: 12px;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: space-between;

    font-size: 18px;
    font-weight: bold;

    box-shadow: 0 5px 15px rgba(0,0,0,.25);

    user-select: none;
}


/* =========================
   CONTENT
========================= */

#bookingBox .card {
    margin-top: 8px;

    border-radius: 12px;

    display: none;

    overflow: hidden;
}


/* OPEN */

#bookingBox.open .card {
    display: block;

    animation: bookingOpen .25s ease;
}


/* =========================
   CONTENT SCROLL
========================= */

#bookingBox .card-body {

    max-height: calc(100vh - 120px);

    overflow-y: auto;

    padding: 18px;
}


/* =========================
   ANIMATION
========================= */

@keyframes bookingOpen {

    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================
   PRICE
========================= */

.booking-price {

    font-size: 34px;

    color: #198754;

    text-align: center;

    font-weight: bold;
}


/* =========================
   IMAGE
========================= */

#bookingBox img {

    border-radius: 10px;

}


/* =========================
   SCROLLBAR
========================= */

#bookingBox .card-body::-webkit-scrollbar {
    width: 6px;
}

#bookingBox .card-body::-webkit-scrollbar-track {
    background: #f1f1f1;
}

#bookingBox .card-body::-webkit-scrollbar-thumb {
    background: #bbb;
    border-radius: 10px;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 576px) {

    #bookingBox {

        top: 10px;
        right: 10px;
        left: 10px;

        width: auto;

    }

    #bookingBox .card-body {

        max-height: calc(100vh - 100px);

    }

}
#bookingBox {
    cursor: grab;
}

#bookingBox.booking-box-dragging {
    cursor: grabbing;
    user-select: none;
}

#bookingBox.booking-box-dragging * {
    user-select: none;
}
