.fnt-check-input {
    line-height: 2em;
    height: 15px !important;
    width: 15px !important;
    align-self: center;
}

.fnt-checkbox-label {
    font-size: 12px;
    line-height: 2em;
    font-weight: 500;
}

.fnt-checkbox-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 13px;
    color: #666666;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.fnt-checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.fnt-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 1em;
    width: 1em;
    border: 1px solid var(--fnt-border-color);
    border-radius: 4px;
    background-color: var(--fnt-card-bg-color);
}

.fnt-checkbox-container:hover input ~ .fnt-checkmark {
    background-color: var(--fnt-checkbox-fokus-color);
}

.fnt-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.fnt-checkbox-container input:checked ~ .fnt-checkmark:after {
    display: block;
}

.fnt-checkbox-container .fnt-checkmark:after {
    left: 3.5px;
    top: 1px;
    width: 0.4em;
    height: 0.5em;
    border: solid var(--fnt-input-submit-color);
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.fnt-link {
    font-size: 11px;
    text-align: center;
    margin: 0 auto 8px !important;
    color: var(--fnt-link-font-color);
}
