* {
  box-sizing: border-box;
}
body {
  font-family: HSESans;
}
#interactiveMap {
  width: auto;
  height: 100%;
}
.map-marker {
  display: block;
  --markerWidth: 10rem;
  padding: 0.25rem;
  border-radius: 1rem;
  min-width: var(--markerWidth);
  min-height: 0.5rem;
  border: 0.125rem solid black;
  background-color: #0F2D69;
  color: white;
  position: absolute;
  left: calc(var(--markerWidth) / -2);
  bottom: 0;
  cursor: help;
  transition: background-color 0.25s, color 0.25s;
  text-align: center;
  font-size: 16px;
}
.map-flag {
  display: inline-block;
  margin-left: 0.5rem;
  margin-top: 0.5rem;
  width: 1rem;
  height: 1rem;
  background-image: url('flags/flag_russia.svg');
  background-repeat: no-repeat;
  background-size: 100% 100%;
  border: 2px solid white;
  border-radius: 50%;
  float: left;
}
.map-marker-name {
  text-align: left;
}
.map-marker:hover {
  background-color: #CDDCF0;
  color: #374B9B;
  transition: background-color color 0.25s;
}
.map-description {
  display: none;
  position: absolute;
  left: -100%;
  top: calc(100%);
  width: 300%;
  min-height: 2rem;
  background-color: #374B9B;
  border-radius: 0.5rem;
  color: white;
  padding: 1rem;
}
@font-face {
  font-family: "HSESans";
  src: url("HSESans-Regular.otf");
  font-weight: normal;
}

@font-face {
  font-family: "HSESans";
  src: url("HSESans-Bold.otf");
  font-weight: bold;
}
