@charset "UTF-8";
/* Original file: layouts/rx-flex-layout-main/components/header/header.scss */
.app-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 60px;
  background-color: rgba(254, 254, 254, 0.9);
  -webkit-backdrop-filter: saturate(180%) blur(5px);
  backdrop-filter: saturate(180%) blur(5px);
}
@media (max-width: 1024px) {
  .app-header {
    height: 52px;
  }
}
.app-header__divider {
  flex: 1;
}
.app-header-space {
  position: relative;
  height: 60px;
}
.app-header-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  max-width: 1032px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
.app-header--expand .app-header-container {
  max-width: 100%;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media (max-width: 1024px) {
  .app-header-container {
    padding-left: 1.25rem !important;
    padding-right: 0.5rem !important;
  }
}
.app-header__left, .app-header__right, .app-header__center {
  display: flex;
  align-items: center;
}
.app-header__left, .app-header__right {
  width: 250px;
}
.app-header__right {
  justify-content: flex-end;
}
.app-header__center {
  flex: 1;
  justify-content: center;
}
.app-header-logo {
  position: relative;
  display: block;
  max-height: 60px;
  color: #161d24;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1px;
  text-decoration: none;
}
.app-header-logo > img, .app-header-logo > svg {
  display: block;
  width: auto;
  height: 2.875rem;
  fill: #161d24;
}
@media (max-width: 1024px) {
  .app-header-logo > img, .app-header-logo > svg {
    height: 2.5rem;
  }
}
.app-header__signup {
  color: #374553;
  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: 32px;
  padding: 0 0.875rem;
  margin-right: 1rem;
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 32px;
  text-decoration: none;
  background-color: #247bff;
  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__login, .app-header__signup {
    display: none;
  }
}
.app-header-item {
  cursor: pointer;
  display: block;
  padding: 0.5rem;
  margin-right: 0.5rem;
  color: #374553;
  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: #247bff;
}
.app-header-item:last-child {
  margin-right: 0;
}
.app-header-profile {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-left: 0.5rem;
  border-radius: 12px;
  color: #374553;
  font-size: 1rem;
  background-color: #e9ebee;
  overflow: hidden;
  --ionicon-stroke-width: 3rem;
}
@media (max-width: 1024px) {
  .app-header-profile {
    margin-left: 0.25rem;
    margin-right: 0.5rem;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 10px;
  }
}
.app-header-profile img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
}

