.hc-htlinf .radio-circle-button {
    clip-path: inset(100%);
    pointer-events: none;
    position: absolute;
}

.hc-htlinf .radio-label {
    cursor: pointer;
    padding-left: 30px;
    position: relative;
    margin-bottom: 0;
}

.hc-htlinf .radio-label::before,
.hc-htlinf .radio-label::after {
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    background-color: #ffffff;
    box-sizing: border-box;
    content: "";
    height: 24px;
    left: 0;
    position: absolute;
    top: -1px;
    width: 24px;
}

.hc-htlinf .radio-label::after {
    opacity: 0;
    height: 14px;
    width: 14px;
    left: 5px;
}

.hc-htlinf .radio-circle-button:focus + label::before {
    box-shadow: 0 0 0 0.2rem rgba(69, 150, 150, 0.5);
}

.hc-htlinf .radio-circle-button:checked + .radio-label::after {
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    box-sizing: border-box;
    content: "";
    display: block;
    height: 16px;
    left: 4px;
    position: absolute;
    top: 3px;
    width: 16px;
    opacity: 1;
}

.hc-htlinf .radio-circle-button:disabled + label {
    opacity: .35;
    cursor: default;
}
