.social-item:hover .social-item__icon.social-item__icon_inst {
background: radial-gradient(
        circle at 30% 107%,
        #fdf497 0%,
        #fdf497 5%,
        #fd5949 45%,
        #d6249f 60%,
        #285aeb 90%
    );
}
.social-item:hover .social-item__icon.social-item__icon_viber {
    background: rgba(129, 93, 243, 1);
}

.social-item:hover .social-item__icon path {
    /* fill: rgb(255, 255, 255); */
}

.social-item:hover .social-item__icon.social-item__icon_wa {
    background: rgba(37, 211, 102, 1);
}

.social-item:hover .social-item__icon.social-item__icon_fb {
    background: rgba(0, 100, 224, 1);
}

.social-item:hover .social-item__icon.social-item__icon_telegram {
    background: linear-gradient(
        135deg,
        #37aee2 0%,
        #1e96c8 100%
    );
}

.social-item:hover .social-item__icon {
    /*background: rgba(102, 102, 112, 0.62) !important;*/
    /*background: rgba(79, 79, 86, 1) !important;*/
    /* background: #636060 !important; */
    /* background: rgba(88, 86, 86, 0.8) !important; */
    /* background: #565555 !important; */
    /* background: rgba(85, 85, 85, 0.79) !important; */
    /* background: #535354 !important; */
    /* background: #919090 !important; */
    /* background:#6d6d70 !important; */
    /* background: #5d5d5d !important; */
    background: #dadada !important;

}




/* social button */

.flex_centered_item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-items-bg {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    display: none;
    background-color: transparent;
    transition: background 0.4s;
    z-index: 17;
}

.social-items-bg.active {
    transition: background 0.4s;
    background-color: rgba(41, 41, 41, 0.6);
}

.social-items-bg.active~.social-items-wrapper {
    z-index: 18;
}

.social-items-wrapper {
    position: fixed;
    right: 2%;
    bottom: 80px;
    z-index: 17;
    cursor: pointer;
}

.social-items-menu {
    display: none;
}

.social-item {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 15px 0px;
    position: relative;

    &.phone {
        display: none;
    }
}

.social-item__description {
    cursor: pointer;
    background-color: white;
    text-align: center;
    padding: 5px 10px;
    border-radius: 20px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0%, -50%);
    opacity: 0;
    transition: all 0.3s linear;
    color: #000000;
    font-size: 14px;
}

@media (hover: hover) {
    .social-item:hover .social-item__description {
        transform: translate(-110%, -50%);
        opacity: 1;
    }

    .social-item:hover .social-item__icon {
        background-color: #F4BEBE;
    }
}

.social-item__icon {
    height: 52px;
    width: 52px;
    border-radius: 50%;
    background: #fff;
    background-position: center;
    background-size: 45%;
    background-repeat: no-repeat;
}

.social-btn-bg {
    transition: all 0.3s;
    cursor: pointer;
}

.social-btn-bg.active {
    transition: all 0.3s;
    cursor: pointer;
}

.social-btn {
    width: 52px;
    height: 52px;
    border-radius: 100%;
    background: #ffffff;
    border: 1px solid #F5F5F5;
    box-shadow: 0px 6.39587px 16.3182px rgba(40, 40, 40, 0.18);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s linear, transform 0.3s;
    position: relative;
}

.social-btn .s-btn.close {
    visibility: hidden;
}

.social-btn-bg.active .s-btn-close {
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-btn .s-btn-close {
    display: none;
}

.social-btn.active {
    transition: background 0.3s linear, transform 0.3s;
}

.s-btn {
    position: absolute;
    left: 50%;
    bottom: 50%;
    transform: translate(-50%, 50%);
    //display: block;
    opacity: 0;
    -webkit-transition: opacity 0.7s ease-in-out;
    -moz-transition: opacity 0.7s ease-in-out;
    -ms-transition: opacity 0.7s ease-in-out;
    -o-transition: opacity 0.7s ease-in-out;
    transition: opacity 0.7s ease-in-out;
}

.s-btn.fade-out {
    opacity: 0;
}

.s-btn.fade-in {
    opacity: 1 !important;
    -webkit-transition: opacity 1.5s ease-in-out;
    -moz-transition: opacity 1.5s ease-in-out;
    -ms-transition: opacity 1.5s ease-in-out;
    -o-transition: opacity 1.5s ease-in-out;
    transition: opacity 1.5s ease-in-out;
}

.btn-5 svg,
.btn-3 svg,
.btn-2 svg,
.btn-1 svg {
    height: 24px;
    width: 24px;
}

.btn-5 {
    display: none;
}

.s-btn.show {
    display: block;
}

.social-btn-pulse {
    position: fixed;
    width: 52px;
    height: 52px;
    right: 2%;
    bottom: 80px;
}

.social-btn-pulse.active {
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 100%;
    z-index: 0;
    opacity: 1;
    animation: Pulse 2s ease infinite;
}

@keyframes Pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

@media (max-width: 1024px) {

    .social-btn,
    .social-item__icon {
        width: 48px;
        height: 48px;

        svg {
            max-width: 22px;
            max-height: 25px;
        }
    }

    .social-item__description {
        padding: 2px 8px;
        font-size: 13px;
    }

    .social-btn .s-btn-close svg {
        width: 19px;
        height: 19px;
    }

    .social-btn {
        box-shadow: 0px 4px 20px rgb(40, 40, 40, 0.4);
    }

    .s-btn svg {
        height: 22px;
        width: 22px;
    }

    .social-btn-pulse {
        width: 48px;
        height: 48px;
        right: 16px;
    }

    .social-items-wrapper {
        right: 16px;
    }
}

@media (max-width: 990px) {
    .social-item .social-item__description {
        transform: translate(-110%, -50%);
        opacity: 1;
    }
}

@media (max-width: 532px) {
    .social-item.phone {
        display: flex;
    }

    .btn-5 {
        display: block;
    }
}