.checkbox-group {
    ul {
        display: flex;
    
        .checkbox-group__item {
            margin-right: 32px;
    
            &:last-child {
                margin-right: 0;
            }
        }
        &.column{flex-direction: column;
            .checkbox-group__item {
                margin-right: 0;
                margin-bottom: 15px;
    
                &:last-child {
                    margin-bottom: 0;
                }
            }
        }
    }
}
