/* jQuery Tree Multiselect v2.2.1 | (c) Patrick Tsai | MIT Licensed */

div.tree-multiselect {
    border: 2px solid #D8D8D8;
    border-radius: 5px;
    display: table;
    height: inherit;
    width: 100%
}
div.tree-multiselect>div.selected,
div.tree-multiselect>div.selections {
    display: inline-block;
    vertical-align: top;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    display: table-cell;
    padding: 1%;
    width: 50%
}
div.tree-multiselect>div.selections {
    border-right: solid 2px #D8D8D8
}
div.tree-multiselect>div.selections div.item {
    margin-left: 16px
}
div.tree-multiselect>div.selections div.item label {
    cursor: pointer
}
div.tree-multiselect>div.selections.no-border {
    border-right: none
}
div.tree-multiselect>div.selected>div.item {
    padding: 2px 5px;
    border-radius: 2px;
    background: #EAEAEA
}
div.tree-multiselect>div.selected.ui-sortable>div.item:hover {
    cursor: move
}
div.tree-multiselect div.section>div.section,
div.tree-multiselect div.section>div.item {
    padding-left: 20px
}
div.tree-multiselect div.section.collapsed>div.title span.collapse-section:after {
    content: "+"
}
div.tree-multiselect div.section.collapsed:not([searchhit])>.item,
div.tree-multiselect div.section.collapsed:not([searchhit])>.section {
    display: none
}
div.tree-multiselect div.title,
div.tree-multiselect div.item {
    margin-bottom: 2px
}
div.tree-multiselect div.title {
    background: #3c4858;
    color: white;
    padding: 2px;
    border-radius:2px;
}
div.tree-multiselect div.title>* {
    display: inline-block
}
div.tree-multiselect div.title>span.collapse-section {
    margin: 0 3px;
    width: 8px
}
div.tree-multiselect div.title>span.collapse-section:after {
    content: "-"
}
div.tree-multiselect div.title:hover {
    cursor: pointer
}
div.tree-multiselect input[type=checkbox] {
    display: inline;
    margin-right: 5px
}
div.tree-multiselect input[type=checkbox]:hover {
    cursor: pointer
}
div.tree-multiselect span.remove-selected,
div.tree-multiselect span.description {
    padding: 0 3px;
    margin-right: 5px;
    background: #3c4858;
    color: white;
    border-radius: 2px
}
div.tree-multiselect span.remove-selected:hover {
    cursor: pointer
}
div.tree-multiselect span.description:hover {
    cursor: help
}
div.tree-multiselect div.temp-description-popup {
    background: #EAEAEA;
    padding: 5px;
    border: 2px solid #676767;
    border-radius: 3px
}
div.tree-multiselect span.section-name {
    float: right;
    font-style: italic
}
div.tree-multiselect .auxiliary {
    display: table;
    width: 100%
}
div.tree-multiselect .auxiliary input.search {
    padding: 5px;
    margin: 0;
    border: 2px solid #D8D8D8;
    display: table-cell;
    width: 100%
}
div.tree-multiselect .auxiliary .select-all-container {
    display: table-cell;
    text-align: right
}
div.tree-multiselect .auxiliary .select-all-container span.select-all,
div.tree-multiselect .auxiliary .select-all-container span.unselect-all {
    padding-right: 5px;
    margin-right: 5px
}
div.tree-multiselect .auxiliary .select-all-container span.select-all:hover,
div.tree-multiselect .auxiliary .select-all-container span.unselect-all:hover {
    cursor: pointer
}
div.tree-multiselect .auxiliary .select-all-container span.select-all {
    border-right: 2px solid #D8D8D8
}

/*checked*/


.boxes {
  margin: auto;
  padding: 50px;
  background: #484848;
}

/*Checkboxes styles*/
input[type="checkbox"] { display: none; }

input[type="checkbox"] + label {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 20px;
  font: 14px/20px 'Open Sans', Arial, sans-serif;
  color: #777;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

input[type="checkbox"] + label:last-child { margin-bottom: 0; }

input[type="checkbox"] + label:before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #e91e63;
  position: absolute;
  left: 0;
  top: 0;
  opacity: .6;
  -webkit-transition: all .12s, border-color .08s;
  transition: all .12s, border-color .08s;
}

input[type="checkbox"]:checked + label:before {
  width: 10px;
  top: -5px;
  left: 5px;
  border-radius: 0;
  opacity: 1;
  border-top-color: transparent;
  border-left-color: transparent;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}