.label {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.label-text {
    display: flex;
    flex-wrap: wrap;
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    word-wrap: break-word;
    margin: 0px 0px 0px 8px;
}

.checkbox {
    display: none;
}

.label::before {
    content: "";
    display: inline-block;
    min-width: 24px;
    min-height: 24px;
    max-width: 24px;
    max-height: 24px;
    border-radius: 8px;
    background-color: #E81F2F;
}

.checkbox:checked + .label::before {
    content: url('/accept.svg');
}

label, .title-checkbox {
    margin: 0px;
}
