.checkbox-container {
    width: 10px;
    height: 10px;
    border-radius: 3px;
    border: 1px solid rgba(100, 100, 100, 0.1);
    background-color: #F1F1F1;
    transition: 0.3s;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);

    &.checked {
        background-color: #4096FF;
    }

    &.part {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        background-color: #FFFFFF;
    }

    .checked {
        width: 6px;
        height: 6px;
        border-radius: 1.5px;
        background-color: #4096FF;
        transition: 0.3s;
    }
}