maksimerohin
2/16/2019 - 6:39 AM

Custom Select

.relo-select {
  background-color: transparent;
  border-radius: 5px;
  color: #549eff;
  border: solid 1px #549eff;
  text-shadow: 0 0 5px 5px rgba(0,102,236,.5);
  box-shadow: 0 0 5px 2px rgba(0,102,236,.5), inset 0 0 5px 2px rgba(0,102,236,.5);
  background: url(images/arrd.png) calc(100% - 5px) 9px no-repeat;
  display: none;
  @include media-breakpoint-down(sm) {
    display: block;
  }

  /*for WebKit*/
  -webkit-appearance: none;
  /* for FF */
  -moz-appearance: none;
  text-indent: 0.01px; 
  text-overflow: '';
  /* for IE */
  -ms-appearance: none;
  appearance: none!important;

  &:active, &:focus {
    background: url(images/arru.png) calc(100% - 5px) 9px no-repeat;
  }
}
.select:disabled {
  background: url(images/arrd.png) calc(100% - 5px) 9px no-repeat;
  background-color: #c9c9c9;
  color: #6b6b6b;
  cursor: default;
}