.ms-container {
  background: transparent url("../img/switch.png") no-repeat 50% 50%;
  width: 370px;
}

.ms-container::after {
  content: '.';
  display: block;
  height: 0;
  line-height: 0;
  font-size: 0;
  clear: both;
  min-height: 0;
  visibility: hidden;
}

.ms-container .ms-selectable,
.ms-container .ms-selection {
  background: #fff;
  color: #555;
  float: left;
  width: 45%;
}

.ms-container .ms-selection {
  float: right;
}

.ms-container .ms-list {
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
  -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
  -ms-transition: border linear 0.2s, box-shadow linear 0.2s;
  -o-transition: border linear 0.2s, box-shadow linear 0.2s;
  transition: border linear 0.2s, box-shadow linear 0.2s;
  border: 1px solid #ccc;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  position: relative;
  height: 200px;
  padding: 0;
  overflow-y: auto;
}

.ms-container .ms-list.ms-focus {
  border-color: rgba(82, 168, 236, 0.8);
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
  outline: 0;
  outline: thin dotted \9;
}

.ms-container ul {
  margin: 0;
  list-style-type: none;
  padding: 0;
}

.ms-container .ms-optgroup-container {
  width: 100%;
}

.ms-container .ms-optgroup-label {
  margin: 0;
  padding: 5px 0 0 5px;
  cursor: pointer;
  color: #999;
}

.ms-container .ms-selectable li.ms-elem-selectable,
.ms-container .ms-selection li.ms-elem-selection {
  border-bottom: 1px #eee solid;
  padding: 2px 10px;
  color: #555;
  font-size: 14px;
}

.ms-container .ms-selectable li.ms-hover,
.ms-container .ms-selection li.ms-hover {
  cursor: pointer;
  color: #fff;
  text-decoration: none;
  background-color: #08c;
}

.ms-container .ms-selectable li.disabled,
.ms-container .ms-selection li.disabled {
  background-color: #eee;
  color: #aaa;
  cursor: text;
}

div.account-multi-select div.ms-container {
  width: 680px !important;
}

span.custom-select-brendan div.ms-options-wrap button[type='button'] {
  cursor: pointer !important;
  padding-left: 8px !important;
  padding-right: 8px !important;
  position: relative;
  top: -1px;
}

span.custom-select-brendan div.ms-options-wrap button[type='button'] span {
  font-family: 'opensans';
  font-size: 14px;
  color: #333;
}

span.custom-select-brendan div.ms-options-wrap div.ms-options div.ms-search {
  padding: 0 0 0 40px;
  background-image: url("/img/search-grey.svg");
  background-size: 24px 24px;
  background-position: left 10px center;
  background-repeat: no-repeat;
  border-bottom: 1px solid #e2e2e2;
}

span.custom-select-brendan div.ms-options-wrap div.ms-options div.ms-search input[type='text'] {
  border: none !important;
  outline: none !important;
  font-family: 'opensans';
  font-size: 14px;
  color: #333;
}

span.custom-select-brendan div.ms-options-wrap a.ms-selectall {
  color: #00a1e9;
  font-family: 'opensans-bold';
  font-size: 14px;
  height: 26px;
  line-height: 26px;
  display: block;
  padding: 0 8px;
  text-decoration: underline !important;
  -webkit-transition: all 0.05s linear;
  -moz-transition: all 0.05s linear;
  -o-transition: all 0.05s linear;
  -ms-transition: all 0.05s linear;
  transition: all 0.05s linear;
}

span.custom-select-brendan div.ms-options-wrap a.ms-selectall:hover {
  opacity: 0.5;
}

span.custom-select-brendan div.ms-options-wrap ul li {
  height: auto !important;
  width: 100% !important;
  padding: 0 !important;
  position: relative !important;
  float: none !important;
  margin: 0 !important;
  cursor: pointer;
}

span.custom-select-brendan div.ms-options-wrap ul li label {
  height: auto !important;
  line-height: 20px;
  font-family: 'opensans';
  font-size: 14px;
  color: #333;
  padding: 3px 0 3px 36px !important;
  position: relative;
  cursor: pointer !important;
}

span.custom-select-brendan div.ms-options-wrap ul li label::after {
  content: '';
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  left: 5px;
  top: 3px;
  background-image: url("/img/checkbox-black.svg");
  background-size: 100%;
}

span.custom-select-brendan div.ms-options-wrap ul li input[type='checkbox'] {
  display: none;
}

span.custom-select-brendan div.ms-options-wrap ul li.selected label {
  color: #00a1e9;
}

span.custom-select-brendan div.ms-options-wrap ul li.selected label::after {
  background-image: url("/img/checkbox-blue.svg");
}

@media only screen and (max-width: 767px) {
  span.custom-select-brendan div.ms-options-wrap button[type='button'] span {
    font-size: 12px;
  }
  span.custom-select-brendan div.ms-options-wrap div.ms-options div.ms-search {
    padding: 0 0 0 30px;
    background-image: url("/img/search-grey.svg");
    background-size: 20px 20px;
    background-position: left 5px center;
    background-repeat: no-repeat;
    border-bottom: 1px solid #e2e2e2;
  }
  span.custom-select-brendan div.ms-options-wrap div.ms-options div.ms-search input[type='text'] {
    font-size: 12px;
  }
  span.custom-select-brendan div.ms-options-wrap a.ms-selectall {
    font-size: 12px;
  }
  span.custom-select-brendan div.ms-options-wrap ul li label {
    font-size: 12px;
  }
}

span.custom-select-brendan-2 div.ms-options-wrap button[type='button'] {
  height: 46px;
  line-height: 44px;
  cursor: pointer !important;
  padding-left: 8px !important;
  padding-right: 8px !important;
  position: relative;
  top: -1px;
}

span.custom-select-brendan-2 div.ms-options-wrap button[type='button'] span {
  font-family: 'opensans';
  font-size: 14px;
  color: #333;
  position: relative;
  top: -4px;
}

span.custom-select-brendan-2 div.ms-options-wrap div.ms-options div.ms-search {
  padding: 0 0 0 40px;
  background-image: url("/img/search-grey.svg");
  background-size: 24px 24px;
  background-position: left 10px center;
  background-repeat: no-repeat;
  border-bottom: 1px solid #e2e2e2;
}

span.custom-select-brendan-2 div.ms-options-wrap div.ms-options div.ms-search input[type='text'] {
  border: none !important;
  outline: none !important;
  font-family: 'opensans';
  font-size: 14px;
  color: #333;
}

span.custom-select-brendan-2 div.ms-options-wrap a.ms-selectall {
  color: #00a1e9;
  font-family: 'opensans-bold';
  font-size: 14px;
  height: 26px;
  line-height: 26px;
  display: block;
  padding: 0 8px;
  text-decoration: underline !important;
  -webkit-transition: all 0.05s linear;
  -moz-transition: all 0.05s linear;
  -o-transition: all 0.05s linear;
  -ms-transition: all 0.05s linear;
  transition: all 0.05s linear;
}

span.custom-select-brendan-2 div.ms-options-wrap a.ms-selectall:hover {
  opacity: 0.5;
}

span.custom-select-brendan-2 div.ms-options-wrap ul li {
  height: auto !important;
  width: 100% !important;
  padding: 0 !important;
  position: relative !important;
  float: none !important;
  margin: 0 !important;
  cursor: pointer;
}

span.custom-select-brendan-2 div.ms-options-wrap ul li label {
  height: auto !important;
  line-height: 20px;
  font-family: 'opensans';
  font-size: 14px;
  color: #333;
  padding: 3px 0 3px 36px !important;
  position: relative;
  cursor: pointer !important;
}

span.custom-select-brendan-2 div.ms-options-wrap ul li label::after {
  content: '';
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  left: 5px;
  top: 3px;
  background-image: url("/img/checkbox-black.svg");
  background-size: 100%;
}

span.custom-select-brendan-2 div.ms-options-wrap ul li input[type='checkbox'] {
  display: none;
}

span.custom-select-brendan-2 div.ms-options-wrap ul li.selected label {
  color: #00a1e9;
}

span.custom-select-brendan-2 div.ms-options-wrap ul li.selected label::after {
  background-image: url("/img/checkbox-blue.svg");
}

@media only screen and (max-width: 767px) {
  span.custom-select-brendan-2 div.ms-options-wrap button[type='button'] span {
    font-size: 12px;
  }
  span.custom-select-brendan-2 div.ms-options-wrap div.ms-options div.ms-search {
    padding: 0 0 0 30px;
    background-image: url("/img/search-grey.svg");
    background-size: 20px 20px;
    background-position: left 5px center;
    background-repeat: no-repeat;
    border-bottom: 1px solid #e2e2e2;
  }
  span.custom-select-brendan-2 div.ms-options-wrap div.ms-options div.ms-search input[type='text'] {
    font-size: 12px;
  }
  span.custom-select-brendan-2 div.ms-options-wrap a.ms-selectall {
    font-size: 12px;
  }
  span.custom-select-brendan-2 div.ms-options-wrap ul li label {
    font-size: 12px;
  }
}

div#datePeriodContainer {
  height: 40px;
  line-height: 40px;
  background-color: rgba(255, 255, 255, 0.5);
  font-family: 'opensans';
  font-size: 14px;
  border-radius: 3px;
  border: 1px solid #e2e2e2;
  position: relative;
  padding: 0 10px;
  cursor: not-allowed;
}

div#datePeriodContainer.active {
  cursor: default;
}

span.custom-select-form-short.fix-report .custom-select {
  position: absolute !important;
  top: -1px !important;
  right: -1px !important;
  bottom: -1px !important;
  left: -1px !important;
  width: calc(100% + 2px) !important;
}

.ms-options-wrap,
.ms-options-wrap * {
  box-sizing: border-box;
}

.ms-options-wrap > button:focus,
.ms-options-wrap > button {
  position: relative;
  width: 100%;
  text-align: left;
  border: 1px solid #e2e2e2;
  border-radius: 3px;
  background-color: #fff;
  padding: 5px 20px 5px 5px;
  margin-top: 1px;
  font-size: 13px;
  color: #aaa;
  outline-offset: -2px;
  white-space: nowrap;
}

.ms-options-wrap > button > span {
  display: inline-block;
}

.ms-options-wrap > button[disabled] {
  background-color: #e5e9ed;
  color: #808080;
  opacity: 0.6;
}

.ms-options-wrap > button::after {
  content: ' ';
  height: 0;
  position: absolute;
  top: 50%;
  right: 5px;
  width: 0;
  border: 6px solid rgba(0, 0, 0, 0);
  border-top-color: #999;
  margin-top: -3px;
}

.ms-options-wrap.ms-has-selections > button {
  color: #333;
}

.ms-options-wrap > .ms-options {
  position: absolute;
  left: 0;
  width: 100%;
  margin-top: -1px;
  margin-bottom: 20px;
  background: white;
  z-index: 100;
  border: 1px solid #e2e2e2;
  border-radius: 0 0 3px 3px;
  overflow-y: auto;
  display: none;
}

.ms-options-wrap.ms-active > .ms-options {
  display: block;
}

.ms-options-wrap > .ms-options > .ms-search input {
  width: 100%;
  padding: 4px 5px !important;
  border: none;
  border-bottom: 1px groove;
  outline: none;
}

.ms-options-wrap > .ms-options .ms-selectall {
  display: inline-block;
  font-size: 0.9em;
  text-transform: lowercase;
  text-decoration: none;
}

.ms-options-wrap > .ms-options .ms-selectall:hover {
  text-decoration: underline;
}

.ms-options-wrap > .ms-options > .ms-selectall.global {
  margin: 4px 5px;
}

.ms-options-wrap > .ms-options > ul,
.ms-options-wrap > .ms-options > ul > li.optgroup ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.ms-options-wrap > .ms-options > ul li.ms-hidden {
  display: none;
}

.ms-options-wrap > .ms-options > ul > li.optgroup {
  padding: 5px;
}

.ms-options-wrap > .ms-options > ul > li.optgroup + li.optgroup {
  border-top: 1px solid #aaa;
}

.ms-options-wrap > .ms-options > ul > li.optgroup .label {
  display: block;
  padding: 5px 0 0 0;
  font-weight: bold;
}

.ms-options-wrap > .ms-options > ul label {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 4px 4px 4px 20px;
  margin: 1px 0;
  border: 1px dotted transparent;
}

.ms-options-wrap > .ms-options.checkbox-autofit > ul label,
.ms-options-wrap > .ms-options.hide-checkbox > ul label {
  padding: 4px;
}

.ms-options-wrap > .ms-options > ul label.focused,
.ms-options-wrap > .ms-options > ul label:hover {
  background-color: #efefef;
  border-color: #999;
}

.ms-options-wrap > .ms-options > ul li.selected label {
  background-color: #efefef;
  border-color: transparent;
}

.ms-options-wrap > .ms-options > ul input[type='checkbox'] {
  margin: 0 5px 0 0;
  position: absolute;
  left: 4px;
  top: 7px;
}

.ms-options-wrap > .ms-options.hide-checkbox > ul input[type='checkbox'] {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
}

.ms-options-wrap.ms-has-selections > button,
span.custom-select-form,
.ms-options-wrap > button:focus,
.ms-options-wrap > button {
  height: 40px;
}

/* Basic Table Styles */
/* Center tables for demo */
table.full {
  width: 100%;
  margin: 0 auto;
}

/* Default Table Style */
table.full {
  color: #333;
  background: white;
  border: 1px solid grey;
  font-size: 12pt;
  border-collapse: collapse;
}

table.full thead th,
table.full tfoot th {
  color: #777;
  background: rgba(0, 0, 0, 0.1);
}

table.full caption {
  padding: 0.5em;
}

table.full th,
table.full td {
  padding: 0.5em;
  border: 1px solid lightgrey;
}

/* Zebra Table Style */
[data-table-theme*='zebra'] tbody tr:nth-of-type(odd) {
  background: rgba(0, 0, 0, 0.05);
}

[data-table-theme*='zebra'][data-table-theme*='dark'] tbody tr:nth-of-type(odd) {
  background: rgba(255, 255, 255, 0.05);
}

/* Dark Style */
[data-table-theme*='dark'] {
  color: #ddd;
  background: #333;
  font-size: 12pt;
  border-collapse: collapse;
}

[data-table-theme*='dark'] thead th,
[data-table-theme*='dark'] tfoot th {
  color: #aaa;
  background: rgba(255, 255, 255, 0.15);
}

[data-table-theme*='dark'] caption {
  padding: 0.5em;
}

[data-table-theme*='dark'] th,
[data-table-theme*='dark'] td {
  padding: 0.5em;
  border: 1px solid grey;
}

.dropdown-pane.filter {
  max-height: 300px;
  overflow-y: auto;
}

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