.f-custom-checkbox {
    display: flex;
    position: relative;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    align-items: center;
    justify-content: flex-start;
    font-family: var(--unineue-regular);
    font-size: var(--copy-font-size);
    line-height: var(--copy-font-line-height);
    margin-right: 30px;
}

/* Hide the browser's default checkbox */
.f-custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
    display: none;
}

/* Create a custom checkbox */
.checkmark {
    height: 34px;
    width: 34px;
    background-color: var(--color-lightgray);
    display: block;
    position: relative;
    border: 0 solid var(--color-black);
    margin-right: 12px;
}

/* On mouse-over, add a grey background color */
.f-custom-checkbox:hover input ~ .checkmark {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="22.414" height="22.414" viewBox="0 0 22.414 22.414"><g transform="translate(-566.293 -755.793)"><line x2="21" y2="21" transform="translate(567 756.5)" fill="none" stroke="%2321313c" stroke-width="2"/><line x1="21" y2="21" transform="translate(567 756.5)" fill="none" stroke="%2321313c" stroke-width="2"/></g></svg>');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 22px;
}

/* When the checkbox is checked, add a blue background */
.f-custom-checkbox input:checked ~ .checkmark {
    /*background-color: #2196F3;*/
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.f-custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.f-custom-checkbox .checkmark:after {
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="22.414" height="22.414" viewBox="0 0 22.414 22.414"><g transform="translate(-566.293 -755.793)"><line x2="21" y2="21" transform="translate(567 756.5)" fill="none" stroke="%2321313c" stroke-width="2"/><line x1="21" y2="21" transform="translate(567 756.5)" fill="none" stroke="%2321313c" stroke-width="2"/></g></svg>');
    width: 100%;
    height: 100%;
   background-repeat: no-repeat;
    background-position: center center;
    background-size: 22px;
}
@media (max-width: 480px) {

    .f-custom-checkbox:hover input ~ .checkmark {
        background-repeat: no-repeat;
        background-position: center center;
        background-size: 15px;
    }

    .cookie-consent-banner-content .f-custom-checkbox .checkmark:after {
        background-repeat: no-repeat;
        background-position: center;
        background-size: 15px;
    }

}
