/*
Generated time: March 25, 2026 07:20
This file was created by the app developer. Feel free to contact the original developer with any questions. It was minified (compressed) by AVADA. AVADA do NOT own this script.
*/

details {
  position: relative;
}

summary {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  cursor: pointer;
  color: #000;
  border-radius: 99px;
  padding: 10px 15px;
  user-select: none;
  -webkit-user-select: none;
}

details[open] summary,
summary:hover {
  background-color: #f2f2f2;
}

summary .chevron-icon {
  rotate: 90deg;
  display: none;
}

details[open] summary .chevron-icon {
  rotate: -90deg;
}

localization-form {
  display: block;
}

details > ul {
  max-height: 60vh;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 1000;
  margin: 0;
  list-style: none;
  background: var(--bg-light);
  scrollbar-width: thin;
  scrollbar-color: currentColor transparent;
  box-shadow: var(--shadow-1);
  border-radius: 10px;
  padding: 10px 0;
}

details > ul > li {
  padding: 12px 15px 12px 15px;
}

details > ul > li:hover {
  background-color: #ebebeb;
}

details > ul > li:not(:last-child) {
  border-bottom: 1px solid #ebebeb;
}

details > ul button {
  width: 100%;
  display: flex;
  gap: 10px;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
  white-space: nowrap;
  justify-content: space-between;
  color: #000;
  font-size: 18px;
}

@media (max-width: 989px) {
  summary .mb-icon.chevron-icon svg {
    height: 11px;
    width: 11px;
  }

  summary {
    padding: 16px 15px;
    font-size: 18px;
  }
}