i.select-caret {
  display: block;
  margin-top: -28px;
}

button i.select-caret:before {
  content: "\f107";
}

button[aria-expanded=true] i.select-caret:before {
  content: "\f106";
}

.field .bootstrap-select button.dropdown-toggle {
  padding-right: 2px;
}

.field .bootstrap-select button.dropdown-toggle:focus {
    background-color: #d4eff4;
}

.field .bootstrap-select .dropdown-toggle .filter-option {
  padding-left: 5px;
  padding-right: 7px;
}

.field .bootstrap-select .dropdown-toggle .caret {
  right: 19px;
}

.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  border-color: #66afe9;
  background-color: #f9f9f9;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

.field .btn-default,
.field .btn-default:active,
.field .btn-default.active,
.field .btn-default:active:focus,
.field .btn-default.active:focus,
.field .open > .dropdown-toggle.btn-default:focus
{
  border-color: #dddddd;
  background-color: #f9f9f9;
}

.field .btn-default:hover,
.field .btn-default:active:hover,
.field .btn-default.active:hover,
.field .open > .dropdown-toggle.btn-default:hover
{
  border-color: #66afe9;
  background-color: #f9f9f9;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

.field .dropdown-toggle {
  border-color: #0080d5;
  background-color: #f9f9f9;
}

.field .dropdown-menu li {
  border-top: 1px solid #dddddd;
  padding: 8px 0 4px;
}

.field div.dropdown-menu {
  margin: 0px;
  padding: 0px;
  border: none;
  box-shadow: none;
  background: none;
}

.field ul.dropdown-menu {
  background-color: #f9f9f9;
}

.field .dropdown-menu div.inner {
  border-radius: 5px;
  border-style: solid;
  border-width: 1px;
  border-color: #dddddd;
  background-color: #f9f9f9;
}

.field .dropdown-menu > li > a {
  padding-left: 14px;
}

/*
 * Container style
 */
.ps {
  overflow: hidden !important;
  overflow-anchor: none;
  -ms-overflow-style: none;
  touch-action: auto;
  -ms-touch-action: auto;
}

/*
 * Scrollbar rail styles
 */
.ps__rail-x {
  display: none;
  opacity: 0;
  transition: background-color .2s linear, opacity .2s linear;
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  height: 15px;
  /* there must be 'bottom' or 'top' for ps__rail-x */
  bottom: 0px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-y {
  display: block;
  opacity: 1;
  transition: background-color .2s linear, opacity .2s linear;
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  width: 18px;
  /* there must be 'right' or 'left' for ps__rail-y */
  right: 0;
  /* please don't change 'position' */
  position: absolute;
}

.ps--active-x > .ps__rail-x,
.ps--active-y > .ps__rail-y {
  display: block;
  /*background-color: transparent;*/
}

.ps > .ps__rail-y,
.ps:hover > .ps__rail-x,
.ps:hover > .ps__rail-y,
.ps--focus > .ps__rail-x,
.ps--focus > .ps__rail-y,
.ps--scrolling-x > .ps__rail-x,
.ps--scrolling-y > .ps__rail-y {
  opacity: 1;/*0.6;*/
}

.ps .ps__rail-y {
  border-left: 1px solid #dddddd;
  background-color: #d4eff4;/*#eee;*/
  opacity: 1;/*0.9;*/
}

.ps .ps__rail-x:hover,
.ps .ps__rail-y:hover,
.ps .ps__rail-x:focus,
.ps .ps__rail-y:focus,
.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-y.ps--clicking {
  /*border-left: 1px solid #dddddd;*/
  background-color: #f5f5f5;/*#eee;*/
  /*opacity: 1;*//*0.9;*/
}

/*
 * Scrollbar thumb styles
 */
.ps__thumb-x {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color .2s linear, height .2s ease-in-out;
  -webkit-transition: background-color .2s linear, height .2s ease-in-out;
  height: 6px;
  /* there must be 'bottom' for ps__thumb-x */
  bottom: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__thumb-y {
  opacity: 1;
  background-color: #337ab7;
  border-radius: 2px;
  transition: background-color .2s linear, width .2s ease-in-out;
  -webkit-transition: background-color .2s linear, width .2s ease-in-out;
  width: 10px;
  /* there must be 'right' for ps__thumb-y */
  right: 4px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-x:hover > .ps__thumb-x,
.ps__rail-x:focus > .ps__thumb-x,
.ps__rail-x.ps--clicking .ps__thumb-x {
  background-color: #999;
  height: 11px;
}

.ps__rail-y:hover > .ps__thumb-y,
.ps__rail-y:focus > .ps__thumb-y,
.ps__rail-y.ps--clicking .ps__thumb-y {
  background-color: #33a2da;
}

/* MS supports */
@supports (-ms-overflow-style: none) {
  .ps {
    overflow: auto !important;
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ps {
    overflow: auto !important;
  }
}

