.plg-responsive-header {
  --plg-responsive-header-pad-x: clamp(16px, 2.7vw, 24px);
  display: none;
  position: relative;
  z-index: 50;
  width: 100%;
  overflow: visible;
  color: #120b4f;
  background: rgba(255, 255, 255, 0.98);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
}

.plg-responsive-header,
.plg-responsive-header *,
.plg-responsive-header *::before,
.plg-responsive-header *::after {
  box-sizing: border-box;
}

.plg-responsive-header__top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 11px;
  width: min(100%, 1024px);
  margin: 0 auto;
  padding: calc(env(safe-area-inset-top, 0px) + 9px)
    var(--plg-responsive-header-pad-x) 14px;
  overflow: visible;
}

.plg-responsive-header__brand,
.plg-responsive-header__brand:hover,
.plg-responsive-header__brand:focus,
.plg-responsive-header__brand:visited {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  color: #17246f;
  text-decoration: none !important;
}

.plg-responsive-header__brand:focus-visible {
  outline: 3px solid rgba(109, 40, 217, 0.3);
  outline-offset: 3px;
  border-radius: 8px;
}

.plg-responsive-header__brand-mark {
  display: block;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  margin-right: 6px;
}

.plg-responsive-header__brand-copy {
  display: grid;
  min-width: 0;
  line-height: 1;
}

.plg-responsive-header__brand-name {
  color: #17246f;
  font-size: 22px;
  font-weight: 850;
  letter-spacing: 0;
}

.plg-responsive-header__brand-tagline {
  margin-top: 2px;
  color: #17246f;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0;
}

.plg-responsive-header__actions {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 7px;
  overflow: visible;
}

.plg-responsive-account__trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #6338db;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(124, 58, 237, 0.22);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(87, 54, 172, 0.08);
}

.plg-responsive-account {
  position: relative;
  flex: 0 0 auto;
}

.plg-responsive-account__trigger {
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  cursor: pointer;
}

.plg-responsive-account__trigger:focus-visible {
  outline: 3px solid rgba(109, 40, 217, 0.3);
  outline-offset: 2px;
  border-color: #6d28d9;
}

.plg-responsive-account__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  overflow: hidden;
  border-radius: 50%;
}

.plg-responsive-account__avatar img,
.plg-responsive-account__avatar svg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plg-responsive-account__avatar .plg-profile-avatar__fallback {
  padding: 5px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.plg-responsive-account__menu {
  position: absolute;
  z-index: 3;
  inset-inline-end: 0;
  top: calc(100% + 8px);
  display: grid;
  width: max-content;
  min-width: 180px;
  max-width: calc(
    100vw - (2 * var(--plg-responsive-header-pad-x)) -
      env(safe-area-inset-right, 0px)
  );
  padding: 7px;
  overflow: hidden;
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 16px 36px rgba(45, 25, 112, 0.18);
}

.plg-responsive-account__menu[hidden] {
  display: none !important;
}

.plg-responsive-account__item,
.plg-responsive-account__item:visited {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 9px 12px;
  border-radius: 9px;
  color: #24146f;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.25;
  text-decoration: none !important;
}

.plg-responsive-account__item:hover,
.plg-responsive-account__item:focus-visible {
  color: #5b21b6;
  background: rgba(124, 58, 237, 0.09);
  outline: none;
}

.plg-responsive-account__item:focus-visible {
  box-shadow: inset 0 0 0 2px rgba(109, 40, 217, 0.35);
}

@media (max-width: 1024px) {
  body.plg-has-responsive-header {
    overflow-x: hidden;
  }

  body.plg-has-responsive-header.et_fixed_nav.et_show_nav #page-container,
  body.plg-has-responsive-header #page-container {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  body.plg-has-responsive-header #top-header,
  body.plg-has-responsive-header #main-header,
  body.plg-has-responsive-header header#main-header,
  body.plg-has-responsive-header .pik-site-header {
    display: none !important;
  }

  body.plg-has-responsive-header .plg-responsive-header {
    display: block !important;
  }

  body.plg-has-responsive-header.plg-auth-page .plg-auth__brand {
    display: none !important;
  }
}

@media (min-width: 1025px) {
  body.plg-has-responsive-header .plg-responsive-header {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .plg-responsive-header *,
  .plg-responsive-header *::before,
  .plg-responsive-header *::after {
    transition: none !important;
  }
}
