[type=checkbox] {
    position: relative;
    z-index: 2;
    cursor: pointer;
    opacity: 1;
    width: 1.5rem;
    height: 1.5rem;
}
.checkbox-block [type=checkbox] {
    opacity: 0;
}
[type=checkbox] ~ span {
    border: 1px solid  #adadad;
    border-radius: 4px;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
[type=checkbox] ~ span > svg {
   opacity: 0;
   transition: opacity 0.23s;
   width: 0.9rem;
   height: 0.75rem;
}
[type=checkbox]:checked ~ span > svg {
    opacity: 1;
 }
[type=checkbox]:checked ~ span {
    background-color: rgba(94,100,103,.1);
    border-color: rgba(94,100,103,.1);
}
.checkbox-block {
    position: relative;
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
}
.hide-check-label .labelauty-checked, .hide-check-label .labelauty-unchecked {
    display: none !important;
}