/* Dropdown Button */
.dropbtn {
  background-color: transparent !important;
  color: black !important;
  border: 0.5px solid grey !important;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 132px;
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.1);
  z-index: 1;
  padding: 10px;
  border-radius: 5px;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  margin: 10px 0px;
  text-decoration: none !important;
  display: block;
  cursor: pointer;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
  background-color: #ddd
}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {
  display: block;
}

.flag {
  width: 20px;
}

#countrySelector {
  display: none;
}