.site-container {
  width: 100%;
  height: 100dvh;
  position: relative;
  top: 0;
  left: 0;
  line-height: 1.3;
}

.header {
  position: absolute;
  top: 0;
  height: 100%;
  max-height: 100vh;
  overflow-y: auto;
  transition: left 0.4s ease-in-out;
  -webkit-transition: left 0.4s ease-in-out;
  -moz-transition: left 0.4s ease-in-out;
  -ms-transition: left 0.4s ease-in-out;
  -o-transition: left 0.4s ease-in-out;
  z-index: 1;
}
.header .full-view {
  height: 100%;
  width: 100%;
  background: var(--bg-body);
  display: flex;
  flex-direction: column;
}
.header .content-header {
  display: flex;
  flex: 1;
  padding: 0 20px;
  flex-direction: column;
  justify-content: space-between;
}

.header::-webkit-scrollbar {
  background-color: var(--bg-scroll);
  width: 5px;
  height: 5px;
}

/* Styling the scrollbar track */
.header::-webkit-scrollbar-track {
  background-color: transparent;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

/* Styling the scrollbar thumb */
.header::-webkit-scrollbar-thumb {
  cursor: pointer;
  background-color: var(--bg-scroll-thumb);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border: 2px solid var(--bg-scroll-thumb);
}
.header::-webkit-scrollbar-thumb:hover {
  background-color: var(--bg-scroll-thumb-hover);
}

@media only screen and (max-width: 991px) {
  .header {
    height: calc(100% - 75px);
  }
  .header .content-header {
    padding: 0 10px;
  }
}
@media (max-width: 350px) {
  .header {
    height: calc(100% - 60px);
  }
}

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