.float-desktop {
position: fixed;
width:200px;
height:32px;
bottom:20px;
right:20px;
background-color:#137C18;
color:#ffffff;
border-radius:50px;
text-align:center;
text-decoration: none;
font-size:13px;
box-shadow: 1px 1px 2px #999;
z-index:99999;
display: flex; /* обязательно */
align-items: center; /* выравнивание по вертикали */
justify-content: center; /* выравнивание по горизонтали */
}

.float-mobile {
position: fixed;
width:200px;
height:30px;
bottom:12px;
right:12px;
background-color:#137C18;
color:#ffffff;
border-radius:50px;
text-align:center;
text-decoration: none;
font-size:15px;
box-shadow: 1px 1px 2px #999;
z-index:99999;
display: flex; /* обязательно */
align-items: center; /* выравнивание по вертикали */
justify-content: center; /* выравнивание по горизонтали */
}

/* ПК версия */
@media only screen and (min-width: 481px) {
    .float-desktop {
        right: 20px; /* Убираем правую привязку */

        left: auto;  /* Ставим левую */|
    }
}

/* Мобильная версия */
@media only screen and (max-width: 480px) {
    .float-mobile {
        right: auto; /* Убираем правую привязку */
        bottom: 20px;
        left: 20px;  /* Ставим левую */
    }
}

.my-float{
 margin-top:10px;
}
