/* Dropdowns
   ========================================================================== */
/**
 * Dropdown arrow/caret
 */
.k-caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}
[dir=rtl] .k-caret {
  margin-left: 0;
  margin-right: 2px;
}

/**
 * The dropdown wrapper (div)
 */
.k-dropdown {
  position: relative;
}

/**
 * The dropdown toggle
 */
.k-dropdown__toggle img {
  max-width: 16px;
}

/**
 * The dropdown menu (ul)
 *
 * 1. Hide by default, but block on "open" of the menu
 * 2. Ensures proper alignment if parent has it changed (e.g., modal footer)
 */
.k-dropdown__menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none; /* 1 */
  float: left;
  min-width: 160px;
  text-align: left; /* 2 */
  background-color: white;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box;
  /**
   * Winning over .k-ui-namespace ul
   */
  /**
   * Links within the dropdown menu
   *
   * 1. prevent links from randomly breaking onto new lines
   */
}
[dir=rtl] .k-dropdown__menu {
  left: auto;
  right: 0;
  float: right;
  text-align: right;
}

.k-dropdown__menu.k-dropdown__menu {
  padding: 5px 0;
  margin: 2px 0 0;
  list-style: none;
}
.k-dropdown__menu a {
  display: block;
  padding: 5px 15px;
  clear: both;
  font-weight: normal;
  line-height: 20px;
  color: #222222;
  white-space: nowrap; /* 1 */
}

/**
 * Dividers (basically an hr) within the dropdown
 */
.k-dropdown__divider {
  height: 1px;
  margin: 5px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}

/**
 * Hover / Focus state
 */
.k-dropdown__menu a:hover, .k-dropdown__menu a:focus {
  text-decoration: none;
  color: #151515;
  background-color: #e6e6e6;
}

/**
 * Active state
 */
.k-dropdown__menu .k-is-active a, .k-dropdown__menu .k-is-active a:hover, .k-dropdown__menu .k-is-active a:focus {
  color: white;
  text-decoration: none;
  outline: 0;
  background-color: #3071a9;
}

/**
 * Disabled state
 *
 * Gray out text and ensure the hover/focus state remains gray
 */
.k-dropdown__menu .k-is-disabled a {
  /**
   * Nuke hover/focus effects
   *
   * 1. Remove CSS gradient
   */
}
.k-dropdown__menu .k-is-disabled a, .k-dropdown__menu .k-is-disabled a:hover, .k-dropdown__menu .k-is-disabled a:focus {
  color: #343434;
}
.k-dropdown__menu .k-is-disabled a:hover, .k-dropdown__menu .k-is-disabled a:focus {
  text-decoration: none;
  background-color: transparent;
  background-image: none; /* 1 */
  cursor: not-allowed;
}

/**
 * Open state for the dropdown
 */
.k-dropdown.k-is-open {
  /**
   * Show the menu
   */
  /**
   * Remove the outline when :focus is triggered
   */
}
.k-dropdown.k-is-open > .k-dropdown__menu {
  display: block;
}
.k-dropdown.k-is-open > a {
  outline: 0;
}

/**
 * Backdrop to catch body clicks on mobile, etc.
 */
.k-dropdown-backdrop {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 990;
}

/**
 * Dropup
 *
 * Allow for dropdowns to go bottom up (aka, dropup-menu)
 */
.k-dropdown--dropup {
  /**
   * Reverse the caret
   */
  /**
   * Different positioning for bottom up menu
   */
}
.k-dropdown--dropup .k-caret {
  border-top: 0;
  border-bottom: 4px dashed;
  content: "";
}
.k-dropdown--dropup .k-dropdown__menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px;
}

/**
 * Dropdown grid
 */
.k-dropdown__menu--grid {
  width: 212px;
  /**
   * override above default settings
   */
}
.k-dropdown__menu--grid.k-dropdown__menu--grid {
  padding: 5px;
}
[dir=rtl] .k-dropdown__menu--grid.k-dropdown__menu--grid {
  padding: 5px;
}

.k-dropdown__menu--grid img {
  max-width: 16px;
  max-height: 16px;
}
.k-dropdown__menu--grid li {
  float: left;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  display: block;
}
[dir=rtl] .k-dropdown__menu--grid li {
  float: right;
}

.k-dropdown__menu--grid li a {
  display: block;
  padding: 0;
  margin: 0;
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 3px;
  float: left;
}
.k-dropdown__menu--grid li a [class^=k-icon-document-],
.k-dropdown__menu--grid li a [class*=" k-icon-document-"] {
  display: block;
  vertical-align: middle;
  margin: 12px auto;
}
.k-dropdown__menu--grid .k-dropdown__block-item {
  min-width: 100%;
  clear: both;
  height: auto;
  margin: 5px 0 -5px;
}
.k-dropdown__menu--grid .k-dropdown__block-item a {
  position: relative;
  height: auto;
  width: auto;
  float: none;
  border-top: 1px solid #e5e5e5;
  text-align: left;
  margin: 0 -5px;
  padding: 5px 15px;
  border-radius: 0 0 4px 4px;
}
[dir=rtl] .k-dropdown__menu--grid .k-dropdown__block-item a {
  text-align: right;
}

/* Modal
   ========================================================================== */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}
[dir=rtl] .mfp-bg {
  left: auto;
  right: 0;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10043;
  position: fixed;
  -webkit-backface-visibility: hidden;
}
[dir=rtl] .mfp-wrap {
  left: auto;
  right: 0;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  max-height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
  min-height: 420px;
}
[dir=rtl] .mfp-container {
  left: auto;
  right: 0;
}

.mfp-container.mfp-inline-holder {
  padding-top: 40px;
  padding-bottom: 40px;
  white-space: nowrap;
}
.mfp-container .mfp-inline {
  display: block;
  width: auto;
  height: auto;
  padding: 15px;
}
.mfp-container .mfp-iframe-scaler .mfp-iframe,
.mfp-container .mfp-inline {
  background: white;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.mfp-container:before {
  content: " ";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 10045;
  min-width: 280px;
  max-width: 100% !important;
  max-height: 100% !important;
}
[dir=rtl] .mfp-content {
  text-align: right;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  cursor: auto;
  max-width: 100% !important;
  width: auto;
  height: auto;
  max-height: 100%;
  margin: 0 auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #cccccc;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 10044;
}

.mfp-preloader a {
  color: #cccccc;
}

.mfp-preloader a:hover {
  color: white;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  padding: 0;
  z-index: 10046;
  box-shadow: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  position: absolute;
  text-decoration: none;
  opacity: 0.65;
  margin: 0;
  padding: 0;
  color: white;
  text-align: center;
  width: 40px;
  height: 40px;
  top: -40px;
  font-size: 21px;
  line-height: 28px;
  right: -14px;
}
[dir=rtl] .mfp-close {
  right: auto;
  left: -14px;
}

.mfp-close:hover, .mfp-close:focus {
  border: none;
  background: transparent;
  margin: 0;
  padding: 0;
  color: white;
  opacity: 1;
}

.mfp-close-btn-in .mfp-close {
  color: white;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #cccccc;
}
[dir=rtl] .mfp-counter {
  right: auto;
  left: 0;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before, .mfp-arrow:after,
.mfp-arrow .mfp-b,
.mfp-arrow .mfp-a {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

[dir=rtl] .mfp-arrow:before, [dir=rtl] .mfp-arrow:after,
[dir=rtl] .mfp-arrow .mfp-b,
[dir=rtl] .mfp-arrow .mfp-a {
  left: auto;
  right: 0;
  margin-left: 0;
  margin-right: 35px;
}

.mfp-arrow:after,
.mfp-arrow .mfp-a {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before,
.mfp-arrow .mfp-b {
  border-top-width: 21px;
  border-bottom-width: 21px;
}

.mfp-arrow-left {
  left: 0;
}
[dir=rtl] .mfp-arrow-left {
  left: auto;
  right: 0;
}

.mfp-arrow-left:after,
.mfp-arrow-left .mfp-a {
  border-right: 17px solid white;
  margin-left: 31px;
}

[dir=rtl] .mfp-arrow-left:after,
[dir=rtl] .mfp-arrow-left .mfp-a {
  border-right: none;
  border-left: 17px solid white;
  margin-left: 0;
  margin-right: 31px;
}

.mfp-arrow-left:before,
.mfp-arrow-left .mfp-b {
  border-right: 27px solid #3f3f3f;
  margin-left: 25px;
}

[dir=rtl] .mfp-arrow-left:before,
[dir=rtl] .mfp-arrow-left .mfp-b {
  border-right: none;
  border-left: 27px solid #3f3f3f;
  margin-left: 0;
  margin-right: 25px;
}

.mfp-arrow-right {
  right: 0;
}
[dir=rtl] .mfp-arrow-right {
  right: auto;
  left: 0;
}

.mfp-arrow-right:after,
.mfp-arrow-right .mfp-a {
  border-left: 17px solid white;
  margin-left: 39px;
}

[dir=rtl] .mfp-arrow-right:after,
[dir=rtl] .mfp-arrow-right .mfp-a {
  border-left: none;
  border-right: 17px solid white;
  margin-left: 0;
  margin-right: 39px;
}

.mfp-arrow-right:before,
.mfp-arrow-right .mfp-b {
  border-left: 27px solid #3f3f3f;
}

[dir=rtl] .mfp-arrow-right:before,
[dir=rtl] .mfp-arrow-right .mfp-b {
  border-left: none;
  border-right: 27px solid #3f3f3f;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  height: 100%;
  max-width: 1080px !important;
  max-height: 800px !important;
}

.mfp-iframe-scaler:before, .mfp-iframe-scaler:after {
  display: table;
  content: " ";
}
.mfp-iframe-scaler:after {
  clear: both;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: black;
}
[dir=rtl] .mfp-iframe-scaler iframe {
  left: auto;
  right: 0;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444444;
}

.mfp-figure {
  line-height: 0;
}
.mfp-figure figure {
  margin: 0;
  padding: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}
[dir=rtl] .mfp-bottom-bar {
  left: auto;
  right: 0;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #f3f3f3;
  padding-right: 36px;
}
[dir=rtl] .mfp-title {
  text-align: right;
  padding-right: 0;
  padding-left: 36px;
}

.mfp-figure small {
  color: #bdbdbd;
  display: block;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /* Remove all paddings around the image on small screen */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  /* The shadow behind the image */
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  [dir=rtl] .mfp-img-mobile .mfp-counter {
    right: auto;
    left: 5px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
  [dir=rtl] .mfp-img-mobile .mfp-close {
    right: auto;
    left: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  [dir=rtl] .mfp-img-mobile .mfp-figure small {
    margin-left: 0;
    margin-right: 5px;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    transform-origin: 0;
  }
  .mfp-arrow-right {
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
.mfp-ie7 .mfp-img {
  padding: 0;
}

.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px;
}
[dir=rtl] .mfp-ie7 .mfp-bottom-bar {
  left: auto;
  right: 50%;
  margin-left: 0;
  margin-right: -300px;
}

.mfp-ie7 .mfp-container {
  padding: 0;
}

.mfp-ie7 .mfp-content {
  padding-top: 44px;
}

.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0;
}
[dir=rtl] .mfp-ie7 .mfp-close {
  right: auto;
  left: 0;
}

/**
 * Custom styling for inline modals
 */
.k-small-inline-modal-holder {
  position: relative;
  max-width: 480px !important;
  width: 100%;
  margin: auto;
}

.k-huge-inline-modal-holder {
  position: relative;
  max-width: 100% !important;
  max-height: 100% !important;
  width: 100%;
  margin: auto;
}
.k-huge-inline-modal-holder .k-inline-modal {
  max-width: 100% !important;
  max-height: 100% !important;
}

.k-inline-modal {
  padding: 16px;
  background: white;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  width: 100%;
  box-sizing: border-box;
  max-width: 1080px !important;
  max-height: none !important;
  white-space: normal;
  margin-top: 32px;
}
.k-inline-modal:first-child {
  margin-top: 0;
}
.k-inline-modal form {
  margin: 0;
}

.k-inline-modal__title {
  margin-bottom: 16px;
  margin-top: 0;
  font-weight: 400;
  font-size: 17px;
  line-height: 24px;
}
.k-inline-modal__title:last-child {
  margin-bottom: 0;
}

/* Select2 overrides
   ========================================================================== */
.select2.select2-container--bootstrap {
  width: 100% !important;
  max-width: 100% !important;
}

.select2.select2-container.select2-container--bootstrap .select2-search__field {
  height: 34px;
  margin: 0;
}

.select2.select2-container.select2-container--bootstrap input[type]:focus {
  box-shadow: none;
}

.select2-dropdown {
  z-index: 10051 !important;
}

html {
  /*! Select2 Bootstrap Theme v0.1.0-beta.9 | MIT License | github.com/select2/select2-bootstrap-theme */
  /*------------------------------------*\
    #ADDITIONAL GOODIES
  \*------------------------------------*/
  /**
   * Address Bootstrap's validation states
   *
   * If a Select2 widget parent has one of Bootstrap's validation state modifier
   * classes, adjust Select2's border colors and focus states accordingly.
   * You may apply said classes to the Select2 dropdown (body > .select2-container)
   * via JavaScript match Bootstraps' to make its styles match.
   *
   * @see http://getbootstrap.com/css/#forms-control-validation
   */
  /**
   * Select2 widgets in Bootstrap Input Groups
   *
   * When Select2 widgets are combined with other elements using Bootstraps
   * "Input Group" component, we don't want specific edges of the Select2
   * container to have a border-radius.
   *
   * Use .select2-bootstrap-prepend and .select2-bootstrap-append on
   * a Bootstrap 3 .input-group to let the contained Select2 widget know which
   * edges should not be rounded as they are directly followed by another element.
   *
   * @see http://getbootstrap.com/components/#input-groups
   */
  /**
   * Mimick Bootstraps .input-group .form-control styles.
   *
   * @see https://github.com/twbs/bootstrap/blob/master/less/input-groups.less
   */
  /**
   * Adjust alignment of Bootstrap buttons in Bootstrap Input Groups to address
   * Multi Select2's height which - depending on how many elements have been selected -
   * may grow taller than its initial size.
   *
   * @see http://getbootstrap.com/components/#input-groups
   */
  /**
   * Temporary fix for https://github.com/select2/select2-bootstrap-theme/issues/9
   *
   * Provides `!important` for certain properties of the class applied to the
   * original `<select>` element to hide it.
   *
   * @see https://github.com/select2/select2/pull/3301
   * @see https://github.com/fk/select2/commit/31830c7b32cb3d8e1b12d5b434dee40a6e753ada
   */
  /**
   * Display override for inline forms
   */
}
html .select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
}
html .select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 28px;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}
html .select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
html .select2-container .select2-selection--single .select2-selection__clear {
  position: relative;
}
html .select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px;
}
html .select2-container .select2-selection--multiple {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}
html .select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline-block;
  overflow: hidden;
  padding-left: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
html .select2-container .select2-search--inline {
  float: left;
}
html .select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  padding: 0;
}
html .select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
html .select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051;
}
html .select2-results {
  display: block;
}
html .select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0;
}
html .select2-results__option {
  padding: 6px;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}
html .select2-results__option[aria-selected] {
  cursor: pointer;
}
html .select2-container--open .select2-dropdown {
  left: 0;
}
html .select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
html .select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
html .select2-search--dropdown {
  display: block;
  padding: 4px;
}
html .select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  box-sizing: border-box;
}
html .select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
html .select2-search--dropdown.select2-search--hide {
  display: none;
}
html .select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0);
}
html .select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}
html .select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
}
html .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}
html .select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
}
html .select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999;
}
html .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
}
html .select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}
html .select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}
html .select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto;
}
html .select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default;
}
html .select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none;
}
html .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}
html .select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
}
html .select2-container--default .select2-selection--multiple .select2-selection__rendered {
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0 5px;
  width: 100%;
}
html .select2-container--default .select2-selection--multiple .select2-selection__rendered li {
  list-style: none;
}
html .select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-top: 5px;
  margin-right: 10px;
  padding: 1px;
}
html .select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}
html .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #999;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}
html .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #333;
}
html .select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice, html .select2-container--default[dir=rtl] .select2-selection--multiple .select2-search--inline {
  float: right;
}
html .select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}
html .select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}
html .select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0;
}
html .select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default;
}
html .select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none;
}
html .select2-container--default.select2-container--open.select2-container--above .select2-selection--single, html .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
html .select2-container--default.select2-container--open.select2-container--below .select2-selection--single, html .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
html .select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
}
html .select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield;
}
html .select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}
html .select2-container--default .select2-results__option[role=group] {
  padding: 0;
}
html .select2-container--default .select2-results__option[aria-disabled=true] {
  color: #999;
}
html .select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #ddd;
}
html .select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em;
}
html .select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}
html .select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em;
}
html .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em;
}
html .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em;
}
html .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em;
}
html .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em;
}
html .select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #5897fb;
  color: white;
}
html .select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}
html .select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}
html .select2-container--classic .select2-selection--single:focus {
  border: 1px solid #5897fb;
}
html .select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}
html .select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-right: 10px;
}
html .select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999;
}
html .select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #aaa;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFCCCCCC", GradientType=0);
}
html .select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}
html .select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}
html .select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto;
}
html .select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb;
}
html .select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none;
}
html .select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}
html .select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}
html .select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFFFFFFF", GradientType=0);
}
html .select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0;
}
html .select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb;
}
html .select2-container--classic .select2-selection--multiple .select2-selection__rendered {
  list-style: none;
  margin: 0;
  padding: 0 5px;
}
html .select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none;
}
html .select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}
html .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  color: #888;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}
html .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555;
}
html .select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  float: right;
  margin-left: 5px;
  margin-right: auto;
}
html .select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}
html .select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb;
}
html .select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
html .select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
html .select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0;
}
html .select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none;
}
html .select2-container--classic .select2-dropdown {
  background-color: white;
  border: 1px solid transparent;
}
html .select2-container--classic .select2-dropdown--above {
  border-bottom: none;
}
html .select2-container--classic .select2-dropdown--below {
  border-top: none;
}
html .select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}
html .select2-container--classic .select2-results__option[role=group] {
  padding: 0;
}
html .select2-container--classic .select2-results__option[aria-disabled=true] {
  color: grey;
}
html .select2-container--classic .select2-results__option--highlighted[aria-selected] {
  background-color: #3875d7;
  color: white;
}
html .select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}
html .select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb;
}
html .select2-container--bootstrap {
  display: block;
  /*------------------------------------*\
      #COMMON STYLES
  \*------------------------------------*/
  /**
   * Search field in the Select2 dropdown.
   */
  /**
   * No outline for all search fields - in the dropdown
   * and inline in multi Select2s.
   */
  /**
   * Adjust Select2's choices hover and selected styles to match
   * Bootstrap 3's default dropdown styles.
   *
   * @see http://getbootstrap.com/components/#dropdowns
   */
  /**
   * Clear the selection.
   */
  /**
   * Address disabled Select2 styles.
   *
   * @see https://select2.github.io/examples.html#disabled
   * @see http://getbootstrap.com/css/#forms-control-disabled
   */
  /*------------------------------------*\
      #DROPDOWN
  \*------------------------------------*/
  /**
   * Dropdown border color and box-shadow.
   */
  /**
   * Limit the dropdown height.
   */
  /*------------------------------------*\
      #SINGLE SELECT2
  \*------------------------------------*/
  /*------------------------------------*\
    #MULTIPLE SELECT2
  \*------------------------------------*/
  /**
   * Address Bootstrap control sizing classes
   *
   * 1. Reset Bootstrap defaults.
   * 2. Adjust the dropdown arrow button icon position.
   *
   * @see http://getbootstrap.com/css/#forms-control-sizes
   */
  /* 1 */
  /*------------------------------------*\
    #RTL SUPPORT
  \*------------------------------------*/
}
html .select2-container--bootstrap .select2-selection {
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  background-color: white;
  border: 1px solid #cdcdcd;
  border-radius: 4px;
  color: #222222;
  font-size: 13px;
  outline: 0;
}
html .select2-container--bootstrap .select2-selection.form-control {
  border-radius: 4px;
}
html .select2-container--bootstrap .select2-search--dropdown .select2-search__field {
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  background-color: white;
  border: 1px solid #cdcdcd;
  border-radius: 4px;
  color: #222222;
  font-size: 13px;
}
html .select2-container--bootstrap .select2-search__field {
  outline: 0;
  /* Firefox 18- */
  /**
   * Firefox 19+
   *
   * @see http://stackoverflow.com/questions/24236240/color-for-styled-placeholder-text-is-muted-in-firefox
   */
}
html .select2-container--bootstrap .select2-search__field::-webkit-input-placeholder {
  color: #9a9a9a;
}
html .select2-container--bootstrap .select2-search__field:-moz-placeholder {
  color: #9a9a9a;
}
html .select2-container--bootstrap .select2-search__field::-moz-placeholder {
  color: #9a9a9a;
  opacity: 1;
}
html .select2-container--bootstrap .select2-search__field:-ms-input-placeholder {
  color: #9a9a9a;
}
html .select2-container--bootstrap .select2-results__option {
  padding: 6px 12px;
  /**
   * Disabled results.
   *
   * @see https://select2.github.io/examples.html#disabled-results
   */
  /**
   * Hover state.
   */
  /**
   * Selected state.
   */
}
html .select2-container--bootstrap .select2-results__option[role=group] {
  padding: 0;
}
html .select2-container--bootstrap .select2-results__option[aria-disabled=true] {
  color: #343434;
  cursor: not-allowed;
}
html .select2-container--bootstrap .select2-results__option[aria-selected=true] {
  background-color: #e6e6e6;
  color: #151515;
}
html .select2-container--bootstrap .select2-results__option--highlighted[aria-selected] {
  background-color: #3071a9;
  color: white;
}
html .select2-container--bootstrap .select2-results__option .select2-results__option {
  padding: 6px 12px;
}
html .select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}
html .select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -12px;
  padding-left: 24px;
}
html .select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -24px;
  padding-left: 36px;
}
html .select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -36px;
  padding-left: 48px;
}
html .select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -48px;
  padding-left: 60px;
}
html .select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -60px;
  padding-left: 72px;
}
html .select2-container--bootstrap .select2-results__group {
  color: #343434;
  display: block;
  padding: 6px 12px;
  font-size: 11px;
  line-height: 20px;
  white-space: nowrap;
}
html .select2-container--bootstrap.select2-container--focus .select2-selection, html .select2-container--bootstrap.select2-container--open .select2-selection {
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(52, 152, 219, 0.6);
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s 180ms cubic-bezier(0.2, 0.57, 0.44, 0.83);
  -webkit-backface-visibility: hidden;
  border-color: #3498db;
}
html .select2-container--bootstrap.select2-container--open {
  /**
   * Make the dropdown arrow point up while the dropdown is visible.
   */
  /**
   * Handle border radii of the container when the dropdown is showing.
   */
}
html .select2-container--bootstrap.select2-container--open .select2-selection .select2-selection__arrow b {
  border-color: transparent transparent #9a9a9a transparent;
  border-width: 0 4px 4px 4px;
}
html .select2-container--bootstrap.select2-container--open.select2-container--below .select2-selection {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-color: transparent;
}
html .select2-container--bootstrap.select2-container--open.select2-container--above .select2-selection {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  border-top-color: transparent;
}
html .select2-container--bootstrap .select2-selection__clear {
  color: #9a9a9a;
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-right: 10px;
}
html .select2-container--bootstrap .select2-selection__clear:hover {
  color: #222222;
}
html .select2-container--bootstrap.select2-container--disabled .select2-selection {
  border-color: #cdcdcd;
  box-shadow: none;
}
html .select2-container--bootstrap.select2-container--disabled .select2-selection,
html .select2-container--bootstrap.select2-container--disabled .select2-search__field {
  cursor: not-allowed;
}
html .select2-container--bootstrap.select2-container--disabled .select2-selection,
html .select2-container--bootstrap.select2-container--disabled .select2-selection--multiple .select2-selection__choice {
  background-color: #ddd;
}
html .select2-container--bootstrap.select2-container--disabled .select2-selection__clear,
html .select2-container--bootstrap.select2-container--disabled .select2-selection--multiple .select2-selection__choice__remove {
  display: none;
}
html .select2-container--bootstrap .select2-dropdown {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  border-color: #3498db;
  overflow-x: hidden;
  margin-top: -1px;
}
html .select2-container--bootstrap .select2-dropdown--above {
  box-shadow: 0px -6px 12px rgba(0, 0, 0, 0.175);
  margin-top: 1px;
}
html .select2-container--bootstrap .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}
html .select2-container--bootstrap .select2-selection--single {
  height: 32px;
  line-height: 20px;
  padding: 6px 24px 6px 12px;
  /**
   * Adjust the single Select2's dropdown arrow button appearance.
   */
}
html .select2-container--bootstrap .select2-selection--single .select2-selection__arrow {
  position: absolute;
  bottom: 0;
  right: 12px;
  top: 0;
  width: 4px;
}
html .select2-container--bootstrap .select2-selection--single .select2-selection__arrow b {
  border-color: #9a9a9a transparent transparent transparent;
  border-style: solid;
  border-width: 4px 4px 0 4px;
  height: 0;
  left: 0;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}
html .select2-container--bootstrap .select2-selection--single .select2-selection__rendered {
  color: #222222;
  padding: 0;
}
html .select2-container--bootstrap .select2-selection--single .select2-selection__placeholder {
  color: #9a9a9a;
}
html .select2-container--bootstrap .select2-selection--multiple {
  min-height: 32px;
  padding: 0;
  height: auto;
  /**
   * Make Multi Select2's choices match Bootstrap 3's default button styles.
   */
  /**
   * Minus 2px borders.
   */
  /**
   * Clear the selection.
   */
}
html .select2-container--bootstrap .select2-selection--multiple .select2-selection__rendered {
  box-sizing: border-box;
  display: block;
  line-height: 20px;
  list-style: none;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
}
html .select2-container--bootstrap .select2-selection--multiple .select2-selection__placeholder {
  color: #9a9a9a;
  float: left;
  margin-top: 5px;
}
html .select2-container--bootstrap .select2-selection--multiple .select2-selection__choice {
  color: #222222;
  background: white;
  border: 1px solid #cdcdcd;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin: 5px 0 0 6px;
  padding: 0 6px;
}
html .select2-container--bootstrap .select2-selection--multiple .select2-search--inline .select2-search__field {
  background: transparent;
  padding: 0 12px;
  height: 30px;
  line-height: 20px;
  margin-top: 0;
  min-width: 5em;
}
html .select2-container--bootstrap .select2-selection--multiple .select2-selection__choice__remove {
  color: #9a9a9a;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 3px;
}
html .select2-container--bootstrap .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #222222;
}
html .select2-container--bootstrap .select2-selection--multiple .select2-selection__clear {
  margin-top: 6px;
}
html .select2-container--bootstrap .select2-selection--single.input-sm, .input-group-sm html .select2-container--bootstrap .select2-selection--single, .form-group-sm html .select2-container--bootstrap .select2-selection--single {
  border-radius: 3px;
  font-size: 11px;
  height: 28px;
  line-height: 16px;
  padding: 4px 16px 4px 4px;
  /* 2 */
}
html .select2-container--bootstrap .select2-selection--single.input-sm .select2-selection__arrow b, .input-group-sm html .select2-container--bootstrap .select2-selection--single .select2-selection__arrow b, .form-group-sm html .select2-container--bootstrap .select2-selection--single .select2-selection__arrow b {
  margin-left: -4px;
}
html .select2-container--bootstrap .select2-selection--multiple.input-sm, .input-group-sm html .select2-container--bootstrap .select2-selection--multiple, .form-group-sm html .select2-container--bootstrap .select2-selection--multiple {
  min-height: 28px;
  border-radius: 3px;
}
html .select2-container--bootstrap .select2-selection--multiple.input-sm .select2-selection__choice, .input-group-sm html .select2-container--bootstrap .select2-selection--multiple .select2-selection__choice, .form-group-sm html .select2-container--bootstrap .select2-selection--multiple .select2-selection__choice {
  font-size: 11px;
  line-height: 16px;
  margin: 3px 0 0 2px;
  padding: 0 4px;
}
html .select2-container--bootstrap .select2-selection--multiple.input-sm .select2-search--inline .select2-search__field, .input-group-sm html .select2-container--bootstrap .select2-selection--multiple .select2-search--inline .select2-search__field, .form-group-sm html .select2-container--bootstrap .select2-selection--multiple .select2-search--inline .select2-search__field {
  padding: 0 4px;
  font-size: 11px;
  height: 26px;
  line-height: 16px;
}
html .select2-container--bootstrap .select2-selection--multiple.input-sm .select2-selection__clear, .input-group-sm html .select2-container--bootstrap .select2-selection--multiple .select2-selection__clear, .form-group-sm html .select2-container--bootstrap .select2-selection--multiple .select2-selection__clear {
  margin-top: 4px;
}
html .select2-container--bootstrap .select2-selection--single.input-lg, .input-group-lg html .select2-container--bootstrap .select2-selection--single, .form-group-lg html .select2-container--bootstrap .select2-selection--single {
  border-radius: 6px;
  font-size: 17px;
  height: 40px;
  line-height: 24px;
  padding: 8px 31px 8px 16px;
  /* 1 */
}
html .select2-container--bootstrap .select2-selection--single.input-lg .select2-selection__arrow, .input-group-lg html .select2-container--bootstrap .select2-selection--single .select2-selection__arrow, .form-group-lg html .select2-container--bootstrap .select2-selection--single .select2-selection__arrow {
  width: 5px;
}
html .select2-container--bootstrap .select2-selection--single.input-lg .select2-selection__arrow b, .input-group-lg html .select2-container--bootstrap .select2-selection--single .select2-selection__arrow b, .form-group-lg html .select2-container--bootstrap .select2-selection--single .select2-selection__arrow b {
  border-width: 5px 5px 0 5px;
  margin-left: -5px;
  margin-left: -8px;
  margin-top: -2.5px;
}
html .select2-container--bootstrap .select2-selection--multiple.input-lg, .input-group-lg html .select2-container--bootstrap .select2-selection--multiple, .form-group-lg html .select2-container--bootstrap .select2-selection--multiple {
  min-height: 40px;
  border-radius: 6px;
}
html .select2-container--bootstrap .select2-selection--multiple.input-lg .select2-selection__choice, .input-group-lg html .select2-container--bootstrap .select2-selection--multiple .select2-selection__choice, .form-group-lg html .select2-container--bootstrap .select2-selection--multiple .select2-selection__choice {
  font-size: 17px;
  line-height: 24px;
  border-radius: 4px;
  margin: 7px 0 0 8px;
  padding: 0 8px;
}
html .select2-container--bootstrap .select2-selection--multiple.input-lg .select2-search--inline .select2-search__field, .input-group-lg html .select2-container--bootstrap .select2-selection--multiple .select2-search--inline .select2-search__field, .form-group-lg html .select2-container--bootstrap .select2-selection--multiple .select2-search--inline .select2-search__field {
  padding: 0 16px;
  font-size: 17px;
  height: 38px;
  line-height: 24px;
}
html .select2-container--bootstrap .select2-selection--multiple.input-lg .select2-selection__clear, .input-group-lg html .select2-container--bootstrap .select2-selection--multiple .select2-selection__clear, .form-group-lg html .select2-container--bootstrap .select2-selection--multiple .select2-selection__clear {
  margin-top: 8px;
}
html .select2-container--bootstrap .select2-selection.input-lg.select2-container--open .select2-selection--single {
  /**
   * Make the dropdown arrow point up while the dropdown is visible.
   */
}
html .select2-container--bootstrap .select2-selection.input-lg.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #9a9a9a transparent;
  border-width: 0 5px 5px 5px;
}
.input-group-lg html .select2-container--bootstrap .select2-selection.select2-container--open .select2-selection--single {
  /**
   * Make the dropdown arrow point up while the dropdown is visible.
   */
}
.input-group-lg html .select2-container--bootstrap .select2-selection.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #9a9a9a transparent;
  border-width: 0 5px 5px 5px;
}
html .select2-container--bootstrap[dir=rtl] {
  /**
   * Single Select2
   *
   * 1. Makes sure that .select2-selection__placeholder is positioned
   *    correctly.
   */
  /**
   * Multiple Select2
   */
}
html .select2-container--bootstrap[dir=rtl] .select2-selection--single {
  padding-left: 24px;
  padding-right: 12px;
}
html .select2-container--bootstrap[dir=rtl] .select2-selection--single .select2-selection__rendered {
  padding-right: 0;
  padding-left: 0;
  text-align: right; /* 1 */
}
html .select2-container--bootstrap[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}
html .select2-container--bootstrap[dir=rtl] .select2-selection--single .select2-selection__arrow {
  left: 12px;
  right: auto;
}
html .select2-container--bootstrap[dir=rtl] .select2-selection--single .select2-selection__arrow b {
  margin-left: 0;
}
html .select2-container--bootstrap[dir=rtl] .select2-selection--multiple .select2-selection__choice,
html .select2-container--bootstrap[dir=rtl] .select2-selection--multiple .select2-selection__placeholder {
  float: right;
}
html .select2-container--bootstrap[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 0;
  margin-right: 6px;
}
html .select2-container--bootstrap[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}
html .has-warning .select2-dropdown,
html .has-warning .select2-selection {
  border-color: #cd6d17;
}
html .has-warning .select2-container--focus .select2-selection,
html .has-warning .select2-container--open .select2-selection {
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #eda15e;
  border-color: #9f5412;
}
html .has-warning.select2-drop-active {
  border-color: #9f5412;
}
html .has-warning.select2-drop-active.select2-drop.select2-drop-above {
  border-top-color: #9f5412;
}
html .has-error .select2-dropdown,
html .has-error .select2-selection {
  border-color: #a33024;
}
html .has-error .select2-container--focus .select2-selection,
html .has-error .select2-container--open .select2-selection {
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d96154;
  border-color: #79241b;
}
html .has-error.select2-drop-active {
  border-color: #79241b;
}
html .has-error.select2-drop-active.select2-drop.select2-drop-above {
  border-top-color: #79241b;
}
html .has-success .select2-dropdown,
html .has-success .select2-selection {
  border-color: #209150;
}
html .has-success .select2-container--focus .select2-selection,
html .has-success .select2-container--open .select2-selection {
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #43d580;
  border-color: #176739;
}
html .has-success.select2-drop-active {
  border-color: #176739;
}
html .has-success.select2-drop-active.select2-drop.select2-drop-above {
  border-top-color: #176739;
}
html .input-group .select2-container--bootstrap {
  display: table;
  table-layout: fixed;
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
  /**
   * Adjust z-index like Bootstrap does to show the focus-box-shadow
   * above appended buttons in .input-group and .form-group.
   */
}
html .input-group .select2-container--bootstrap.select2-container--open, html .input-group .select2-container--bootstrap.select2-container--focus {
  z-index: 3;
}
html .input-group.select2-bootstrap-prepend .select2-container--bootstrap .select2-selection {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
html .input-group.select2-bootstrap-append .select2-container--bootstrap .select2-selection {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
html .select2-bootstrap-append .select2-container--bootstrap,
html .select2-bootstrap-append .input-group-btn,
html .select2-bootstrap-append .input-group-btn .btn,
html .select2-bootstrap-prepend .select2-container--bootstrap,
html .select2-bootstrap-prepend .input-group-btn,
html .select2-bootstrap-prepend .input-group-btn .btn {
  vertical-align: top;
}
html .form-control.select2-hidden-accessible {
  position: absolute !important;
  width: 1px !important;
}
html .form-inline .select2-container--bootstrap {
  display: inline-block;
}

.select2.select2-container--bootstrap {
  max-width: 220px !important;
}