.woot-widget-bubble {
    display: none!important;
}

.circle-menu {
    position: fixed;
    right: 20px;
    height: 60px;
    width: 60px;
    /* Above the one-time promo banner (.ocok-modal z-index: 100000) so the
       chat widget stays reachable/closable while the banner is open. */
    z-index: 100001;
    transition: bottom 0.3s ease-out;
    bottom: 20px;
}

@keyframes pulse {
    0% {
        transform: scale(1.1);
    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

@media (max-width: 768px) {
    .circle-menu {
        bottom: 24px;
        right: 24px;
        height: 40px;
        width: 40px;
    }
}

.circle-menu-btn {
    height: 60px;
    width: 60px;
    border: none;
    outline: none;
    background: #0089cb url("../images/icons/operator.png") no-repeat center center;
    cursor: pointer;
    border-radius: 100%;
    z-index: 1070;
    position: relative;
    animation: 2s ease 0s infinite normal none running pulse;
}

@media (max-width: 768px) {
    .circle-menu-btn {
        height: 40px;
        width: 40px;
        background-size: 40px;
    }
}

.circle-menu-btn:hover {
    background-color: #0089cb;
}

.circle-menu-btn:focus,
.circle-menu-btn:focus-visible,
.circle-menu__item a:focus,
.circle-menu__item a:focus-visible,
.circle-menu__item button:focus,
.circle-menu__item button:focus-visible {
    outline: 2px solid #21262b;
    outline-offset: 2px;
    box-shadow: 0 0 0 4px #ffd24d;
}

.circle-menu-btn.active {
    background: url("../images/icons/circle-menu-close.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-color: #0089cb;
    animation: none;
}

.circle-menu__list {
    background-color: transparent;
    list-style: none;
    position: relative;
    background-size: 50%;
    margin-bottom: 0;
}

.circle-menu__list.opened {
    background: #245F34;
}

.circle-menu__list.opened .circle-menu__item {
    height: 40px;
    width: 40px;
    visibility: visible;
    cursor: pointer;
    border-radius: 50%;
    overflow: hidden;
}

.circle-menu__list.opened .circle-menu__item a {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
}

.circle-menu__list.opened .circle-menu__item button {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
}

.circle-menu__action {
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    border-radius: 50%;
    overflow: hidden;
}

.circle-menu__list.opened .circle-menu__item.max {
    top: -50px;
    left: -55px;
    background: url("../images/icons/max.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 40px 40px;
    background-color: transparent;
}

.circle-menu__list.opened .circle-menu__item.max:hover {
    filter: brightness(0.95);
}

.circle-menu__list.opened .circle-menu__item.whatsapp {
    top: -135px;
    left: -37px;
    background: url("../images/icons/whatsapp.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-color: #00E676;
}

.circle-menu__list.opened .circle-menu__item.vk {
    top: -135px;
    left: -37px;
    background: url("../images/icons/vk.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-color: #00E676;
}

.circle-menu__list.opened .circle-menu__item.whatsapp:hover {
    background-color: #00D262;
}

.circle-menu__list.opened .circle-menu__item.chat {
    top: -50px;
    left: -105px;
    background: url("../images/icons/chat_icon.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-color: #0089cb;
    opacity: 1;
    border-radius: 50%;
    overflow: hidden;
}

.circle-menu__list.opened .circle-menu__item.chat:hover {
    background-image: url("../images/icons/chat_icon.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-color: #006ead;
    opacity: 1;
    border-radius: 50%;
    overflow: hidden;
}

.circle-menu__item {
    transition: all 0.5s ease 0s;
    visibility: hidden;
    height: 0;
    width: 0;
    border-radius: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    position: absolute;
    z-index: 1;
    top: -30px;
    left: 30px;
}

.circle-menu__list {
    padding-inline-start: 0;
    margin-block-start: 0em;
    margin-block-end: 0em;
}

.social_menu_dialog {
    position: fixed;
    z-index: 1060;
    background-color: white;
    bottom: 60px;
    right: 80px;
    width: 70%;
    border:1px solid rgb(0, 157, 224);

    border-radius:20px 20px 0 20px;
    -moz-border-radius:20px 20px 0 20px;
    -webkit-border-radius:20px 20px 0 20px;
}

.social_menu_dialog_header {
    display:flex;
    margin: 5px;
}

.social_menu_dialog_title {
    padding: 5px 10px;
}

.social_menu_dialog_close {
    margin: 5px;
    width: 20px;
    font-weight: bold;
    color: #000;
    border: none;
    background: transparent;
    padding: 0;
    /*background-color: #ffe72c;*/
}

.social_menu_dialog_text {
    padding: 5px 10px;
}

@media (prefers-reduced-motion: reduce) {
    .circle-menu-btn {
        animation: none;
    }
}

.circle-menu__list.opened .circle-menu__item.chat,
.circle-menu__list.opened .circle-menu__item.chat:hover,
.circle-menu__list.opened .circle-menu__item.chat:focus {
    background-image: url("../images/icons/chat_icon.png") !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-color: #0089cb !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    opacity: 1 !important;
}

.circle-menu__list.opened .circle-menu__item.chat:hover {
    background-color: #006ead !important;
}

.circle-menu__list.opened .circle-menu__item.chat .circle-menu__action,
.circle-menu__list.opened .circle-menu__item.chat .circle-menu__action:hover,
.circle-menu__list.opened .circle-menu__item.chat .circle-menu__action:focus,
.circle-menu__list.opened .circle-menu__item.chat .circle-menu__action:active {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    outline: none;
    border-radius: 50% !important;
    opacity: 1 !important;
}