.emt-lang-toggle {
  position: fixed;
  bottom: 0px;
  right: 0px;
  z-index: 100;
  background-color: black;
}
.emt-lang-toggle {
  color: white;
  text-decoration: none;
  padding: 10px 30px;
  text-align: center;
  border: 0;
  cursor: pointer;
}
.emt-lang-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0, 0.5);
  justify-content: center;
  align-items: center;
  display: none;
  z-index: 100;
}
.emt-lang-modal.show {
  display: flex;
}
.emt-lang-modal-title {
  display: block;
  font-weight: bold;
  padding: 0 30px 30px 30px;
  font-size: 3rem;
}
.emt-lang-options {
  width: fit-content;
  height: fit-content;
  background: #333;
  padding: 30px 30px 30px 30px;
  text-align: center;
  position: relative;
}
.emt-lang-option {
  position: relative;
  display: block;
  padding: 30px;
  text-decoration: none;
  border: 0;
  color: white;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.emt-lang-option:hover {
  background: #999;
  color: black;
}
.emt-lang-option.active {
  background: #eee;
  color: black;
}
.emt-lang-close {
  cursor: pointer;
  background: transparent;
  border: 0;
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 2rem;
  padding: 10px;
  color:white;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.emt-lang-close:hover {
  background: white;
  color: black;
}
.emt-translation-controls {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 100;
}
.emt-translation-controls :is(button,a):hover {
  background: #ddd;
}
.emt-translation-controls :is(button,a) {
  cursor: pointer;
  padding: 10px 20px;
  background: white;
  color: black;
  display:inline-block;
  text-decoration: none;
  margin: 0 0.5em 0 0;
  font-size: 1rem;
  border: 0;
  line-height: 100%;
  font-weight: bold;
  font-family: sans-serif;
}
@media (min-width: 900px) {
  .emt-lang-options {
    width: 450px;
  }
  .emt-lang-option {
    display: inline-block;
    min-width: 50%;
    box-sizing: border-box;
  }
}
