#map {
  height: 100%;
  position: absolute;
  overflow: hidden;
  width: 100vw;
}

/** switch **/
#switch-wrapper {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  position: absolute;
  left: 0px;
  bottom: 0px;
  z-index: 9;
  padding: 10px 10px 10px 20px;
  border: #d0ebf4 3px solid;
  border-radius: 30px;
  background-color: white;
  margin-left: 40px;
  margin-bottom: 20px;
  font-size: 12px;
  display: grid;
  grid-template-columns: auto 30px;
}
#switch-wrapper.collapsed {
  display: block;
  grid-template-columns: none;
  padding: 6px 10px 10px 10px;
  width: 55px;
  height: 50px;
  cursor: pointer;
}
#switch-wrapper.collapsed .icon {
  display: block;
  font-size: 30px;
}
#switch-wrapper.collapsed #switch-group,
#switch-wrapper.collapsed #switch-sidebar {
  display: none;
}
#switch-wrapper .icon {
  display: none;
}
#switch-wrapper #switch-group,
#switch-wrapper #switch-sidebar {
  display: block;
}
@media (max-width: 782px) {
  #switch-wrapper {
    margin-left: 20px;
  }
}

#switch-sidebar {
  border-left: #d0ebf4 2px solid;
  padding-left: 10px;
  padding-right: 5px;
  width: 30px;
}
#switch-sidebar .zoom {
  font-size: 20px;
  display: flex;
  flex-direction: column;
  z-index: 3;
}
#switch-sidebar .zoom i {
  cursor: pointer;
  margin-bottom: 10px;
}
#switch-sidebar .switch-close {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  display: block;
  font-size: 20px;
  position: absolute;
  bottom: 0;
  right: 15px;
  cursor: pointer;
  z-index: 3;
}

#switch-group {
  display: flex;
  flex-wrap: wrap;
  width: 160px;
  padding-right: 10px;
}

@media (max-width: 600px) {
  #switch-group {
    font-size: 11px;
  }
}
.switch {
  --line: #505162;
  --dot: #f7f8ff;
  --circle: #9ea0be;
  --duration: 0.3s;
  --text: #9ea0be;
  cursor: pointer;
}
.switch span.text {
  pointer-events: none;
  width: max-content;
}
.switch input {
  display: none;
}
.switch input + div {
  position: relative;
  display: grid;
  grid-template-columns: 30px auto;
  justify-items: start;
  align-items: start;
  width: 100%;
}
.switch input + div:before, .switch input + div:after {
  --s: 0.6;
  content: "";
  position: absolute;
  height: 4px;
  top: 9px;
  width: 15px;
  background: var(--line);
  transform: scaleX(var(--s));
  transition: transform var(--duration) ease;
}
.switch input + div:before {
  --s: 0;
  left: 0;
  transform-origin: 0 50%;
  border-radius: 2px 0 0 2px;
}
.switch input + div:after {
  left: 5px;
  transform-origin: 100% 50%;
  border-radius: 0 2px 2px 0;
}
.switch input + div span.toggle {
  padding-left: 56px;
  line-height: 24px;
  color: var(--text);
}
.switch input + div span.toggle:before {
  --x: 0;
  --b: var(--circle);
  --s: 2px;
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 var(--s) var(--b);
  transform: translateX(var(--x));
  transition: box-shadow var(--duration) ease, transform var(--duration) ease;
}
.switch input + div span.toggle:not(:empty) {
  padding-left: 64px;
}
.switch input:checked + div:before {
  --s: 1;
}
.switch input:checked + div:after {
  --s: 0;
}
.switch input:checked + div span:before {
  --x: 8px;
  --s: 12px;
}
.switch input:checked + div[data-color="#D0EBF4"]:before {
  background: white;
}
.switch input:checked + div[data-color="#D0EBF4"] span:before {
  --b: #d0ebf4;
}
.switch input:checked + div[data-color="#A14B4B"]:before {
  background: #c88a8a;
}
.switch input:checked + div[data-color="#A14B4B"] span:before {
  --b: #a14b4b;
}
.switch input:checked + div[data-color="#527912"]:before {
  background: #8ed21f;
}
.switch input:checked + div[data-color="#527912"] span:before {
  --b: #527912;
}
.switch input:checked + div[data-color="#FDB90A"]:before {
  background: #fed66f;
}
.switch input:checked + div[data-color="#FDB90A"] span:before {
  --b: #fdb90a;
}
.switch input:checked + div[data-color="#554A98"]:before {
  background: #8d85c3;
}
.switch input:checked + div[data-color="#554A98"] span:before {
  --b: #554a98;
}
.switch input:checked + div[data-color="#4B81A1"]:before {
  background: #8ab1c8;
}
.switch input:checked + div[data-color="#4B81A1"] span:before {
  --b: #4b81a1;
}
.switch input:checked + div[data-color="#F36B1C"]:before {
  background: #f8aa7d;
}
.switch input:checked + div[data-color="#F36B1C"] span:before {
  --b: #f36b1c;
}
.switch input:checked + div[data-color="#163752"]:before {
  background: #2c6da2;
}
.switch input:checked + div[data-color="#163752"] span:before {
  --b: #163752;
}
.switch input:checked + div[data-color="#EDF7FB"]:before {
  background: white;
}
.switch input:checked + div[data-color="#EDF7FB"] span:before {
  --b: #edf7fb;
}

circle.chapter {
  --radius: 1.6;
  --radius-large: 3.2;
}
@media (max-width: 800px) {
  circle.chapter {
    --radius: 3;
    --radius-large: 6;
  }
}
@media (max-width: 500px) {
  circle.chapter {
    --radius: 4;
    --radius-large: 8;
  }
}

circle.startup {
  --radius: 0.8;
  --radius-large: 1.6;
}
@media (max-width: 800px) {
  circle.startup {
    --radius: 1.5;
    --radius-large: 3;
  }
}
@media (max-width: 500px) {
  circle.startup {
    --radius: 2;
    --radius-large: 4;
  }
}

#map-info {
  z-index: 10;
}

#map-info-two {
  z-index: 12;
}

.map-info-box {
  color: white;
  background-color: #163752;
  font-size: 12px;
  padding: 0 2px;
  --box-shadow-color: #fdb90a;
}
.map-info-box[selected="1"] {
  padding: 4px;
}

.map-info-line {
  stroke: #163752;
  stroke-width: 0.1;
  fill: none;
}

.bfe-map-meta-row {
  margin: 5%;
  display: grid;
  grid-template-columns: 1fr 3fr;
  align-items: center;
}

.bfe-map-column {
  margin: 0% 7%;
}

.bfe-map-name {
  font-size: 1.6em;
  font-weight: bold;
}

.bfe-map-logo {
  width: 100%;
  min-width: 60px;
}

.bfe-map-website {
  color: #f2fdff;
  font-size: 0.9em;
}

.bfe-map-bucket {
  text-transform: uppercase;
  font-size: 0.9em;
}

.bfe-map-info-row {
  margin: 5%;
  font-size: 1.1em;
}

.bfe-map-website {
  text-decoration: underline;
}

@media (max-width: 500px) {
  .bfe-map-name {
    font-size: 1em;
  }

  .bfe-map-location,
.bfe-map-bucket {
    font-size: 0.8em;
  }

  .bfe-map-website {
    font-size: 0.7em;
  }

  .bfe-map-info-row {
    font-size: 0.9em;
  }
}
.bfe-map-sdgs-row {
  margin: 5%;
  display: flex;
  flex-wrap: wrap;
}
.bfe-map-sdgs-row > .bfe-map-sdg-img-wrapper {
  width: 16%;
  margin: 1%;
}
.bfe-map-sdgs-row > .bfe-map-sdg-img-wrapper > img {
  object-fit: cover;
  cursor: pointer;
}
.bfe-map-sdgs-row > .bfe-map-sdg-img-wrapper > img:hover {
  opacity: 0.7;
}

.bfe-map-box-close-btn {
  color: #fdb90a;
  font-size: 2em;
  position: absolute;
  right: 15px;
  top: 0;
  font-weight: bolder;
}

#bfemapmodal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 1000;
  /* Sit on top */
  padding-top: 100px;
  /* Location of the box */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: black;
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.9);
  /* Black w/ opacity */
}
#bfemapmodal .bfemapmodal-close {
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}
#bfemapmodal .bfemapmodal-close:hover,
#bfemapmodal .bfemapmodal-close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}
#bfemapmodal .bfemapmodal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}
@media only screen and (max-width: 700px) {
  #bfemapmodal .bfemapmodal-content {
    width: 100%;
  }
}
#bfemapmodal #bfemapmodal-caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}
#bfemapmodal #bfemapmodal-caption a {
  color: #ccc;
  text-decoration: underline;
}
#bfemapmodal #bfemapmodal-caption a:hover {
  color: #fdb90a;
}

.bfemapmodal-content,
#bfemapmodal {
  animation-name: bfemodalzoom;
  animation-duration: 0.6s;
}

@keyframes bfemodalzoom {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
/* 100% Image Width on Smaller Screens */
#map-background {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: white;
}

@keyframes move-background {
  from {
    -webkit-transform: translate3d(0px, 0px, 0px);
  }
  to {
    -webkit-transform: translate3d(1000px, 0px, 0px);
  }
}
@-webkit-keyframes move-background {
  from {
    -webkit-transform: translate3d(0px, 0px, 0px);
  }
  to {
    -webkit-transform: translate3d(1000px, 0px, 0px);
  }
}
@-moz-keyframes move-background {
  from {
    -webkit-transform: translate3d(0px, 0px, 0px);
  }
  to {
    -webkit-transform: translate3d(1000px, 0px, 0px);
  }
}
@-webkit-keyframes move-background {
  from {
    -webkit-transform: translate3d(0px, 0px, 0px);
  }
  to {
    -webkit-transform: translate3d(1000px, 0px, 0px);
  }
}
.map-stars {
  filter: invert(1) invert(89%) sepia(20%) saturate(220%) hue-rotate(148deg) brightness(90%) contrast(110%);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  z-index: 0;
}
.map-stars .map-stars-flip {
  -webkit-transform: scaleY(-1);
  transform: scaleY(-1);
}

.map-twinkling {
  width: 10000px;
  height: 100%;
  filter: invert(1);
  background-size: 1000px 1000px;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
  -moz-animation: move-background 70s linear infinite;
  -ms-animation: move-background 70s linear infinite;
  -o-animation: move-background 70s linear infinite;
  -webkit-animation: move-background 70s linear infinite;
  animation: move-background 70s linear infinite;
}

#landing .qubely-container {
  margin: 0;
  pointer-events: none;
}
@media (max-width: 782px) {
  #landing .qubely-container .wp-block-spacer {
    height: 3vh !important;
  }
}
#landing .qubely-container .qubely-heading-container {
  font-size: 14px !important;
  padding-left: 30px;
}
@media (max-width: 1200px) {
  #landing .qubely-container .qubely-heading-container {
    font-size: 11px !important;
  }
}
@media (max-width: 800px) {
  #landing .qubely-container .qubely-heading-container {
    font-size: 8px !important;
  }
}
@media (max-width: 782px) {
  #landing .qubely-container .qubely-heading-container {
    padding-left: 10px;
  }
}
@media (max-width: 500px) {
  #landing .qubely-container .qubely-heading-container {
    font-size: 5px !important;
  }
}
#landing .qubely-container .qubely-heading-container h1 {
  line-height: 120%;
}
#landing .qubely-container .qubely-heading-container h1 span {
  color: #fdb90a;
}

/*# sourceMappingURL=map.css.map */
