.js_reg_auth {
  display: none !important;
}

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

.header a[class],
.sidebar a[class] {
  cursor: pointer;
  color: #0a0a0a;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 24px;
  background-color: #FEF6DF;
  transition: all 0.3s ease;
}
.header a[class]:hover,
.sidebar a[class]:hover {
  color: #fff;
  background-color: #009B52;
}
.header a[class]:focus,
.sidebar a[class]:focus {
  color: #fff;
  background-color: #009B52;
}

.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: #0a0a0a;
  font-size: 1rem;
  margin-top: 20px;
}
.header__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 0.5em 2em;
  background: url("/projects/alarm-control/assets/img/header-new.png") center/100% 100% no-repeat;
  filter: drop-shadow(0 6px 10px rgba(35, 35, 35, 0.6));
  border-radius: 60px;
}
.header__nav img {
  max-width: 100px;
}
.header__list-1 {
  display: flex;
  gap: 2em;
}
.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: #009B52;
  stroke: #009B52;
}
.header__item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header__link {
  font-size: 1em;
  font-weight: 600;
  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: #FEF6DF;
  font-size: 1rem;
}
.sidebar__nav {
  padding: 0 2em 2em 2em;
  background-color: #fff;
  filter: drop-shadow(0 6px 10px rgba(35, 35, 35, 0.6));
  border-radius: 0 0 8px 8px;
  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;
  }
}
@media screen and (max-width: 575px) {
  .header__link {
    font-size: 0.8em;
  }
  .header a[class] {
    padding: 6px 10px;
  }
  .header__list-1 {
    gap: 0.5em;
  }
  .header__nav {
    gap: 8px;
  }
  .header__nav img {
    max-width: 70px;
  }
}

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