@font-face {
  font-family: Aller;
  src: url(../../assets/fonts/Aller/Aller_Std_Rg.ttf);
  font-weight: 400;
  font-style: normal;
}

* {
  font-family: Segoe UI,Tahoma,Geneva,Verdana,"sans-serif",Aller;
  padding: 0;
  margin: 0;
  outline: none;
  box-sizing: inherit;
}

a {
  color: #25c8fd;
  text-decoration: underline;
}

html {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

body {
  flex-wrap: nowrap;
  flex-direction: column;
  padding: 0;
  margin: 0;
  height: 100dvh;
}

body,
body .header {
  display: flex;
  width: 100%;
}

body .header {
  flex-direction: column;
  flex: 0 0 auto;
  height: 120px;
  position: relative;
  background: #f7f7f7;
}

body .header-top {
  display: flex;
  align-items: stretch;
  flex: 0 0 auto;
  height: 20%;
  width: 100%;
}

body .header-top span {
  display: inline-block;
  flex: 1;
  max-width: 100%;
}

body .header-inside {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  flex: 0 0 auto;
  height: 80%;
  width: 100%;
}

body .header-logo {
  position: relative;
  width: 25%;
  height: 100%;
  padding: 10px 25px 10px 50px;
}

body .header-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
}

body .header-logo:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 70%;
  background: #000;
}

body .header-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  padding: 10px 50px 10px 25px;
}

body .header-buttons img {
  display: block;
  z-index: 1;
  cursor: pointer;
}

body .header-buttons-search {
  display: flex;
  align-items: center;
  gap: 10px;
}

body .header-buttons-search input {
  color: #000;
  background: #fff;
  border: 1px solid #ccc;
  padding: 0;
  width: 36px;
  height: 36px;
  border-radius: 200px;
  margin-left: -46px;
  opacity: 0;
  transition: all .3s ease;
}

body .header-buttons-search.search-enabled input {
  width: 230px;
  opacity: 1;
  padding: 0 15px 0 46px;
}

body .container-holder {
  position: relative;
  overflow: auto;
  width: 100%;
  height: 100%;
  flex: 1;
}

body .container-holder #container {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  overflow: auto;
  height: 100%;
  width: 100%;
  flex: 1;
  min-width: 1200px;
  min-height: 800px;
}

body .node-popup {
  font-family: Aller;
}

body .popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 800px;
  max-width: calc(100% - 30px);
  max-height: calc(100dvh - 30px);
  background: #fff;
  border: 2px solid #000;
  box-shadow: 0 4px 8px rgba(0,0,0,.1);
  border-radius: 15px;
  overflow: hidden auto;
  z-index: 2;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

body .popup::-webkit-scrollbar {
  display: none;
}

body .popup-info-banner,
body .popup-node-banner {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}

body .popup-info-banner img,
body .popup-node-banner img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

body .popup-info-content,
body .popup-node-content {
  padding: 25px;
}

body .popup-info-content-header,
body .popup-node-content-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

body .popup-info-content-header-title,
body .popup-node-content-header-title {
  font-size: 1.2em;
  margin-bottom: 0;
  font-weight: bolder;
}

body .popup-info-content-header-close,
body .popup-node-content-header-close {
  display: flex;
}

body .popup-info-content-header-close .close-button,
body .popup-node-content-header-close .close-button {
  width: 32px;
  cursor: pointer;
}

body .popup-info-content-description,
body .popup-node-content-description {
  font-size: 1em;
  margin-bottom: 16px;
}

body .popup-info-content {
  padding: 40px;
}

body .popup-info-content-description .line {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  position: relative;
  width: 100%;
  min-height: 30px;
}

body .popup-info-content-description .line:before {
  content: "";
  display: block;
  position: absolute;
  left: -40px;
  width: 30px;
  height: 100%;
}

body .popup-info-content-description .line-black:before {
  background: #000;
}

body .popup-info-content-description .line-pink:before {
  background: #fecad4;
}

body .popup-info-content-description .line-turquoise:before {
  background: #25c8fd;
}

body .popup-info-content-description .line-red:before {
  background: #f63940;
}

body .popup-info-content-description .line-blue:before {
  background: #3c33b2;
}

body .popup-info-content-description .line-gold:before {
  background: #fbd32a;
}

@media (max-width:992px) {
  body .header-buttons,
  body .header-logo {
    padding: 10px 15px;
  }

  body .header-logo {
    margin-right: auto;
    width: auto;
    max-width: 40%;
  }

  body .header-logo:after {
    content: unset;
  }
}

@media (max-width:575px) {
  body .header {
    height: auto;
  }

  body .header-top {
    height: 22px;
  }

  body .header-inside {
    height: auto;
    width: 100%;
  }

  body .header-buttons,
  body .header-logo {
    padding: 10px 15px;
  }

  body .header-logo {
    height: auto;
    width: 200px;
    max-width: 100%;
    padding-bottom: 0;
  }

  body .header-logo img {
    width: 100%;
    height: auto;
  }

  body .header-buttons {
    width: 100%;
  }
}