.dropdown {
  position: relative;
  display: inline-block;
  margin-left: 20px;
}

.dropdown_button {
  background-color: #fff;
  border: 1px solid #f2f2f2;
  padding: 10px 15px;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  transition: all 0.3s ease;
  outline: none;
  width: 90px;
}

.dropdown_button:hover {
  background-color: #f3f3f3;
}

.dropdown_button-text {
  margin-right: auto;
}

.icon_flag {
  display: none;
}

.icon__arrow {
  margin-left: 10px;
}

.dropdown_menu {
  display: none;
  position: absolute;
  background-color: #fff;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 1000;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.dropdown_menu[data-state="show"] {
  display: block;
  opacity: 1;
}

.dropdown_menu-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.dropdown_menu-item:hover {
  opacity: 0.7;
}

.dropdown_menu-item.is-active {
  opacity: 0.5;
  pointer-events: none;
  cursor: default;
  font-weight: 700;
}
