/* ===== BOOK NOW BUTTON ===== */

.t706__carticon-wrapper {

    position: fixed !important;

    right: 20px !important;
    bottom: 180px !important;

    width: 220px !important;
    height: 74px !important;

    border-radius: 24px !important;

    background: rgba(35,35,35,0.82) !important;

    border: 2px solid #d4af37 !important;

    box-shadow:
        0 0 18px rgba(212,175,55,0.45),
        0 0 30px rgba(212,175,55,0.18) !important;

    backdrop-filter: blur(8px) !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    overflow: hidden !important;

    z-index: 999999 !important;
}

/* СКРЫВАЕМ СТАНДАРТНУЮ ИКОНКУ */

.t706__carticon-wrapper > *:not(.t706__carticon-counter) {

    opacity: 0 !important;
    visibility: hidden !important;
}

/* ТЕКСТ */

.t706__carticon-wrapper::before {

    content: "BOOK NOW";

    position: absolute;

    color: #f5d76e !important;

    font-size: 18px !important;
    font-weight: 700 !important;

    letter-spacing: 3px !important;

    z-index: 5;

    text-shadow:
        0 0 8px rgba(212,175,55,0.6);
}

/* СЧЕТЧИК */

.t706__carticon-counter {

    position: absolute !important;

    top: 4px !important;
    right: 4px !important;

    width: 22px !important;
    height: 22px !important;

    background: #ff7a45 !important;
    color: #fff !important;

    border-radius: 50% !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    font-size: 11px !important;
    font-weight: 700 !important;

    border: 2px solid #2d3142 !important;

    box-shadow: 0 0 8px rgba(0,0,0,0.35) !important;

    z-index: 999999 !important;
}