/** nojs */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(100%);
  clip-path: inset(100%);
}
.regions_button {
  opacity: 0;
  background-color: transparent;
  padding: 0;
  border: none;
}
.regions .menu {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
.regions .menu-item {
  list-style: none;
}
.regions .regions_button:focus-visible,
.regions a:focus-visible {
  outline: 3px dotted #b11a13;
  outline-offset: 2px;
}

/** for users with javascript enabled */
.top_line .regions {
  position: relative;
  width: 100%;
  padding: 0.5rem;
}
.top_line .regions_button {
  opacity: 1;
}
.top_line .regions .menu {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  position: absolute;
  top: 100%;
  min-width: 200px;
  padding: 1rem;
  -webkit-box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 80%);
  box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 80%);
  background-color: white;
  z-index: 100;
}
.top_line .regions.open .menu {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.regions_popup {
  display: none;
}
@media screen and (min-width: 951px) {
  .regions_popup.open {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
    position: fixed;
    top: 2rem;
    left: 2rem;
    width: 300px;
    padding: 2rem;
    -webkit-box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 80%);
    box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 80%);
    background-color: white;
    z-index: 400;
  }
  .regions_title {
    width: 100%;
  }
  .regions_button--close,
  .regions_button--menu {
    line-height: 19px;
    border-radius: 2px;
    border-color: #b11a13;
    background-color: white;
  }
  .regions_button--close {
    color: #ffffff;
    background: -o-linear-gradient(180.11deg, #b11a13 0.04%, #ec5e1b 101.5%);
    background: linear-gradient(269.89deg, #b11a13 0.04%, #ec5e1b 101.5%);
  }
  .regions_button--close:focus-visible,
  .regions_button--menu:focus-visible {
    outline: 3px dotted #b11a13;
    outline-offset: 2px;
  }
}
