
.input-radio {
    position: relative;
    margin: 0px;
    display: flex;
    align-items: center;
    margin: 2px;
}

.input-radio > label {
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    color: #595959;
    cursor: pointer;

    margin-bottom: 0px;
    padding: 8px;
}

.input-radio > input {
    cursor: pointer;
    opacity: 0;
    height: 40px;
}

.input-radio > .checkbox {
    position: absolute;
    content: "";
    width: 22px;
    height: 22px;
    border: 2px solid var(--gray);
    border-radius: 100%;
    pointer-events: none;
}

.input-radio > input + .checkbox::before {
    content: "";
    width: 10px;
    height: 10px;
    box-shadow: inset 10px 10px var(--gray);
    border-radius: 50%;
    transform: scale(0);
}

.input-radio > input:checked + .checkbox::before{
    transform: scale(1);
}

.description {
    font-size: 16px;
    line-height: 22px;
    margin-left: auto;
}
