<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.radio {
    cursor: pointer;
}


.radio__field {
    display: none;
}
.radio__label {
    position: relative;

    padding-left: 24px;

    color: #52525B;

    font-family: 'Inter';
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
}
.radio__label:before {
    content: '';

    position: absolute;
    left: 0;
    top: 50%;

    transform: translateY(-50%);

    width: 18px;
    height: 18px;

    border: 1px solid #D9D9D9;
    border-radius: 50%;
}
.radio__label:after {
    content: '';

    position: absolute;
    left: 4px;
    top: 50%;

    transform: translateY(-50%);

    width: 10px;
    height: 10px;

    background-color: #D9D9D9;
    border-radius: 50%;
}
.radio__label:after, .radio__label:before {
    box-sizing: border-box;
}

.radio__field:checked + .radio__label:before {
    border-color: #E3884B;
}
.radio__field:checked + .radio__label:after {
    background-color: #E3884B;
}</pre></body></html>