/* DESIGN PACK VERSION: 2.56 */
.owl-checkbox {
    position: relative;
    padding: 0;
    width: auto;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
}

.owl-checkbox::before {
    content: none;
}

.owl-checkbox input[type="checkbox"] {
    display: none;
}

.owl-checkbox input[type="checkbox"] + span {
    margin: 0;
    vertical-align: middle;
    display: inline-flex;
    width: 22px;
    height: 22px;
    background-image: url('../../images/checkbox/option2_checkbox_unchecked.svg');
}

.owl-checkbox.owl-checkbox--labeled input[type="checkbox"] + span {
    margin-right: 6px;
}

.owl-checkbox input[type="checkbox"]:checked + span {
    background-image: url('../../images/checkbox/option2_checkbox_checked.svg');
}

.owl-checkbox:focus span {
    outline: 2px solid var(--owl-focus-color);
}

.owl-checkbox.owl-checkbox--labeled:focus span {
    outline: none;
}

.owl-checkbox.owl-checkbox--labeled:focus {
    outline: 2px solid var(--owl-focus-color);
}
