:root {
  --fz-html: 62.5%;
  --fz-base: 1.6rem;
  --fw-base: 400;
  --lh-base: 1.2;
  --ff-base: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --c-base: #000;
  --c-black: #000;
  --c-white: #fff;
  --c-red: #ea1d23;
  --c-gray-light: #eaeaea;
  --c-gray: #9a9a9a;
  --c-blue: #59a7d9;
  --c-blue-dark: #225fa5;
}

* {
  padding: 0;
  margin: 0;
  outline: 0;
  box-sizing: border-box;
}

*:before,
*:after {
  box-sizing: inherit;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
main {
  display: block;
}

template {
  display: none;
}

html {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-size-adjust: none;
}

img,
iframe,
video,
audio,
object {
  max-width: 100%;
}

img,
iframe {
  border: 0 none;
}

img {
  height: auto;
  display: inline-block;
  vertical-align: middle;
}

img,
[style*=background-image] {
  image-rendering: -webkit-optimize-contrast;
}

b,
strong {
  font-weight: bold;
}

address {
  font-style: normal;
}

svg:not(:root) {
  overflow: hidden;
}

a,
button,
input[type=submit],
input[type=button],
input[type=reset],
input[type=file],
input[type=image],
label[for] {
  cursor: pointer;
}

a[href^=tel],
button[disabled],
input[disabled],
textarea[disabled],
select[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

input[type=button],
input[type=text],
input[type=password],
input[type=date],
input[type=datetime],
input[type=datetime-local],
input[type=month],
input[type=week],
input[type=email],
input[type=number],
input[type=search],
input[type=tel],
input[type=time],
input[type=url],
input[type=color],
textarea,
a[href^=tel] {
  appearance: none;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  appearance: none;
}

textarea {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

button,
select {
  text-transform: none;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

nav ul,
nav ol {
  list-style: none outside none;
}

input::placeholder {
  color: inherit;
  opacity: 1;
}

textarea::placeholder {
  color: inherit;
  opacity: 1;
}

input:-webkit-autofill {
  -webkit-text-fill-color: inherit;
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}

html {
  font-size: var(--fz-html);
}

body {
  min-width: 320px;
  font-family: var(--ff-base);
  font-weight: var(--fw-base);
  font-size: var(--fz-base);
  line-height: var(--lh-base);
  color: var(--c-base);
}

a {
  color: inherit;
  text-decoration: underline;
}

@media (hover: hover) {
  a:where(:hover, :focus-visible) {
    text-decoration: none;
  }
}

a[href^=tel] {
  text-decoration: none;
}

.level-1,
h1,
.level-2,
h2,
.level-3,
h3,
.level-4,
h4,
.level-5,
h5,
.level-6,
h6 {
  margin-bottom: calc(var(--lh-base) * 0.5em);
}

p,
ul,
ol,
dl,
hr,
table,
blockquote {
  margin-bottom: calc(var(--lh-base) * 0.5em);
}

h1[class],
h2[class],
h3[class],
h4[class],
h5[class],
h6[class],
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
p:last-child,
ul:last-child,
ol:last-child,
dl:last-child,
table:last-child,
blockquote:last-child {
  margin-bottom: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

[hidden],
.hidden {
  display: none !important;
}

[disabled],
.disabled {
  cursor: default;
}

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
  .visible-xs-block {
    display: block !important;
  }
  .visible-xs-inline {
    display: inline !important;
  }
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 767.02px) and (max-width: 1023px) {
  .hidden-sm {
    display: none !important;
  }
  .visible-sm-block {
    display: block !important;
  }
  .visible-sm-inline {
    display: inline !important;
  }
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 1023.02px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
  .visible-md-block {
    display: block !important;
  }
  .visible-md-inline {
    display: inline !important;
  }
  .visible-md-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 1199.02px) {
  .hidden-lg {
    display: none !important;
  }
  .visible-lg-block {
    display: block !important;
  }
  .visible-lg-inline {
    display: inline !important;
  }
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}

.btn {
  display: inline-flex;
  vertical-align: middle;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  appearance: none;
}

.btn--block {
  display: block;
  padding-inline: 0;
}

.grid-flex {
  --grid-gutter: 2rem;
  display: flex;
  flex-flow: row wrap;
  margin-inline: calc(var(--grid-gutter) / 2 * -1);
}

.grid-flex .grid__col {
  --grid-cols: 1;
  padding-inline: calc(var(--grid-gutter) / 2);
  max-width: calc(100% / var(--grid-cols));
  flex: 0 0 calc(100% / var(--grid-cols));
}

.grid-flex .grid__col--1of2 {
  --grid-cols: 2;
}

.grid-flex .grid__col--1of3 {
  --grid-cols: 3;
}

.grid-flex .grid__col--1of4 {
  --grid-cols: 4;
}

.grid-flex .grid__col--1of5 {
  --grid-cols: 5;
}

.grid-flex .grid__col--1of6 {
  --grid-cols: 6;
}

.grid {
  --grid-cols: 1;
  --grid-gutter: 2rem;
  display: grid;
  grid-template-columns: repeat(var(--grid-cols), 1fr);
  gap: var(--grid-gutter);
}

.grid--size-1of2 {
  --grid-cols: 2;
}

.grid--size-1of3 {
  --grid-cols: 3;
}

.grid--size-1of4 {
  --grid-cols: 4;
}

.grid--size-1of5 {
  --grid-cols: 5;
}

.grid--size-1of6 {
  --grid-cols: 6;
}

.map-popover {
  --padding: 2rem;
  position: absolute;
  top: var(--top, 0);
  left: var(--left, 0);
  width: fit-content;
  max-width: 45rem;
  border-radius: 12px;
  padding: var(--padding);
  background-color: var(--c-white);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
  opacity: 0;
  pointer-events: none;
  font-size: 1.6rem;
  transition: opacity linear 0.3s;
}

@media (max-width: 1023px) {
  .map-popover {
    --padding: 2.4rem;
    width: 30rem;
    max-width: calc(100% - 2rem);
    border-radius: 8px;
  }
}

@media (max-width: 767px) {
  .map-popover {
    --offset-block: 3.2rem;
    --offset-inline: 2.4rem;
    position: fixed;
    top: var(--offset-block);
    left: var(--offset-inline);
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: calc(100% - var(--offset-inline) * 2);
    height: 100%;
    max-height: calc(100% - var(--offset-block) * 2);
    overflow: hidden;
  }
}

.map-popover:before {
  content: "";
  position: absolute;
  top: 100%;
  left: var(--arrow-left);
  display: block;
  width: var(--padding);
  height: var(--padding);
  background-color: inherit;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

@media (max-width: 767px) {
  .map-popover:before {
    display: none;
  }
}

.map-popover .popover__inner {
  display: flex;
  align-items: flex-start;
  gap: var(--padding);
  max-height: 100%;
  font-size: 1em;
  overflow: hidden;
}

@media (max-width: 767px) {
  .map-popover .popover__inner {
    margin-block: auto;
    font-size: 1.3em;
  }
}

.map-popover .popover__body {
  overflow: auto;
  max-height: 100%;
}

.map-popover .popover__close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: var(--padding);
  height: var(--padding);
  border: none;
  border-radius: 4px;
  background: none;
  transition: background-color linear 0.3s;
}

@media (hover: hover) {
  .map-popover .popover__close:where(:hover, :focus-visible) {
    background-color: var(--c-gray-light);
  }
}

.map-popover .popover__close:before, .map-popover .popover__close:after {
  --rotate: 45deg;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70%;
  height: 1px;
  background-color: var(--c-black);
  transform: translate(-50%, -50%) rotate(var(--rotate));
}

.map-popover .popover__close:after {
  --rotate: -45deg;
}

.map-popover .popover__image {
  position: relative;
  flex-shrink: 0;
  width: 7.2rem;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
}

@media (max-width: 1023px) {
  .map-popover .popover__image {
    width: 4.8rem;
  }
}

.map-popover .popover__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.map-popover .popover__link {
  color: var(--c-red);
  font-weight: 600;
  text-decoration-color: transparent;
  transition: text-decoration-color linear 0.15s;
}

@media (hover: hover) {
  .map-popover .popover__link:where(:hover, :focus-visible) {
    text-decoration: underline;
  }
}

.map-popover.active {
  opacity: 1;
  pointer-events: all;
}

.map {
  --frame-color: var(--c-blue-dark);
  --inactive-country-color: var(--c-gray-light);
  --pending-country-color: var(--c-gray);
  --ready-country-color: var(--c-blue);
  --hover-color: var(--c-red);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-block: 5vh;
  height: 90vh;
}

.map svg {
  max-width: 100%;
  max-height: 100%;
}

.map .frame {
  fill: none;
  stroke: var(--frame-color);
}

.map .inactive {
  fill: var(--inactive-country-color);
}

.map .pending {
  fill: var(--pending-country-color);
}

.map .ready {
  fill: var(--ready-country-color);
  transition: fill 0.3s;
}

@media (hover: hover) {
  .map .interactive:where(:hover, :focus-visible) {
    fill: var(--hover-color);
  }
}

.map .interactive.active {
  fill: var(--hover-color);
}

.shell {
  --shell-max-width: 114rem;
  --shell-gutter: 1.5rem;
  max-width: calc(var(--shell-max-width) + var(--shell-gutter) * 2);
  padding-inline: var(--shell-gutter);
  margin-inline: auto;
  width: 100%;
}

.shell--fluid {
  max-width: none;
}

.wrapper {
  position: relative;
  min-height: 100svh;
}