.checkbox-todo-riesgo {
    display: flex;
    background: #fec170;
    border-radius: 6px;
    overflow: hidden;
    height: 50px;
}

.checkbox-tr-wrapper-left,
.checkbox-tr-wrapper-right {
    width: 50%;
}

.checkbox-todo-riesgo input {
    display: none;
}

.checkbox-todo-riesgo input:checked+label .checkbox-tr {
    background: #fea328;
}

.checkbox-todo-riesgo input:checked+label .checkbox-radio:after {
    opacity: 1;
}

.checkbox-todo-riesgo label {
    display: block;
    height: 100%;
    cursor: pointer;
}

.checkbox-tr {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkbox-tr:hover {
    background: #f1b461;
}

.checkbox-tr span {
    color: black;
    font-weight: 400;
    font-size: 18px;
}

.checkbox-radio {
    width: 22px;
    height: 22px;
    background: white;
    border-radius: 50%;
    position: relative;
    margin-right: 12px;
}

.checkbox-radio:after {
    width: 12px;
    height: 12px;
    background: rgb(43, 43, 43);
    border-radius: 50%;
    content: "";
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    position: absolute;
}

.error-message-wrap {
    padding: 10px 16px;
    color: #a73131;
    font-size: 16px;
    margin-bottom: 12px;
    background: #ffe1e1;
    display: none;
}

.error-message-wrap.show {
    display: block;
}