.selectric-wrapper {
  position: relative;
  cursor: pointer;
}
.selectric {
  position: relative;
  overflow: hidden;
}
.selectric-label {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-weight: normal;
  width: 100%;
  height: 40px;
  line-height: 40px;
  box-sizing: border-box;
  padding: 0 40px 0 18px;
  text-align: left;
  font-size: 14px;
  color: #494949;
}
.selectric-button {
  display: block;
  position: absolute;
  right: 12px;
  top: 0;
  bottom: 0;
  width: 20px;
  background: transparent;
  text-align: center;
  font-size: 0;
}
.selectric-button:after {
  display: block;
  content: "";
  width: 11px;
  height: 6px;
  background: url(../images/arrows.svg) no-repeat;
  transition: 0.3s ease all;
}
.selectric-open .selectric-button:after {
  transform: rotate(180deg);
  transition: 0.3s ease all;
}
.selectric-open {
  z-index: 9999;
}
.selectric-open .selectric-items {
  display: block;
}
.selectric-disabled {
  filter: alpha(opacity=50);
  opacity: 0.5;
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.selectric-hide-select {
  position: relative;
  overflow: hidden;
  width: 0;
  height: 0;
}
.selectric-hide-select select {
  position: absolute;
  left: -100%;
}
.selectric-hide-select.selectric-is-native {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.selectric-hide-select.selectric-is-native select {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  border: none;
  z-index: 1;
  box-sizing: border-box;
  opacity: 0;
}
.selectric-input {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 1px !important;
  height: 1px !important;
  outline: none !important;
  border: none !important;
  *font: 0/0 a !important;
  background: none !important;
}
.selectric-temp-show {
  position: absolute !important;
  visibility: hidden !important;
  display: block !important;
}
.selectric-items {
  display: none;
  position: absolute;
  z-index: -1;
  top: 100%;
  left: 0;
  box-shadow: 0 4px 6px 2px rgba(0, 0, 0, 0.25);
  background: #ffffff;
  overflow: hidden;
}
.selectric-items .selectric-scroll {
  height: 100%;
  overflow: auto;
}
.selectric-items ul, .selectric-items li {
  list-style: none;
  padding: 0;
}
.selectric-items li {
  display: block;
  padding: 8px 8px 8px 18px;
  cursor: pointer;
  text-align: left;
  font-size: 14px;
  color: #494949;
}
.selectric-items li.selected,
.selectric-items li.highlighted,
.selectric-items li:hover {
  background: #F5C629;;
  color: #fff;
}
.selectric-items .disabled {
  filter: alpha(opacity=50);
  opacity: 0.5;
  cursor: default !important;
  background: none !important;
  color: #2f2f2f !important;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.selectric-items .selectric-group .selectric-group-label {
  font-weight: bold;
  padding-left: 10px;
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background: none;
  color: #161616;
}
.selectric-items .selectric-group.disabled li {
  filter: alpha(opacity=100);
  opacity: 1;
}


.boxSearch_select .selectric-label {
  height: 49px;
  line-height: 49px;
  padding: 0 40px 0 18px;
}

.boxSorting .selectric {
  border: 1px solid #f5f5f5;
  border-radius: 30px;
}
.boxSorting .selectric-label {
  height: 38px;
  line-height: 38px;
  padding: 0 36px 0 21px;
  font-size: 16px;
  color: #343434;
}
.boxSorting .selectric-button:after {
  width: 10px;
  height: 5px;
  background-size: 100% 100%;
  margin: 0 auto;
}
@media screen and (max-width: 479px) {
  .boxSearch_select .selectric-button {
    right: 0;
  }
  .boxSearch_select .selectric-label {
    padding: 0 25px 0 10px;
  }
  
}