/* BOUTONS RADIO */
.radio-button {
    display: inline-flex;
    align-items: center;
    margin: 15px 30px 30px 30px;
    cursor: pointer;
    font-size: 14px;
    user-select: none;
    position: relative;
    padding-left: 30px;
}

.radio-button input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.radio-button input:disabled ~ .checkmark {
    opacity: 0.6;
}

.radio-button .checkmark {
    position: absolute;
    top: -2px;
    left: 0;
    height: 24px;
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.radio-button input:not(:checked) ~ .checkmark {
    background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><circle cx="12" cy="12" r="9.5" fill="white" stroke="%23C2C2C2"/><circle cx="12" cy="12" r="8" fill="white"/></svg>') no-repeat center;
    background-size: 24px;
}

.radio-button input:disabled:not(:checked) ~ .checkmark {
    background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><g opacity="0.6"><circle cx="12" cy="12" r="9.5" fill="white" stroke="%23C2C2C2"/><circle cx="12" cy="12" r="8" fill="white"/></g></svg>') no-repeat center;
    background-size: 24px;
}

.radio-button:not(.disabled):hover input:not(:checked) ~ .checkmark {
    background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><circle cx="12" cy="12" r="10" fill="white"/><circle cx="12" cy="12" r="11" stroke="%23FF8B49" stroke-opacity="0.2" stroke-width="2"/><circle cx="12" cy="12" r="9.5" fill="white" stroke="%23FEB603"/><circle cx="12" cy="12" r="8" fill="white"/></svg>') no-repeat center;
    background-size: 24px;
}

.radio-button input:focus:not(:checked) ~ .checkmark {
    background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><circle cx="12" cy="12" r="9.5" fill="white" stroke="%23FEB603"/><circle cx="12" cy="12" r="8" fill="white"/></svg>') no-repeat center;
    background-size: 24px;
}

.radio-button input:checked ~ .checkmark {
    background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><circle cx="12" cy="12" r="9.5" fill="white" stroke="%23C2C2C2"/><circle cx="12" cy="12" r="8" fill="%23FEB603"/></svg>') no-repeat center;
    background-size: 24px;
}

.radio-button input:checked:focus ~ .checkmark {
    background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><circle cx="12" cy="12" r="9.5" fill="white" stroke="%23FEB603"/><circle cx="12" cy="12" r="8" fill="%23FEB603"/></svg>') no-repeat center;
    background-size: 24px;
}

.radio-button:not(.disabled):hover input:checked ~ .checkmark {
    background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><circle cx="12" cy="12" r="10" fill="white"/><circle cx="12" cy="12" r="11" stroke="%23FF8B49" stroke-opacity="0.2" stroke-width="2"/><circle cx="12" cy="12" r="9.5" fill="white" stroke="%23FEB603"/><circle cx="12" cy="12" r="8" fill="%23FEB603"/></svg>') no-repeat center;
    background-size: 24px;
}

.radio-button input:disabled:checked ~ .checkmark {
    background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><g opacity="0.6"><circle cx="12" cy="12" r="9.5" fill="white" stroke="%23C2C2C2"/><circle cx="12" cy="12" r="8" fill="%23C2C2C2"/></g></svg>') no-repeat center;
    background-size: 24px;
}

.radio-button.disabled {
    cursor: not-allowed;
}

.radio-button input:disabled + .checkmark {
    cursor: not-allowed;
}

label.radio-button {
    font-size: 14px;
    margin-bottom: 25px;
}