.select2-hidden-accessible{
  visibility: hidden;
  opacity: 0;
  width: 0;
  height: 0;
  padding: 0;
  margin: 0;
  overflow: hidden;
  display: none;
}
.select2-container{
  z-index: 10000;
}
.select2-search--dropdown{
  display: none !important;
}
.select2{
  display: block;
  text-align: left;
  min-width: 140px;
}

.select2-selection:hover .select2-selection__arrow b{
  background: url(../images/svg/arr-search-blue.svg) no-repeat center;
  opacity: 1;
}
.select2-selection:hover {
  border: 1px solid rgba(21, 21, 21, 0.08);
  background: #EFF2F7;
}
.select2-selection{
  display: block;
  position: relative;
  box-sizing: border-box;
  transition: all 0.2s linear;
  height: 40px;
  cursor: pointer;
  border-radius: 12px;
  border: 1px solid rgba(21, 21, 21, 0.08);
}
.select2-selection__arrow b{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: .4;
  height: 100%;
  background: url(../images/svg/arr-search.svg) no-repeat center;
}
.select2-selection__rendered{
  padding: 9px 53px 10px 19px;
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  color: #151515;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
}
.select2-selection__arrow{
  position: absolute;
  top: 0;
  right: 0;
  width: 53px;
  height: 100%;
}

.select2-dropdown ul{
  max-height: 240px;
  overflow: auto;
}
.select2-dropdown{
  position: absolute;
  padding: 4px;
  box-sizing: border-box;
  overflow: auto;
  box-shadow: 0px 4px 28px 0px rgba(0, 0, 0, 0.12);
  z-index: 1;
  border-radius: 12px;
  margin-top: 5px;
  background: #FFF;
}
.select2-results__option.select2-results__option--selected{
  background: url(../images/svg/check-orange.svg) no-repeat right 12px center !important;

}
.select2-results__option:hover{
  background: #EFF2F7;
}
.select2-results__option{
  color: #151515;
  margin: 0 0 2px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  padding: 9px 30px 9px 18px;
  border-radius: 12px;
  cursor: pointer;
}

.select2-container--open .select2-selection__arrow b{
  transform: scale(-1);
}
