.fix-consult {
    padding: 8px;
    position: fixed;
    left: 0;
    bottom: 50px;
    width: 152px;
    background: #373737;
    border-radius: 0px 20px 20px 0px;
    box-sizing: border-box;

    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    color: #FFFFFF;
    z-index: 99;
    text-align: right;

    transition: all 300ms ease-in-out;
}

.fix-consult.hide {
    left: -153px;
}

.fix-consult__close {
    width: 16px;
    height: 16px;
    line-height: 16px;
}

.fix-consult__inner {
    position: relative;
    text-align: center;
}

.fix-consult__title {
    font-weight: 700;
    font-size: 10px;
    line-height: 12px;
    margin-bottom: 12px;
}

.fix-consult__links {
    margin-bottom: 12px;
    line-height: 0;
}

a.fix-consult__link {
    display: inline-block;
    text-decoration: none !important;
}

.fix-consult__button {
    padding: 0 20px;
    height: 31px;
    background: #00CEFE;
    border-radius: 30px;
    color: #fff;
    display: inline-block;

    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 30px;
}

.only-mobile {
    display: none;
}

@media all and (max-width: 600px) {
    .only-mobile {
        display: block;
    }

    .fix-consult.hide {
        left: -120%;
    }

    .fix-consult {
        display: flex;
        align-items: center;
        width: auto;
        max-width: 88%;
    }

    .fix-consult__close {
        margin-right: 12px;
    }

    .fix-consult__inner {
        text-align: left;
        display: flex;
        align-items: center;
    }

    .fix-consult__title {
        margin-bottom: 0;
        margin-right: 12px;
    }

    .fix-consult__links {
        margin-bottom: 0;
        display: flex;
        margin-right: 12px;
        gap: 4px;
    }
}