.app-radio {
    display: flex;
    align-items: center;
}
.app-radio__input {
    position: absolute;
    clip: rect(0,0,0,0);
    pointer-events: none;
}
.app-radio__toggle {
    width: 44px;
    height: 24px;
    background: #E8E8EE;
    border-radius: 12px;
    display: flex;
    padding: 2px;
    margin-right: 16px;
    margin-bottom: 2px;
    cursor: pointer;
}
.app-radio__toggle::before {
    content: '';
    width: 20px;
    height: 20px;
    background: #FFF;
    border-radius: 50%;
}
.app-radio__toggle_on {
    background: #C71E3F;
    justify-content: flex-end;
}

.app-radio__label {

}