.dropbtn {
  background-color: transparent;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  margin-right: 2vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}
.dropbtn > img{
  width: 20px;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: absolute;
  display: inline-block;
  z-index: 200;
  right: 0;
  transition: 0.3s;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: transparent;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  transition: 0.3s;
  right: 0;
}

/* Links inside the dropdown */
.dropdown-content button {
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  transition: 0.3s;
  background: transparent;
  border: none;
}

/* Change color of dropdown links on hover */
.dropdown-content button:hover {
  background-color: #3e8e4120;
  transition: 0.3s;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
  transition: 0.3s;
}

.dropdown .goog-te-combo {
  background: black;
  color: white;
  border-radius: 20px;
  height: 40px;
  width: 200px;
  text-align: center;
}