@charset "UTF-8";
:root {
  --dt-row-selected: 2, 117, 216;
  --dt-row-selected-text: 255, 255, 255;
  --dt-row-selected-link: 9, 10, 11;
}

table.dataTable td.dt-control {
  text-align: center;
  cursor: pointer;
}
table.dataTable td.dt-control:before {
  height: 1em;
  width: 1em;
  margin-top: -9px;
  display: inline-block;
  color: white;
  border: 0.15em solid white;
  border-radius: 1em;
  box-shadow: 0 0 0.2em #444;
  box-sizing: content-box;
  text-align: center;
  text-indent: 0 !important;
  font-family: "Courier New", Courier, monospace;
  line-height: 1em;
  content: "+";
  background-color: #31b131;
}
table.dataTable tr.dt-hasChild td.dt-control:before {
  content: "-";
  background-color: #d33333;
}

table.dataTable thead > tr > th.sorting, table.dataTable thead > tr > th.sorting_asc, table.dataTable thead > tr > th.sorting_desc, table.dataTable thead > tr > th.sorting_asc_disabled, table.dataTable thead > tr > th.sorting_desc_disabled,
table.dataTable thead > tr > td.sorting,
table.dataTable thead > tr > td.sorting_asc,
table.dataTable thead > tr > td.sorting_desc,
table.dataTable thead > tr > td.sorting_asc_disabled,
table.dataTable thead > tr > td.sorting_desc_disabled {
  cursor: pointer;
  position: relative;
  padding-right: 26px;
}
table.dataTable thead > tr > th.sorting:before, table.dataTable thead > tr > th.sorting:after, table.dataTable thead > tr > th.sorting_asc:before, table.dataTable thead > tr > th.sorting_asc:after, table.dataTable thead > tr > th.sorting_desc:before, table.dataTable thead > tr > th.sorting_desc:after, table.dataTable thead > tr > th.sorting_asc_disabled:before, table.dataTable thead > tr > th.sorting_asc_disabled:after, table.dataTable thead > tr > th.sorting_desc_disabled:before, table.dataTable thead > tr > th.sorting_desc_disabled:after,
table.dataTable thead > tr > td.sorting:before,
table.dataTable thead > tr > td.sorting:after,
table.dataTable thead > tr > td.sorting_asc:before,
table.dataTable thead > tr > td.sorting_asc:after,
table.dataTable thead > tr > td.sorting_desc:before,
table.dataTable thead > tr > td.sorting_desc:after,
table.dataTable thead > tr > td.sorting_asc_disabled:before,
table.dataTable thead > tr > td.sorting_asc_disabled:after,
table.dataTable thead > tr > td.sorting_desc_disabled:before,
table.dataTable thead > tr > td.sorting_desc_disabled:after {
  position: absolute;
  display: block;
  opacity: 0.125;
  right: 10px;
  line-height: 9px;
  font-size: 0.8em;
}
table.dataTable thead > tr > th.sorting:before, table.dataTable thead > tr > th.sorting_asc:before, table.dataTable thead > tr > th.sorting_desc:before, table.dataTable thead > tr > th.sorting_asc_disabled:before, table.dataTable thead > tr > th.sorting_desc_disabled:before,
table.dataTable thead > tr > td.sorting:before,
table.dataTable thead > tr > td.sorting_asc:before,
table.dataTable thead > tr > td.sorting_desc:before,
table.dataTable thead > tr > td.sorting_asc_disabled:before,
table.dataTable thead > tr > td.sorting_desc_disabled:before {
  bottom: 50%;
  content: "▲";
}
table.dataTable thead > tr > th.sorting:after, table.dataTable thead > tr > th.sorting_asc:after, table.dataTable thead > tr > th.sorting_desc:after, table.dataTable thead > tr > th.sorting_asc_disabled:after, table.dataTable thead > tr > th.sorting_desc_disabled:after,
table.dataTable thead > tr > td.sorting:after,
table.dataTable thead > tr > td.sorting_asc:after,
table.dataTable thead > tr > td.sorting_desc:after,
table.dataTable thead > tr > td.sorting_asc_disabled:after,
table.dataTable thead > tr > td.sorting_desc_disabled:after {
  top: 50%;
  content: "▼";
}
table.dataTable thead > tr > th.sorting_asc:before, table.dataTable thead > tr > th.sorting_desc:after,
table.dataTable thead > tr > td.sorting_asc:before,
table.dataTable thead > tr > td.sorting_desc:after {
  opacity: 0.6;
}
table.dataTable thead > tr > th.sorting_desc_disabled:after, table.dataTable thead > tr > th.sorting_asc_disabled:before,
table.dataTable thead > tr > td.sorting_desc_disabled:after,
table.dataTable thead > tr > td.sorting_asc_disabled:before {
  display: none;
}
table.dataTable thead > tr > th:active,
table.dataTable thead > tr > td:active {
  outline: none;
}

div.dataTables_scrollBody table.dataTable thead > tr > th:before, div.dataTables_scrollBody table.dataTable thead > tr > th:after,
div.dataTables_scrollBody table.dataTable thead > tr > td:before,
div.dataTables_scrollBody table.dataTable thead > tr > td:after {
  display: none;
}

div.dataTables_processing {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  margin-left: -100px;
  margin-top: -26px;
  text-align: center;
  padding: 2px;
}
div.dataTables_processing > div:last-child {
  position: relative;
  width: 80px;
  height: 15px;
  margin: 1em auto;
}
div.dataTables_processing > div:last-child > div {
  position: absolute;
  top: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: 2 117 216;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
div.dataTables_processing > div:last-child > div:nth-child(1) {
  left: 8px;
  animation: datatables-loader-1 0.6s infinite;
}
div.dataTables_processing > div:last-child > div:nth-child(2) {
  left: 8px;
  animation: datatables-loader-2 0.6s infinite;
}
div.dataTables_processing > div:last-child > div:nth-child(3) {
  left: 32px;
  animation: datatables-loader-2 0.6s infinite;
}
div.dataTables_processing > div:last-child > div:nth-child(4) {
  left: 56px;
  animation: datatables-loader-3 0.6s infinite;
}

@keyframes datatables-loader-1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes datatables-loader-3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes datatables-loader-2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}
table.dataTable.nowrap th, table.dataTable.nowrap td {
  white-space: nowrap;
}
table.dataTable th.dt-left,
table.dataTable td.dt-left {
  text-align: left;
}
table.dataTable th.dt-center,
table.dataTable td.dt-center,
table.dataTable td.dataTables_empty {
  text-align: center;
}
table.dataTable th.dt-right,
table.dataTable td.dt-right {
  text-align: right;
}
table.dataTable th.dt-justify,
table.dataTable td.dt-justify {
  text-align: justify;
}
table.dataTable th.dt-nowrap,
table.dataTable td.dt-nowrap {
  white-space: nowrap;
}
table.dataTable thead th,
table.dataTable thead td,
table.dataTable tfoot th,
table.dataTable tfoot td {
  text-align: left;
}
table.dataTable thead th.dt-head-left,
table.dataTable thead td.dt-head-left,
table.dataTable tfoot th.dt-head-left,
table.dataTable tfoot td.dt-head-left {
  text-align: left;
}
table.dataTable thead th.dt-head-center,
table.dataTable thead td.dt-head-center,
table.dataTable tfoot th.dt-head-center,
table.dataTable tfoot td.dt-head-center {
  text-align: center;
}
table.dataTable thead th.dt-head-right,
table.dataTable thead td.dt-head-right,
table.dataTable tfoot th.dt-head-right,
table.dataTable tfoot td.dt-head-right {
  text-align: right;
}
table.dataTable thead th.dt-head-justify,
table.dataTable thead td.dt-head-justify,
table.dataTable tfoot th.dt-head-justify,
table.dataTable tfoot td.dt-head-justify {
  text-align: justify;
}
table.dataTable thead th.dt-head-nowrap,
table.dataTable thead td.dt-head-nowrap,
table.dataTable tfoot th.dt-head-nowrap,
table.dataTable tfoot td.dt-head-nowrap {
  white-space: nowrap;
}
table.dataTable tbody th.dt-body-left,
table.dataTable tbody td.dt-body-left {
  text-align: left;
}
table.dataTable tbody th.dt-body-center,
table.dataTable tbody td.dt-body-center {
  text-align: center;
}
table.dataTable tbody th.dt-body-right,
table.dataTable tbody td.dt-body-right {
  text-align: right;
}
table.dataTable tbody th.dt-body-justify,
table.dataTable tbody td.dt-body-justify {
  text-align: justify;
}
table.dataTable tbody th.dt-body-nowrap,
table.dataTable tbody td.dt-body-nowrap {
  white-space: nowrap;
}

table.dataTable {
  clear: both;
  margin-top: 6px !important;
  margin-bottom: 6px !important;
  max-width: none !important;
  border-collapse: separate !important;
  border-spacing: 0;
}
table.dataTable td,
table.dataTable th {
  box-sizing: content-box;
}
table.dataTable td.dataTables_empty,
table.dataTable th.dataTables_empty {
  text-align: center;
}
table.dataTable.nowrap th,
table.dataTable.nowrap td {
  white-space: nowrap;
}
table.dataTable.table-striped > tbody > tr:nth-of-type(2n+1) {
  background-color: transparent;
}
table.dataTable > tbody > tr {
  background-color: transparent;
}
table.dataTable > tbody > tr.selected > * {
  box-shadow: inset 0 0 0 9999px #0275d8;
  box-shadow: inset 0 0 0 9999px rgb(var(--dt-row-selected));
  color: white;
  color: rgb(var(--dt-row-selected-text));
}
table.dataTable > tbody > tr.selected a {
  color: #090a0b;
  color: rgb(var(--dt-row-selected-link));
}
table.dataTable.table-striped > tbody > tr.odd > * {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.05);
}
table.dataTable.table-striped > tbody > tr.odd.selected > * {
  box-shadow: inset 0 0 0 9999px rgba(2, 117, 216, 0.95);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.95);
}
table.dataTable.table-hover > tbody > tr:hover > * {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.075);
}
table.dataTable.table-hover > tbody > tr.selected:hover > * {
  box-shadow: inset 0 0 0 9999px rgba(2, 117, 216, 0.975);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.975);
}

div.dataTables_wrapper div.dataTables_length label {
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
}
div.dataTables_wrapper div.dataTables_length select {
  width: auto;
  display: inline-block;
}
div.dataTables_wrapper div.dataTables_filter {
  text-align: right;
}
div.dataTables_wrapper div.dataTables_filter label {
  font-weight: normal;
  white-space: nowrap;
  text-align: left;
}
div.dataTables_wrapper div.dataTables_filter input {
  margin-left: 0.5em;
  display: inline-block;
  width: auto;
}
div.dataTables_wrapper div.dataTables_info {
  padding-top: 0.85em;
}
div.dataTables_wrapper div.dataTables_paginate {
  margin: 0;
  white-space: nowrap;
  text-align: right;
}
div.dataTables_wrapper div.dataTables_paginate ul.pagination {
  margin: 2px 0;
  white-space: nowrap;
  justify-content: flex-end;
}
div.dataTables_wrapper div.dataTables_processing {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  margin-left: -100px;
  margin-top: -26px;
  text-align: center;
  padding: 1em 0;
}

div.dataTables_scrollHead table.dataTable {
  margin-bottom: 0 !important;
}

div.dataTables_scrollBody > table {
  border-top: none;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
div.dataTables_scrollBody > table > thead .sorting:before,
div.dataTables_scrollBody > table > thead .sorting_asc:before,
div.dataTables_scrollBody > table > thead .sorting_desc:before,
div.dataTables_scrollBody > table > thead .sorting:after,
div.dataTables_scrollBody > table > thead .sorting_asc:after,
div.dataTables_scrollBody > table > thead .sorting_desc:after {
  display: none;
}
div.dataTables_scrollBody > table > tbody tr:first-child th,
div.dataTables_scrollBody > table > tbody tr:first-child td {
  border-top: none;
}

div.dataTables_scrollFoot > .dataTables_scrollFootInner {
  box-sizing: content-box;
}
div.dataTables_scrollFoot > .dataTables_scrollFootInner > table {
  margin-top: 0 !important;
  border-top: none;
}

@media screen and (max-width: 767px) {
  div.dataTables_wrapper div.dataTables_length,
div.dataTables_wrapper div.dataTables_filter,
div.dataTables_wrapper div.dataTables_info,
div.dataTables_wrapper div.dataTables_paginate {
    text-align: center;
  }
  div.dataTables_wrapper div.dataTables_paginate ul.pagination {
    justify-content: center !important;
  }
}
table.dataTable.table-sm > thead > tr > th:not(.sorting_disabled) {
  padding-right: 20px;
}

table.table-bordered.dataTable {
  border-right-width: 0;
}
table.table-bordered.dataTable th,
table.table-bordered.dataTable td {
  border-left-width: 0;
}
table.table-bordered.dataTable th:last-child, table.table-bordered.dataTable th:last-child,
table.table-bordered.dataTable td:last-child,
table.table-bordered.dataTable td:last-child {
  border-right-width: 1px;
}
table.table-bordered.dataTable tbody th,
table.table-bordered.dataTable tbody td {
  border-bottom-width: 0;
}

div.dataTables_scrollHead table.table-bordered {
  border-bottom-width: 0;
}

div.table-responsive > div.dataTables_wrapper > div.row {
  margin: 0;
}
div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:first-child {
  padding-left: 0;
}
div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:last-child {
  padding-right: 0;
}

@keyframes dtb-spinner {
  100% {
    transform: rotate(360deg);
  }
}
div.dt-button-info {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 400px;
  margin-top: -100px;
  margin-left: -200px;
  background-color: white;
  border: 2px solid #111;
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.3);
  border-radius: 3px;
  text-align: center;
  z-index: 21;
}
div.dt-button-info h2 {
  padding: 0.5em;
  margin: 0;
  font-weight: normal;
  border-bottom: 1px solid #ddd;
  background-color: #f3f3f3;
}
div.dt-button-info > div {
  padding: 1em;
}

div.dt-button-collection-title {
  text-align: center;
  padding: 0.3em 0 0.5em;
  font-size: 0.9em;
}

div.dt-button-collection-title:empty {
  display: none;
}

div.dt-button-collection {
  position: absolute;
  z-index: 2001;
}
div.dt-button-collection div.dropdown-menu {
  display: block;
  z-index: 2002;
  min-width: 100%;
}
div.dt-button-collection div.dt-button-collection-title {
  background-color: white;
  border: 1px solid rgba(0, 0, 0, 0.15);
}
div.dt-button-collection.fixed {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-left: -75px;
  border-radius: 0;
}
div.dt-button-collection.fixed.two-column {
  margin-left: -200px;
}
div.dt-button-collection.fixed.three-column {
  margin-left: -225px;
}
div.dt-button-collection.fixed.four-column {
  margin-left: -300px;
}
div.dt-button-collection > :last-child {
  display: block !important;
  -moz-column-gap: 8px;
  -ms-column-gap: 8px;
  -o-column-gap: 8px;
  column-gap: 8px;
}
div.dt-button-collection > :last-child > * {
  -moz-column-break-inside: avoid;
       break-inside: avoid;
}
div.dt-button-collection.two-column {
  width: 400px;
}
div.dt-button-collection.two-column > :last-child {
  padding-bottom: 1px;
  -moz-column-count: 2;
  -ms-column-count: 2;
  -o-column-count: 2;
  column-count: 2;
}
div.dt-button-collection.three-column {
  width: 450px;
}
div.dt-button-collection.three-column > :last-child {
  padding-bottom: 1px;
  -moz-column-count: 3;
  -ms-column-count: 3;
  -o-column-count: 3;
  column-count: 3;
}
div.dt-button-collection.four-column {
  width: 600px;
}
div.dt-button-collection.four-column > :last-child {
  padding-bottom: 1px;
  -moz-column-count: 4;
  -ms-column-count: 4;
  -o-column-count: 4;
  column-count: 4;
}
div.dt-button-collection .dt-button {
  border-radius: 0;
}
div.dt-button-collection.fixed {
  max-width: none;
}
div.dt-button-collection.fixed:before, div.dt-button-collection.fixed:after {
  display: none;
}

div.dt-button-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
}

@media screen and (max-width: 767px) {
  div.dt-buttons {
    float: none;
    width: 100%;
    text-align: center;
    margin-bottom: 0.5em;
  }
  div.dt-buttons a.btn {
    float: none;
  }
}
div.dt-buttons button.btn.processing,
div.dt-buttons div.btn.processing,
div.dt-buttons a.btn.processing {
  color: rgba(0, 0, 0, 0.2);
}
div.dt-buttons button.btn.processing:after,
div.dt-buttons div.btn.processing:after,
div.dt-buttons a.btn.processing:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  box-sizing: border-box;
  display: block;
  content: " ";
  border: 2px solid #282828;
  border-radius: 50%;
  border-left-color: transparent;
  border-right-color: transparent;
  animation: dtb-spinner 1500ms infinite linear;
  -o-animation: dtb-spinner 1500ms infinite linear;
  -ms-animation: dtb-spinner 1500ms infinite linear;
  -webkit-animation: dtb-spinner 1500ms infinite linear;
  -moz-animation: dtb-spinner 1500ms infinite linear;
}

/*
Version: 3.5.1 Timestamp: Tue Jul 22 18:58:56 EDT 2014
*/
.select2-container {
    margin: 0;
    position: relative;
    display: inline-block;
    /* inline-block for ie7 */
    zoom: 1;
    *display: inline;
    vertical-align: middle;
}

.select2-container,
.select2-drop,
.select2-search,
.select2-search input {
  /*
    Force border-box so that % widths fit the parent
    container without overlap because of margin/padding.
    More Info : http://www.quirksmode.org/css/box.html
  */ /* webkit */ /* firefox */
  box-sizing: border-box; /* css3 */
}

.select2-container .select2-choice {
    display: block;
    height: 26px;
    padding: 0 0 0 8px;
    overflow: hidden;
    position: relative;

    border: 1px solid #aaa;
    white-space: nowrap;
    line-height: 26px;
    color: #444;
    text-decoration: none;

    border-radius: 4px;

    background-clip: padding-box;

    -webkit-touch-callout: none;
      -webkit-user-select: none;
         -moz-user-select: none;
              user-select: none;

    background-color: #fff;
    background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#eeeeee', GradientType = 0);
    background-image: linear-gradient(to top, #eee 0%, #fff 50%);
}

html[dir="rtl"] .select2-container .select2-choice {
    padding: 0 8px 0 0;
}

.select2-container.select2-drop-above .select2-choice {
    border-bottom-color: #aaa;

    border-radius: 0 0 4px 4px;
    background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 90%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0);
    background-image: linear-gradient(to bottom, #eee 0%, #fff 90%);
}

.select2-container.select2-allowclear .select2-choice .select2-chosen {
    margin-right: 42px;
}

.select2-container .select2-choice > .select2-chosen {
    margin-right: 26px;
    display: block;
    overflow: hidden;

    white-space: nowrap;

    text-overflow: ellipsis;
    float: none;
    width: auto;
}

html[dir="rtl"] .select2-container .select2-choice > .select2-chosen {
    margin-left: 26px;
    margin-right: 0;
}

.select2-container .select2-choice abbr {
    display: none;
    width: 12px;
    height: 12px;
    position: absolute;
    right: 24px;
    top: 8px;

    font-size: 1px;
    text-decoration: none;

    border: 0;
    background: url(/images/select2.png?c07457739c183c845cacbf55dae2808e) right top no-repeat;
    cursor: pointer;
    outline: 0;
}

.select2-container.select2-allowclear .select2-choice abbr {
    display: inline-block;
}

.select2-container .select2-choice abbr:hover {
    background-position: right -11px;
    cursor: pointer;
}

.select2-drop-mask {
    border: 0;
    margin: 0;
    padding: 0;
    position: fixed;
    left: 0;
    top: 0;
    min-height: 100%;
    min-width: 100%;
    height: auto;
    width: auto;
    opacity: 0;
    z-index: 9998;
    /* styles required for IE to work */
    background-color: #fff;
    filter: alpha(opacity=0);
}

.select2-drop {
    width: 100%;
    margin-top: -1px;
    position: absolute;
    z-index: 9999;
    top: 100%;

    background: #fff;
    color: #000;
    border: 1px solid #aaa;
    border-top: 0;

    border-radius: 0 0 4px 4px;
    box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
}

.select2-drop.select2-drop-above {
    margin-top: 1px;
    border-top: 1px solid #aaa;
    border-bottom: 0;

    border-radius: 4px 4px 0 0;
    box-shadow: 0 -4px 5px rgba(0, 0, 0, .15);
}

.select2-drop-active {
    border: 1px solid #5897fb;
    border-top: none;
}

.select2-drop.select2-drop-above.select2-drop-active {
    border-top: 1px solid #5897fb;
}

.select2-drop-auto-width {
    border-top: 1px solid #aaa;
    width: auto;
}

.select2-drop-auto-width .select2-search {
    padding-top: 4px;
}

.select2-container .select2-choice .select2-arrow {
    display: inline-block;
    width: 18px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;

    border-left: 1px solid #aaa;
    border-radius: 0 4px 4px 0;

    background-clip: padding-box;

    background: #ccc;
    background-image: -moz-linear-gradient(center bottom, #ccc 0%, #eee 60%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#eeeeee', endColorstr = '#cccccc', GradientType = 0);
    background-image: linear-gradient(to top, #ccc 0%, #eee 60%);
}

html[dir="rtl"] .select2-container .select2-choice .select2-arrow {
    left: 0;
    right: auto;

    border-left: none;
    border-right: 1px solid #aaa;
    border-radius: 4px 0 0 4px;
}

.select2-container .select2-choice .select2-arrow b {
    display: block;
    width: 100%;
    height: 100%;
    background: url(/images/select2.png?c07457739c183c845cacbf55dae2808e) no-repeat 0 1px;
}

html[dir="rtl"] .select2-container .select2-choice .select2-arrow b {
    background-position: 2px 1px;
}

.select2-search {
    display: inline-block;
    width: 100%;
    min-height: 26px;
    margin: 0;
    padding-left: 4px;
    padding-right: 4px;

    position: relative;
    z-index: 10000;

    white-space: nowrap;
}

.select2-search input {
    width: 100%;
    height: auto !important;
    min-height: 26px;
    padding: 4px 20px 4px 5px;
    margin: 0;

    outline: 0;
    font-family: sans-serif;
    font-size: 1em;

    border: 1px solid #aaa;
    border-radius: 0;
    box-shadow: none;

    background: #fff url(/images/select2.png?c07457739c183c845cacbf55dae2808e) no-repeat 100% -22px;
    background: url(/images/select2.png?c07457739c183c845cacbf55dae2808e) no-repeat 100% -22px, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0;
}

html[dir="rtl"] .select2-search input {
    padding: 4px 5px 4px 20px;

    background: #fff url(/images/select2.png?c07457739c183c845cacbf55dae2808e) no-repeat -37px -22px;
    background: url(/images/select2.png?c07457739c183c845cacbf55dae2808e) no-repeat -37px -22px, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0;
}

.select2-drop.select2-drop-above .select2-search input {
    margin-top: 4px;
}

.select2-search input.select2-active {
    background: #fff url(/images/select2-spinner.gif?56d4c7ce2d3591a021073d07a6ea7342) no-repeat 100%;
    background: url(/images/select2-spinner.gif?56d4c7ce2d3591a021073d07a6ea7342) no-repeat 100%, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0;
}

.select2-container-active .select2-choice,
.select2-container-active .select2-choices {
    border: 1px solid #5897fb;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 0, 0, .3);
}

.select2-dropdown-open .select2-choice {
    border-bottom-color: transparent;
    box-shadow: 0 1px 0 #fff inset;

    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;

    background-color: #eee;
    background-image: -moz-linear-gradient(center bottom, #fff 0%, #eee 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
    background-image: linear-gradient(to top, #fff 0%, #eee 50%);
}

.select2-dropdown-open.select2-drop-above .select2-choice,
.select2-dropdown-open.select2-drop-above .select2-choices {
    border: 1px solid #5897fb;
    border-top-color: transparent;
    background-image: -moz-linear-gradient(center top, #fff 0%, #eee 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
    background-image: linear-gradient(to bottom, #fff 0%, #eee 50%);
}

.select2-dropdown-open .select2-choice .select2-arrow {
    background: transparent;
    border-left: none;
    filter: none;
}
html[dir="rtl"] .select2-dropdown-open .select2-choice .select2-arrow {
    border-right: none;
}

.select2-dropdown-open .select2-choice .select2-arrow b {
    background-position: -18px 1px;
}

html[dir="rtl"] .select2-dropdown-open .select2-choice .select2-arrow b {
    background-position: -16px 1px;
}

.select2-hidden-accessible {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/* results */
.select2-results {
    max-height: 200px;
    padding: 0 0 0 4px;
    margin: 4px 4px 4px 0;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html[dir="rtl"] .select2-results {
    padding: 0 4px 0 0;
    margin: 4px 0 4px 4px;
}

.select2-results ul.select2-result-sub {
    margin: 0;
    padding-left: 0;
}

.select2-results li {
    list-style: none;
    display: list-item;
    background-image: none;
}

.select2-results li.select2-result-with-children > .select2-result-label {
    font-weight: bold;
}

.select2-results .select2-result-label {
    padding: 3px 7px 4px;
    margin: 0;
    cursor: pointer;

    min-height: 1em;

    -webkit-touch-callout: none;
      -webkit-user-select: none;
         -moz-user-select: none;
              user-select: none;
}

.select2-results-dept-1 .select2-result-label { padding-left: 20px }
.select2-results-dept-2 .select2-result-label { padding-left: 40px }
.select2-results-dept-3 .select2-result-label { padding-left: 60px }
.select2-results-dept-4 .select2-result-label { padding-left: 80px }
.select2-results-dept-5 .select2-result-label { padding-left: 100px }
.select2-results-dept-6 .select2-result-label { padding-left: 110px }
.select2-results-dept-7 .select2-result-label { padding-left: 120px }

.select2-results .select2-highlighted {
    background: #3875d7;
    color: #fff;
}

.select2-results li em {
    background: #feffde;
    font-style: normal;
}

.select2-results .select2-highlighted em {
    background: transparent;
}

.select2-results .select2-highlighted ul {
    background: #fff;
    color: #000;
}

.select2-results .select2-no-results,
.select2-results .select2-searching,
.select2-results .select2-ajax-error,
.select2-results .select2-selection-limit {
    background: #f4f4f4;
    display: list-item;
    padding-left: 5px;
}

/*
disabled look for disabled choices in the results dropdown
*/
.select2-results .select2-disabled.select2-highlighted {
    color: #666;
    background: #f4f4f4;
    display: list-item;
    cursor: default;
}
.select2-results .select2-disabled {
  background: #f4f4f4;
  display: list-item;
  cursor: default;
}

.select2-results .select2-selected {
    display: none;
}

.select2-more-results.select2-active {
    background: #f4f4f4 url(/images/select2-spinner.gif?56d4c7ce2d3591a021073d07a6ea7342) no-repeat 100%;
}

.select2-results .select2-ajax-error {
    background: rgba(255, 50, 50, .2);
}

.select2-more-results {
    background: #f4f4f4;
    display: list-item;
}

/* disabled styles */

.select2-container.select2-container-disabled .select2-choice {
    background-color: #f4f4f4;
    background-image: none;
    border: 1px solid #ddd;
    cursor: default;
}

.select2-container.select2-container-disabled .select2-choice .select2-arrow {
    background-color: #f4f4f4;
    background-image: none;
    border-left: 0;
}

.select2-container.select2-container-disabled .select2-choice abbr {
    display: none;
}


/* multiselect */

.select2-container-multi .select2-choices {
    height: auto !important;
    height: 1%;
    margin: 0;
    padding: 0 5px 0 0;
    position: relative;

    border: 1px solid #aaa;
    cursor: text;
    overflow: hidden;

    background-color: #fff;
    background-image: linear-gradient(to bottom, #eee 1%, #fff 15%);
}

html[dir="rtl"] .select2-container-multi .select2-choices {
    padding: 0 0 0 5px;
}

.select2-locked {
  padding: 3px 5px 3px 5px !important;
}

.select2-container-multi .select2-choices {
    min-height: 26px;
}

.select2-container-multi.select2-container-active .select2-choices {
    border: 1px solid #5897fb;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 0, 0, .3);
}
.select2-container-multi .select2-choices li {
    float: left;
    list-style: none;
}
html[dir="rtl"] .select2-container-multi .select2-choices li
{
    float: right;
}
.select2-container-multi .select2-choices .select2-search-field {
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

.select2-container-multi .select2-choices .select2-search-field input {
    padding: 5px;
    margin: 1px 0;

    font-family: sans-serif;
    font-size: 100%;
    color: #666;
    outline: 0;
    border: 0;
    box-shadow: none;
    background: transparent !important;
}

.select2-container-multi .select2-choices .select2-search-field input.select2-active {
    background: #fff url(/images/select2-spinner.gif?56d4c7ce2d3591a021073d07a6ea7342) no-repeat 100% !important;
}

.select2-default {
    color: #999 !important;
}

.select2-container-multi .select2-choices .select2-search-choice {
    padding: 3px 5px 3px 18px;
    margin: 3px 0 3px 5px;
    position: relative;

    line-height: 13px;
    color: #333;
    cursor: default;
    border: 1px solid #aaaaaa;

    border-radius: 3px;
    box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);

    background-clip: padding-box;

    -webkit-touch-callout: none;
      -webkit-user-select: none;
         -moz-user-select: none;
              user-select: none;

    background-color: #e4e4e4;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#f4f4f4', GradientType=0);
    background-image: linear-gradient(to top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
}
html[dir="rtl"] .select2-container-multi .select2-choices .select2-search-choice
{
    margin: 3px 5px 3px 0;
    padding: 3px 18px 3px 5px;
}
.select2-container-multi .select2-choices .select2-search-choice .select2-chosen {
    cursor: default;
}
.select2-container-multi .select2-choices .select2-search-choice-focus {
    background: #d4d4d4;
}

.select2-search-choice-close {
    display: block;
    width: 12px;
    height: 13px;
    position: absolute;
    right: 3px;
    top: 4px;

    font-size: 1px;
    outline: none;
    background: url(/images/select2.png?c07457739c183c845cacbf55dae2808e) right top no-repeat;
}
html[dir="rtl"] .select2-search-choice-close {
    right: auto;
    left: 3px;
}

.select2-container-multi .select2-search-choice-close {
    left: 3px;
}

html[dir="rtl"] .select2-container-multi .select2-search-choice-close {
    left: auto;
    right: 2px;
}

.select2-container-multi .select2-choices .select2-search-choice .select2-search-choice-close:hover {
  background-position: right -11px;
}
.select2-container-multi .select2-choices .select2-search-choice-focus .select2-search-choice-close {
    background-position: right -11px;
}

/* disabled styles */
.select2-container-multi.select2-container-disabled .select2-choices {
    background-color: #f4f4f4;
    background-image: none;
    border: 1px solid #ddd;
    cursor: default;
}

.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice {
    padding: 3px 5px 3px 5px;
    border: 1px solid #ddd;
    background-image: none;
    background-color: #f4f4f4;
}

.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice .select2-search-choice-close {    display: none;
    background: none;
}
/* end multiselect */


.select2-result-selectable .select2-match,
.select2-result-unselectable .select2-match {
    text-decoration: underline;
}

.select2-offscreen, .select2-offscreen:focus {
    clip: rect(0 0 0 0) !important;
    width: 1px !important;
    height: 1px !important;
    border: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    outline: 0 !important;
    left: 0px !important;
    top: 0px !important;
}

.select2-display-none {
    display: none;
}

.select2-measure-scrollbar {
    position: absolute;
    top: -10000px;
    left: -10000px;
    width: 100px;
    height: 100px;
    overflow: scroll;
}

/* Retina-ize icons */

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-resolution: 2dppx)  {
    .select2-search input,
    .select2-search-choice-close,
    .select2-container .select2-choice abbr,
    .select2-container .select2-choice .select2-arrow b {
        background-image: url(/images/select2x2.png?688bccf95583ddf2ba42dd5df5e2c6a5) !important;
        background-repeat: no-repeat !important;
        background-size: 60px 40px !important;
    }

    .select2-search input {
        background-position: 100% -21px !important;
    }
}

.form-control .select2-choice {
    border: 0;
    border-radius: 2px;
}

.form-control .select2-choice .select2-arrow {
    border-radius: 0 2px 2px 0;   
}

.form-control.select2-container {
    height: auto !important;
    padding: 0;
}

.form-control.select2-container.select2-dropdown-open {
    border-color: #5897FB;
    border-radius: 3px 3px 0 0;
}

.form-control .select2-container.select2-dropdown-open .select2-choices {
    border-radius: 3px 3px 0 0;
}

.form-control.select2-container .select2-choices {
    border: 0 !important;
    border-radius: 3px;
}

.control-group.warning .select2-container .select2-choice,
.control-group.warning .select2-container .select2-choices,
.control-group.warning .select2-container-active .select2-choice,
.control-group.warning .select2-container-active .select2-choices,
.control-group.warning .select2-dropdown-open.select2-drop-above .select2-choice,
.control-group.warning .select2-dropdown-open.select2-drop-above .select2-choices,
.control-group.warning .select2-container-multi.select2-container-active .select2-choices {
    border: 1px solid #C09853 !important;
}

.control-group.warning .select2-container .select2-choice div {
    border-left: 1px solid #C09853 !important;
    background: #FCF8E3 !important;
}

.control-group.error .select2-container .select2-choice,
.control-group.error .select2-container .select2-choices,
.control-group.error .select2-container-active .select2-choice,
.control-group.error .select2-container-active .select2-choices,
.control-group.error .select2-dropdown-open.select2-drop-above .select2-choice,
.control-group.error .select2-dropdown-open.select2-drop-above .select2-choices,
.control-group.error .select2-container-multi.select2-container-active .select2-choices {
    border: 1px solid #B94A48 !important;
}

.control-group.error .select2-container .select2-choice div {
    border-left: 1px solid #B94A48 !important;
    background: #F2DEDE !important;
}

.control-group.info .select2-container .select2-choice,
.control-group.info .select2-container .select2-choices,
.control-group.info .select2-container-active .select2-choice,
.control-group.info .select2-container-active .select2-choices,
.control-group.info .select2-dropdown-open.select2-drop-above .select2-choice,
.control-group.info .select2-dropdown-open.select2-drop-above .select2-choices,
.control-group.info .select2-container-multi.select2-container-active .select2-choices {
    border: 1px solid #3A87AD !important;
}

.control-group.info .select2-container .select2-choice div {
    border-left: 1px solid #3A87AD !important;
    background: #D9EDF7 !important;
}

.control-group.success .select2-container .select2-choice,
.control-group.success .select2-container .select2-choices,
.control-group.success .select2-container-active .select2-choice,
.control-group.success .select2-container-active .select2-choices,
.control-group.success .select2-dropdown-open.select2-drop-above .select2-choice,
.control-group.success .select2-dropdown-open.select2-drop-above .select2-choices,
.control-group.success .select2-container-multi.select2-container-active .select2-choices {
    border: 1px solid #468847 !important;
}

.control-group.success .select2-container .select2-choice div {
    border-left: 1px solid #468847 !important;
    background: #DFF0D8 !important;
}

/*
Version: 3.5.1 Timestamp: Tue Jul 22 18:58:56 EDT 2014
*/
.select2-container {
    margin: 0;
    position: relative;
    display: inline-block;
    /* inline-block for ie7 */
    zoom: 1;
    *display: inline;
    vertical-align: middle;
}

.select2-container,
.select2-drop,
.select2-search,
.select2-search input {
  /*
    Force border-box so that % widths fit the parent
    container without overlap because of margin/padding.
    More Info : http://www.quirksmode.org/css/box.html
  */ /* webkit */ /* firefox */
  box-sizing: border-box; /* css3 */
}

.select2-container .select2-choice {
    display: block;
    height: 26px;
    padding: 0 0 0 8px;
    overflow: hidden;
    position: relative;

    border: 1px solid #aaa;
    white-space: nowrap;
    line-height: 26px;
    color: #444;
    text-decoration: none;

    border-radius: 4px;

    background-clip: padding-box;

    -webkit-touch-callout: none;
      -webkit-user-select: none;
         -moz-user-select: none;
              user-select: none;

    background-color: #fff;
    background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#eeeeee', GradientType = 0);
    background-image: linear-gradient(to top, #eee 0%, #fff 50%);
}

html[dir="rtl"] .select2-container .select2-choice {
    padding: 0 8px 0 0;
}

.select2-container.select2-drop-above .select2-choice {
    border-bottom-color: #aaa;

    border-radius: 0 0 4px 4px;
    background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 90%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0);
    background-image: linear-gradient(to bottom, #eee 0%, #fff 90%);
}

.select2-container.select2-allowclear .select2-choice .select2-chosen {
    margin-right: 42px;
}

.select2-container .select2-choice > .select2-chosen {
    margin-right: 26px;
    display: block;
    overflow: hidden;

    white-space: nowrap;

    text-overflow: ellipsis;
    float: none;
    width: auto;
}

html[dir="rtl"] .select2-container .select2-choice > .select2-chosen {
    margin-left: 26px;
    margin-right: 0;
}

.select2-container .select2-choice abbr {
    display: none;
    width: 12px;
    height: 12px;
    position: absolute;
    right: 24px;
    top: 8px;

    font-size: 1px;
    text-decoration: none;

    border: 0;
    background: url(/images/select2.png?c07457739c183c845cacbf55dae2808e) right top no-repeat;
    cursor: pointer;
    outline: 0;
}

.select2-container.select2-allowclear .select2-choice abbr {
    display: inline-block;
}

.select2-container .select2-choice abbr:hover {
    background-position: right -11px;
    cursor: pointer;
}

.select2-drop-mask {
    border: 0;
    margin: 0;
    padding: 0;
    position: fixed;
    left: 0;
    top: 0;
    min-height: 100%;
    min-width: 100%;
    height: auto;
    width: auto;
    opacity: 0;
    z-index: 9998;
    /* styles required for IE to work */
    background-color: #fff;
    filter: alpha(opacity=0);
}

.select2-drop {
    width: 100%;
    margin-top: -1px;
    position: absolute;
    z-index: 9999;
    top: 100%;

    background: #fff;
    color: #000;
    border: 1px solid #aaa;
    border-top: 0;

    border-radius: 0 0 4px 4px;
    box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
}

.select2-drop.select2-drop-above {
    margin-top: 1px;
    border-top: 1px solid #aaa;
    border-bottom: 0;

    border-radius: 4px 4px 0 0;
    box-shadow: 0 -4px 5px rgba(0, 0, 0, .15);
}

.select2-drop-active {
    border: 1px solid #5897fb;
    border-top: none;
}

.select2-drop.select2-drop-above.select2-drop-active {
    border-top: 1px solid #5897fb;
}

.select2-drop-auto-width {
    border-top: 1px solid #aaa;
    width: auto;
}

.select2-drop-auto-width .select2-search {
    padding-top: 4px;
}

.select2-container .select2-choice .select2-arrow {
    display: inline-block;
    width: 18px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;

    border-left: 1px solid #aaa;
    border-radius: 0 4px 4px 0;

    background-clip: padding-box;

    background: #ccc;
    background-image: -moz-linear-gradient(center bottom, #ccc 0%, #eee 60%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#eeeeee', endColorstr = '#cccccc', GradientType = 0);
    background-image: linear-gradient(to top, #ccc 0%, #eee 60%);
}

html[dir="rtl"] .select2-container .select2-choice .select2-arrow {
    left: 0;
    right: auto;

    border-left: none;
    border-right: 1px solid #aaa;
    border-radius: 4px 0 0 4px;
}

.select2-container .select2-choice .select2-arrow b {
    display: block;
    width: 100%;
    height: 100%;
    background: url(/images/select2.png?c07457739c183c845cacbf55dae2808e) no-repeat 0 1px;
}

html[dir="rtl"] .select2-container .select2-choice .select2-arrow b {
    background-position: 2px 1px;
}

.select2-search {
    display: inline-block;
    width: 100%;
    min-height: 26px;
    margin: 0;
    padding-left: 4px;
    padding-right: 4px;

    position: relative;
    z-index: 10000;

    white-space: nowrap;
}

.select2-search input {
    width: 100%;
    height: auto !important;
    min-height: 26px;
    padding: 4px 20px 4px 5px;
    margin: 0;

    outline: 0;
    font-family: sans-serif;
    font-size: 1em;

    border: 1px solid #aaa;
    border-radius: 0;
    box-shadow: none;

    background: #fff url(/images/select2.png?c07457739c183c845cacbf55dae2808e) no-repeat 100% -22px;
    background: url(/images/select2.png?c07457739c183c845cacbf55dae2808e) no-repeat 100% -22px, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0;
}

html[dir="rtl"] .select2-search input {
    padding: 4px 5px 4px 20px;

    background: #fff url(/images/select2.png?c07457739c183c845cacbf55dae2808e) no-repeat -37px -22px;
    background: url(/images/select2.png?c07457739c183c845cacbf55dae2808e) no-repeat -37px -22px, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0;
}

.select2-drop.select2-drop-above .select2-search input {
    margin-top: 4px;
}

.select2-search input.select2-active {
    background: #fff url(/images/select2-spinner.gif?56d4c7ce2d3591a021073d07a6ea7342) no-repeat 100%;
    background: url(/images/select2-spinner.gif?56d4c7ce2d3591a021073d07a6ea7342) no-repeat 100%, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0;
}

.select2-container-active .select2-choice,
.select2-container-active .select2-choices {
    border: 1px solid #5897fb;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 0, 0, .3);
}

.select2-dropdown-open .select2-choice {
    border-bottom-color: transparent;
    box-shadow: 0 1px 0 #fff inset;

    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;

    background-color: #eee;
    background-image: -moz-linear-gradient(center bottom, #fff 0%, #eee 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
    background-image: linear-gradient(to top, #fff 0%, #eee 50%);
}

.select2-dropdown-open.select2-drop-above .select2-choice,
.select2-dropdown-open.select2-drop-above .select2-choices {
    border: 1px solid #5897fb;
    border-top-color: transparent;
    background-image: -moz-linear-gradient(center top, #fff 0%, #eee 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
    background-image: linear-gradient(to bottom, #fff 0%, #eee 50%);
}

.select2-dropdown-open .select2-choice .select2-arrow {
    background: transparent;
    border-left: none;
    filter: none;
}
html[dir="rtl"] .select2-dropdown-open .select2-choice .select2-arrow {
    border-right: none;
}

.select2-dropdown-open .select2-choice .select2-arrow b {
    background-position: -18px 1px;
}

html[dir="rtl"] .select2-dropdown-open .select2-choice .select2-arrow b {
    background-position: -16px 1px;
}

.select2-hidden-accessible {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/* results */
.select2-results {
    max-height: 200px;
    padding: 0 0 0 4px;
    margin: 4px 4px 4px 0;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html[dir="rtl"] .select2-results {
    padding: 0 4px 0 0;
    margin: 4px 0 4px 4px;
}

.select2-results ul.select2-result-sub {
    margin: 0;
    padding-left: 0;
}

.select2-results li {
    list-style: none;
    display: list-item;
    background-image: none;
}

.select2-results li.select2-result-with-children > .select2-result-label {
    font-weight: bold;
}

.select2-results .select2-result-label {
    padding: 3px 7px 4px;
    margin: 0;
    cursor: pointer;

    min-height: 1em;

    -webkit-touch-callout: none;
      -webkit-user-select: none;
         -moz-user-select: none;
              user-select: none;
}

.select2-results-dept-1 .select2-result-label { padding-left: 20px }
.select2-results-dept-2 .select2-result-label { padding-left: 40px }
.select2-results-dept-3 .select2-result-label { padding-left: 60px }
.select2-results-dept-4 .select2-result-label { padding-left: 80px }
.select2-results-dept-5 .select2-result-label { padding-left: 100px }
.select2-results-dept-6 .select2-result-label { padding-left: 110px }
.select2-results-dept-7 .select2-result-label { padding-left: 120px }

.select2-results .select2-highlighted {
    background: #3875d7;
    color: #fff;
}

.select2-results li em {
    background: #feffde;
    font-style: normal;
}

.select2-results .select2-highlighted em {
    background: transparent;
}

.select2-results .select2-highlighted ul {
    background: #fff;
    color: #000;
}

.select2-results .select2-no-results,
.select2-results .select2-searching,
.select2-results .select2-ajax-error,
.select2-results .select2-selection-limit {
    background: #f4f4f4;
    display: list-item;
    padding-left: 5px;
}

/*
disabled look for disabled choices in the results dropdown
*/
.select2-results .select2-disabled.select2-highlighted {
    color: #666;
    background: #f4f4f4;
    display: list-item;
    cursor: default;
}
.select2-results .select2-disabled {
  background: #f4f4f4;
  display: list-item;
  cursor: default;
}

.select2-results .select2-selected {
    display: none;
}

.select2-more-results.select2-active {
    background: #f4f4f4 url(/images/select2-spinner.gif?56d4c7ce2d3591a021073d07a6ea7342) no-repeat 100%;
}

.select2-results .select2-ajax-error {
    background: rgba(255, 50, 50, .2);
}

.select2-more-results {
    background: #f4f4f4;
    display: list-item;
}

/* disabled styles */

.select2-container.select2-container-disabled .select2-choice {
    background-color: #f4f4f4;
    background-image: none;
    border: 1px solid #ddd;
    cursor: default;
}

.select2-container.select2-container-disabled .select2-choice .select2-arrow {
    background-color: #f4f4f4;
    background-image: none;
    border-left: 0;
}

.select2-container.select2-container-disabled .select2-choice abbr {
    display: none;
}


/* multiselect */

.select2-container-multi .select2-choices {
    height: auto !important;
    height: 1%;
    margin: 0;
    padding: 0 5px 0 0;
    position: relative;

    border: 1px solid #aaa;
    cursor: text;
    overflow: hidden;

    background-color: #fff;
    background-image: linear-gradient(to bottom, #eee 1%, #fff 15%);
}

html[dir="rtl"] .select2-container-multi .select2-choices {
    padding: 0 0 0 5px;
}

.select2-locked {
  padding: 3px 5px 3px 5px !important;
}

.select2-container-multi .select2-choices {
    min-height: 26px;
}

.select2-container-multi.select2-container-active .select2-choices {
    border: 1px solid #5897fb;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 0, 0, .3);
}
.select2-container-multi .select2-choices li {
    float: left;
    list-style: none;
}
html[dir="rtl"] .select2-container-multi .select2-choices li
{
    float: right;
}
.select2-container-multi .select2-choices .select2-search-field {
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

.select2-container-multi .select2-choices .select2-search-field input {
    padding: 5px;
    margin: 1px 0;

    font-family: sans-serif;
    font-size: 100%;
    color: #666;
    outline: 0;
    border: 0;
    box-shadow: none;
    background: transparent !important;
}

.select2-container-multi .select2-choices .select2-search-field input.select2-active {
    background: #fff url(/images/select2-spinner.gif?56d4c7ce2d3591a021073d07a6ea7342) no-repeat 100% !important;
}

.select2-default {
    color: #999 !important;
}

.select2-container-multi .select2-choices .select2-search-choice {
    padding: 3px 5px 3px 18px;
    margin: 3px 0 3px 5px;
    position: relative;

    line-height: 13px;
    color: #333;
    cursor: default;
    border: 1px solid #aaaaaa;

    border-radius: 3px;
    box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);

    background-clip: padding-box;

    -webkit-touch-callout: none;
      -webkit-user-select: none;
         -moz-user-select: none;
              user-select: none;

    background-color: #e4e4e4;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#f4f4f4', GradientType=0);
    background-image: linear-gradient(to top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
}
html[dir="rtl"] .select2-container-multi .select2-choices .select2-search-choice
{
    margin: 3px 5px 3px 0;
    padding: 3px 18px 3px 5px;
}
.select2-container-multi .select2-choices .select2-search-choice .select2-chosen {
    cursor: default;
}
.select2-container-multi .select2-choices .select2-search-choice-focus {
    background: #d4d4d4;
}

.select2-search-choice-close {
    display: block;
    width: 12px;
    height: 13px;
    position: absolute;
    right: 3px;
    top: 4px;

    font-size: 1px;
    outline: none;
    background: url(/images/select2.png?c07457739c183c845cacbf55dae2808e) right top no-repeat;
}
html[dir="rtl"] .select2-search-choice-close {
    right: auto;
    left: 3px;
}

.select2-container-multi .select2-search-choice-close {
    left: 3px;
}

html[dir="rtl"] .select2-container-multi .select2-search-choice-close {
    left: auto;
    right: 2px;
}

.select2-container-multi .select2-choices .select2-search-choice .select2-search-choice-close:hover {
  background-position: right -11px;
}
.select2-container-multi .select2-choices .select2-search-choice-focus .select2-search-choice-close {
    background-position: right -11px;
}

/* disabled styles */
.select2-container-multi.select2-container-disabled .select2-choices {
    background-color: #f4f4f4;
    background-image: none;
    border: 1px solid #ddd;
    cursor: default;
}

.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice {
    padding: 3px 5px 3px 5px;
    border: 1px solid #ddd;
    background-image: none;
    background-color: #f4f4f4;
}

.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice .select2-search-choice-close {    display: none;
    background: none;
}
/* end multiselect */


.select2-result-selectable .select2-match,
.select2-result-unselectable .select2-match {
    text-decoration: underline;
}

.select2-offscreen, .select2-offscreen:focus {
    clip: rect(0 0 0 0) !important;
    width: 1px !important;
    height: 1px !important;
    border: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    outline: 0 !important;
    left: 0px !important;
    top: 0px !important;
}

.select2-display-none {
    display: none;
}

.select2-measure-scrollbar {
    position: absolute;
    top: -10000px;
    left: -10000px;
    width: 100px;
    height: 100px;
    overflow: scroll;
}

/* Retina-ize icons */

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-resolution: 2dppx)  {
    .select2-search input,
    .select2-search-choice-close,
    .select2-container .select2-choice abbr,
    .select2-container .select2-choice .select2-arrow b {
        background-image: url(/images/select2x2.png?688bccf95583ddf2ba42dd5df5e2c6a5) !important;
        background-repeat: no-repeat !important;
        background-size: 60px 40px !important;
    }

    .select2-search input {
        background-position: 100% -21px !important;
    }
}

.form-control .select2-choice {
    border: 0;
    border-radius: 2px;
}

.form-control .select2-choice .select2-arrow {
    border-radius: 0 2px 2px 0;   
}

.form-control.select2-container {
    height: auto !important;
    padding: 0;
}

.form-control.select2-container.select2-dropdown-open {
    border-color: #5897FB;
    border-radius: 3px 3px 0 0;
}

.form-control .select2-container.select2-dropdown-open .select2-choices {
    border-radius: 3px 3px 0 0;
}

.form-control.select2-container .select2-choices {
    border: 0 !important;
    border-radius: 3px;
}

.control-group.warning .select2-container .select2-choice,
.control-group.warning .select2-container .select2-choices,
.control-group.warning .select2-container-active .select2-choice,
.control-group.warning .select2-container-active .select2-choices,
.control-group.warning .select2-dropdown-open.select2-drop-above .select2-choice,
.control-group.warning .select2-dropdown-open.select2-drop-above .select2-choices,
.control-group.warning .select2-container-multi.select2-container-active .select2-choices {
    border: 1px solid #C09853 !important;
}

.control-group.warning .select2-container .select2-choice div {
    border-left: 1px solid #C09853 !important;
    background: #FCF8E3 !important;
}

.control-group.error .select2-container .select2-choice,
.control-group.error .select2-container .select2-choices,
.control-group.error .select2-container-active .select2-choice,
.control-group.error .select2-container-active .select2-choices,
.control-group.error .select2-dropdown-open.select2-drop-above .select2-choice,
.control-group.error .select2-dropdown-open.select2-drop-above .select2-choices,
.control-group.error .select2-container-multi.select2-container-active .select2-choices {
    border: 1px solid #B94A48 !important;
}

.control-group.error .select2-container .select2-choice div {
    border-left: 1px solid #B94A48 !important;
    background: #F2DEDE !important;
}

.control-group.info .select2-container .select2-choice,
.control-group.info .select2-container .select2-choices,
.control-group.info .select2-container-active .select2-choice,
.control-group.info .select2-container-active .select2-choices,
.control-group.info .select2-dropdown-open.select2-drop-above .select2-choice,
.control-group.info .select2-dropdown-open.select2-drop-above .select2-choices,
.control-group.info .select2-container-multi.select2-container-active .select2-choices {
    border: 1px solid #3A87AD !important;
}

.control-group.info .select2-container .select2-choice div {
    border-left: 1px solid #3A87AD !important;
    background: #D9EDF7 !important;
}

.control-group.success .select2-container .select2-choice,
.control-group.success .select2-container .select2-choices,
.control-group.success .select2-container-active .select2-choice,
.control-group.success .select2-container-active .select2-choices,
.control-group.success .select2-dropdown-open.select2-drop-above .select2-choice,
.control-group.success .select2-dropdown-open.select2-drop-above .select2-choices,
.control-group.success .select2-container-multi.select2-container-active .select2-choices {
    border: 1px solid #468847 !important;
}

.control-group.success .select2-container .select2-choice div {
    border-left: 1px solid #468847 !important;
    background: #DFF0D8 !important;
}

@charset "UTF-8";
.form-group {
  margin-bottom: 15px;
}
.form-group > label {
  font-weight: 700;
  padding: 0 0 4px;
}
.form-group > .form-control + .form-control {
  margin-top: 10px;
}
.form-group > .help-block {
  color: #f00;
}

.form-field-image {
  margin-bottom: 10px;
}

.form-field-image img {
  max-width: 600px;
}

input {
  border: 1px solid #e0e0e0;
  outline: transparent;
}
input:focus {
  border-color: #519cff;
}

label {
  margin: 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
}

.form-control {
  min-height: 40px;
  border-radius: 3px;
}
.form-control::-moz-placeholder {
  color: #B9B9B9;
}
.form-control::placeholder {
  color: #B9B9B9;
}

.minheight {
  min-height: 150px;
}

input[type=checkbox] {
  visibility: hidden;
  display: none;
}

.niceCheckbox {
  position: relative;
  padding: 0;
  cursor: pointer;
}
.niceCheckbox:hover .custom-checkbox {
  border-color: #B3B3B3;
}
.niceCheckbox:hover .checkbox-text-label > span:first-of-type {
  text-decoration: underline;
}
.niceCheckbox:hover .checkbox-text-label > span:last-of-type {
  text-decoration: none;
}
.niceCheckbox > label {
  cursor: pointer;
}

.niceCheckbox .custom-checkbox {
  position: absolute;
  top: 7px;
  left: 0;
  width: 16px;
  height: 16px;
  cursor: pointer;
  border: 1px solid #CCC;
  background-color: #fff;
  border-radius: 2px;
}

.niceCheckbox .custom-checkbox:after {
  position: absolute;
  top: 2px;
  left: 1px;
  width: 12px;
  height: 7px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
  content: "";
  background: transparent;
  transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  border: 3px solid #000;
  border-top: 0;
  border-right: 0;
}

.niceCheckbox input[type=checkbox]:checked + .custom-checkbox:after {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  opacity: 1;
}

.form-group .checkbox-text-label, .checkbox-text-label {
  display: flex;
  padding: 5px 5px 5px 25px;
  font-size: 1rem;
  line-height: 20px;
  min-height: 28px;
}
.form-group .checkbox-text-label > .thumbnail, .checkbox-text-label > .thumbnail {
  width: 20px;
  height: 20px;
  float: right;
  margin-left: 15px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.form-group .checkbox-text-label > span, .checkbox-text-label > span {
  flex: 0 0 auto;
}
.form-group .checkbox-text-label > span:first-of-type, .checkbox-text-label > span:first-of-type {
  flex: 1 1 auto;
}
.form-group .checkbox-text-label > span:not(:first-of-type), .checkbox-text-label > span:not(:first-of-type) {
  color: #898989;
  text-decoration: none;
}

/* Nice select */
.niceSelect select, .niceSelect option {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

.niceSelect select {
  margin: 0;
  padding: 10px 28px 10px 10px;
  outline: none;
  display: inline-block;
  cursor: pointer;
  border: 1px solid #CECECE;
  width: 100%;
}

.niceSelect {
  position: relative;
}

.niceSelect:after {
  position: absolute;
  top: 11px;
  right: 10px;
  font-size: 16px;
  content: "\f0d7";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  pointer-events: none;
}

.niceSelect.date:after {
  content: "\f783";
}

/* Select 2 */
.select2-container {
  display: block;
}

.select2-container .select2-choice {
  padding: 0 0 0 6px;
  border: none;
  height: 38px;
  line-height: 38px;
  border-radius: 3px;
  background-color: #fff;
  background-image: none;
}

.select2-container .select2-choice .select2-arrow {
  line-height: 38px;
  position: absolute;
  border-left: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0 3px 3px 0;
  background-image: none;
  background-color: #e9e9e9;
  width: 24px;
}
.select2-container .select2-choice .select2-arrow b {
  background: url(/mix/images/select2.png?c074577…) no-repeat 3px 6px;
}

.input-validation {
  border-color: #f00;
}

.card {
  margin: 15px 0;
  overflow-x: auto;
  border-radius: 5px;
  border: 1px solid #e6e6e6;
}
.card .card-title {
  margin: 0;
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 600;
}
.card .list-group {
  margin: 0 0 15px 0;
}
.card .list-group .list-group-item {
  border: none;
  padding: 5px 10px 5px 0;
  margin-bottom: 0;
}
.card .list-group .list-group-item span {
  font-weight: 700;
}
.card table {
  margin-bottom: 0;
}
.card .form-control {
  max-width: 400px;
}

.card.has-table {
  overflow: visible;
}
.card.has-table #open-order-lines_wrapper {
  padding: 0;
}
.card.has-table .dataTables_wrapper {
  padding: 0;
}
.card.has-table .dataTables_wrapper .dataTable {
  margin: 0 -6px;
}
.card.has-table .dataTables_wrapper .dropdown-menu {
  background-color: white;
  min-width: 200px;
}
.card.has-table .dataTables_wrapper .dropdown-menu .dropdown-item {
  background-color: white;
  color: #88898a;
  padding: 7px 15px;
}
.card.has-table .dataTables_wrapper .dropdown-menu .dropdown-item.active {
  color: #212529;
  font-weight: 700;
}
.card.has-table .dataTables_empty {
  padding: 175px 0;
}
.card.has-table .dataTables_length {
  padding: 5px 10px;
}
.card.has-table .dataTables_length label {
  display: flex;
  align-items: center;
}
.card.has-table .dataTables_length select {
  height: 20px;
  padding: 0 24px 0 10px;
  min-height: 30px;
  font-size: 1rem;
  margin: 0 5px;
}
.card.has-table .dataTables_filter {
  padding: 5px 10px;
}
.card.has-table .dataTables_filter label {
  display: flex;
  align-items: center;
}
.card.has-table .dataTables_filter .form-control {
  height: 20px;
  padding: 0 24px 0 10px;
  min-height: 30px;
  font-size: 1rem;
  margin: 0 0 0 5px;
}
@media (max-width: 768px) {
  .card.has-table .dataTables_filter {
    float: left;
  }
}
.card.has-table .dt-buttons {
  margin: 5px 0 0 0;
}
@media (max-width: 768px) {
  .card.has-table .dt-buttons {
    margin: 5px 10px;
  }
}
.card.has-table .dt-buttons .btn, .card.has-table .dt-buttons .btn-secondary {
  border: 1px solid #fd7e14;
  color: #fd7e14;
  background-color: white;
  border-radius: 0;
  padding: 6px 10px;
  font-size: 1rem;
  margin: 0;
}
.card.has-table .table {
  border-collapse: collapse !important;
}
.card.has-table .table td .btn {
  flex-direction: column;
  display: inline-flex;
  border: 1px solid #d3d3d3;
  color: #fd7e14;
  padding: 2px;
  font-size: 0.85rem;
  margin: 2px;
  border-radius: 0;
  min-height: 20px;
  justify-content: center;
}
.card.has-table .table td .btn i {
  color: #fd7e14;
}
.card.has-table .table td .btn.datatable-row-action-btn {
  padding: 5px 10px;
  flex-direction: row;
  align-items: center;
}
.card.has-table .dataTables_scrollBody {
  border-bottom: 1px solid #e6e6e6;
}
.card.has-table .dataTables_scrollBody .table {
  min-height: 300px;
  border: none;
}
.card.has-table .dataTables_info {
  display: inline-flex;
  padding-top: 0;
  margin: 5px 5px 5px 10px;
}
.card.has-table .dataTables_paginate {
  display: inline-flex;
  margin: 5px 10px 5px 5px;
}
.card.has-table .dataTables_paginate .pagination .paginate_button .page-link {
  border-radius: 0;
  border: 1px solid #fd7e14;
  color: #fd7e14;
  background-color: white;
  padding: 3px 7px;
}
.card.has-table .dataTables_paginate .pagination .paginate_button.disabled .page-link {
  color: #88898a;
  border-color: #88898a;
  opacity: 0.5;
}
.card.has-table .dataTables_paginate .pagination .paginate_button.disabled:hover {
  cursor: not-allowed;
}
.card.has-table .dataTables_paginate .pagination .paginate_button.active .page-link {
  background-color: #fd7e14;
  color: #fff;
}

.card-body + .card-body {
  padding-top: 0;
}

.card-body h4 {
  margin: 15px 0 25px 0;
}
.card-body .form-group + h4 {
  border-top: 1px solid #e6e6e6;
  padding: 25px 0;
  margin: 25px 0 0 0;
}

.dataTables_wrapper .dropdown-menu {
  background-color: #868e96;
}
.dataTables_wrapper .dropdown-item {
  background-color: #868e96;
}
.dataTables_wrapper .dropdown-item:hover {
  background-color: #727b84;
}

.dataTables_paginate li a {
  text-decoration: none;
}

.dataTable td {
  vertical-align: top;
}

.dataTable tr {
  border-collapse: collapse !important;
}

.card.has-table .dataTable td .btn-group .btn-default.dropdown-toggle {
  flex-direction: row;
  align-items: center;
  background-color: white;
}

.datatables-button-bar {
  margin-bottom: 20px;
}

.dataTables_wrapper {
  padding: 6px;
}
.dataTables_wrapper span[data-date] {
  white-space: nowrap;
}
.dataTables_wrapper .dataTables_length {
  float: left;
  margin-right: 1rem;
}
.dataTables_wrapper .dataTable {
  margin: 0 -6px;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  margin-bottom: 0 !important;
}

.dataTables_scroll .dataTables_scrollHead .dataTable {
  border-top: none !important;
  border-bottom: none !important;
  margin-bottom: 0 !important;
}

.dataTables_wrapper .dt-buttons a {
  text-decoration: none;
}

.dt-button-collection.dropdown-menu li {
  padding: 0 1rem;
}

.dataTables_wrapper .dataTables_filter {
  float: right;
}

.dataTables_scrollHead {
  border-top: 1px solid #e6e6e6 !important;
}
.dataTables_scrollHead .dataTable {
  margin: 0 !important;
}
.dataTables_scrollHead .table thead th {
  border-bottom: none !important;
}

.dataTables_scrollFoot {
  overflow: auto !important;
}

.dataTables_scrollFootInner input {
  font-weight: normal;
  padding: 4px;
  font-size: 1rem;
  border-radius: 3px;
}

div.dataTables_processing,
div.dt-processing {
  z-index: 10;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 1.2em;
}

.datatable-row-action-btn i {
  background-color: inherit !important;
  color: inherit !important;
}

.dt-container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.dt-container .dt-length,
.dt-container .dt-buttons,
.dt-container .dt-search,
.dt-container .dt-info,
.dt-container .dt-paging {
  flex-direction: row;
  align-items: center;
  align-self: center;
  margin: 5px 10px;
}
.dt-container .dt-length .dt-input {
  height: 30px;
  padding: 0 24px 0 10px;
  min-height: 30px;
  font-size: 1rem;
  margin: 0 5px;
}
.dt-container .dt-buttons {
  margin: 0 !important;
  flex-direction: row;
  display: flex;
}
.dt-container .dt-buttons .dt-button-collection div[role=menu] {
  display: flex !important;
  flex-direction: column;
  gap: 14px;
  background-color: white;
  min-width: 200px;
  z-index: 2002;
  padding: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}
.dt-container .dt-buttons .dt-button-collection div[role=menu] button {
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  opacity: 0.6;
}
.dt-container .dt-buttons .dt-button-collection div[role=menu] button.dt-button-active {
  opacity: 1;
}
.dt-container .dt-buttons .buttons-collection {
  display: flex;
  align-items: center;
}
.dt-container .dt-buttons .buttons-collection .dt-button-down-arrow {
  display: none;
}
.dt-container .dt-buttons .buttons-collection:after {
  margin-top: 2px;
}
.dt-container .dt-search {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 5px;
}
.dt-container .dt-search .form-control {
  height: 20px;
  padding: 0 24px 0 10px;
  min-height: 30px;
  font-size: 1rem;
  margin: 0 0 0 5px;
}
.dt-container .dt-paging {
  flex-basis: 100%;
}
.dt-container .dt-paging nav {
  display: flex;
}
.dt-container .dt-paging nav button,
.dt-container .dt-paging nav span {
  border: 1px solid #fd7e14;
  color: #fd7e14;
  background: white;
  padding: 3px 7px;
  border-radius: 0;
  cursor: pointer;
}
.dt-container .dt-paging nav button.current,
.dt-container .dt-paging nav span.current {
  background-color: #fd7e14;
  color: white;
}
.dt-container .dt-paging nav button.disabled,
.dt-container .dt-paging nav span.disabled {
  cursor: not-allowed;
}
.dt-container .dt-paging nav span {
  cursor: default;
}
.dt-container .dt-paging nav :not(:last-child) {
  border-right: none;
}
.dt-container .dt-info {
  flex-basis: 100%;
}
.dt-container .dataTable {
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  margin: 0 !important;
}
.dt-container .dataTable thead tr th {
  vertical-align: middle;
}
.dt-container .dataTable thead tr th.dt-orderable-desc {
  position: relative;
  cursor: pointer;
}
.dt-container .dataTable thead tr th.dt-orderable-desc:after {
  position: absolute;
  right: -5px;
  font-size: 0.8em;
  opacity: 0.125;
  top: 42%;
  content: "▼";
}
.dt-container .dataTable thead tr th.dt-orderable-asc {
  position: relative;
  cursor: pointer;
}
.dt-container .dataTable thead tr th.dt-orderable-asc:before {
  position: absolute;
  right: -5px;
  font-size: 0.8em;
  opacity: 0.125;
  bottom: 42%;
  content: "▲";
}
.dt-container .dataTable thead tr th.dt-ordering-asc:before {
  opacity: 0.6;
}
.dt-container .dataTable thead tr th.dt-ordering-desc:after {
  opacity: 0.6;
}

.form-group {
  margin-bottom: 15px;
}
.form-group > label {
  font-weight: 700;
  padding: 0 0 4px;
}
.form-group > .form-control + .form-control {
  margin-top: 10px;
}
.form-group > .help-block {
  color: #f00;
}

.form-field-image {
  margin-bottom: 10px;
}

.form-field-image img {
  max-width: 600px;
}

input {
  border: 1px solid #e0e0e0;
  outline: transparent;
}
input:focus {
  border-color: #519cff;
}

label {
  margin: 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
}

.form-control {
  min-height: 40px;
  border-radius: 3px;
}
.form-control::-moz-placeholder {
  color: #B9B9B9;
}
.form-control::placeholder {
  color: #B9B9B9;
}

.minheight {
  min-height: 150px;
}

input[type=checkbox] {
  visibility: hidden;
  display: none;
}

.niceCheckbox {
  position: relative;
  padding: 0;
  cursor: pointer;
}
.niceCheckbox:hover .custom-checkbox {
  border-color: #B3B3B3;
}
.niceCheckbox:hover .checkbox-text-label > span:first-of-type {
  text-decoration: underline;
}
.niceCheckbox:hover .checkbox-text-label > span:last-of-type {
  text-decoration: none;
}
.niceCheckbox > label {
  cursor: pointer;
}

.niceCheckbox .custom-checkbox {
  position: absolute;
  top: 7px;
  left: 0;
  width: 16px;
  height: 16px;
  cursor: pointer;
  border: 1px solid #CCC;
  background-color: #fff;
  border-radius: 2px;
}

.niceCheckbox .custom-checkbox:after {
  position: absolute;
  top: 2px;
  left: 1px;
  width: 12px;
  height: 7px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
  content: "";
  background: transparent;
  transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  border: 3px solid #000;
  border-top: 0;
  border-right: 0;
}

.niceCheckbox input[type=checkbox]:checked + .custom-checkbox:after {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  opacity: 1;
}

.form-group .checkbox-text-label, .checkbox-text-label {
  display: flex;
  padding: 5px 5px 5px 25px;
  font-size: 1rem;
  line-height: 20px;
  min-height: 28px;
}
.form-group .checkbox-text-label > .thumbnail, .checkbox-text-label > .thumbnail {
  width: 20px;
  height: 20px;
  float: right;
  margin-left: 15px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.form-group .checkbox-text-label > span, .checkbox-text-label > span {
  flex: 0 0 auto;
}
.form-group .checkbox-text-label > span:first-of-type, .checkbox-text-label > span:first-of-type {
  flex: 1 1 auto;
}
.form-group .checkbox-text-label > span:not(:first-of-type), .checkbox-text-label > span:not(:first-of-type) {
  color: #898989;
  text-decoration: none;
}

/* Nice select */
.niceSelect select, .niceSelect option {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

.niceSelect select {
  margin: 0;
  padding: 10px 28px 10px 10px;
  outline: none;
  display: inline-block;
  cursor: pointer;
  border: 1px solid #CECECE;
  width: 100%;
}

.niceSelect {
  position: relative;
}

.niceSelect:after {
  position: absolute;
  top: 11px;
  right: 10px;
  font-size: 16px;
  content: "\f0d7";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  pointer-events: none;
}

.niceSelect.date:after {
  content: "\f783";
}

/* Select 2 */
.select2-container {
  display: block;
}

.select2-container .select2-choice {
  padding: 0 0 0 6px;
  border: none;
  height: 38px;
  line-height: 38px;
  border-radius: 3px;
  background-color: #fff;
  background-image: none;
}

.select2-container .select2-choice .select2-arrow {
  line-height: 38px;
  position: absolute;
  border-left: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0 3px 3px 0;
  background-image: none;
  background-color: #e9e9e9;
  width: 24px;
}
.select2-container .select2-choice .select2-arrow b {
  background: url(/mix/images/select2.png?c074577…) no-repeat 3px 6px;
}

.input-validation {
  border-color: #f00;
}

#loading-overlay {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
  cursor: wait;
}
#loading-overlay i {
  position: fixed;
  display: block;
  top: 49%;
  left: 49%;
  font-size: 40px;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: #f7f7f7;
}

.table tr {
  border-collapse: collapse;
  border-bottom: 1px solid #e6e6e6;
}
.table tr:last-child {
  border-bottom: none;
}
.table tr:only-child {
  border-bottom: 1px solid #e6e6e6;
}
.table tr:only-child td.dataTables_empty {
  border-bottom: none;
}
.table td, .table th {
  vertical-align: middle;
  border: none;
  font-size: 15px;
}
.table td form, .table th form {
  display: inline-block;
}
.table td .btn, .table th .btn {
  margin-left: 5px;
}
.table td.text-end, .table th.text-end {
  text-align: end;
}
.table + .buttonbar {
  border-top: 1px solid #e9ecef;
}
.table td.align.left {
  text-align: left;
}
.table td.align.right {
  text-align: right;
}
.table td.align.center {
  text-align: center;
}

table .outer-bordered {
  border-collapse: collapse;
}
table .outer-bordered tr {
  border: none;
}
table .outer-bordered td, table .outer-bordered th {
  border: 1px inset gray;
}
table .no-border {
  border: none;
}
table .no-border td, table .no-border th {
  border: none;
  padding: 0;
}
table .cellpadding-5 td, table .cellpadding-5 th {
  padding: 5px;
}
table .cellpadding-4 td, table .cellpadding-4 th {
  padding: 4px;
}
table .cellpadding-3 td, table .cellpadding-3 th {
  padding: 3px;
}
table .cellpadding-0 td, table .cellpadding-0 th {
  padding: 0;
}
table .cellspacing-0 td, table .cellspacing-0 th {
  border-spacing: 0;
}

.left-column {
  padding: 0;
  width: 100%;
  max-width: 220px;
  min-width: 200px;
  flex: 1 1;
  position: relative;
  display: block;
}
.left-column.modal {
  z-index: 1;
}
.left-column > .left-column--content {
  height: 100%;
  max-width: 320px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
}
.left-column > .left-column--content > .content {
  border-radius: 8px;
  position: relative;
}
.left-column > .left-column--content > footer {
  padding: 10px;
  display: none;
  align-items: stretch;
  flex-direction: column;
}
.left-column h2 {
  padding: 0;
  margin: 0 0 10px;
  font-size: 1.2rem;
  letter-spacing: 0.3px;
  font-weight: 700;
}
.left-column h2.filter-category {
  padding: 15px 0;
}
.left-column ul {
  margin-bottom: 5px;
}
.left-column ul::after {
  content: "";
  display: block;
  height: 15px;
}
.left-column ul a {
  text-decoration: none;
  color: #fd7e14;
  padding: 3px 5px;
  font-size: 1rem;
}
.left-column ul .filter-show-more {
  display: block;
  padding: 6px 0;
}

.left-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.left-column ul.filters > li:last-child {
  margin-bottom: 15px;
}

.left-column ul.left-column-menu li:before {
  width: 1rem;
  padding-left: 2rem;
  display: inline-block;
  content: "\f0da";
  font-family: "Font Awesome 5 Free";
}

.left-column a:hover {
  text-decoration: underline;
}

.left-column a.no-underline:hover {
  text-decoration: none;
}

.left-column li.disabled a:hover {
  text-decoration: none;
}

.left-column ul.second li:before {
  padding-left: 4rem;
}

.left-column ul.second li.nosub:before {
  content: "";
}

.left-column ul.third {
  display: none;
}

.left-column .active ul.third {
  display: block;
}

.left-column ul.third li:before {
  padding-left: 5rem;
  content: "";
}

@media (max-width: 1024px) {
  .left-column {
    display: none;
    position: fixed;
    max-width: unset;
  }
  .left-column.modal {
    z-index: 9999;
  }
  .left-column.modal.show {
    display: flex !important;
    flex-direction: column;
  }
  .left-column > .left-column--content {
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
  }
  .left-column > .left-column--content > .content {
    padding: 0 15px 100px;
    margin: 0;
    border-radius: 0;
    overflow: auto;
  }
  .left-column > .left-column--content > footer {
    display: flex;
  }
  .right-full-column {
    width: 100%;
    padding: 0;
  }
  .price-block > .shoppingcart-btn {
    display: none;
  }
  .price-block > .shoppingcart-btn-link {
    display: block;
  }
  .shopping-cart-item {
    grid-template-columns: 114px 1fr;
    grid-template-areas: "image-area info-area" "date-area date-area" "actions-area actions-area" "comments-area comments-area" "button-area button-area";
    grid-template-rows: auto auto auto;
    grid-gap: 0 10px;
    padding: 10px;
    border-width: 1px 0;
    margin-right: -10px;
    margin-left: -10px;
  }
  .shopping-cart-item.no-date-area {
    grid-template-areas: "image-area info-area" "actions-area actions-area" "order-matrix-area order-matrix-area" "button-area button-area";
    grid-template-columns: 114px 1fr;
    grid-template-rows: auto auto auto;
    grid-gap: 0 10px;
    padding: 10px;
  }
  .shopping-cart-item.report-row {
    grid-template-areas: "image-area info-area" "actions-area actions-area" "order-matrix-area order-matrix-area" "button-area button-area";
    grid-template-columns: 114px 1fr;
    grid-template-rows: auto auto auto;
    grid-gap: 0 10px;
    padding: 10px;
  }
  .shopping-cart-item > .image-area {
    padding-left: 0;
  }
  .shopping-cart-item > .info-area .shop-overview-grid {
    display: none;
  }
  .shopping-cart-item > .date-area {
    border-left: none;
    border-top: 1px solid #e0e0e0;
    margin: 0;
    padding: 10px;
  }
  .shopping-cart-item > .actions-area {
    padding: 10px;
    flex-direction: row;
    align-items: center;
  }
  .shopping-cart-item > .actions-area > .shop-overview-grid {
    display: flex;
  }
  .shopping-cart-item > .actions-area > .price-block {
    display: flex;
  }
  .shopping-cart-item > .actions-area .price-block--price {
    font-size: 1.5em;
    margin-left: auto;
  }
  .shopping-cart-item > .button-area {
    display: flex;
    background-color: #f8f8f8;
  }
  .shopping-cart-item > .order-matrix-area {
    background-color: #f8f8f8;
    padding: 0 10px;
    margin: 0;
    border-left: none;
  }
  .shopping-cart-item > .comments-area {
    margin: 0;
    border: none;
  }
  .shop-overview-grid {
    max-width: unset;
  }
  .flex-bar {
    flex-wrap: wrap;
  }
  .flex-bar > * {
    flex: 0 1 auto;
  }
  .flex-bar > .box {
    width: 100%;
    margin: 0;
  }
  .flex-bar > .spacer {
    flex: 1 0 auto;
    width: 100%;
  }
  .flex-bar > .spacer-mobile {
    display: block;
  }
  .block {
    display: block;
  }
  .block > h2 {
    margin-top: 30px;
    font-size: 24px;
  }
  .block > .block--content > .shopping-cart-item {
    margin: -1px -15px 0;
  }
}
@media (min-width: 1024px) {
  .left-column.sticky {
    height: 100%;
    position: -moz-sticky;
    position: -ms-sticky;
    position: -o-sticky;
    position: sticky;
    top: 0;
  }
}
.my-pages-menu {
  margin-bottom: 0;
}
.my-pages-menu li a {
  padding: 0.45em 0;
  display: block;
  font-size: 14px;
}

.price-container {
  width: 18rem;
  float: right;
}
.price-container ul {
  list-style: none;
}
.price-container ul li {
  display: flex;
  justify-content: space-between;
}
.price-container ul li label {
  font-weight: bold;
}

.my-template-overview {
  width: 100%;
}
.my-template-overview .item-row {
  display: flex;
}
.my-template-overview .item-colors {
  flex: 0 0 150px;
  width: 150px;
}
.my-template-overview .item-colors label {
  font-weight: 600;
}
.my-template-overview .sizes {
  flex-direction: row;
  flex-wrap: wrap;
}
.my-template-overview .sizes .size {
  display: inline-flex;
  flex-direction: column;
  border: 1px solid #e6e6e6;
  margin: 5px;
  flex: 0 0 120px;
  width: 120px;
}
.my-template-overview .sizes .size .size-top {
  background-color: #f6f6f6;
  border-bottom: 1px solid #e6e6e6;
  padding: 5px;
  font-weight: 600;
}
.my-template-overview .sizes .size .size-bottom .item-order-td-input {
  border: none;
  text-align: center;
  padding: 10px;
  width: 118px;
}

.contact-page--content {
  margin: 20px 0;
}
.contact-page--content .card {
  max-width: 450px;
}

/*# sourceMappingURL=contact.css.map*/