/* Шапка */
.t967__logo a {
    margin: 0;
    border: 0;
    padding: 0;
    display: block;
}

/* Заголовки в прайствах */
.t795__title {
    margin-bottom: 10px;
}

/* Прайс-листы */
.t812__pricelist-item__row_1 {
    padding-bottom: 5px;
}
.t812__pricelist-item__row_2 {
    padding-top: 5px;
}
.t812__col-header {
    font-weight: 400;
}

/* Контакты */
.t-input, .t-input::placeholder, .t-input__vis-ph {
    font-family: 'Manrope' !important;
}

/* Специалисты */
.t527__bottommargin_lg {
    margin-bottom: 10px;
}
.t527__bgimg {
    margin-bottom: 20px;
}





/* КНОПКА ОНЛАЙН-ЗАПИСИ */
.son_wrapper {
    width: 100px;
    height: 100px;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 9999;
}
/* Убираем подчеркивание */
.son_wrapper a {
    text-decoration: none;
}
/* Основной кружок */
.son_circle {
    width: 80px;
    height: 80px;
    border-radius: 250px;
    background: #333333; 
    background: linear-gradient(135deg, #222 50%, #444 100%) !important;
    box-shadow: 0px 1px 3px rgba(0,0,0,0.60);
}
/* Текст внутри */
.son_circle div {
    padding-top: 24px;  /* .son_circle - .son_circle div , разделить на 2 */
    text-align: center;
    font-size: 12px;
    line-height: 16px;
    height: 32px;
    font-family: 'Manrope', sans-serif;
    color: #fff;
    font-weight: 600 !important;
}

/* Анимированный кружок */
.son_outercircle {
    z-index: -1000;
    position: absolute;
    width: 50px;
    height: 50px;
    border: 5px solid #e96b80;
    border-radius: 50%;
    margin-top: 10px;
    margin-left: 10px;
    animation: son_outercircle 2s infinite linear;
}
@keyframes son_outercircle {
    0% {
        transform: scale(1,1) opacity: 1;
    }
    80% {
        opacity: 0.8;
    }
    100% {
        transform: scale(2,2);
        opacity: 0;
    }
}
