.custom-select {
  position: relative;
  background: #fff;
  padding: 0;
  height: auto;
  margin: 0 0.3rem;
}

.custom-select.disabled {
  opacity: .65;
}

.custom-select.disabled select {
  background: none;
}

.custom-select select {
  border: 0 none;
  box-shadow: none;
  display: block;
  line-height: normal;
  margin: 0;
  font-size: 100%;
  width: 100%!important;
  color: #000;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  font-size: 1.2rem;
  height: 100%;
  border-radius: 1.2rem;
  padding: 1rem 1.6rem 1rem 1rem;
  background: url("../images/dropdown.svg") no-repeat calc(100% - 0.7rem) center/auto 5px #fff;
}

.custom-select select::-ms-expand {
  display: none;
  /* to ie 10 */
}

.custom-select select:focus {
  outline: none;
  box-shadow: none;
}

.custom-select select option {
  background: #fff;
  padding: 5px;
}

.select-default {
  padding: 0;
}

.select-default select {
  height: 32px;
}
