.header-z .contacts-widget {
    display: none !important;
    opacity: 0;
    pointer-events: none;
}

.contacts-widget {
    position: fixed;
    bottom: 90px;
    left: auto;
    right: 20px;
    z-index: 100;
}

.contacts-widget.opened .contacts-widget__list {
    width: auto;
    padding: 8px;
    right: 100%;
    height: auto;
    z-index: 0;
    opacity: 1;
}


.contacts-widget__item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 100%;
    flex-shrink: 0;
    background: #FF8000;
    cursor: pointer;
    transition: all .2s;
}
.contacts-widget__item:hover {
    opacity: .7;
}
.contacts-widget__item_telegram {
    background: #229ED9;
}
.contacts-widget__item_whatsapp {
    background: #2cb742;
}
.contacts-widget__item_max {
    background: linear-gradient(180deg,#4cf 0%,#53e 66.2%,#93d 100%);
}
.contacts-widget__item-wrap {
    display: flex;
    flex-direction: column;
    width: 70px;
    flex-shrink: 0;
    gap: 4px;
    font-size: 12px;
    line-height: 14px;
    align-items: center;
    text-align: center;
}
.contacts-widget__item svg {
    display: block;
    margin: 0;
    width: 30px;
    height: 30px;
}
.contacts-widget__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    z-index: 2;
}
.contacts-widget__icon svg {
    position: absolute;
    left: 0;
    top: 0;
    transition: all .2s;
    overflow: visible;
    cursor: pointer;
}
.contacts-widget__icon svg:last-child{
    transition: all .2s
}
.contacts-widget.opened .contacts-widget__icon:hover svg:last-child{
    opacity: .7;
}
.contacts-widget__icon svg:first-child rect {
    transition: all .2s
}
.contacts-widget__icon:hover svg:first-child rect {
    filter: drop-shadow( 0px 0px 4px rgba(0, 0, 0, .2));
}
.contacts-widget__icon svg:nth-child(2) {
    opacity: 0;
    left: 4px;
    top: 4px;
}
.contacts-widget.opened .contacts-widget__icon svg:nth-child(1) {
    opacity: 0;
}
.contacts-widget.opened .contacts-widget__icon svg:nth-child(2) {
    opacity: 1;
}

.contacts-widget__list {
    display: flex;
    position: absolute;
    right: 0;
    top: -4px;
    gap: 8px;
    width: 0;
    height: 0;
    overflow: hidden;
    transition: opacity .2s, width .2s;
    opacity: 0;
    backdrop-filter: blur(4px);
    border-radius: 16px;
    padding: 0;
    background: rgba(255, 255, 255, .6);
}

html body #CalltouchWidgetFrame:not(.catalog-detail-page),
html body #Calltouch-widget-container,
#pact-widget{
    display: none !important;
    bottom: 10000px !important;
}



@media (max-width: 630px) {
    body:not(.catalog-detail-page) .contacts-widget {
        bottom: 90px !important;
    }
    .contacts-widget {
        bottom: 193px !important;
    }

    .contacts-widget__item {
        width: 36px;
        height: 36px;
    }

    .contacts-widget__item svg {
        width: 24px;
    }
    .contacts-widget__item-wrap {
        width: 59px;
        font-size: 10px;
        line-height: 13px;
    }
    /*.contacts-widget.opened .contacts-widget__list {*/
    /*    width: 268px;*/
    /*}*/
}
@media (max-width: 374px) {
    body:not(.catalog-detail-page) .contacts-widget {
        bottom: 90px !important;
    }
    .contacts-widget {
        bottom: 193px !important;
    }
}