.country-selector {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.country-selector_info {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.country-selector_button, .country-selector_button:focus, .country-selector_button:hover, .country-selector_button:active {
  outline: none;
  border: none;
}
.country-selector_button .icon, .country-selector_button:focus .icon, .country-selector_button:hover .icon, .country-selector_button:active .icon {
  fill: currentColor;
}
.country-selector_content {
  width: 180px;
  border: 1px solid #cacaca;
  padding: 1.2em;
  flex-direction: column;
  align-items: flex-start;
  gap: 1em;
  position: absolute;
  color: var(--country-selector-label-color);
  background: var(--country-selector-bg-color);
  z-index: 9999;
  border-radius: 6px;
  display: none;
  top: 30px;
  right: -20px;
}
.country-selector_content:before {
  content: "";
  position: absolute;
  top: -8px; /* Adjust to position the triangle above the block */
  right: 32px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid white;
}
.country-selector_content:after {
  content: "";
  position: absolute;
  top: -10px; /* Slightly above the triangle to create the border effect */
  right: 30px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #cacaca; /* Same color as the block border */
  z-index: -1;
}
.country-selector_content.active {
  display: flex;
}
.country-selector_content .country-selector_language select {
  width: 100%;
  padding: 0.3em 0.5em;
  border: 1px solid #cacaca;
  border-radius: 4px;
}
.country-selector_content .country-selector_country .country {
  font-size: 1.65em;
  line-height: 1;
  padding: 1px;
  border: 1px solid lightgray;
}
.country-selector_country, .country-selector_language {
  width: 100%;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 0.5em;
}
.country-selector_country label, .country-selector_language label {
  font-weight: 700;
  margin-bottom: 0;
}

body:not(.designPlus) .headerGroup .pageTopbar {
  overflow: visible;
}
body:not(.designPlus) .countryselect {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
}
body:not(.designPlus) .countryselect ul {
  margin: 2px;
  border: 1px solid lightgrey;
  padding: 2px;
}
body:not(.designPlus) .countryselect li {
  flex: 0 0 auto;
  margin: 3px;
}

/*# sourceMappingURL=countryselector.css.map */
