.css-checkbox  {
    position: relative;
}

.css-checkbox > input {
    position: absolute;
    top: 0;
    left: 0;

    pointer-events: none;

    opacity: 0;
}

.css-checkbox > input + label {
    position: relative;

    display: inline-block;

    height: 19px;
    padding-left: 20px;

    cursor: pointer;
    user-select: none;

    background-repeat: no-repeat;

    font-size: 14px;
    font-weight: normal;
    line-height: 19px;
}

.css-checkbox > input + label:after {
    position: absolute;
    top: 0;
    left: 0;

    width: 19px;
    height: 19px;

    content: " ";

    background-image: url(../svg/checkboxes.svg);
}

.css-checkbox.inverted > input + label:after {
    background-image: url(../svg/checkboxes_inverted.svg);
}

/*Uncheched*/
.css-checkbox > input + label:after {
    background-position: 0 -19px;
}

/*Cheched*/
.css-checkbox > input:checked + label:after {
    background-position: 0 0;
}

/* Small Devices, Tablets */
@media (min-width: 720px) {
    .css-checkbox > input + label {
        font-size: 20px;
        padding-left: 24px;
    }
}


/* Large Devices, Wide Screens */
@media (min-width: 1020px) {
    .css-checkbox > input + label {
        font-size: 16px;
    }
}
