.select-shell {
  position: relative;
  display: block;
  margin-top: 7px;
}

.select-shell::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 17px;
  width: 9px;
  height: 9px;
  border-right: 2px solid #067196;
  border-bottom: 2px solid #067196;
  transform: translateY(-68%) rotate(45deg);
  pointer-events: none;
  transition: transform .2s ease;
}

.modern-select {
  appearance: none;
  -webkit-appearance: none;
  min-height: 56px;
  margin: 0;
  padding: 0 48px 0 16px;
  border: 1px solid #d5e2e7;
  border-radius: 15px;
  background: linear-gradient(180deg, #fff, #f8fbfc);
  box-shadow: 0 6px 18px rgba(11, 31, 51, .045);
  color: #0b1f33;
  font-weight: 650;
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.modern-select:hover {
  border-color: #9fc5d1;
  box-shadow: 0 9px 22px rgba(6, 113, 150, .08);
}

.modern-select:focus {
  border-color: #067196;
  box-shadow: 0 0 0 4px rgba(6, 113, 150, .11), 0 9px 22px rgba(6, 113, 150, .08);
}

.select-shell:focus-within::after {
  transform: translateY(-25%) rotate(225deg);
}
