.vselect,
.vselect div {
  -webkit-tap-highlight-color: transparent;
}

.vselect_head {
  display: flex;
  width: 100%;
  height: 48px;
  border: 1px solid #525252;
  box-sizing: border-box;
  transition: all 200ms linear;
}
.vselect._opened .vselect_head {
  border-radius: 5px 5px 0 0;
}

.vselect {
  position: relative;
  display: block;
  width: 100%;
  z-index: 1;
}
.vselect._opened {
  z-index: 2;
}
.vselect select {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.vselect._native select {
  z-index: 5;
}
.vselect_head {
  box-sizing: border-box;
}
.vselect_head_field {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 20px;
  cursor: pointer;
  box-sizing: border-box;
}
.vselect_toggle {
  flex: 0 0 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-align: center;
  position: relative;
  z-index: 3;
  border-radius: 5px;
}
.vselect._disabled .vselect_head_field,
.vselect._disabled .vselect_toggle {
  cursor: default;
}
.vselect_toggle_icon {
  transition: all 300ms linear;
}
.vselect_toggle_icon svg {
  width: 15px;
  margin-bottom: 1px;
}
.vselect._opened .vselect_toggle_icon {
  rotate: 180deg;
}
.vselect._native .vselect_head_field {
  position: static;
}

.vselect_holder {
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 12px;
  color: #9D9D9D;
  font-weight: 400;
}
.vselect._has_value .vselect_holder {
  opacity: 0;
  visibility: hidden;
}

.vselect_dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 100%;
  background: #1B1B1B;
  border: 1px solid #292929;
  border-top: 0;
  border-radius: 0 0 5px 5px;
  box-shadow: 0 0 4px rgba(0, 0, 0, .2);
  opacity: 0;
  visibility: hidden;
  transition: all 200ms linear;
  box-sizing: border-box;
}
.vselect_dropdown._shown {
  opacity: 1;
  visibility: visible;
}

.vselect_filter {
  border-bottom: 1px solid #bbb;
}
.vselect_filter input {
  display: block;
  width: 100%;
  height: 40px;
  line-height: 40px;
  padding: 0 10px;
  box-sizing: border-box;
  border: none;
  font-size: 14px;
}

.vselect_options {
  position: relative;
  /*max-height: 200px;*/
  overflow: auto;
}
.vselect_option {
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 10px;
  font-size: 18px;
  font-weight: 500;
  transition: all 200ms linear;
}
.vselect_option:hover,
.vselect_options:not(:hover) .vselect_option._cursor,
.vselect_options:not(:hover) .vselect_option._selected {
  background: #71737A;
}
.vselect_option:first-child {
  border: none;
}
.vselect_option._not_found {
  cursor: default;
  font-style: italic;
}
.vselect_option._disabled {
  cursor: default;
  color: #ddd;
}
.vselect_option._empty {
  font-style: italic;
}

.vselect_hidden {
  display: none;
}

.vselect_head_field {
  cursor: default;
  box-sizing: border-box;
}
.vselect_values {
  cursor: pointer;
  position: absolute;
  bottom: 0;
  left: 0px;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 0 0 20px;
  font-size: 18px;
  font-weight: 500;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  z-index: 2;
}
.vselect._has_value ._placeholder + .vselect_values {
  margin: -2px 0 0;
}
.vselect._has_value .vselect_values::after {
  content: '';
  position: absolute;
  top: 1px;
  right: 0;
  bottom: 0;
  width: 30px;
  height: calc(100% - 2px);
  display: block;
  background: linear-gradient(to right, rgba(27,27,27,0) 0%, rgba(27,27,27,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=1);
}
.vselect._has_value._native .vselect_values::after {
  right: 45px;
}
.vselect_value {
  cursor: pointer;
  display: inline-block;
  vertical-align: bottom;
}
.vselect._no_value .vselect_value {
  line-height: 20px;
  color: #999;
  font-size: 13px;
}
.vselect._has_value .vselect_value {}
.vselect._has_value .vselect_value_sep {
  display: inline-block;
  vertical-align: bottom;
}
.vselect._no_value ._placeholder {
  opacity: 0;
  visibility: hidden;
}
.vselect._has_value ._placeholder {
  opacity: 1;
  visibility: visible;
}