

.dropdown {
  position: relative;
  box-sizing: content-box;
  width: 167px;
  height: 1em;
  padding: 18px 21px;
  background-color: #fff;
  /* box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1); */
  /* height: 50px; */
  float: right;
}
.dropdown:hover svg {
  transform: scale(1.1);
}
.dropdown button {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 3;
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
}
.dropdown button:focus ~ svg {
  transform: rotate(-180deg);
}
.dropdown .options {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}
.dropdown input {
  display: none;
}
.dropdown input:checked + label {
  display: block;
  z-index: 2;
  font-weight: 400;
  transform: none !important;
  font-size: 14px;
}
.dropdown label {
  position: absolute;
  width: 100%;
  z-index: 1;
  padding: 16px 21px;
  line-height: 1;
  background-color: #f9f2c1;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s ease;
  font-size: 14px;
}
.dropdown label:hover {
  background-color: #59a446;
  color: white;
}
.dropdown button:focus + .options input:not(:checked) + label, .dropdown .options label:active, .dropdown .options label:active ~ label {
  transform: translateY(calc(var(--index) * 100%));
}
.dropdown button:focus + .options input:checked + label ~ label, .dropdown .options input:checked ~ label:active, .dropdown .options input:checked ~ label:active ~ label {
  transform: translateY(calc((var(--index) - 1) * 100%));
}
.dropdown svg {
  position: absolute;
  width: 21px;
  top: 25%;
  right: 14px;
  z-index: 2;
  fill: currentColor;
  transition: transform 0.1s;
}


@media only screen and (max-width:991px) {
.dropdown label{padding:21px 21px; text-align: right; padding-right: 45px;}
.dropdown svg{top:34%; }
.dropdown
}

@media only screen and (max-width:450px) {
.dropdown{width:146px !important;}
}