.checkboxwrapper{
    user-select: none;
    padding: 0.7rem;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 50%;
}


.checkbox{
    cursor: pointer;
    padding: 0rem;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 3px;
    background-color: rgb(121, 108, 122);
}

.checkbox:checked{
    background-color: rgb(0, 135, 189);
}

.checkbox:checked:after{
    content: "\2713";
    color: white;
    font-weight: 900;
    position: absolute;
    transform: translateX(3px) translateY(-1px);
}

.checkboxlabel{
    cursor: pointer;
    padding: 0.4rem;
    overflow: hidden;
}