.c-box-list {
    display: flex;
}
.c-box-list.wrap {
    flex-flow: wrap;
}
.c-box-list input[type=checkbox].c-box {
    display: none;
}
.c-box-list .c-box + label {
    position: relative;
    margin-right: 30px;
    margin-bottom: 20px;
    padding-left: 30px;
    display: flex;
    align-items: center;
    color: var(--base_gray) !important;
    font-size: var(--font_size_16);
    font-weight: normal !important;
    cursor: pointer;
}
.c-box-list .c-box + label p {
    color: var(--base_gray);
}
.c-box-list label p {
    margin: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.c-box-list .c-box + label::before {
    content: "";
    position: absolute;
    left: 0;
    width: 20px;
    height: 20px;
    border-radius: 3px;
    background-image: url(../../img/commons/checkbox_white.png);
    background-size: 20px;
    background-repeat: no-repeat;
    transition: all .15s;
}
.c-box-list .c-box:checked + label::before {
    background-image: url(../../img/commons/checkbox_black.png);
    transition: all .15s;
}
.c-box-list .c-box:checked + label,
.c-box-list .c-box:checked + label p {
    color: var(--base_black) !important;
    transition: all .15s;
}

/* col-lg */
@media (min-width: 992px) and (max-width: 1199px) {

}
/* col-md */
@media (min-width: 768px) and (max-width: 991px) {
    .c-box-list .c-box + label {
        padding-left: 35px;
        font-size: var(--font_size_18);
    }
    .c-box-list .c-box + label::before {
        width: 30px;
        height: 30px;
        background-size: 30px;
        border-radius: 5px;
    }
}
/* col-* and col-sm */
@media (min-width: 0px) and (max-width: 767px) {
    .c-box-list .c-box + label {
        padding-left: 35px;
        font-size: var(--font_size_18);
    }
    .c-box-list .c-box + label::before {
        width: 30px;
        height: 30px;
        background-size: 30px;
        border-radius: 5px;
    }
}
