/**
 * selectize.css (v0.12.4)
 * Copyright (c) 2013–2015 Brian Reavis & contributors


.selectize-control {
  position: relative;
}


/*Размер шрифта и высоты строки инпут и значения в строке  */
.selectize-dropdown,
.selectize-input,
.selectize-input input {
  color: #303030;
  font-family: inherit;
  font-size: 20px;
  line-height: 29px;
  -webkit-font-smoothing: inherit;
}
.selectize-input,
.selectize-control.single .selectize-input.input-active {
  background: #ffffff;
  cursor: text;
  display: inline-block;
}
.selectize-input {
  border: 1px solid #d0d0d0;
  padding: 8px 8px;
  display: inline-block;
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
/*   -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1); */
/*   box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1); */
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.selectize-control.multi .selectize-input.has-items {
  padding: 6px 8px 3px;
}
.selectize-input.full {
  background-color: #ffffff;
}


.selectize-input.dropdown-active {
  -webkit-border-radius: 3px 3px 0 0;
  -moz-border-radius: 3px 3px 0 0;
  border-radius: 3px 3px 0 0;
}
.selectize-input > * {
  vertical-align: baseline;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.selectize-input > input {
  display: inline-block !important;
  padding: 0 !important;
  min-height: 0 !important;
  max-height: none !important;
  max-width: 100% !important;
  margin: 0 2px 0 0 !important;
  text-indent: 0 !important;
  border: 0 none !important;
  background: none !important;
  line-height: inherit !important;
  -webkit-user-select: auto !important;
/*   -webkit-box-shadow: none !important; */
/*   box-shadow: none !important; */
}
.selectize-input > input::-ms-clear {
  display: none;
}
.selectize-input > input:focus {
  outline: none !important;
}
.selectize-input::after {
  content: ' ';
  display: block;
  clear: left;
}
.selectize-input.dropdown-active::before {
  content: ' ';
  display: block;
  position: absolute;
  background: #f0f0f0;
  height: 1px;
  bottom: 0;
  left: 0;
  right: 0;
}
.selectize-dropdown {
  position: absolute;
  z-index: 10;
  border: 1px solid #d0d0d0;
  background: #ffffff;
  margin: -1px 0 0 0;
  border-top: 0 none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 0 0 3px 3px;
  -moz-border-radius: 0 0 3px 3px;
  border-radius: 0 0 3px 3px;
}
.selectize-dropdown [data-selectable] {
  cursor: pointer;
  overflow: hidden;
}
.selectize-dropdown [data-selectable] .highlight {
  background:none;
/*   rgba(125, 168, 208, 0.2); */
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
}
.selectize-dropdown [data-selectable],
.selectize-dropdown .optgroup-header {
  padding: 5px 8px;
}
.selectize-dropdown .optgroup:first-child .optgroup-header {
  border-top: 0 none;
}
.selectize-dropdown .optgroup-header {
  color: #303030;
  background: #ffffff;
  cursor: default;
}
.selectize-dropdown .active {
  background-color: #E57373;
/*   #E91E63; */
  color: white;
}
/* Высота открытого блока списка общая */
.selectize-dropdown-content {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 300px;
  -webkit-overflow-scrolling: touch;
}


/* NEW SELECTIZE MY CORRECT BLOCK */
.selectize-input, .selectize-input.dropdown-active, .selectize-dropdown {
    border-radius: 0;
}

.selectize-dropdown, .selectize-input, .selectize-input input {
    color: $input-font-color;
    font-size: $input-font-size;
}

.selectize-input {
/*     height: ($input-font-size + ($form-spacing * 1.5) - rem-calc(1)); */
}

.selectize-input > input {
    @include form-element();
    top: 1px;
    height: auto;
    display: inline-block;
}

.selectize-input > div.item {
    margin-top: 1px;
}

.selectize-dropdown [data-selectable] .highlight {
    background: scale-color($f-dropdown-list-hover-bg, $lightness: -10%);
}

.selectize-dropdown .active {
    background: $f-dropdown-list-hover-bg;
    color: scale-color($input-font-color, $lightness: -20%);
}

/* .selectize-input div.item + input { display: inline-block; } */
/*  .selectize-input input { height: 36px; }  */
.selectize-input input { font-size: 20px; }

