.ci-map-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ci-map__countries-list {
  display: flex;
  justify-content: flex-end;
}

.ci-map__countries-list ul {
  position: absolute;
  list-style: none;
}

.ci-map__countries-list ul li {
  width: 90px;
}

.ci-map__countries-list span {
  cursor: pointer;
}

.ci-map__countries-list-active-country {
  font-weight: 700;
}

.ci-map__countries-map {
  display: none;
}

.ci-map__countries-box {
  position: relative;
  bottom: -290px;
  width: 75%;
  min-width: 400px;
  height: 200px;
  align-self: center;
  margin-bottom: -40px;
  background: #ffffffcc;
  box-shadow: 1px 4px 7px 0px rgba(0,0,0,0.21);
}

.ci-map__countries-box h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 300;
  text-transform: uppercase;
}


.ci-map__countries-box > div {
  position: absolute;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 0 auto;
  padding: 15px 30px 30px;
  opacity: 0;
}

.ci-map__countries-box-active-box {
  opacity: 1 !important;
  transition: opacity 2s ease;
}

.ci-map__countries-box h3 {
  text-align: center;
}

.ci-map__countries-box__info-wrap {
  display: flex;
  gap: 10px;
}

.ci-map__countries-box__info-wrap img {
  width: 20px;
}

.ci-map__countries-box__info-wrap p {
  margin-bottom: 0;
  color: #000000;
  text-transform: none;
  font-weight: 300;
}

.ci-map-wrap .location-icon-wrap {
  position: absolute;
}
#switzerland-map-location {
  bottom: -100px;
  right: 380px;
}
#slovenia-map-location {
  bottom: -110px;
  right: 270px;
}
#serbia-map-location {
  bottom: -125px;
  right: 190px;
}

.ci-map-wrap .location-icon-wrap img {
  transition: filter 1s ease;
}

.ci-map-active-location-icon {
  filter: invert(0%) sepia(93%) saturate(27%) hue-rotate(97deg) brightness(0) contrast(106%);
  transition: filter 1s ease;
}