@charset "UTF-8";
.app-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  box-sizing: border-box;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 52px;
  background-color: white;
  background-color: var(--color-background);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #dee2e6;
  border-bottom-color: var(--color-gray-300);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.color_scheme_dark .app-header {
  border-bottom-color: #f1f3f5;
  border-bottom-color: var(--color-gray-100);
}
@media (max-width: 1024px) {
  .app-header {
    position: absolute;
    z-index: auto;
    border-bottom: none;
  }
}
.app-header__divider {
  flex: 1;
}
.app-header-space {
  position: relative;
  z-index: -1;
  height: 52px;
}
.app-header-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.app-header__left, .app-header__right, .app-header__center {
  display: flex;
  align-items: center;
}
.app-header__right {
  justify-content: flex-end;
}
.app-header__center {
  flex: 1;
  justify-content: center;
}
.app-header-logo, .app-header__browser-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.app-header-logo {
  position: relative;
  display: block;
  max-height: 52px;
  color: #212529;
  color: var(--color-gray-900);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 1px;
  text-decoration: none;
  transition: 0.2s ease;
  max-width: 180px;
}
@media (max-width: 1024px) {
  .app-header-logo {
    max-width: 120px;
  }
}
.app-header-logo > img, .app-header-logo > svg {
  display: block;
  width: auto;
  max-height: 2.875rem;
  max-height: 2.875rem;
  max-width: 100%;
  fill: #212529;
  fill: var(--color-gray-900);
}
@media (max-width: 1024px) {
  .app-header-logo > img, .app-header-logo > svg {
    max-height: 2.5rem;
    max-height: 2.875rem;
  }
}
.app-header-logo--contrast > img {
  image-rendering: -webkit-optimize-contrast;
}
.app-header__browser-title {
  color: #495057;
  color: var(--color-gray-700);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  max-width: 170px;
}
@media (max-width: 1024px) {
  .app-header__browser-title {
    max-width: 150px;
  }
}
.app-header__browser-title::before {
  content: "–";
  margin-left: 0.375rem;
  margin-right: 0.375rem;
  opacity: 0.5;
}
.app-header__signup {
  color: #868e96;
  color: var(--color-gray-600);
  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: #212529;
  color: var(--color-gray-900);
  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: #868e96;
  color: var(--color-gray-600);
  font-size: 1rem;
  background-color: #dee2e6;
  background-color: var(--color-gray-300);
  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;
}
/*# sourceMappingURL=d6003ea706794ec86789958325d0115e3ad45866.header.scss.map */
