.chat-buttons.mob {
    position: absolute;
    bottom: 80px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: all .3s ease;
    padding-bottom: 25px;
}

.chat-buttons.pc{
    position: absolute;
    bottom: 80px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: all .3s ease;
    padding-bottom: 25px;
}

.chat-buttons.mob.active,.chat-buttons.pc.active{
    opacity:1 !important;
    pointer-events:auto
}
.mobile_menu_fixed .mobile_item .chat-buttons.mob a.chat-button-item {
    width: 44px;
    height: 44px;
    display: flex;
    border-radius: 22px;
    overflow: hidden;
    align-items: baseline;
}

.chat-buttons-block a.chat-button-item {
    width: 64px;
    height: 64px;
    display: flex;
    border-radius: 32px;
    overflow: hidden;
    align-items: baseline;
}

.mobile_menu_fixed .mobile_item .chat-buttons.mob a.chat-button-item svg {
    fill: rgb(255, 255, 255);
    width: 29px;
    height: 29px;
    display: block;
    transition: 0.3s ease-out;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
}

.chat-buttons-block a.chat-button-item svg {
    fill: rgb(255, 255, 255);
    width: 40px;
    height: 40px;
    display: block;
    transition: 0.3s ease-out;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
}

.chat-buttons.mob .chat-button-item.chb-wa,.chat-buttons.pc .chat-button-item.chb-wa{
    background: rgb(37, 211, 101);
}
.chat-buttons.mob .chat-button-item.chb-telegram,.chat-buttons.pc .chat-button-item.chb-telegram{
    background: rgb(0, 136, 204);
}
.chat-buttons.mob .chat-button-item.chb-callback,.chat-buttons-block .chat-button-item.chb-callback{
    background: #ef5363;
}
.chat-buttons.mob .chat-button-item.chb-phone,.chat-buttons.pc .chat-button-item.chb-phone{
    background: #00A7EE;
}
.pc-chat-toggle .bclose{
    display: none !important;
}
.pc-chat-toggle.isopen .bopen{
    display: none !important;
}
.pc-chat-toggle.isopen .bclose{
    display: inline !important;
}
.chat-buttons-block{
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 9999;
}

@media screen and (max-width: 900px) {
    .chat-buttons-block{
        display: none;
    }
}
