.init-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  transition: 0.2s ease-in all;
}

.nav-component .nav-container {
  opacity: 0;
  transition: 1s ease-in all;
}

.init .init-overlay {
  background-color: #000;
  opacity: 1;
  z-index: 1;
}
.init #main-menu-header {
  display: none;
}
.init #main-menu-header-mobile {
  display: none;
}
.init .nav-component #nav-btn {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -200%);
  z-index: 9;
  width: 400px;
  transition: none !important;
}
.init .nav-component #nav-btn::after {
  top: 0;
  right: 0;
  content: "";
  width: 20px;
  height: 20px;
  background-color: #ff4545;
  position: absolute;
  border-radius: 10px;
  opacity: 0;
}
.init .nav-component #nav-btn:hover::after {
  opacity: 1;
}
.init .nav-component .nav-container {
  opacity: 0;
}

.loading #main-menu-header {
  display: block;
  opacity: 0;
  z-index: 9;
  translate: all 1s ease-in;
}
.loading .init-overlay {
  background-color: #fff !important;
  opacity: 1;
  z-index: 9;
}
.loading #nav-btn {
  display: none;
}
.loading .nav-component .nav-container {
  opacity: 0;
}

body .init-overlay {
  opacity: 0;
}
body .nav-component .nav-container {
  opacity: 1;
}

.done #main-menu-header {
  opacity: 1;
}
.done .init-overlay {
  width: 0;
  height: 0;
}/*# sourceMappingURL=loader.css.map */