@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600;700;800&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}
body {
  width: 100vw;
  height: 100vh;
  display: grid;
  place-items: center;
  place-content: center;
  background-color: palegreen;
}
h3 {
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 20px;
}
.container {
  padding: 0px 20px;
  min-width: 600px;
  height: 100px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  column-gap: 10px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

label {
  min-width: 250px;
  height: 36px;
  position: relative;
}

label::before {
  content: "";
  width: 22px;
  height: 32px;
  display: block;
  position: absolute;
  top: 2px;
  right: 7px;
  pointer-events: none;
}

label::after {
  content: " ";
  position: absolute;
  right: 15px;
  top: 46%;
  z-index: 2;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6.9px 4px 0 4px;
  border-color: #aaa transparent transparent transparent;
  pointer-events: none;
}

label select {
  min-width: 250px;
  height: 36px;
  outline: 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 0 30px 0 10px;
  border: 2px solid #6ab04c;
  border-radius: 3px;
  margin: 0 5px 5px 0;
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

option {
  font-size: 15px;
  padding-top: 10px;
  padding-bottom: 20px;
}

select option:checked {
  font-weight: bold;
}
