@charset "UTF-8";
/* Original file: layouts/hashtag/components/header/header.scss */
.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: 60px;
  background-color: white;
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.1);
}
@media (max-width: 1024px) {
  .app-header {
    height: 52px;
  }
}
.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: 60px;
  color: #212529;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1px;
  text-decoration: none;
  background: linear-gradient(45deg, #9349ff 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, #9349ff 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__signup {
  background: linear-gradient(45deg, #9349ff 0%, #ff3a4e 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #e9ecef;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s ease;
}
.app-header__signup:hover {
  color: #8442e6;
}
.app-header__signup:active {
  color: #763acc;
}
.app-header__login {
  cursor: pointer;
  display: flex;
  align-items: center;
  height: 40px;
  padding: 0 1.25rem;
  margin-right: 1rem;
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  background-image: linear-gradient(148deg, #9349ff 0%, #ff3a4e 100%);
  border-radius: 8px;
  transition: 0.2s ease;
}
.app-header__login:hover {
  background-color: #8442e6;
}
.app-header__login:active {
  background-color: #763acc;
}
@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 white;
}
.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;
}

