/* The custom-checkbox-label */
.custom-checkbox-label,
.check .custom-checkbox-label-2 {
    display: block;
    position: relative;
    padding-left: 35px!important;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.check .custom-checkbox-label-2{
    font-size: 20px;
}

    /* Hide the browser's default checkbox */
.custom-checkbox-label input,
.check .custom-checkbox-label-2 input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.custom-checkbox-mark,
.check .custom-checkbox-mark-2 {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #c0bebe;
    border-radius: 3px;
}

.check .custom-checkbox-mark-2{
    background-color: #fbfbfb;
    border: solid #a6a4a4 2px;
    border-radius: 3px;
}

/* On mouse-over, add a grey background color */
.custom-checkbox-label:hover input ~ .custom-checkbox-mark,
.check .custom-checkbox-label-2:hover input ~ .custom-checkbox-mark-2 {
    background-color: #c0bebe;
}

/* When the checkbox is checked, add a blue background */
.custom-checkbox-label input:checked ~ .custom-checkbox-mark,
.check .custom-checkbox-label-2 input:checked ~ .custom-checkbox-mark-2 {
    background-color: #c0bebe;
}

.check .custom-checkbox-label-2 input:checked ~ .custom-checkbox-mark-2 {
    background-color: #a6a4a4;
}

/* Create the custom-checkbox-mark/indicator (hidden when not checked) */
.custom-checkbox-mark:after,
.check .custom-checkbox-mark-2:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the custom-checkbox-mark when checked */
.custom-checkbox-label input:checked ~ .custom-checkbox-mark:after,
.check .custom-checkbox-label-2 input:checked ~ .custom-checkbox-mark-2:after {
    display: block;
}

/* Style the custom-checkbox-mark/indicator */
.custom-checkbox-label .custom-checkbox-mark:after,
.check .custom-checkbox-label-2 .custom-checkbox-mark-2:after {
    left: 10px;
    top: 6px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.check .custom-checkbox-label-2 .custom-checkbox-mark-2:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.filter-check{
    margin: 5px 0;
}

.filter-check .label-container{
    left: 10px;
}