/**
 * All CSS that comes with Selectivity.js can be used as is, or tweaked to your heart's content :)
 *
 * Please realize though there is no "API contract" regarding styling of CSS classes, meaning that
 * any customized CSS made may need to be updated without warning if you want to upgrade the
 * Selectivity version you use. You can mitigate this problem by using your own templates instead of
 * those defined in src/templates.js, since templates will at the very least continue working across
 * patch versions and any changes necessary to templates will be documented in the changelog.
 */
.selectivity-clearfix {
  clear: both !important; }

.selectivity-input {
  display: inline-block !important;
  width: 250px !important; }
  .selectivity-input select {
    display: none !important; }

.selectivity-input:focus {
  outline: none !important; }

.selectivity-placeholder {
  color: #999 !important; }

/**
 * Dropdown
 */
.selectivity-dropdown {
  background: #fff !important;
  border-radius: 4px !important;
  -webkit-box-shadow: 0 1px 5px 1px rgba(0, 0, 0, 0.15), 0 10px 16px 0 rgba(0, 0, 0, 0.2) !important;
  box-shadow: 0 1px 5px 1px rgba(0, 0, 0, 0.15), 0 10px 16px 0 rgba(0, 0, 0, 0.2) !important;
  position: fixed !important;
  z-index: 1046 !important; }

.selectivity-search-input-container {
  border-bottom: 1px solid #eee !important; }

.selectivity-search-input {
  background: transparent !important;
  border: 0 !important;
  outline: 0 !important;
  width: 100% !important; }

.selectivity-results-container {
  max-height: 28em !important;
  overflow: auto !important;
  position: relative !important; }

.selectivity-load-more,
.selectivity-result-item {
  cursor: pointer !important;
  padding: 7px !important;
  text-align: left;
}

.selectivity-result-children .selectivity-result-item {
  padding-left: 17px !important; }

.selectivity-load-more.highlight,
.selectivity-result-item.highlight {
  background: #fff !important;
  color: #000 !important;

}

.selectivity-result-item.disabled {
  cursor: default !important;
  color: #999 !important; }

.selectivity-result-item:first-child {
  border-radius: 0px 0px 0 0 !important; }

.selectivity-dropdown.has-search-input .selectivity-result-item:first-child {
  border-radius: 0 !important; }

.selectivity-result-label {
  font-weight: bold !important; }

.selectivity-load-more,
.selectivity-result-item:last-child,
.selectivity-result-children:last-child .selectivity-result-item:last-child {
  border-radius: 0 0 4px 4px !important; }

.selectivity-result-children .selectivity-result-item:last-child {
  border-radius: 0 !important; }

.selectivity-error,
.selectivity-loading,
.selectivity-search-input-container,
.selectivity-result-label {
  padding: 7px !important; }

/**
 * Multi-selection input
 */
.selectivity-multiple-input-container {
  background: transparent !important;
  border-radius: 0px !important;
  cursor: text !important;
  max-height: 10em !important;
  min-height: calc(2em + 4px) !important;
  overflow: auto !important;
  padding: 5px 1px !important;
  border-bottom: 1px solid #273c4d;
  position: relative;
  cursor: pointer !important;
}
.selectivity-multiple-input-container::after{
  content: "\e964";
  font-family: icomoon;
  color: #aaaaaa;
  right: 15px;
  top: 15px;
  position: absolute;
  pointer-events: none;
}
.selectivity-multiple-input-container .selectivity-placeholder {
  height: calc(2em + 4px) !important;
  line-height: calc(2em + 4px) !important; }

.selectivity-multiple-input,
input[type='text'].selectivity-multiple-input {
  background-color: transparent !important;
  border: none !important;
  float: left !important;
  font-size: 14px !important;
  font-weight: bolder !important;
  height: calc(2em + 4px) !important;
  max-width: 100% !important;
  outline: 0 !important;
  cursor: pointer !important;
  padding: 0 !important; }
  .selectivity-multiple-input:focus,
  input[type='text'].selectivity-multiple-input:focus {
    background-color: transparent !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    outline: none !important; }

.selectivity-multiple-input::-ms-clear {
  display: none !important; }

.selectivity-multiple-selected-item {
  background: #ff5757 !important;
  border-radius: 3px !important;
  color: #fff !important;
  cursor: default !important;
  float: left !important;
  line-height: 2em !important;
  margin: 2px !important;
  padding: 0 5px !important;
  position: relative !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  -webkit-user-select: none !important;
  user-select: none !important;
  white-space: nowrap !important; }
  .selectivity-multiple-selected-item.highlighted {
    background-color: #ccc !important; }

.selectivity-multiple-selected-item-remove {
  color: #fff !important;
  cursor: pointer !important;
  margin-left: -5px !important;
  padding: 5px !important; }

/**
 * Single-selection input
 */
.selectivity-single-select {
  background: #eee !important;
  border-radius: 2px !important;
  cursor: pointer !important;
  min-height: 2em !important;
  padding: 5px !important;
  position: relative !important;
  -webkit-box-sizing: content-box !important;
  box-sizing: content-box !important; }

.selectivity-single-select-input {
  opacity: 0 !important; }

.selectivity-single-result-container {
  position: absolute !important;
  top: 0.8em !important;
  right: 15px !important;
  left: 5px !important;
  overflow: hidden !important;
  -o-text-overflow: ellipsis !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important; }

.selectivity-single-selected-item {
  color: #000 !important; }

.selectivity-single-selected-item-remove {
  color: #000 !important;
  float: right !important;
  padding: 0 5px !important;
  position: relative !important;
  z-index: 1 !important; }

.selectivity-caret {
  position: absolute !important;
  right: 5px !important;
  top: 0.7em !important; }

@media only screen and (max-device-width: 480px) {
  .selectivity-single-select {
    background: #eee !important;
    border-radius: 2px !important; }

  .selectivity-single-result-container {
    right: 5px !important; }

  .selectivity-caret {
    display: none !important; } }
/**
 * Submenu
 */
.selectivity-submenu-icon {
  position: absolute !important;
  right: 4px !important; }
