.checkbox.style-b {
    display: inline-block;
    position: relative;
    padding-left: 25px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-bottom: 10px;
}

.checkbox.style-b input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox.style-b input:checked~.checkbox__checkmark {
    background-color: #fff;
}

.checkbox.style-b input:checked~.checkbox__checkmark:after {
    opacity: 1;
}

.checkbox.style-b:hover input~.checkbox__checkmark {
    background-color: #eee;
}

.checkbox.style-b:hover input:checked~.checkbox__checkmark {
    background-color: #fff;
}

.checkbox.style-b .checkbox__checkmark {
    position: absolute;
    top: auto;
    left: 0;
    height: 18px !important;
    width: 18px !important;
    padding: initial;
    background-color: #fff;
    border: 2px solid #333;
    transition: background-color 0.25s ease;
    border-radius: 4px;
}

.checkbox.style-b .checkbox__checkmark:after {
    content: "";
    position: absolute;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid #333;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.checkbox.style-b .checkbox__body {
    color: #333;
    font-size: 14px;
    display: flex;
    flex-wrap: wrap;
    column-gap: 5px;
    line-height: normal;

}

.checkboxes__item-privacy a {
    color: #333;
    text-decoration: underline !important;
}

#check_privacy {
    padding: 0 !important;
}

#check_privacy.error {
    border-color: red !important;
}
