.js_reg_auth {
  display: none !important;
}

.header ul,
.sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.header a,
.sidebar a {
  color: inherit;
  text-decoration: none;
  text-underline-offset: 6px;
}
.header a:hover,
.sidebar a:hover {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgb(214, 19, 23);
  text-decoration-thickness: 2px;
}
.header a:focus,
.sidebar a:focus {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgb(214, 19, 23);
  text-decoration-thickness: 2px;
}

.display-none {
  display: none !important;
}

.header-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  color: #0178C0;
  font-size: 1rem;
  margin-top: 25px;
}
.header__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 1em;
  background-color: #fff;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.25));
  border-radius: 6px;
}
.header__list-1 {
  display: flex;
  gap: 3.5em;
}
.header__list-2 {
  display: flex;
  gap: 1.5em;
}
.header__list-2 .svg-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header__list-2 svg {
  cursor: pointer;
}
.header__list-2 svg:hover {
  fill: rgb(214, 19, 23);
  stroke: rgb(214, 19, 23);
}
.header__item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header__link {
  font-size: 1.2em;
  font-weight: 700;
  line-height: 1.2;
}
.sidebar {
  position: sticky;
  z-index: 999;
  top: 62px;
  width: 100%;
  max-height: calc(100vh - 62px - 25px);
  overflow-y: auto;
  -ms-overflow-y: auto;
  color: #0178C0;
  font-size: 1rem;
}
.sidebar__nav {
  padding: 0 2em 2em 2em;
  background-color: #fff;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.25));
  border-radius: 0 0 6px 6px;
  margin-bottom: 50px;
}
.sidebar__list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5em;
}
.sidebar__item {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
}
.sidebar__link {
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.2;
}

.sidebar.show {
  animation: slideIn 1.5s ease forwards;
}

.sidebar.show .sidebar__item {
  animation: slideIn 1.5s ease forwards;
}
.sidebar.show .sidebar__item:nth-child(1) {
  animation-delay: 0.1s;
}
.sidebar.show .sidebar__item:nth-child(2) {
  animation-delay: 0.2s;
}
.sidebar.show .sidebar__item:nth-child(3) {
  animation-delay: 0.3s;
}
.sidebar.show .sidebar__item:nth-child(4) {
  animation-delay: 0.4s;
}
.sidebar.show .sidebar__item:nth-child(5) {
  animation-delay: 0.5s;
}
.sidebar.show .sidebar__item:nth-child(n+6) {
  animation-delay: 0.6s;
}

.sidebar.hide .sidebar__item {
  animation: slideOut 1.5s ease forwards;
}
.sidebar.hide .sidebar__item:nth-child(1) {
  animation-delay: 0.5s;
}
.sidebar.hide .sidebar__item:nth-child(2) {
  animation-delay: 0.4s;
}
.sidebar.hide .sidebar__item:nth-child(3) {
  animation-delay: 0.3s;
}
.sidebar.hide .sidebar__item:nth-child(4) {
  animation-delay: 0.2s;
}
.sidebar.hide .sidebar__item:nth-child(5) {
  animation-delay: 0.1s;
}
.sidebar.hide .sidebar__item:nth-child(n+6) {
  animation-delay: 0s;
}

.sidebar.hide {
  animation: slideOut 2s ease forwards;
}

@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideOut {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}
@media screen and (min-width: 1540px) {
  .container {
    max-width: 1440px;
  }
}
@media screen and (max-width: 991px) {
  .header, .sidebar {
    font-size: 12px;
  }
  .header__nav {
    padding-block: 0.5em;
  }
}

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