@media (max-width: 767px) {
	.price .price__table{
		font-size: 0.85em;
	}
}
.compensate-for-scrollbar {
    margin-right: 0px !important;
}

svg *[fill] {fill: currentColor}

.tg__icon_wrap{
    background-image: -webkit-gradient(linear, top, bottom, from(#3d57a1), to(#587fcc));
    background-image: -o-linear-gradient(top, #3d57a1 0%, #587fcc 100%);
    background-image: linear-gradient(to top, #3d57a1 0%, #587fcc 100%);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    border: 1px solid white;
}

.tg__icon_wrap:hover{
    
    background-image: none;
    background-color: white;
  -webkit-box-shadow:inset 0px 0px 0px 2px #3E58A2;
     -moz-box-shadow:inset 0px 0px 0px 2px #3E58A2;
          box-shadow:inset 0px 0px 0px 2px #3E58A2;

    .tg__icon{
        color: #3E58A2;
    }
}

.tg__icon_a{
    position: absolute;
    width: 35px; height: 35px;
}

.tg__icon{
    color: white;
    padding-right: 4px;
    padding-top: 2px;
}

.tg__icon_mobile{
    display: block;
    color: white;
    padding: 3px 4px 0 4px;
}

@media (max-width: 575px) {
    .tg__icon_wrap{
        margin-right: 1em;
    }
    .tg__icon_mobile{
        scale: 1.2;
        padding: 0 4px 0 4px;
    }
}

@media (max-width: 428px) {
    .tg__icon_wrap{
        margin-right: 1em;
        margin-left: 1em;
    }
}
.specialist-card__caption span{
    font-size: 1.25rem;
    text-decoration: none;
    color: #1C1C1C;
    font-weight: 700;
    display: inline-block;
    padding-top: 1.75rem;
    padding-left: 1.75rem;
    padding-right: 1rem;
    position: relative;
}

.modal-form__text.text--policy
{
    font-size: .9rem;
}

.modal-form__text.text--policy a{
    color: #fff;
    border-bottom: 1px dashed #fff;
}
/* Стилизация чекбокса */
.checkbox-input {
    appearance: none;
    width: 1rem;
    height: 1rem;
    border: 1px solid #3E58A2;
    border-radius: 0.25rem;
    background-color: #fff;
    cursor: pointer;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    margin: 0;
}

/* Оформление состояния checked */
.checkbox-input:checked{
    background-color: #3E58A2;
    border-color: #ffffff;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}

/* Сброс стандартного оформления чекбокса */
input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    /* базовые стили для кастомного оформления */
}

/* Стили для состояния "отмечено" */
input[type="checkbox"]:checked {
    color: #3E58A2; 
}

/* Стили для состояния "отключено" */
input[type="checkbox"]:disabled {
    color: #b4b4b4;
    padding: 12px;
}