.app-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 45px;
  background-color: #f8f9fa;
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.1);
}
@media (max-width: 1024px) {
  .app-header {
    height: 45px;
  }
}
.app-header__divider {
  flex: 1;
}
.app-header-container {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}
.app-header-expand {
  padding-left: 2rem;
  padding-right: 2rem;
}
@media (max-width: 1024px) {
  .app-header-expand {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.app-header-logo {
  position: relative;
  display: block;
  max-height: 45px;
  color: #212529;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 4px;
  white-space: nowrap;
  text-decoration: none;
  background: linear-gradient(45deg, #247bff 0%, #ff3a4e 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.app-header-logo.app-header-logo-text::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(45deg, #247bff 0%, #ff3a4e 100%);
  transform: scaleX(0);
  transition: 0.2s ease;
}
.app-header-logo.app-header-logo-text:hover::after {
  transform: scaleX(1);
}
.app-header-logo > img, .app-header-logo > svg {
  display: block;
  width: auto;
  height: 2.875rem;
  fill: black;
}
@media (max-width: 1024px) {
  .app-header-logo > img, .app-header-logo > svg {
    height: 2.5rem;
  }
}
.app-header-logo > ion-icon {
  color: black;
  font-size: 6rem;
  height: 2.25rem;
}
.app-header-logo > img.app-header-logo__img--dark {
  display: none;
}
.app-header-center__logo .app-header-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.app-header-center__logo .app-header-nav {
  margin-left: 0;
}
.app-header-center__menu .app-header-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin-left: 0;
}
.app-header__signup {
  background: linear-gradient(45deg, #247bff 0%, #ff3a4e 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #247bff;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s ease;
}
.app-header__signup:hover {
  color: #206fe6;
}
.app-header__signup:active {
  color: #1d62cc;
}
.app-header__login {
  cursor: pointer;
  display: flex;
  align-items: center;
  height: 30px;
  padding: 0 0.9rem;
  margin-right: 1rem;
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  background-color: #247bff;
  background-image: linear-gradient(45deg, #247bff 0%, #ff3a4e 100%);
  border-radius: 8px;
  transition: 0.2s ease;
}
.app-header__login:hover {
  background-color: #206fe6;
}
.app-header__login:active {
  background-color: #1d62cc;
}
@media (max-width: 1024px) {
  .app-header__login {
    height: 32px;
    padding: 0 0.75rem;
    margin-right: 0.75rem;
    font-size: 0.75rem;
  }
}
@media (max-width: 1024px) {
  .app-header__signup, .app-header__login {
    display: none;
  }
}
.app-header-item {
  cursor: pointer;
  display: block;
  padding: 0.5rem;
  margin-right: 0.5rem;
  color: #495057;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  outline: none;
  background-color: transparent;
  transition: 0.2s ease;
}
.app-header-item ion-icon {
  font-size: 1.25rem;
  --ionicon-stroke-width: 2.5rem;
}
@media (max-width: 1024px) {
  .app-header-item {
    font-size: 0.875rem;
    padding: 0.25rem;
    margin-right: 0.25rem;
  }
}
.app-header-item:hover {
  color: #495057;
}
.app-header-item:last-child {
  margin-right: 0;
}
.app-header-item__badge {
  position: absolute;
  top: 4px;
  left: 1.75em;
  z-index: 1;
  max-width: 34px;
  padding: 2px 4px 1px;
  color: white;
  line-height: 1;
  font-size: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  background-color: #ff5a57;
  border-radius: 99999px;
  border: 2px solid #f8f9fa;
}
.app-header-profile {
  position: relative;
  display: block;
  width: 2rem;
  height: 2rem;
  margin-left: 0.75rem;
  border-radius: 12px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .app-header-profile {
    margin-left: 0.5rem;
  }
}
.app-header-profile img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
}
.app-header--inverse {
  position: fixed;
}
.app-header--inverse:not(.app-header--scrolled) {
  height: 45px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
  background-color: transparent;
  box-shadow: none;
  border-width: 0px;
}
@media (max-width: 1024px) {
  .app-header--inverse:not(.app-header--scrolled) {
    height: 45px;
  }
}
.app-header--inverse:not(.app-header--scrolled) .app-header-logo {
  color: white;
  background: inherit;
  background-clip: inherit;
  -webkit-background-clip: inherit;
  -webkit-text-fill-color: inherit;
}
.app-header--inverse:not(.app-header--scrolled) .app-header-logo__img--dark {
  display: block !important;
}
.app-header--inverse:not(.app-header--scrolled) .app-header-logo__img--light {
  display: none !important;
}
.app-header--inverse:not(.app-header--scrolled) .app-header-item {
  color: white;
}
.app-header--inverse:not(.app-header--scrolled) .app-header-item:hover {
  color: rgba(255, 255, 255, 0.7);
}
/*# sourceMappingURL=4da41ccdf9d675f569c777d2978cf88dbb8c51e0.header.scss.map */
