.call-t-w * {
    text-decoration: none;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
.call-t-w {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 1;
    direction: rtl;
}
.call-t-w .flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 5px;
}
.call-t-w .btn {
    position: inherit;
    top: 0;
    right: 0;
}

.call-t-w .call {
    font-size:0.9em!important;
    font-weight:bold;
    height:50px;
    width: 100%;
    background: #53e272;
    color: #fff;
    fill: #fff;
    font-size: 12px;
    transition: all 0.3s;
}
.call-t-w .call:hover {
    transform: translateY(-3px);
}
.call-t-w .call svg {
    width: 30px;
    height: 30px;
}
.call-t-w .tel {
    font-size:0.8em!important;
    font-weight:bold;
    height:35px;
    background: #efefef;
    font-size: 10px;
    display: inline-flex;
    text-align: center;
    width: 45%;
    padding: 0.4em;
}
.call-t-w .tel svg {
    margin: 0 2px;
    width: 12px;
    height: 12px;
}
.call-t-w .client {
    position:relative;
    z-index:10;
}
.call-t-w .mosh {
    background:#fff;
    height: 50px;
    box-shadow: 3px 3px 0px 0px #cbcbcb;
    flex-shrink:0;
    padding:10px 20px
}
.call-t-w .mosh:hover {
    color: #fff;
    fill: #fff;
}
.call-t-w .mosh svg {
    width: 12px;
    height: 12px;
}
.call-t-w .con-ico {
    background:#fff;
    width: 40px;
    aspect-ratio: 1 / 1;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}
.con-ico svg{
    width:60%
}
.stroke {
    stroke: #000;
}
.call-t-w .an1 svg {
    width: 26px;
    height: 26px;
}
.call-t-w .an2 svg {
    width: 22px;
    height: 22px;
}
.call-t-w .con-ico:hover  {
    background: #2e9b87;

}
.call-t-w .con-ico:hover path{
        fill: #fff;
    stroke: #fff;
}

.con-ico:nth-child(2n) {
    animation: nik-bounceIn 5s 0s infinite;
}
@keyframes nik-bounceIn {
    0% {
        transform: translateY(0);
    }
    33% {
        transform: translateY(5px);
    }
    66% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0);
    }
}
.con-ico:nth-child(2n-1) {
    animation: nik-bounceIn2 5s 0s infinite;
}
@keyframes nik-bounceIn2 {
    0% {
        transform: translateY(0);
    }
    33% {
        transform: translateY(-5px);
    }
    66% {
        transform: translateY(5px);
    }
    100% {
        transform: translateY(0);
    }

}
@media (max-width:650px) {
    .info img {
        width: 30px;
    }
    .call-t-w .con-ico{
        width: 50px !important;
    }
    .call-t-w{
        right:0;
        bottom:15px;
    }
    .call-t-w .client{
        width:100vw;
        flex-direction:column-reverse;
    }
    .call-t-w div.social{
        translate: 0 100%;
    }
    .call-t-w div.social.show{
        translate:0 -20%;
    }
}
div.social {
   opacity: 0 !important;
    z-index: -1;
    translate: +100% 0;
    transition: all 0.3s;

}
div.social.show {
    opacity: 1 !important;
    z-index: 999;
    display: flex !important;
    translate: 0 0;
}