/*
 *
 *   iEDI.online regions
 *
*/
.dropbtn {
  background-color: #28b394;
  color: white;
  padding: 10px;
  font-size: 14px;
  border: none;
  cursor: pointer;
  outline: 0;
  margin-top: 20px;
  font-weight: bold;
  text-transform: uppercase;
  max-width: 200px;
  text-align: left;
  border-radius: 3px;
}

.dropbtn:focus {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

.dropbtn:hover, .dropbtn:focus {
  background-color: #25a689;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  width: 200px;
  overflow: auto;
  z-index: 1;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}

.dropdown-content a {
  color: black;
  padding: 10px;
  text-decoration: none;
  display: block;
}

.dropdown-content .region {
  transition: .5s;
  color: #777!important;
}

.dropdown-content .region:last-child() {
  border-radius: 3px;
}

.dropdown-content .region:hover {
  color: #28b394 !important;
}

.flag {
  position: relative;
  width: 20px;
  margin-right: 10px;
  bottom: 1px;
}

.dropdown a:hover {background-color: #e6e6e6;}

.show {display: block; visibility: visible;}