
/* скрываем везде */
.mobile-call-btn{
    display:none !important;
}

/* только мобильная версия */
@media screen and (max-width:980px){

    .mobile-call-btn{
        display:flex !important;
        align-items:center;
        justify-content:center;

        width:42px;
        height:42px;
        border-radius:50%;
        background:#c30d23;

        position:fixed;
        top:14px;
        right:75px; /* перед бургером */

        z-index:999999;
    }
}
