#map_section {
  font-size: 16px;
  --red: #d52c2c;
  --blue: #1f87c9;
  --black-2: #292929;
  --white: white;
  --text-content: var(--black-2);
  --text-content-invert: var(--white);
  --surface-primary-1: var(--red);
  --surface-primary-2: var(--blue);
  --border-link: var(--red);
  --bp-xs: 0;
  --bp-sm: 576px;
  --bp-md: 768px;
  --bp-lg: 992px;
  --bp-xl: 1200px;
  --bp-xxl: 1400px;
  background-color: #89b8c3;
  background: url("../img/maps/185513444.jpg") no-repeat center;
  background-size: cover;
  animation: none;
}
@media screen and (min-width: 1200px) {
  #map_section {
    background-size: 100%;
    animation: bg_anime 120s infinite;
  }
}
#map_section #map {
  overflow: hidden;
  aspect-ratio: 1/1;
}
@media screen and (min-width: 1200px) {
  #map_section #map {
    aspect-ratio: 21/9;
  }
}
#map_section #map #background {
  background: url(assets/img/test/world-2.svg) no-repeat;
  filter: invert(1) drop-shadow(0 0 10px rgba(0, 39, 34, 0.6)) opacity(0.85);
  background-size: var(--zoom-z, 90%) !important;
  background-position: var(--pos-x, center) var(--pos-y, center) !important;
}
@media screen and (min-width: 1200px) {
  #map_section #map #background {
    background-size: var(--zoom-z, 60%) !important;
  }
}
#map_section .mark {
  --mark-start-delay: 1s;
  background-color: var(--surface-primary-1);
  border: 2px solid white;
  cursor: pointer;
  transition: background 0.5s;
  z-index: 100;
  opacity: 0;
  animation: point_put 0.5s var(--mark-start-delay) linear 1;
  animation-fill-mode: forwards;
}
#map_section .mark::before {
  border-radius: inherit;
  transform: scale(1);
  opacity: 0.9;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: inherit;
  animation: point_anime 1s 1s linear infinite;
}
#map_section .mark[data-organisation-no]::after {
  content: attr(data-organisation-no);
  display: block;
  color: #ffffff;
  position: absolute;
  inset: 50% 0 auto 0;
  width: 100%;
  text-align: center;
  height: -moz-fit-content;
  height: fit-content;
  transform: translateY(-50%);
  line-height: 1;
  font-size: 0.9rem;
}
#map_section .mark:hover {
  background-color: var(--surface-primary-2);
  z-index: 300;
}
@keyframes point_put {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes point_anime {
  from {
    transform: inherit;
    opacity: inherit;
  }
  to {
    transform: scale(3);
    opacity: 0;
  }
}
@keyframes bg_anime {
  0% {
    background-size: 100% auto;
  }
  50% {
    background-size: 150% auto;
  }
  100% {
    background-size: 100% auto;
  }
}
#map_section .map_info {
  position: absolute;
  inset: auto 0 10% 0;
}
#map_section .map_info h2 {
  color: #ffffff;
  font-family: Poppins;
  font-size: clamp(1rem, 4vw, 2.5rem);
  text-shadow: 0 0 10px #013d74;
}
#map_section .map_info .it_solution {
  margin-right: 1rem;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.3);
}
#map_section .map_info .it_solution:hover {
  border-bottom: 1px solid var(--border-link);
}
#map_section #location_list {
  position: relative;
  inset: auto;
  background-color: rgba(255, 255, 255, 0);
  width: 100%;
  border-radius: 0.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.6);
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  overflow: auto;
}
@media screen and (min-width: 1200px) {
  #map_section #location_list {
    position: absolute;
    inset: 2rem 2rem 2rem auto;
    background-color: rgba(255, 255, 255, 0);
    width: 320px;
  }
}
#map_section #location_list ul {
  list-style-type: none;
  margin: 0;
  padding: 1rem;
}
#map_section #location_list ul li {
  background-color: white;
  border-radius: 1.5rem;
  margin-bottom: 1rem;
  padding: 0.66rem 1rem;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 0 10px rgba(0, 39, 34, 0.2);
}
#map_section #location_list ul li:hover, #map_section #location_list ul li.active {
  background-color: rgba(18, 96, 159, 0.8);
  color: #ffffff;
}
#map_section #location_list ul li .flag {
  display: inline-block;
  height: 1.2em;
  border-radius: 2rem;
  background-color: whitesmoke;
  margin-right: 0.5rem;
  aspect-ratio: 1;
  vertical-align: middle;
}
#map_section #location_list ul li ul.cities-list {
  display: none;
  padding: 1rem 0 0 0;
}
#map_section #location_list ul li ul.cities-list li {
  color: var(--text-content);
}
#map_section #location_list ul li ul.cities-list li:hover {
  color: var(--text-content-invert);
}
#map_section #location_list::-webkit-scrollbar-thumb {
  background: transparent;
}
#map_section #location_list::-webkit-scrollbar-track {
  background: transparent;
}
#map_section #location_list:hover::-webkit-scrollbar-thumb {
  background: blue;
}
#map_section #location_list:hover::-webkit-scrollbar-track {
  background: transparent;
}
#map_section .modal {
  z-index: 500;
  background: #ffffff;
  width: auto;
  max-width: auto;
  height: auto;
  inset: 1rem;
  position: fixed;
  box-shadow: 0 0 10px rgba(0, 39, 34, 0.2);
  padding: 2rem;
  margin: auto;
  border-radius: 1.5rem;
}
@media screen and (min-width: 1200px) {
  #map_section .modal {
    width: 100%;
    max-width: 320px;
    inset: 0 auto 0 0;
    position: absolute;
    box-shadow: 0 0 10px rgba(0, 39, 34, 0.2);
    margin: 0;
    border-radius: 0;
  }
}
#map_section .modal ul {
  font-size: 1rem;
  margin: 0;
  padding: 0 1.5rem;
  font-family: Poppins;
  font-weight: 300;
}
#map_section .modal img {
  border-radius: 0.5rem;
}/*# sourceMappingURL=map.css.map */