.callback_buttons_mobile{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    z-index: 20;
}
.callback_buttons_mobile_wrapper{
    display: flex;
    align-items: center;
    height: 100%;
}
.callback_button_mobile {
    position: relative;
    top: 0;
    border-radius: 0;
    width: 25%;
    flex-direction: column;
    align-items: center;
    right: auto;
    height: 100%;
    background-color: #FFF;
    display: flex;
    cursor: pointer;
    transition: right ease-in-out 0.4s;
    border: 1px solid #00844b;
    border-right: none;
    padding-top: 3px;
}
.callback_button_mobile:hover {
    right: -1px;
    -webkit-transition: right ease-in-out 0.4s;
    transition: right ease-in-out 0.4s;
}
.callback_button_mobile__img {
    width: 25px;
    height: 25px;
}
.callback_button_mobile__text {
    padding-top: 3px;
    color: #00844b;
    font-weight: 600;
    text-transform: initial;
    margin-left: 0;
    text-align: center;
    font-size: 13px;
    line-height: 15px;
}