
.checkbox .checkbox-element {
    visibility: hidden;
    position: absolute;
    left: 5px;
    bottom: 0;
}

.checkbox {
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    cursor: pointer;

    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;

    font-size: 13pt;

    position: relative;
}

.checkbox a{
    color: var(--primary-color);
}

.checkbox .checkbox-mark{
    width: 25px;
    height: 25px;
    display: inline-block;
    border: 3px solid var(--primary-color);

    border-radius: 5px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: inherit;
    transition: .3s;
}
.checkbox .checkbox-mark img {
    opacity: 0;
}

.checkbox .checkbox-element:checked + .checkbox-mark {
    background-color: var(--primary-color);
}
.checkbox .checkbox-element:checked + .checkbox-mark img{
    opacity: 1;
}


@media (max-width: 980px) {
    .checkbox span,
    .checkbox a {
        font-size: 10pt;
    }
}