body { margin: 0; } 
#container {
  width: 100%;
  height: 60px;
  position: relative;
}
#globeViz {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 10;
}
#header {
  margin-left: auto;
  margin-right: auto;
  height: 100%;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 20;
}
#title {
  margin-left: auto;
  margin-right: auto;
  width: 700px;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 180px;
  z-index: 30;
}
.center {
  font-family:'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;
  font-size: 48px;
  color: white;
}
.flag {
  margin-left: 10px;
  margin-right: 10px;
}
.flag, .center {
  display: inline-block;
}
/* The switch - the box around the slider */
.switch {
  --width: 100px;
  --height: calc(var(--width) / 3);

  position: relative;
  display: inline-block;
  width: var(--width);
  height: var(--height);
  box-shadow: 0px 1px 3px rgba(4, 4, 4, 0.3);
  border-radius: var(--height);
  cursor: pointer;
}

/* Hide default HTML checkbox */
.switch input {
  display: none;
}

/* Creating slider */
.switch .slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--height);
  background-color: #ccc;
  transition: all 0.4s ease-in-out;
}
.switch .slider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: calc(var(--height));
  height: calc(var(--height));
  border-radius: calc(var(--height) / 2);
  background-color: #fff;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease-in-out;
}

/* Adding slider effect */
.switch input:checked + .slider {
  background-color: #2196F3;
}
.switch input:checked + .slider::before {
  transform: translateX(calc(var(--width) - var(--height)));
}
/* Adding text in the toggle button */
.switch .labels {
  position: absolute;
  top: 8px;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 12px;
  font-family: sans-serif;
  transition: all 0.4s ease-in-out;
}

.switch .labels::after {
  content: attr(data-off);
  position: absolute;
  right: 5px;
  color: #4d4d4d;
  opacity: 1;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
  transition: all 0.4s ease-in-out;
}

.switch .labels::before {
  content: attr(data-on);
  position: absolute;
  left: 5px;
  color: #ffffff;
  opacity: 0;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.4);
  transition: all 0.4s ease-in-out;
}

.switch input:checked~.labels::after {
  opacity: 0;
}

.switch input:checked~.labels::before {
  opacity: 1;
}

.globe-info {
  font-family: "Gill Sans", "Gill Sans MT", "Trebuchet MS", sans-serif;
  font-size: 32px; 
  font-weight: bold;
}

#yisMarkerSvg tspan {
  fill: #fff;
}
#progressMarkerSvg tspan {
  fill: #888;
}
#kyivMarkerSvg tspan {
  fill: #666;
}