/* Стили для радиокнопок в Формах. Начало */
.t-radio__wrapper {
    display: inline-block;
    justify-content: space-between;
}

.t-radio__control:first-child {
    margin-top: 0;
}

label.t-radio__control {
    padding: 15px 25px;
    border-radius: 8px;
    width: 37%;
    text-align: center;
}

.t-radio__indicator {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    position: absolute;
    top: 0;
    left: 0;
    border-width: 1px;
    border-color: #dddddd !important;
}

.t-radio__indicator:after {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    z-index: -1;
}

.t-radio__control .t-radio:checked~.t-radio__indicator:after {
    background: #eb5e28 !important;
    color: white;
}

.t-radio__control .t-radio:checked~ span {
   
    color: white;
}
.t-radio__control .t-radio:checked~.t-radio__indicator {
    border-width: 1px solid #eb5e28;
}    
/* Стили для радиокнопок в Формах. Конец */    