#app {
  overflow: hidden;
  width: 100%;
  height: 100vh;
}

.semantic-map-container {
  width: 100%;
  height: 100%;
  position: relative;
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.refresh-link {
  position: fixed;
  top: 30px;
  left: 5px;
  width: 24px;
  height: 24px;
  z-index: 9999;
  cursor: pointer; 
  svg {
    width: 100%;
  }
}

nav {
  position: fixed;
}

nav ul {
  display: flex;
  flex-wrap: wrap;
}

nav ul li {
  display: flex;
  list-style: none;
}

nav ul li div {
  cursor: pointer;
}

nav ul li div img {
  display: inline-block;
  width: 40px;
  height: 40px;
  max-width: 40px;
  max-height: 40px;
  margin-right: 6px;
}

nav ul li span {
  margin-top: 8px;
  margin-right: 6px;
  color: red;
}

.maskImage {
  cursor: pointer;
  transition: filter 0.2s ease;
}
.maskImage:hover {
  filter: none !important;
}
.maskImage.svg-only:hover {
  filter: url(#redFilter) !important;
}

aside {
  width: 25%;
  position: absolute;
  margin: 24px;
  background-color: white;
}

aside p {
  font-family: "GothamNarrowMedium", "Barlow Condensed", sans-serif;
  line-height: 180%;
  font-size: 14px;
  width: 80%;
}

aside .img-home {
  width: 100px;
}

aside .img-item {
  position: absolute;
  filter: invert(100%);
  width: 80px;
  top: 25px;
  left: 10px;
}

aside .container {
  border-left: 2px solid red;
  padding: 2px 8px;
  margin-top: -4px;
  height: 100vh;
  overflow: scroll;
}

aside .arrow-down {
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-top: 30px solid rgb(75, 75, 75);
  z-index: 100;
  cursor: pointer;
}

.splide__slide img {
  max-width: 100%;
  height: 100%;
  margin: auto;
}

.splide__arrow {
  background: transparent !important;
  opacity: 1;
  width: 10em;

  svg {
    fill: red;
    height: 10em;
    width: 10em;
  }
}
