.visually-hidden:not(:focus):not(:active) {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.country-select {
  align-items: center;
  height: 100%;
  justify-content: center;
  position: fixed;
  width: 100%;
  z-index: 13;
}
.country-select:not([hidden]) {
  display: flex;
}
.country-select > div {
  align-items: inherit;
  background-color: #f2f2f2;
  border-radius: 2px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  flex-direction: column;
  justify-content: inherit;
  max-width: 314px;
  padding: 10px;
  position: relative;
  text-align: center;
  width: 90%;
  z-index: 11;
}
.country-select::before {
  background-color: rgba(0, 0, 0, 0.5);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.country-select_close {
  box-sizing: content-box;
  cursor: pointer;
  display: block;
  height: 10px;
  margin: -10px -10px 4px auto;
  padding: 10px;
  position: relative;
  width: 10px;
}
.country-select_close > svg {
  color: #0D3749;
  display: block;
  height: 10px;
  width: 10px;
}
.country-select_close:hover > svg {
  color: #e73389;
}
.country-select_close:focus-visible {
  box-shadow: 0 0 0 2px #51a7e8;
  outline: none;
}
.country-select_close:focus-visible > svg {
  color: #e73389;
}
.country-select_title, .country-select_message {
  color: #0D3749;
  line-height: initial;
}
.country-select_title {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}
.country-select_message {
  font-size: 14px;
  margin-top: 8px;
}
.country-select_list {
  margin: 24px 0;
}
.country-select_option {
  display: inline-block;
  margin: 0;
}
@media (min-width: 245px) {
  .country-select_option:last-child {
    margin-left: 4px;
  }
}
.country-select_button {
  border: solid 1px transparent;
  color: #FFF;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  min-height: 30px;
  padding: 7px 14px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition-property: background-color, border, color, transform;
  transition: all 0.2s cubic-bezier(0.33, 0, 0.2, 1) 0s;
  vertical-align: middle;
}
.country-select_button:hover {
  color: white;
}
.country-select_button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px #51a7e8;
}
.country-select_button:active {
  transform: translateY(1px);
}
.country-select_button--fill {
  background-color: #e73389;
  border-color: #e73389;
}
.country-select_button--fill:hover, .country-select_button--fill:focus-visible {
  background-color: #af2769;
  border-color: #af2769;
}
.country-select_button--ghost {
  border-color: inherit;
  color: #0D3749;
}
.country-select_button--ghost:hover {
  background-color: #e73389;
  border-color: #e73389;
}
