.frm_select {
  position: relative;
}
.inputSelect {
  width: auto;
  display: flex;
  justify-content: space-between;
}
.inputSelect .frm_select {
  width: 100%;
}

.frm_select::before,
.frm_select::after {
  content: "";
  display: block;
  position: absolute;
  pointer-events: none;
  z-index: 2;
}
.frm_select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  border: 1px solid transparent;
  font-size: 14px;
  outline: none;
  /* Focus style */
}
.frm_select select:focus {
  background-color: transparent;
  outline: none;
}
.frm_select option {
  font-weight: normal;
  font-size: 12px;
  background: #333436;
  color: #fff;
  padding: 10x 0;
  border: none;
}
.frm_select x:-o-prefocus,
.frm_select::after {
  display: none;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .frm_select select::-ms-expand {
    display: none;
  }
  .frm_select select:focus::-ms-value {
    background: transparent;
    color: #000;
  }
}
@-moz-document url-prefix() {
  .frm_select {
    overflow: hidden;
  }
  .frm_select select {
    width: 120%;
    width: calc(100% + 3em);
    /* Firefox focus has odd artifacts around the text, this kills that. See https://developer.mozilla.org/en-US/docs/Web/CSS/:-moz-focusring */
  }
  @supports (-moz-appearance: none) {
    .frm_select select {
      width: 100%;
    }
  }
}
@supports (-moz-appearance: none) {
  .frm_select {
    width: 100%;
  }
}
.frm_select::before,
.frm_select::after {
  content: "";
  display: block;
  position: absolute;
  pointer-events: none;
  border: 1px solid transparent;
  width: 0;
  height: 0;
  right: 16px;
}
/* [include*="form-input-select()"]::before {
  bottom: 55%;
  border-width: 0 6.5px 8px 6.5px;
  border-bottom-color: #d6d6d6;
} */
.frm_select::after {
  border-width: 8px 6.5px 0 6.5px;
  border-top-color: #2453ca;
  top: 45%;
}
@-moz-document url-prefix() {
  .frm_select {
    border-right: 1px solid #2453ca;
  }
  .frm_select:hover {
    border-right: 1px solid #2453ca;
  }
}
.frm_select select {
  border: 1px solid #2453ca;
  border-radius: 0;
  font-weight: 400;
  color: #2453ca;
  padding: 11px 30px 11px 15px;
  border-radius: 4px;
  line-height: normal;
  -webkit-transition: border-color 0.2s ease, outline 0.2s ease;
  transition: border-color 0.2s ease, outline 0.2s ease;
  width: 100%;
}
/* [include*="form-input-select()"] select:focus {
  outline: 1px solid #005ba6;
  outline-offset: -3px;
} */
.frm_select select[disabled],
.frm_select select:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
/* [include*="form-input-select()"] select:not(:focus):invalid {
  color: #2453ca;
} */
