.notranslate {
  translate: no;
}


/* Container */
.translator-widget {
  position: relative;
  display: inline-block;
  font-family: sans-serif;
}

/* Selected item */
.translator-selected {
  cursor: pointer;
  background-color: #fff;
  
}

/* Dropdown list */
.translator-options {
  position: absolute;
  top: 100%;  
  z-index: 1000;
  background-color: #fff;
  border: 1px solid #ccc;
  display: none;
  /* max-height: 200px; */
  overflow-y: auto;
  width: 100%;
}

/* Each option */
.translator-options li {
  width: min-content;
  list-style: none;
  padding: 6px 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.translator-options li:hover {
  background-color: #f0f0f0;
}

/* Flag image */
.translator-options img {
  width: 24px;
  height: 16px;
  margin-right: 8px;
}