.s-iconmn {
    font-size: 14px;
    position: fixed;
    right: 10px;
    bottom: 62%;
    gap: 10px;
    display: flex;
    z-index: 99;
    transform: translateY(50%);
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    transition: 0.1s linear;
    -webkit-transition: 0.1s linear;
    -moz-transition: 0.1s linear;
    -ms-transition: 0.1s linear;
    -o-transition: 0.1s linear;
}

.s-iconmn-bg {
    background: linear-gradient(90.33deg, #0B339A 0%, #0097DC 49.13%, #007AD2 99.72%);
    width: 52px;
    height: 52px;
    border-radius: 99px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s ease;
    border: 1.5px solid #FFFFFF;
}

.box__simn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    position: relative;
    padding: 1px;
    background-color: #fff;
    border-radius: 99px;
    box-shadow: 8.23529px 12.3529px 12.3529px rgba(0, 0, 0, 0.1);
}

.box__simn>span:first-child {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    align-items: center;
    width: 0;
    height: 48px;
    border-radius: 13px;
    opacity: 0;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
}

.s-iconmn-bg:hover .box__simn>span:first-child {
    opacity: 1;
    background: transparent;
    right: 15px;
}

.box__simn>span:last-child {
    position: relative;
    display: inline-block;
    width: 25px;
}

.s-iconmn-bg:hover {
    width: 270px;
    background: linear-gradient(90.33deg, #0B339A 0%, #0097DC 49.13%, #007AD2 99.72%);
    justify-content: space-between;
    padding: 10px;
    margin: 0 auto;
}

.box__simn svg {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.s-iconmn-bg:hover .box__simn>span>svg>path {
    stroke: #fff;
    fill: #fff !important;
}

.s-iconmn-bg:hover .box__simn {
    background: transparent;
    box-shadow: none;
    justify-content: flex-start;
}

@media screen and (max-width: 768px) {
    .s-iconmn {
        display: none;
    }

    .social-buttons {
        bottom: 245px !important;
    }
}