
.box-radio {
    width: 100%;
}

.box-radio .box-radio-title {
    font-family: 'Ilisarniq Regular';
    font-size: 26px;
    line-height: 31px;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 18px;
    margin-top: 35px;
}

.box-radio .box-radio-items {
}

.box-radio .box-radio-items.not-valid {
    border: 1px solid red !important;
}

.box-radio .box-radio-items .error-box {
    color: red;
    font-size: 12px;
    margin-top: -20px;
    display: block;
    opacity: 0;
}

.box-radio .box-radio-items.not-valid .error-box {
    opacity: 1;
}

.box-radio .box-radio-items .box-radio-item {
    position: relative;
    margin-bottom: 12px;

}

.box-radio .box-radio-items .column-item {
    margin-bottom: 30px;
}

.box-radio .box-radio-items .column-item:last-child {
    margin-bottom: 0;
}

.box-radio .box-radio-items .column-item .box-radio-item {
    margin-bottom: 4px;
}

.box-radio .box-radio-items .box-radio-item input.input-radio {
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 2;
    margin-top: 0;
}

.box-radio .box-radio-items .box-radio-item label {
    padding-left: 25px;
    font-family: 'Ilisarniq Light';
    font-size: 18px;
    line-height: 18px;
}

.box-radio .box-radio-items .box-radio-item label::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #F4F5F7;
    box-shadow: inset 0px 2px 2px rgba(0, 0, 0, 0.04);
}

.box-radio .box-radio-items .box-radio-item label::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background-color: #222;
    opacity: 0;
    transition: all .3s linear;
}

.box-radio .box-radio-items .box-radio-item input.input-radio:checked + label::after {
    opacity: 1;
    transition: all .3s linear;
}

.box-radio .input-text {
    font-family: 'Ilisarniq Light';
    outline: none;
    border: 0;
    color: #000000;
    text-indent: 20px;
    width: 100%;
    height: 35px;
    border-bottom: 1px solid #000000;
}

.box-radio .input-text:disabled {
    cursor: not-allowed;
    opacity: .5;
    background-color: #ffffff;
}