.test-btn {
    padding: 12px 41px 10px 41px;
    font-size: 16px;
    line-height: normal;
    display: inline-block;
    background: #FFCC00;
    border-radius: 5px;
    color: black;
    text-decoration: none;
    width: max-content;
    margin: 40px 0 0 0;
    border: 1px solid transparent;
}
.test-btn:hover {
    background-color: #373A29;
    color: #ffcc00;
}
.test-box__item input {
    display: none;
}
.test-box__item .jq-radio.checked + .test-box__text::before {
    background: #FFCC00;
    border-color: #FFCC00;
}
.test-box__item .jq-radio.checked + .test-box__text::after {
    opacity: 1;
    visibility: visible;
}
.test-box__item:not(:last-child) {
    margin: 0 0 15px 0;
}
.test-box__item label {
    cursor: pointer;
}
.test-box__text {
    position: relative;
    display: inline-block;
    padding: 0 0 0 32px;
}
.test-box__text::before,
.test-box__text::after {
    content: '';
    width: 22px;
    height: 22px;
    position: absolute;
    top: 1px;
    left: 0;
    transition: .3s ease-in-out;
}
.test-box__text::before {
    border: 1px solid rgba(24, 23, 23, .3);
    border-radius: 5px;
}
.test-box__text::after {
    background: url(/assets/site/images/svg/check.svg) no-repeat;
    background-size: 100% 100%;
    opacity: 0;
    visibility: hidden;
}
.test-box {
    margin: 30px 0 0 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.test-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 52px 0 0 0;
}
.test-controls__btn {
    display: flex;
}
.test-controls__btn.disabled circle {
    fill: transparent;
    stroke: #B3B3B3;
}
.test-controls__btn.disabled path {
    stroke: #B3B3B3;
}
.test-result {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
}
.test-result * {
    margin: 0 !important;
}
.test-controls__btn svg {
    overflow: visible;
}
.test-controls__group {
    display: flex;
    align-items: center;
    gap: 5px;
}
.article-content {
    overflow: visible;
}
.test-box__item {
    display: inline-block;
    position: relative;
    padding: 4px 10px 2px 0;
}
.test-btn.transparent {
    background: transparent;
    border: 1px solid #FFCC00;
}
.test-btn.transparent:hover {
    background-color: #ffcc00;
    color: #000;
}
.test-box__item.correct::before {
    background: #0CD44E;
    opacity: .15;
    visibility: visible;
}
.test__buttons {
    margin: 30px 0 0 0;
    display: flex;
    gap: 20px;
}
.test__buttons * {
    margin: 0 !important;
}

.test-box__item.fail::before {
    background: #FF0000;
    opacity: .15;
    visibility: visible;
}
.test-box__item::before {
    content: '';
    width: calc(100% + 10px);
    height: 100%;
    position: absolute;
    top: 0;
    left: -10px;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
}

.test__buttons .test-btn.disabled {
    background: #ccc!important;
}

.test-box__item.disabled,
.test-box__item.disabled label {
    cursor: text;
}