/* Dropdown with custom arrow */
.custom-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('/static/images/arrow-down-up.svg');
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  height: 40px;
}
