/** @define MetaDropdown */

:root {
  --MetaDropdown-variable: 0;
  --MetaDropdown-arrow: 10px;
  --MetaDropdown-height: 35px;
  --MetaDropdown-width: 210px;
}

.MetaDropdown {
  position: absolute;
  background-color: #ffffff;
  min-height: 100px;
  min-width: 220px;
  display: none;
  padding: 20px 0;
  margin: 0px;
  box-sizing: border-box;
}

.MetaDropdown::before {
  position: absolute;
  bottom: 100%;
  left: 0;
  border: solid transparent;
  height: 0;
  width: 0;
  pointer-events: none;
  border-style: solid;
  border-width: 10px 0 0 10px;
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.95);
}

@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.MetaDropdown.is-open {
  display: block;
  opacity: 0;
  animation-name: fadeIn;
  animation-fill-mode: forwards;
  animation-duration: 0.3s;
  animation-timing-function: ease-in-out;
  border: 2px solid #000000;
}

.MetaDropdown header {
  padding: 0 20px 20px 20px;
}

.MetaDropdown header p {
  font-weight: 300;
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: 0.6px;
  color: #000000;
}

.MetaDropdown footer {
  padding: 20px 20px 0px 20px;
}

.MetaDropdown footer p {
  font-weight: 300;
  font-size: 13px;
  line-height: 1;
  color: #000000;
  display: inline-block;
}

.MetaDropdown footer a {
  font-weight: 300;
  font-size: 13px;
  line-height: 1;
  color: #000000;
  display: inline-block;
  padding-left: 5px;
  text-decoration: none;
}

.MetaDropdown footer a.is-active {
  color: #000000;
  font-weight: bold;
}
.MetaDropdown-content {
  height: auto;
  overflow: auto;
  display: block;
  overflow-x: hidden;
}

.MetaDropdown-profile .MetaDropdown-content {
  padding: 0 20px;
}

.MetaDropdown-language .MetaDropdown-content {
    height: 140px;
}

.MetaDropdown-content ul {
  background-color: rgba(248, 248, 248, 0.95);
  font-size: 0;
  list-style: none;
  height: 100%;
  overflow: auto;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

.MetaDropdown-active{
}
