/*!
 * angular-reselect
 * https://github.com/alexcheuk/Reselect
 * Version: 0.6.24 - 2018-06-01T19:11:46.730Z
 * License: MIT
 */


@-webkit-keyframes reselectOptionOpen {
  0% {
    opacity: 0;
    -webkit-transform: scaleY(0); }
  100% {
    opacity: 1;
    -webkit-transform: scaleY(1); } }

@-moz-keyframes reselectOptionOpen {
  0% {
    opacity: 0;
    -moz-transform: scaleY(0); }
  100% {
    opacity: 1;
    -moz-transform: scaleY(1); } }

@keyframes reselectOptionOpen {
  0% {
    opacity: 0;
    -webkit-transform: scaleY(0);
    -moz-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -o-transform: scaleY(0);
    transform: scaleY(0); }
  100% {
    opacity: 1;
    -webkit-transform: scaleY(1);
    -moz-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
    transform: scaleY(1); } }

@-webkit-keyframes reselect-loader {
  0% {
    width: 0%;
    left: 0%; }
  10% {
    width: 0%;
    left: 0%; }
  50% {
    left: 0%;
    width: 100%; }
  90% {
    width: 0%;
    left: 100%; }
  100% {
    width: 0%;
    left: 100%; } }

@-moz-keyframes reselect-loader {
  0% {
    width: 0%;
    left: 0%; }
  10% {
    width: 0%;
    left: 0%; }
  50% {
    left: 0%;
    width: 100%; }
  90% {
    width: 0%;
    left: 100%; }
  100% {
    width: 0%;
    left: 100%; } }

@keyframes reselect-loader {
  0% {
    width: 0%;
    left: 0%; }
  10% {
    width: 0%;
    left: 0%; }
  50% {
    left: 0%;
    width: 100%; }
  90% {
    width: 0%;
    left: 100%; }
  100% {
    width: 0%;
    left: 100%; } }

.reselect {
  font-family: Arial, sans-serif;
  font-size: 12px;
  -webkit-user-select: none;
  /* Chrome/Safari */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* IE10+ */
  /* Rules below not implemented in browsers yet */
  -o-user-select: none;
  user-select: none; }

.reselect * {
  box-sizing: border-box; }

.reselect-container {
  position: relative;
  display: inline-block;
  outline: none;
  min-width: 150px; }
  .reselect-container:focus .reselect-selection-container, .reselect-container:active .reselect-selection-container {
    border-color: #26BCB9; }
  .reselect-container.reselect--opened .reselect-selection-container {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0; }
  .reselect-container.reselect--opened.reselect--dropdown-above .reselect-selection-container {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px; }
  .reselect-container[disabled="disabled"] .reselect-selection-container {
    cursor: not-allowed;
    background: #eee; }

.reselect-rendered {
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

.reselect-selection-container {
  position: relative;
  cursor: pointer;
  background: #fff;
  line-height: 22px;
  min-height: 34px;
  border-radius: 3px;
  padding-right: 18px;
  border: 1px solid #E3E3E3; }
  .reselect-selection-container:hover, .reselect-selection-container.reselect-selection--active {
    border-color: #26BCB9; }
  .reselect-selection-container [reselect-selection] {
    display: block; }
  .reselect-selection-container .reselect-selection {
    min-height: 34px;
    padding: 6px 14px; }

.reselect-rendered-placeholder {
  color: #999;
  font-style: italic;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 34px;
  padding: 6px 14px; }

.reselect-input-container {
  z-index: 10;
  position: absolute;
  top: 0;
  left: 0;
  right: 18px; }

.reselect-text-input {
  font-size: 12px;
  height: 34px;
  width: 100%;
  padding: 6px;
  border: none;
  background: none; }

.reselect-arrow-container {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 18px;
  border-left: 1px solid #E3E3E3; }
  .reselect-arrow-container::after {
    content: '';
    position: absolute;
    left: 50%;
    margin-left: -5px;
    top: 50%;
    margin-top: -2.5px;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid #ccc; }

.reselect-dropdown {
  position: absolute;
  -webkit-animation: reselectOptionOpen 0.2s;
  -moz-animation: reselectOptionOpen 0.2s;
  animation: reselectOptionOpen 0.2s;
  display: none;
  width: 100%;
  margin-top: -1px; }
  .reselect-dropdown.reselect-dropdown--opened {
    z-index: 10;
    display: block; }
  .reselect-dropdown.reselect-dropdown--above {
    box-shadow: 0 -1px 4px 0 rgba(0, 0, 0, 0.2);
    -webkit-transform-origin: bottom center;
    -moz-transform-origin: bottom center;
    -ms-transform-origin: bottom center;
    -o-transform-origin: bottom center;
    transform-origin: bottom center;
    margin-top: 1px; }
    .reselect-dropdown.reselect-dropdown--above .reselect-choices {
      border-top-color: #26BCB9;
      border-bottom-color: #E3E3E3; }
  .reselect-dropdown.reselect-dropdown--below {
    box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2);
    -webkit-transform-origin: top center;
    -moz-transform-origin: top center;
    -ms-transform-origin: top center;
    -o-transform-origin: top center;
    transform-origin: top center; }

.reselect-clear-button {
  position: absolute;
  right: 18px;
  top: 0;
  top: 0;
  bottom: 0;
  line-height: 34px;
  width: 30px;
  font-size: 20px;
  text-align: center;
  color: #ccc;
  background: none;
  display: block;
  font-weight: 300; }
  .reselect-clear-button:hover, .reselect-clear-button:active {
    text-decoration: none; }

.reselect-choices {
  border: 1px solid #E3E3E3;
  border-color: #26BCB9;
  border-top-color: #eee;
  width: 100%;
  background: white; }

.reselect-search-container {
  background: #f9f9f9;
  border-bottom: 1px solid #eee; }

input[type="text"].reselect-search-input {
  width: 100%;
  height: 36px;
  font-size: 12px;
  padding: 0 15px;
  outline: none;
  border: none;
  background: none; }

.reselect-text-match {
  font-weight: bold;
  color: #111; }

.reselect-options-container {
  overflow: auto;
  position: relative; }
  .reselect-options-container.reselect-options-container--autoheight {
    height: auto !important; }
  .reselect-options-container.disable-hover .reselect-option-choice {
    pointer-events: none; }
  .reselect-options-container::-webkit-scrollbar {
    width: 6px; }
  .reselect-options-container::-webkit-scrollbar-track {
    background: #ddd; }
  .reselect-options-container::-webkit-scrollbar-thumb {
    background: #999; }

.reselect-options-list {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative; }

.reselect-option, .reselect-sticky-choice {
  line-height: 1;
  font-size: 11px;
  font-weight: 400; }

.reselect-option {
  position: absolute;
  overflow: hidden;
  width: 100%; }
  .reselect-option.inactive {
    display: none; }
  .reselect-option.reselect-option--static {
    position: relative;
    cursor: default; }

.reselect-static-option {
  position: relative; }

.reselect-option-loader {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  content: ''; }
  .reselect-option-loader:after {
    position: absolute;
    left: 0;
    top: 0;
    height: 3px;
    content: '';
    width: 20%;
    display: block;
    background: #09c;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    -webkit-animation: reselect-loader 1.5s infinite;
    -moz-animation: reselect-loader 1.5s infinite;
    animation: reselect-loader 1.5s infinite; }

.reselect-option-choice, .reselect-option-optgroup, .reselect-sticky-choice {
  padding: 12px 15px;
  height: 36px;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #333;
  cursor: pointer; }

.reselect-option-choice.reselect-option-choice--highlight {
  background: #00ace6;
  color: #fff; }

.reselect-option-choice.reselect-option-choice--selected {
  background: #09c;
  color: #fff; }

.reselect-option-choice-container {
  display: inline-block; }

.reselect-option-optgroup {
  font-size: 10px;
  background: #fcfcfc;
  color: #999;
  padding-left: 10px;
  cursor: default;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee; }

.reselect-sticky-container {
  border-top: 1px solid #E3E3E3; }
