.custom-checkbox-label {
    background-color: #fff;
    border: 2px solid #fff;
    border-radius: .375rem;
    height: 1.25rem;
    width: 1.25rem;
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition-property: color,background-color,border-color,text-decoration-color,fill,stroke;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: 200ms
}

.custom-checkbox-label:hover {
    border-color: #93c5fd
}

.custom-checkbox:checked+.custom-checkbox-label {
    background-color: var(--soft-sand);
    border-color: var(--soft-sand)
}

.custom-checkbox-icon {
    display: none;
    width: 1rem;
    height: 1rem;
    color: var(--intraservis-blue);
    pointer-events: none
}

.custom-checkbox:checked+.custom-checkbox-label .custom-checkbox-icon {
    display: block
}

.custom-checkbox {
    opacity: 0;
    position: absolute;
    height: 1.25rem;
    width: 1.25rem
}