.check-box {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 5px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-weight: normal;
        line-height: 22px;
}

.title-filter {
    font-size: 15px;
    border-bottom: 3px solid #005399;
    margin-bottom: 0px;
    text-transform: uppercase;
    color: #0e4ca1;
    text-align: left;
    padding: 5px 0px;
}

.filter-column {
    margin-bottom: 25px;
    background: #f8f8f8dd;
    padding: 10px;
}

select#sort-tag {
    width: initial;
    float: right;
    position: absolute;
    top: 5px;
    right: 5px;
    border-radius: 5px;
    padding: 3px;
    border: 1px solid #eee;
}

.form-group.sort-order {
    margin-bottom: 15px;
    display: inline-block;
    float: right;
}

.title-sort {
    position: relative;
    top: 8px;
    right: 10px;
}
/* Hide the browser's default checkbox */
.check-box input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.check-box:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.check-box input:checked ~ .checkmark {
  background-color: #005399;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.check-box input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.check-box .checkmark: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);
}