.boxes{
    width: fit-content;
}
/*Checkboxes styles*/
.boxes input[type="checkbox"] {
    display: none;
}
.boxes input[type="checkbox"] + label {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    font: 14px/20px 'Open Sans', Arial, sans-serif;
    color: black;
    cursor: pointer;
    cursor: pointer;
}
.boxes input[type="checkbox"] + label:last-child {
    margin-bottom: 0;
}
.boxes input[type="checkbox"] + label:before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    border: 1px solid black;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.6;
    -webkit-transition: all 0.12s, border-color 0.08s;
    transition: all 0.12s, border-color 0.08s;
}
.boxes input[type="checkbox"]:checked + label:before {
    width: 10px;
    top: -5px;
    left: 5px;
    border-radius: 0;
    opacity: 1;
    border-top-color: transparent;
    border-left-color: transparent;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.boxes a{
    text-decoration: none;
    color: black;
}

.boxes a:hover{
    text-decoration: underline;
    color: black;
}
