* {
  box-sizing: border-box;
}

@font-face {
  font-family: "Open Sans";
  src: url("../source/fonts/OpenSans-300.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("../source/fonts/OpenSans-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("../source/fonts/OpenSans-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("../source/fonts/OpenSans-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../source/fonts/Inter-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../source/fonts/Inter-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../source/fonts/Inter-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../source/fonts/Inter-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
}

html {
  background: #FCFCFC;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  overscroll-behavior: none;
  touch-action: manipulation;
  background: #FCFCFC;
  color: #0f172a;
  font-family: "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.app-shell {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding:
    max(0px, env(safe-area-inset-top))
    max(0px, env(safe-area-inset-right))
    max(0px, env(safe-area-inset-bottom))
    max(0px, env(safe-area-inset-left));
  background: #FCFCFC;
  z-index: 0;
}

.app-header {
  position: sticky;
  top: 0;
  width: 100%;
  height: 64px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(128, 128, 128, 0.12);
  background: #FCFCFC;
  flex: 0 0 auto;
  z-index: 2;
  transition: height 240ms ease, padding 240ms ease;
}

.app-header-layout {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.app-body {
  width: 100%;
  height: 100%;
  position: relative;
  flex: 1 1 auto;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.app-menu {
  width: 287px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 14px 16px 26px;
  border-right: 1px solid rgba(128, 128, 128, 0.12);
  background: #FCFCFC;
  transition: width 220ms ease;
}

.app-sidebar-control {
  width: 34px;
  height: 34px;
  position: relative;
  z-index: 5;
  display: flex;
  flex: 0 0 34px;
  align-items: center;
  justify-content: center;
  margin-left: -5.5px;
  margin-bottom: 5px;
  padding: 0;
  border: 0;
  border-radius: 100px;
  appearance: none;
  background: transparent;
  color: #CFCFCF;
  cursor: pointer;
  overflow: visible;
}

.app-sidebar-control:hover {
  background: rgba(128, 128, 128, 0.065);
}

.app-sidebar-control:hover .app-sidebar-control-web-border {
  border-color: #3A3B3C;
}

.app-sidebar-control:hover .app-sidebar-control-illustrator {
  border-right-color: #3A3B3C;
}

.app-sidebar-control:focus-visible {
  outline: 2px solid rgba(81, 62, 223, 0.35);
  outline-offset: 2px;
}

.app-sidebar-control-web-border {
  width: 20.5px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border: 1.5px solid #CFCFCF;
  border-radius: 2.5px;
  transition: width 220ms ease, height 220ms ease, border-style 220ms ease, border-radius 220ms ease;
}

.app-sidebar-control-illustrator {
  width: 6.5px;
  height: 100%;
  border-right: 1.5px solid #CFCFCF;
  transition: width 220ms ease, height 220ms ease, border-right-style 220ms ease;
}

.app-menu.is-collapsed {
  width: 88px;
  overflow: visible;
}

.app-menu.is-collapsed .app-sidebar-control {
  margin-left: 0;
  transform: none;
}

.app-menu.is-collapsed .app-sidebar-control-web-border {
  border-style: solid;
}

.app-menu.is-collapsed .app-sidebar-control-illustrator {
  width: 4px;
  height: 74%;
  border-right-style: solid;
}

.app-menu.is-collapsed .app-menu-item {
  padding-right: 0;
  padding-left: 0;
}

.app-menu.is-collapsed .app-menu-down {
  width: 55px;
  align-items: center;
  right: auto;
  padding-left: 0;
}

.app-menu.is-collapsed .app-menu-down-item {
  width: 100%;
}

.app-menu.is-collapsed .app-menu-donation-group {
  width: 100%;
}

.app-menu.is-collapsed .app-menu-donation-toggle {
  width: 100%;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.app-menu.is-collapsed .app-menu-donation-toggle .app-header-toggle {
  display: block;
  width: 32px;
  height: 18px;
  flex: 0 0 18px;
}

.app-menu.is-collapsed .app-menu-donation-toggle .app-header-toggle-thumb {
  width: 14px;
  height: 14px;
}

.app-menu.is-collapsed .app-menu-donation-toggle.is-enabled .app-header-toggle-thumb {
  transform: translateX(14px);
}

.app-menu.is-collapsed .app-menu-down-separator {
  width: 100%;
}

.app-menu.is-collapsed .app-menu-item-content {
  min-width: 0;
  justify-content: center;
  gap: 0;
}

.app-menu.is-collapsed .app-menu-item-label {
  width: 0;
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;
}

.app-rest-body {
  width: calc(100% - 287px);
  height: 100%;
  min-width: 0;
  margin-left: 287px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  transition: width 220ms ease, margin-left 220ms ease;
}

.app-menu.is-collapsed + .app-rest-body {
  width: calc(100% - 88px);
  margin-left: 88px;
}

.app-body-zone {
  width: min(calc(100% - 36px), 750px);
  max-width: 750px;
  height: 100%;
  min-height: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  margin-right: 18px;
  margin-left: 18px;
  padding-top: 26px;
  overflow: auto;
  scrollbar-width: none;
}

.app-body-zone::-webkit-scrollbar {
  display: none;
}

.app-settings-rest-body {
  width: 100%;
  height: 100%;
  min-height: 100%;
  margin-left: 0;
  margin-bottom: 0;
  padding: 0;
  align-items: stretch;
}

.app-body > .app-settings-rest-body,
.app-menu.is-collapsed + .app-settings-rest-body {
  width: 100%;
  margin-left: 0;
}

.app-settings-body-zone {
  width: 100%;
  height: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.app-settings-header {
  width: 100%;
  height: 64px;
  flex: 0 0 64px;
}

.app-settings-header-layout {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
}

.app-settings-header-back-icon {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  aspect-ratio: 1 / 1;
  padding: 5px;
  border: 0;
  border-radius: 8px;
  appearance: none;
  background: transparent;
  color: #3A3B3C;
  cursor: pointer;
}

.app-settings-header-back-icon::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: currentColor;
  mask: url("../source/arrow-left.svg") center / contain no-repeat;
  -webkit-mask: url("../source/arrow-left.svg") center / contain no-repeat;
}

.app-settings-header-back-icon:hover {
  background: rgba(58, 59, 60, 0.03);
}

.app-settings-header-title {
  width: 100%;
  height: fit-content;
  margin: 0;
  color: #3A3B3C;
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  opacity: 1;
  transition: opacity 180ms ease;
}

.app-settings-header-processing {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-settings-header-processing[hidden] {
  display: flex !important;
  visibility: hidden;
}

.app-settings-header-processing .app-header-processing-spinner {
  font-size: 26px;
}

@media (min-width: 749px) {
  .app-settings-header-title {
    opacity: 0;
  }
}

.app-settings-content {
  width: 100%;
  height: 100%;
  min-height: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 18px;
}

.app-settings-menu-options {
  width: 100%;
  max-width: 204px;
  height: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-top: 18px;
  padding-bottom: 24px;
}

.app-settings-menu-title {
  width: 100%;
  max-height: 0;
  margin: 0;
  color: #3A3B3C;
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-6px);
  visibility: hidden;
  transition:
    max-height 180ms ease,
    margin-bottom 180ms ease,
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease;
}

.app-settings-menu-section {
  width: 100%;
  height: fit-content;
  padding: 0;
  border: 0;
  appearance: none;
  background: transparent;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  cursor: pointer;
}

.app-settings-menu-section.is-selected {
  border-radius: 10px;
  background: #f2f2f2;
}

.app-settings-menu-section-title {
  width: calc(100% - 24px);
  height: fit-content;
  margin: 12px 12px;
  color: #3A3B3C;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
}

.app-settings-mobile-general {
  width: 100%;
  min-height: 42px;
  display: none;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 10px 2px 10px 8px;
}

.app-settings-mobile-avatar {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  background: #e6e6e6;
  object-fit: cover;
}

.app-settings-mobile-general-main {
  min-width: 0;
  height: fit-content;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 3px;
  overflow: hidden;
}

.app-settings-mobile-display-name {
  width: 100%;
  color: #3A3B3C;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app-settings-mobile-username {
  width: 100%;
  margin-top: 2px;
  color: #808080;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app-settings-mobile-general-action {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  color: #808080;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-settings-mobile-general-action::before {
  content: "";
  width: 18px;
  height: 18px;
  display: block;
  background: currentColor;
  -webkit-mask: url("../source/chevron-forward-outline.svg") center / contain no-repeat;
  mask: url("../source/chevron-forward-outline.svg") center / contain no-repeat;
}

.app-settings-detail {
  max-width: 750px;
  min-width: 0;
  height: 100%;
  flex: 1 1 auto;
}

.app-settings-tab {
  width: 100%;
  height: 100%;
  display: none;
}

.app-settings-tab.is-active {
  display: block;
}

.app-settings-detail-title {
  width: fit-content;
  height: fit-content;
  margin: 0;
  color: #3A3B3C;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
}

.app-settings-detail-subtitle {
  width: fit-content;
  height: fit-content;
  margin: 6px 0 13px;
  color: #8a8a8a;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.25;
}

.app-settings-detail-line {
  width: 100%;
  height: 1px;
  margin: 0 0 15px;
  background: #e6e6e6;
}

.app-settings-profile-row {
  width: 100%;
  height: fit-content;
  margin-top: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.app-settings-profile-photo-frame {
  position: relative;
  width: fit-content;
  height: fit-content;
  padding: 5px;
  border: 0;
  appearance: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
}

.app-settings-profile-photo {
  width: 69px;
  height: 69px;
  aspect-ratio: 1 / 1;
  border: 1px solid #D4D4D4;
  border-radius: 100px;
  background: #e6e6e6;
  object-fit: cover;
}

.app-settings-profile-photo-library {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 27px;
  height: 26px;
  padding: 5px;
  border: 1px solid #ABD600;
  border-radius: 100px;
  background: #C0F000;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-settings-profile-photo-library::before {
  content: "";
  width: 21px;
  height: 21px;
  display: block;
  background: currentColor;
  -webkit-mask: url("../source/photo_library.svg") center / contain no-repeat;
  mask: url("../source/photo_library.svg") center / contain no-repeat;
}

.app-settings-profile-copy {
  width: 100%;
  height: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.app-settings-profile-title {
  width: fit-content;
  height: fit-content;
  color: #3A3B3C;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
}

.app-settings-profile-subtitle {
  width: fit-content;
  height: fit-content;
  margin-top: 1px;
  color: #8a8a8a;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.25;
}

.app-settings-change-picture-button {
  width: fit-content;
  height: fit-content;
  padding: 7.5px 8px;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  background: transparent;
  color: #3A3B3C;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
}

.app-settings-change-picture-button:disabled {
  color: #808080;
  cursor: default;
}

.app-settings-section-label {
  width: fit-content;
  height: fit-content;
  margin-top: 16px;
  color: #3A3B3C;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
}

.app-settings-names-row {
  width: 100%;
  height: fit-content;
  margin: 8px 0 0;
  display: flex;
  flex-direction: row;
  gap: 12px;
}

.app-settings-field-group.app-settings-full-name-field {
  display: none;
  margin: 8px 0 0;
}

.app-settings-field-group {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
}

.app-settings-field-group-compact {
  max-width: 350px;
  margin: 5px 0;
}

.app-settings-email-field {
  position: relative;
}

.app-settings-email-field::after {
  content: "Your account email can't be changed.";
  position: absolute;
  left: 0;
  top: -11px;
  width: max-content;
  max-width: 240px;
  padding: 7px 9px;
  border-radius: 8px;
  background: #3A3B3C;
  color: #ffffff;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.25;
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 140ms ease, transform 140ms ease;
  z-index: 5;
}

.app-settings-email-field:hover::after,
.app-settings-email-field:focus-within::after {
  opacity: 1;
  transform: translateY(0);
}

.app-settings-paypal-field {
  margin-top: 8px;
}

.app-settings-field-label {
  width: fit-content;
  height: fit-content;
  margin: 1px 0 5px 1px;
  color: #8a8a8a;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
}

.app-settings-input {
  width: 100%;
  height: 39px;
  padding: 0 12px;
  border: 1px solid #c7c7c7;
  border-radius: 10px;
  background: transparent;
  color: #3A3B3C;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  outline: none;
}

.app-settings-input:disabled {
  color: #808080;
}

.app-settings-username-input-wrap {
  width: 100%;
  height: 39px;
  padding: 0 12px;
  border: 1px solid #c7c7c7;
  border-radius: 10px;
  display: flex;
  align-items: center;
}

.app-settings-username-prefix {
  color: #909090;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  flex: 0 0 auto;
}

.app-settings-username-input {
  height: 37px;
  padding: 0;
  border: 0;
  border-radius: 0;
  flex: 1 1 auto;
  min-width: 0;
}

.app-settings-field-error {
  width: fit-content;
  height: fit-content;
  margin-top: 6px;
  color: #DE1738;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.25;
}

.app-settings-field-error[hidden] {
  display: none;
}

.app-settings-detail-line-secondary {
  margin-top: 22px;
  margin-bottom: 17px;
}

.app-settings-detail-line-paypal {
  margin-top: 19px;
}

.app-settings-email-title,
.app-settings-username-title {
  margin-top: 0;
}

.app-settings-section-subtitle {
  width: fit-content;
  height: fit-content;
  margin-top: 1px;
  margin-bottom: 8px;
  color: #8a8a8a;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.25;
}

.app-settings-email-subtitle {
  margin-bottom: 14px;
}

@media (min-width: 749px) {
  .app-settings-menu-title {
    max-height: 24px;
    margin-bottom: 12px;
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
}

@media (max-width: 748px) {
  .app-settings-menu-options {
    max-width: 514px;
  }

  .app-settings-menu-section-title {
    display: none;
  }

  .app-settings-mobile-general {
    display: flex;
  }

  .app-settings-menu-section.is-selected {
    border: 1px solid rgba(128, 128, 128, 0.14);
    border-radius: 18px;
    background: rgba(242, 242, 242, 0.62);
  }

  .app-settings-detail {
    max-width: 514px;
    display: none;
  }

  .app-settings-body-zone.is-detail-open .app-settings-menu-options {
    display: none;
  }

  .app-settings-body-zone.is-detail-open .app-settings-detail {
    width: 100%;
    display: block;
  }

  .app-settings-body-zone.is-detail-open .app-settings-detail-title,
  .app-settings-body-zone.is-detail-open .app-settings-detail-subtitle,
  .app-settings-body-zone.is-detail-open .app-settings-detail > .app-settings-tab > .app-settings-detail-line:first-of-type {
    display: none;
  }

  .app-settings-body-zone.is-detail-open .app-settings-profile-row {
    justify-content: center;
  }

  .app-settings-body-zone.is-detail-open .app-settings-profile-copy,
  .app-settings-body-zone.is-detail-open .app-settings-change-picture-button {
    display: none;
  }

  .app-settings-body-zone.is-detail-open .app-settings-profile-photo {
    width: 81px;
    height: 81px;
  }

  .app-settings-body-zone.is-detail-open .app-settings-profile-photo-frame {
    cursor: pointer;
  }

  .app-settings-field-group-compact {
    max-width: none;
  }

  .app-settings-body-zone.is-names-collapsed .app-settings-names-row {
    display: none;
  }

  .app-settings-body-zone.is-names-collapsed .app-settings-field-group.app-settings-full-name-field {
    display: flex;
  }
}

.app-index-setup {
  width: 100%;
  height: 42px;
  min-height: 42px;
  display: flex;
  flex: 0 0 42px;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  margin: 0 0 12px;
  padding: 0 12px;
  border: 1px solid #0088FF;
  border-radius: 10px;
  appearance: none;
  background: rgba(0, 136, 255, 0.12);
  cursor: pointer;
  order: 0;
}

.app-index-setup[hidden] {
  display: none;
}

.app-index-setup.is-blocked {
  border-color: #DE1738;
  background: rgba(222, 23, 56, 0.12);
  cursor: default;
}

.app-index-setup-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  margin-right: 5px;
  background: #0088FF;
  mask: url("../source/warning-circle.svg") center / contain no-repeat;
  -webkit-mask: url("../source/warning-circle.svg") center / contain no-repeat;
}

.app-index-setup.is-blocked .app-index-setup-icon {
  background: #DE1738;
}

.app-index-setup-text {
  min-width: 0;
  margin-top: 2px;
  color: #3A3B3C;
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
  overflow: hidden;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app-integration-link-card {
  width: 100%;
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(128, 128, 128, 0.19);
  border-radius: 10px;
  background: #FCFCFC;
  order: 1;
}

.app-integration-widget-card,
.app-integration-qr-card {
  margin-top: 16px;
}

.app-integration-link-title {
  margin: 0 0 4px;
  color: #3A3B3C;
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
}

.app-integration-title-with-icon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.app-integration-checkout-title-icon,
.app-integration-widget-title-icon,
.app-integration-qr-title-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  background: currentColor;
}

.app-integration-checkout-title-icon {
  mask: url("../source/browsers-outline.svg") center / 16px 16px no-repeat;
  -webkit-mask: url("../source/browsers-outline.svg") center / 16px 16px no-repeat;
}

.app-integration-widget-title-icon {
  mask: url("../source/radio.svg") center / 16px 16px no-repeat;
  -webkit-mask: url("../source/radio.svg") center / 16px 16px no-repeat;
}

.app-integration-qr-title-icon {
  mask: url("../source/qr_code.svg") center / 16px 16px no-repeat;
  -webkit-mask: url("../source/qr_code.svg") center / 16px 16px no-repeat;
}

.app-integration-link-container {
  width: 100%;
  height: 40px;
  min-width: 0;
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 2px solid #0088FF;
  border-radius: 8px;
  background: #FFFFFF;
  overflow: hidden;
  transition: border-color 160ms ease;
}

.app-integration-link-container:hover {
  border-color: #3A3B3C;
}

.app-integration-link-container:hover .app-integration-copy-button:not(:disabled) {
  background: #3A3B3C;
}

.app-integration-link-container.is-copied,
.app-integration-link-container.is-copied:hover {
  border-color: #50C878;
}

.app-integration-link-container.is-copied .app-integration-copy-button:not(:disabled),
.app-integration-link-container.is-copied:hover .app-integration-copy-button:not(:disabled) {
  background: #50C878;
}

.app-integration-link-container.is-setup-required {
  border-color: rgba(128, 128, 128, 0.22);
}

.app-integration-link-container.is-setup-required:hover {
  border-color: rgba(128, 128, 128, 0.22);
}

.app-integration-link-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  margin-left: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.05);
}

.app-integration-link-icon::before {
  width: 18px;
  height: 18px;
  content: "";
  background: #3A3B3C;
  mask: url("../source/link.svg") center / 18px 18px no-repeat;
  -webkit-mask: url("../source/link.svg") center / 18px 18px no-repeat;
}

.app-integration-link-text {
  min-width: 0;
  flex: 1 1 auto;
  color: #3A3B3C;
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app-integration-copy-button {
  width: 59px;
  height: 100%;
  min-height: 0;
  flex: 0 0 59px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0;
  border: 0;
  border-radius: 0 6px 6px 0;
  appearance: none;
  background: #0088FF;
  color: #FFFFFF;
  cursor: pointer;
}

.app-integration-copy-button:disabled {
  background: rgba(128, 128, 128, 0.22);
  cursor: default;
}

.app-integration-copy-button[hidden] {
  display: none;
}

.app-integration-copy-label {
  color: currentColor;
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.app-integration-widget-actions {
  width: 100%;
  min-width: 0;
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.app-integration-widget-preview,
.app-integration-qr-open,
.app-integration-widget-test {
  height: 34px;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  appearance: none;
  cursor: pointer;
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.app-integration-widget-preview {
  flex: 0 0 auto;
  gap: 7px;
  padding: 0 12px;
  border: 0;
  background: #0088FF;
  color: #FFFFFF;
}

.app-integration-qr-open {
  flex: 0 0 auto;
  gap: 7px;
  padding: 0 12px;
  border: 1px solid rgba(128, 128, 128, 0.22);
  background: transparent;
  color: #3A3B3C;
}

.app-integration-widget-preview-icon,
.app-integration-qr-open-icon,
.app-integration-widget-test-icon {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  background: currentColor;
}

.app-integration-widget-preview-icon {
  mask: url("../source/play-2.svg") center / 15px 15px no-repeat;
  -webkit-mask: url("../source/play-2.svg") center / 15px 15px no-repeat;
}

.app-integration-qr-open-icon {
  mask: url("../source/open_in_new.svg") center / 15px 15px no-repeat;
  -webkit-mask: url("../source/open_in_new.svg") center / 15px 15px no-repeat;
}

.app-integration-widget-test {
  flex: 0 1 auto;
  gap: 10px;
  padding: 0 8px 0 10px;
  border: 1px solid rgba(128, 128, 128, 0.22);
  background: transparent;
  color: #3A3B3C;
}

.app-integration-widget-test-main {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.app-integration-widget-test-icon {
  mask: url("../source/bolt.svg") center / 15px 15px no-repeat;
  -webkit-mask: url("../source/bolt.svg") center / 15px 15px no-repeat;
}

.app-integration-widget-toggle {
  position: relative;
  width: 30px;
  height: 18px;
  flex: 0 0 30px;
  border-radius: 999px;
  background: #b7b7b7;
  transition: background-color 160ms ease;
}

.app-integration-widget-toggle-thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #FFFFFF;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.2);
  transition: transform 160ms ease;
}

.app-integration-widget-test.is-enabled .app-integration-widget-toggle {
  background: #2ea84a;
}

.app-integration-widget-test.is-enabled .app-integration-widget-toggle-thumb {
  transform: translateX(12px);
}

.app-integration-widget-preview:disabled,
.app-integration-qr-open:disabled,
.app-integration-widget-test:disabled {
  color: #808080;
  cursor: default;
  opacity: 0.55;
}

.app-integration-widget-preview:disabled {
  background: rgba(128, 128, 128, 0.22);
}

.app-integration-steps {
  margin: 12px 0 0;
  padding: 0;
  counter-reset: app-integration-step;
  list-style: none;
  color: #8a8a8a;
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.25;
}

.app-integration-step {
  min-width: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  counter-increment: app-integration-step;
}

.app-integration-step + .app-integration-step {
  margin-top: 8px;
}

.app-integration-step::before {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(128, 128, 128, 0.22);
  border-radius: 50%;
  color: #3A3B3C;
  background: #FFFFFF;
  content: counter(app-integration-step);
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
}

.app-style-body-zone {
  gap: 14px;
}

.app-style-row1 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  order: 1;
}

.app-style-tabs {
  width: fit-content;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 1px;
  border: 1px solid rgba(128, 128, 128, 0.12);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.02);
}

.app-style-tab {
  width: 132px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  appearance: none;
  border: 1px solid rgba(128, 128, 128, 0);
  border-radius: 5px;
  background: transparent;
  color: #808080;
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
}

.app-style-tab:hover {
  color: #525252;
}

.app-style-tab.is-selected {
  border-color: rgba(128, 128, 128, 0.24);
  background: #FFFFFF;
  color: #3A3B3C;
  font-weight: 500;
  cursor: default;
}

.app-style-tab-icon {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  background: currentColor;
}

.app-style-tab-icon-checkout {
  mask: url("../source/browsers-outline.svg") center / 14px 14px no-repeat;
  -webkit-mask: url("../source/browsers-outline.svg") center / 14px 14px no-repeat;
}

.app-style-tab-icon-alert {
  mask: url("../source/radio.svg") center / 14px 14px no-repeat;
  -webkit-mask: url("../source/radio.svg") center / 14px 14px no-repeat;
}

.app-style-panel {
  width: 100%;
  min-width: 0;
  order: 2;
}

.app-style-panel[hidden] {
  display: none;
}

.app-style-card {
  width: 100%;
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(128, 128, 128, 0.19);
  border-radius: 10px;
  background: #FCFCFC;
}

.app-style-card-header {
  width: 100%;
  min-width: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(128, 128, 128, 0.14);
}

.app-style-card-heading {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.app-style-card-title {
  margin: 0;
  color: #3A3B3C;
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
}

.app-style-card-label {
  min-width: 0;
  color: #808080;
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app-style-save-status {
  height: 24px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 9px;
  border: 1px solid rgba(128, 128, 128, 0.18);
  border-radius: 999px;
  background: #FFFFFF;
  color: #808080;
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
}

.app-style-save-status.is-saving {
  color: #0088FF;
}

.app-style-save-status.is-saved {
  color: #50C878;
}

.app-style-save-status.is-error {
  color: #DE1738;
}

.app-style-form {
  width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.app-style-field-group {
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(128, 128, 128, 0.13);
  border-radius: 8px;
  background: #FFFFFF;
}

.app-style-color-group {
  grid-column: 1 / -1;
}

.app-style-group-title {
  margin: 0 0 10px;
  color: #3A3B3C;
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
}

.app-style-group-grid,
.app-style-color-grid {
  width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.app-style-color-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.app-style-field {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.app-style-field-wide {
  grid-column: 1 / -1;
}

.app-style-field-label {
  min-width: 0;
  color: #808080;
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app-style-input {
  width: 100%;
  height: 36px;
  min-width: 0;
  padding: 0 10px;
  border: 1px solid rgba(128, 128, 128, 0.19);
  border-radius: 8px;
  appearance: none;
  background: #FFFFFF;
  color: #3A3B3C;
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  outline: none;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.app-style-input:hover {
  border-color: rgba(58, 59, 60, 0.28);
}

.app-style-input:focus {
  border-color: #0088FF;
}

.app-style-color-input {
  padding: 3px;
  cursor: pointer;
}

.app-style-color-input::-webkit-color-swatch-wrapper {
  padding: 0;
}

.app-style-color-input::-webkit-color-swatch {
  border: 0;
  border-radius: 5px;
}

.app-index-row1,
.app-index-row2 {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: 10px;
}

.app-index-row1 {
  height: fit-content;
  order: 1;
}

.app-index-row2 {
  height: 278px;
  margin-top: 16px;
  order: 3;
}

.app-index-row3 {
  width: 100%;
  min-height: 220px;
  margin-top: 16px;
  padding: 12px;
  border: 1px solid rgba(128, 128, 128, 0.19);
  border-radius: 10px;
  background: #FCFCFC;
  order: 4;
}

.app-index-row3[hidden] {
  display: none;
}

.app-index-row3-title {
  margin: 0;
  color: #3A3B3C;
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
}

.app-index-earnings-card,
.app-index-review-card,
.app-index-column3,
.app-index-column4 {
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(128, 128, 128, 0.19);
  border-radius: 10px;
  background: #FCFCFC;
}

.app-index-column3,
.app-index-column4 {
  height: 260px;
  display: flex;
  flex-direction: column;
}

.app-index-column3 {
  width: 60%;
  flex: 0 0 60%;
  gap: 16px;
}

.app-index-column4 {
  width: auto;
  flex: 1 1 0;
}

.app-index-column4 .app-index-metric-label {
  color: #3A3B3C;
  font-size: 14px;
  font-weight: 600;
}

.app-index-column3-summary {
  width: 100%;
  display: flex;
  flex: 0 0 auto;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
}

.app-index-column3-metric {
  width: auto;
  min-width: 0;
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  align-items: flex-start;
}

.app-index-column3-metric .app-index-metric-line {
  width: 100%;
  min-width: 0;
  flex-wrap: nowrap;
  gap: 6px;
}

.app-index-column3-metric .app-index-metric-value {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.app-index-column3-metric .app-index-metric-trend {
  flex: 0 0 auto;
}

.app-index-earnings-chart {
  width: 100%;
  min-height: 0;
  flex: 1 1 auto;
  position: relative;
  overflow: hidden;
}

.app-index-earnings-chart-svg {
  width: 100%;
  height: 100%;
  min-height: 142px;
  display: block;
}

.app-index-earnings-chart-line-total {
  fill: none;
  stroke: #111111;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.app-index-earnings-chart-line-net {
  fill: none;
  stroke: #50C878;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.app-index-earnings-chart-hover-line {
  stroke: rgba(81, 62, 223, 0.32);
  stroke-width: 1;
  stroke-dasharray: 4 4;
}

.app-index-earnings-chart-hover-band {
  fill: rgba(81, 62, 223, 0.07);
}

.app-index-earnings-chart-area {
  fill: url("#app-index-earnings-chart-gradient");
}

.app-index-earnings-chart-period {
  fill: #808080;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 9px;
  font-weight: 400;
  text-anchor: middle;
}

.app-index-earnings-chart-tooltip {
  min-width: 142px;
  position: absolute;
  z-index: 2;
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px 9px;
  border: 1px solid rgba(128, 128, 128, 0.16);
  border-radius: 8px;
  background: #FCFCFC;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
  color: #3A3B3C;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 11px;
  pointer-events: none;
}

.app-index-earnings-chart-tooltip.is-visible {
  display: flex;
}

.app-index-earnings-chart-tooltip-title {
  color: #808080;
  font-weight: 500;
}

.app-index-earnings-chart-tooltip-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.app-index-earnings-chart-tooltip-value {
  color: #3A3B3C;
  font-weight: 600;
}

.app-index-currency-chart {
  width: 100%;
  min-height: 0;
  flex: 1 1 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0 6px;
}

.app-index-currency-ring {
  width: min(142px, 84%);
  height: 142px;
  position: relative;
  background: transparent;
}

.app-index-currency-ring-svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.app-index-currency-segment {
  cursor: pointer;
  transition: stroke 160ms ease;
}

.app-index-currency-segment.is-muted {
  stroke: #C7C7C7;
}

.app-index-currency-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.app-index-currency-row {
  width: 100%;
  height: 30px;
  min-height: 30px;
  display: flex;
  flex: 0 0 auto;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 6px;
  padding-bottom: 2px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
}

.app-index-currency-row::-webkit-scrollbar {
  display: none;
}

.app-index-currency-item {
  width: 52px;
  min-width: 52px;
  height: 27px;
  flex: 0 0 52px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(128, 128, 128, 0.14);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.app-index-currency-item.is-active {
  width: fit-content;
  min-width: 0;
  flex: 0 0 auto;
  padding: 0 8px;
}

.app-index-currency-item-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-width: 0;
}

.app-index-currency-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: var(--currency-color, #8a8a8a);
}

.app-index-currency-code {
  min-width: 0;
  overflow: hidden;
  color: #808080;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app-index-currency-amount,
.app-index-currency-percent {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 11px;
  line-height: 1;
  white-space: nowrap;
}

.app-index-currency-amount {
  color: #3A3B3C;
  font-weight: 500;
}

.app-index-currency-percent {
  color: #808080;
  font-weight: 400;
}

.app-index-earnings-card {
  width: auto;
  height: auto;
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transition: width 240ms ease, flex-basis 240ms ease;
}

.app-index-review-card {
  width: 60%;
  height: fit-content;
  display: flex;
  flex: 0 0 60%;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
  transition: width 240ms ease, flex-basis 240ms ease;
}

.app-index-review-column,
.app-index-payout-column {
  width: 100%;
  height: 100%;
  min-width: 0;
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  justify-content: flex-start;
}

.app-index-review-column {
  align-items: flex-start;
  max-width: 100%;
  overflow: hidden;
  opacity: 1;
  transition: opacity 180ms ease, max-width 240ms ease, flex-basis 240ms ease;
}

.app-index-payout-column {
  align-items: flex-end;
  text-align: right;
}

.app-index-metric-label,
.app-index-metric-value {
  width: fit-content;
  height: fit-content;
  display: block;
  font-family: "Open Sans", system-ui, sans-serif;
  line-height: 1.25;
  white-space: nowrap;
}

.app-index-metric-label {
  color: #8a8a8a;
  font-size: 12px;
  font-weight: 400;
}

.app-index-metric-value {
  margin-top: 4px;
  color: #3A3B3C;
  font-size: 22px;
  font-weight: 500;
}

.app-index-metric-line {
  width: fit-content;
  max-width: 100%;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.app-index-metric-line .app-index-metric-value {
  flex: 0 1 auto;
  min-width: 0;
}

.app-index-metric-trend {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.app-index-metric-trend.is-up {
  color: #16a34a;
}

.app-index-metric-trend.is-down {
  color: #dc2626;
}

.app-index-period-select {
  width: 100%;
  height: fit-content;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 10px;
  margin-top: 12px;
  margin-bottom: 0;
  order: 2;
}

.app-index-period-zone {
  width: 100%;
  max-width: 267px;
  height: 30px;
  min-height: 30px;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  gap: 2px;
  padding: 2px;
  border: 1px solid rgba(128, 128, 128, 0.28);
  border-radius: 10px;
}

.app-index-period-option {
  width: fit-content;
  height: 100%;
  min-height: 100%;
  display: flex;
  align-self: stretch;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  border: 1px solid transparent;
  border-radius: 8px;
  appearance: none;
  background: transparent;
  color: #808080;
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
}

.app-index-period-option:hover {
  background: rgba(0, 0, 0, 0.04);
  color: #3A3B3C;
}

.app-index-period-option.is-selected,
.app-index-period-option:disabled {
  border-color: rgba(128, 128, 128, 0.38);
  background: #FFFFFF;
  color: #3A3B3C;
}

.app-index-period-option.is-selected:hover,
.app-index-period-option:disabled:hover {
  background: #FFFFFF;
  color: #3A3B3C;
}

.app-index-custom-range {
  width: fit-content;
  height: 100%;
  min-height: 30px;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0 6px;
  border: 1px solid rgba(128, 128, 128, 0.28);
  border-radius: 10px;
  appearance: none;
  background: transparent;
  color: #808080;
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
}

.app-index-custom-range:hover {
  background: rgba(0, 0, 0, 0.04);
  color: #3A3B3C;
}

.app-index-custom-range.is-panel-open,
.app-index-custom-range.is-selected {
  border-color: rgba(128, 128, 128, 0.38);
  background: #FFFFFF;
  color: #3A3B3C;
}

.app-index-custom-range-icon {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  display: block;
  background: currentColor;
  mask: url("../source/calendar-dots.svg") center / contain no-repeat;
  -webkit-mask: url("../source/calendar-dots.svg") center / contain no-repeat;
}

.app-index-custom-range-label {
  width: fit-content;
  height: fit-content;
  display: block;
  white-space: nowrap;
}

.app-index-custom-range-panel {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  width: 548px;
  height: fit-content;
  padding: 6px;
  border: 1px solid rgba(128, 128, 128, 0.16);
  border-radius: 8px;
  background: #FFFFFF;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
  z-index: 7;
}

.app-index-custom-range-panel[hidden] {
  display: none !important;
}

.app-index-custom-range-content {
  width: 100%;
  display: flex;
  align-items: stretch;
}

.app-index-custom-range-presets {
  width: 132px;
  flex: 0 0 132px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding-right: 6px;
  border-right: 1px solid rgba(128, 128, 128, 0.12);
}

.app-index-custom-range-preset {
  min-height: 28px;
  padding: 0 9px;
  border: 0;
  border-radius: 6px;
  appearance: none;
  background: transparent;
  color: #808080;
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  text-align: left;
  cursor: pointer;
}

.app-index-custom-range-preset:hover,
.app-index-custom-range-preset.is-selected {
  background: rgba(0, 0, 0, 0.04);
  color: #3A3B3C;
}

.app-index-custom-range-preset.is-selected {
  background: #f4f4f5;
}

.app-index-custom-range-main {
  min-width: 0;
  flex: 1 1 auto;
  padding-left: 8px;
}

.app-index-custom-range-nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.app-index-custom-range-nav-button {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 100px;
  appearance: none;
  background: transparent;
  color: #3A3B3C;
  cursor: pointer;
}

.app-index-custom-range-nav-button:hover {
  background: rgba(0, 0, 0, 0.04);
}

.app-index-custom-range-nav-button:disabled {
  color: #c7c7c7;
  cursor: default;
}

.app-index-custom-range-nav-button:disabled:hover {
  background: transparent;
}

.app-index-custom-range-nav-icon {
  width: 16px;
  height: 16px;
  display: block;
  background: currentColor;
  mask: url("../source/chevron-forward-outline.svg") center / contain no-repeat;
  -webkit-mask: url("../source/chevron-forward-outline.svg") center / contain no-repeat;
}

.app-index-custom-range-nav-icon-prev {
  transform: rotate(180deg);
}

.app-index-custom-range-calendars {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.app-index-custom-range-month {
  min-width: 0;
}

.app-index-custom-range-month-title {
  margin-bottom: 8px;
  color: #3A3B3C;
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
}

.app-index-custom-range-weekdays {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 2px;
}

.app-index-custom-range-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  column-gap: 0;
  row-gap: 3px;
}

.app-index-custom-range-weekday {
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a0a0a0;
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
}

.app-index-custom-range-day {
  width: 100%;
  aspect-ratio: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  appearance: none;
  background: transparent;
  color: #3A3B3C;
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
}

.app-index-custom-range-day:hover {
  background: rgba(0, 0, 0, 0.04);
}

.app-index-custom-range-day-empty,
.app-index-custom-range-day-empty:hover {
  background: transparent;
  pointer-events: none;
}

.app-index-custom-range-day.is-disabled,
.app-index-custom-range-day:disabled {
  color: #d7d7d7;
  cursor: not-allowed;
  opacity: 0.45;
}

.app-index-custom-range-day.is-disabled:hover,
.app-index-custom-range-day:disabled:hover {
  background: transparent;
}

.app-index-custom-range-day.is-in-range {
  background: #3A3B3C;
  color: #FFFFFF;
  border-radius: 0;
}

.app-index-custom-range-day.is-selected {
  background: #3A3B3C;
  color: #FFFFFF;
}

.app-index-custom-range-day.is-single-day {
  border-radius: 999px;
}

.app-index-custom-range-day.is-range-start {
  border-top-left-radius: 999px;
  border-bottom-left-radius: 999px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.app-index-custom-range-day.is-range-end {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
}

.app-index-custom-range-actions {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  gap: 6px;
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(128, 128, 128, 0.12);
}

.app-index-custom-range-reset {
  min-height: 30px;
  padding: 0 6.5px;
  border: 0;
  border-radius: 6px;
  appearance: none;
  background: transparent;
  color: #DE1738;
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
}

.app-index-custom-range-reset:hover {
  background: rgba(222, 23, 56, 0.08);
}

.app-page {
  width: 100%;
  padding-bottom: 32px;
}

.app-messages-row1 {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.app-messages-filter {
  width: fit-content;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 1px;
  border: 1px solid rgba(128, 128, 128, 0.12);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.02);
}

.app-messages-filter-option {
  width: 82px;
  height: 30px;
  appearance: none;
  border: 1px solid rgba(128, 128, 128, 0);
  border-radius: 5px;
  background: transparent;
  color: #808080;
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
}

.app-messages-filter-option:hover {
  color: #525252;
}

.app-messages-filter-option.is-selected {
  border-color: rgba(128, 128, 128, 0.24);
  background: #FFFFFF;
  color: #3A3B3C;
  font-weight: 500;
  cursor: default;
}

.app-messages-filter-option.is-selected:hover {
  color: #3A3B3C;
}

.app-messages-row-actions {
  width: fit-content;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.app-messages-row-tools {
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.app-messages-row-action {
  width: fit-content;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4.5px;
  padding: 0 6.5px;
  border: 1px solid rgba(128, 128, 128, 0.14);
  border-radius: 8px;
  appearance: none;
  background: #FCFCFC;
  color: #3A3B3C;
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
}

.app-messages-sort {
  position: relative;
  width: fit-content;
  height: 34px;
}

.app-messages-sort-menu {
  width: 156px;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  z-index: 8;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 4px;
  border: 1px solid rgba(128, 128, 128, 0.16);
  border-radius: 8px;
  background: #FCFCFC;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.app-messages-sort-menu[hidden] {
  display: none;
}

.app-messages-sort-option {
  width: 100%;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 8px;
  border: 0;
  border-radius: 5px;
  appearance: none;
  background: transparent;
  color: #3A3B3C;
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 400;
  text-align: left;
  cursor: pointer;
}

.app-messages-sort-option:hover,
.app-messages-sort-option.is-selected {
  background: rgba(0, 0, 0, 0.04);
}

.app-messages-row-action:hover {
  background: rgba(0, 0, 0, 0.025);
}

.app-messages-filter-dropdown {
  position: relative;
  width: fit-content;
  height: 34px;
}

.app-messages-filter-action {
  gap: 3.5px;
}

.app-messages-filter-action .app-messages-row-action-label {
  font-weight: 400;
}

.app-messages-row-action-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  color: #505050;
}

.app-messages-search-icon,
.app-messages-sort-icon {
  width: 15px;
  height: 15px;
  flex-basis: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 16;
}

.app-messages-sort-arrow {
  width: 13px;
  height: 13px;
  flex: 0 0 13px;
  background: #808080;
  transform: rotate(90deg);
  mask: url("../source/chevron-forward-outline.svg") center / contain no-repeat;
  -webkit-mask: url("../source/chevron-forward-outline.svg") center / contain no-repeat;
}

.app-messages-search {
  width: 152px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0 8px;
  border: 1px solid rgba(128, 128, 128, 0.14);
  border-radius: 8px;
  background: #FCFCFC;
}

.app-messages-search-input-icon {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  background: #505050;
  mask: url("../source/magnifying-glass.svg") center / contain no-repeat;
  -webkit-mask: url("../source/magnifying-glass.svg") center / contain no-repeat;
}

.app-messages-search-input {
  width: 100%;
  min-width: 0;
  height: 100%;
  padding: 0;
  border: 0;
  outline: 0;
  appearance: none;
  background: transparent;
  color: #3A3B3C;
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 400;
}

.app-messages-search-input::placeholder {
  color: #808080;
}

.app-messages-search-input::-webkit-search-cancel-button {
  display: none;
}

.app-messages-search-highlight {
  background: #D4A017;
  color: #3A3B3C;
  border-radius: 2px;
}

.app-messages-detail-backdrop {
  position: fixed;
  inset: 0;
  background: transparent;
  z-index: 26;
}

.app-messages-detail-backdrop[hidden] {
  display: none !important;
}

.app-messages-detail-panel {
  position: fixed;
  top: 82px;
  right: 18px;
  width: min(342px, calc(100vw - 24px));
  max-height: calc(100vh - 112px);
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(128, 128, 128, 0.16);
  border-radius: 8px;
  background: #FCFCFC;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
  z-index: 27;
  overflow: hidden;
}

.app-messages-detail-panel[hidden] {
  display: none !important;
}

.app-messages-detail-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  padding: 0 0 2px;
}

.app-messages-detail-heading {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.app-messages-detail-kicker {
  color: #808080;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.app-messages-detail-title {
  margin: 0;
  color: #3A3B3C;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.app-messages-detail-message {
  margin: 2px 0 0;
  color: #3A3B3C;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.app-messages-detail-played {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  width: fit-content;
  margin-top: 2px;
  color: #808080;
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.45;
  cursor: help;
}

.app-messages-detail-played::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 0;
  top: calc(100% + 7px);
  width: 218px;
  display: none;
  padding: 8px 9px;
  border: 1px solid rgba(128, 128, 128, 0.16);
  border-radius: 8px;
  background: #FCFCFC;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
  color: #3A3B3C;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
  white-space: normal;
  z-index: 2;
}

.app-messages-detail-played.is-tooltip-open::after {
  display: block;
}

.app-messages-detail-played-icon {
  width: 11px;
  height: 11px;
  flex: 0 0 11px;
  background: currentColor;
  mask: url("../source/play-2.svg") center / contain no-repeat;
  -webkit-mask: url("../source/play-2.svg") center / contain no-repeat;
}

.app-messages-detail-header-separator {
  width: calc(100% + 34px);
  height: 1px;
  margin: 4px 0;
  background: rgba(128, 128, 128, 0.16);
}

.app-messages-detail-block-group {
  width: calc(100% + 34px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin: 6px 0;
}

.app-messages-detail-block {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  width: fit-content;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #DE1738;
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.45;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.app-messages-detail-block:hover {
  color: #C91331;
}

.app-messages-detail-block:disabled {
  cursor: default;
}

.app-messages-detail-block.is-blocked-state,
.app-messages-detail-block.is-blocked-state:hover {
  color: #808080;
  font-size: 11px;
}

.app-messages-detail-block.is-blocked-state .app-messages-detail-block-icon {
  width: 12px;
  height: 12px;
  flex-basis: 12px;
}

.app-messages-detail-block-icon {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  background: currentColor;
  mask: url("../source/block_icon.svg") center / contain no-repeat;
  -webkit-mask: url("../source/block_icon.svg") center / contain no-repeat;
}

.app-messages-block-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(58, 59, 60, 0.18);
  z-index: 28;
}

.app-messages-block-backdrop[hidden] {
  display: none !important;
}

.app-messages-block-panel {
  position: fixed;
  top: 50%;
  left: 50%;
  width: min(328px, calc(100vw - 28px));
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(128, 128, 128, 0.16);
  border-radius: 10px;
  background: #FCFCFC;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
  transform: translate(-50%, -50%);
  z-index: 29;
}

.app-messages-block-panel[hidden] {
  display: none !important;
}

.app-messages-block-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.app-messages-block-title {
  margin: 0;
  color: #3A3B3C;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}

.app-messages-block-close {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #505050;
  cursor: pointer;
}

.app-messages-block-close:hover {
  background: rgba(0, 0, 0, 0.035);
}

.app-messages-block-close-icon {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.app-messages-block-close-icon::before {
  content: "×";
  display: block;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}

.app-messages-block-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.app-messages-block-label {
  color: #808080;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
}

.app-messages-block-input {
  width: 100%;
  min-height: 112px;
  resize: vertical;
  padding: 9px 10px;
  border: 1px solid rgba(128, 128, 128, 0.22);
  border-radius: 8px;
  background: #FFFFFF;
  color: #3A3B3C;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
  outline: none;
}

.app-messages-block-input:focus {
  border-color: rgba(58, 59, 60, 0.42);
}

.app-messages-block-input[aria-invalid="true"] {
  border-color: #DE1738;
}

.app-messages-block-confirm {
  width: 100%;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 0;
  border-radius: 8px;
  background: #DE1738;
  color: #FFFFFF;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
}

.app-messages-block-confirm:hover {
  background: #C91331;
}

.app-messages-block-confirm:disabled {
  cursor: wait;
  opacity: 0.72;
}

.app-messages-detail-close {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #505050;
  cursor: pointer;
}

.app-messages-detail-close:hover {
  background: rgba(0, 0, 0, 0.035);
}

.app-messages-detail-close-icon {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
}

.app-messages-detail-close-icon::before {
  content: "×";
  display: block;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}

.app-messages-detail-body {
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow: auto;
  padding-right: 1px;
}

.app-messages-detail-body::-webkit-scrollbar {
  display: none;
}

.app-messages-detail-separator {
  width: 100%;
  height: 1px;
  margin: 3px 0;
  background: rgba(128, 128, 128, 0.16);
}

.app-messages-detail-field {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 3px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.app-messages-detail-field-label {
  position: relative;
  color: #808080;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
}

.app-messages-detail-field-label.has-tooltip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: help;
}

.app-messages-detail-field-label.has-tooltip::before {
  content: "";
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  background: currentColor;
  mask: url("../source/info.svg") center / contain no-repeat;
  -webkit-mask: url("../source/info.svg") center / contain no-repeat;
  order: 2;
}

.app-messages-detail-field-label.has-tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 0;
  top: calc(100% + 7px);
  width: 258px;
  display: none;
  padding: 8px 9px;
  border: 1px solid rgba(128, 128, 128, 0.16);
  border-radius: 8px;
  background: #FCFCFC;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
  color: #3A3B3C;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
  white-space: normal;
  z-index: 2;
}

.app-messages-detail-field-label.has-tooltip.is-tooltip-open::after {
  display: block;
}

@media (hover: hover) and (pointer: fine) {
  .app-messages-detail-played:hover::after,
  .app-messages-detail-played:focus-visible::after,
  .app-messages-detail-field-label.has-tooltip:hover::after,
  .app-messages-detail-field-label.has-tooltip:focus-visible::after {
    display: block;
  }
}

.app-messages-detail-field-value {
  color: #3A3B3C;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
  text-align: right;
  overflow-wrap: anywhere;
}

.app-messages-detail-reason {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  padding: 0;
}

.app-messages-detail-reason-title {
  color: #808080;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
}

.app-messages-detail-reason-text {
  margin: 0;
  color: #000000;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.app-messages-list {
  width: 100%;
  min-height: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  margin-top: 14px;
  padding-bottom: 0;
  overflow-y: auto;
  scrollbar-width: none;
}

.app-messages-list.is-detail-open {
  overflow: hidden;
}

.app-messages-body-zone {
  overflow: hidden;
  padding-bottom: 0;
}

.app-messages-list::-webkit-scrollbar {
  display: none;
}

.app-messages-item {
  width: 100%;
  flex: 0 0 auto;
  height: auto;
  min-height: 62px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 34px;
  grid-auto-rows: auto;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border: 1px solid rgba(128, 128, 128, 0.14);
  border-radius: 8px;
  background: #FCFCFC;
  overflow: hidden;
}

.app-messages-item-play,
.app-messages-item-more {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 8px;
  appearance: none;
  background: transparent;
  color: #505050;
  cursor: pointer;
  align-self: center;
}

.app-messages-item-play:hover,
.app-messages-item-more:hover {
  background: rgba(0, 0, 0, 0.035);
}

.app-messages-item-play:disabled {
  cursor: default;
}

.app-messages-item-play:disabled:hover {
  background: transparent;
}

.app-messages-list.is-playing .app-messages-item-play {
  color: #c7c7c7;
}

.app-messages-list.is-single-message-pending .app-messages-item-play {
  color: #c7c7c7;
}

.app-messages-item.is-pending .app-messages-item-play {
  color: #50C878;
}

.app-messages-item.is-pending .app-messages-item-play:hover {
  background: rgba(80, 200, 120, 0.08);
}

.app-messages-item.is-playing .app-messages-item-play {
  color: #625dfe;
}

.app-messages-item.is-playing .app-messages-item-play:hover {
  background: rgba(98, 93, 254, 0.08);
}

.app-messages-item.is-playing .app-messages-item-more {
  color: #c7c7c7;
}

.app-messages-item-play-icon,
.app-messages-item-more-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  background: currentColor;
}

.app-messages-item-play-icon {
  mask: url("../source/play.svg") center / contain no-repeat;
  -webkit-mask: url("../source/play.svg") center / contain no-repeat;
}

.app-messages-item-more-icon {
  mask: url("../source/ellipsis-vertical.svg") center / contain no-repeat;
  -webkit-mask: url("../source/ellipsis-vertical.svg") center / contain no-repeat;
}

.app-messages-item-main {
  min-width: 0;
  width: 100%;
  max-width: 100%;
  height: auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-self: center;
  justify-self: stretch;
  overflow: visible;
  cursor: pointer;
}

.app-messages-item-message {
  width: 100%;
  height: auto;
  min-height: 0;
  max-width: 100%;
  flex: 0 1 auto;
  display: block;
  margin: 0;
  color: #3A3B3C;
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
  overflow: visible;
  overflow-wrap: anywhere;
  word-break: break-word;
  white-space: normal;
}

.app-messages-item-meta {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  color: #808080;
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.45;
  flex-wrap: wrap;
  white-space: normal;
  overflow: visible;
}

.app-messages-item-nickname,
.app-messages-item-date,
.app-messages-item-price {
  min-width: 0;
  max-width: 100%;
  overflow: visible;
  overflow-wrap: anywhere;
  text-overflow: clip;
  white-space: normal;
}

.app-messages-item-price {
  color: #3A3B3C;
  font-weight: 500;
}

.app-messages-item-date::before,
.app-messages-item-price::before {
  content: "";
  width: 3px;
  height: 3px;
  display: inline-block;
  margin-right: 8px;
  border-radius: 999px;
  background: #C7C7C7;
  vertical-align: middle;
}

@media (max-width: 480px) {
  .app-messages-item {
    grid-template-columns: 24px minmax(0, 1fr) 24px;
    gap: 6px;
    padding: 8px 6px;
  }

  .app-messages-item-main {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }

  .app-messages-item-play,
  .app-messages-item-more {
    width: 24px;
    height: 28px;
  }

  .app-messages-item-message {
    font-size: 12.5px;
  }

  .app-messages-detail-panel {
    top: 78px;
    right: 10px;
    left: 10px;
    width: auto;
    max-height: calc(100vh - 104px);
  }
}

.app-page-header {
  width: 100%;
  padding: 2px 0 24px;
}

.app-page-eyebrow {
  margin: 0 0 7px;
  color: #625dfe;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.app-page-title {
  margin: 0;
  color: #202124;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.15;
}

.app-page-description {
  max-width: 560px;
  margin: 12px 0 0;
  color: #6f6f6f;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
}

.app-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.app-page-panel {
  min-height: 136px;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 18px;
  border: 1px solid rgba(128, 128, 128, 0.16);
  border-radius: 8px;
  background: #ffffff;
}

.app-page-panel-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  background: #513edf;
}

.app-page-panel-icon-message {
  mask: url("../source/message-circle.svg") center / contain no-repeat;
  -webkit-mask: url("../source/message-circle.svg") center / contain no-repeat;
}

.app-page-panel-icon-bell {
  mask: url("../source/bell.svg") center / contain no-repeat;
  -webkit-mask: url("../source/bell.svg") center / contain no-repeat;
}

.app-page-panel-icon-link {
  mask: url("../source/link.svg") center / contain no-repeat;
  -webkit-mask: url("../source/link.svg") center / contain no-repeat;
}

.app-page-panel-icon-file {
  mask: url("../source/file-text.svg") center / contain no-repeat;
  -webkit-mask: url("../source/file-text.svg") center / contain no-repeat;
}

.app-page-panel-icon-palette {
  mask: url("../source/palette.svg") center / contain no-repeat;
  -webkit-mask: url("../source/palette.svg") center / contain no-repeat;
}

.app-page-panel-icon-360 {
  mask: url("../source/360.svg") center / contain no-repeat;
  -webkit-mask: url("../source/360.svg") center / contain no-repeat;
}

.app-page-panel-title {
  margin: 0;
  color: #202124;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
}

.app-page-panel-text {
  margin: 7px 0 0;
  color: #70757a;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
}

.app-footer-player {
  width: 100%;
  height: 68px;
  flex: 0 0 68px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 8px 16px;
  border-top: 1px solid rgba(128, 128, 128, 0.12);
}

.app-footer-player-replay-zone,
.app-footer-player-next-zone {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 100px;
  appearance: none;
  background: transparent;
  color: #3A3B3C;
  cursor: pointer;
}

.app-footer-player-replay-zone:hover,
.app-footer-player-next-zone:hover {
  background: rgba(128, 128, 128, 0.07);
}

.app-footer-player-replay-zone:disabled,
.app-footer-player-next-zone:disabled {
  cursor: default;
}

.app-footer-player-replay-zone.is-at-start,
.app-footer-player-replay-zone.is-blocked,
.app-footer-player-replay-zone.is-setup-locked,
.app-footer-player-next-zone.is-at-end,
.app-footer-player-next-zone.is-blocked,
.app-footer-player-next-zone.is-setup-locked,
.app-footer-player-replay-zone[aria-disabled="true"],
.app-footer-player-next-zone[aria-disabled="true"] {
  cursor: default;
}

.app-footer-player-replay-zone:disabled:hover,
.app-footer-player-next-zone:disabled:hover {
  background: transparent;
}

.app-footer-player-replay-zone.is-at-start:hover,
.app-footer-player-replay-zone.is-blocked:hover,
.app-footer-player-replay-zone.is-setup-locked:hover,
.app-footer-player-next-zone.is-at-end:hover,
.app-footer-player-next-zone.is-blocked:hover,
.app-footer-player-next-zone.is-setup-locked:hover,
.app-footer-player-replay-zone[aria-disabled="true"]:hover,
.app-footer-player-next-zone[aria-disabled="true"]:hover {
  background: transparent;
}

.app-footer-player-replay-zone:focus-visible,
.app-footer-player-next-zone:focus-visible {
  outline: 2px solid rgba(81, 62, 223, 0.35);
  outline-offset: 2px;
}

.app-footer-player-replay-zone.is-at-start {
  color: #c7c7c7;
}

.app-footer-player-next-zone.is-at-end {
  color: #c7c7c7;
}

.app-footer-player-replay-zone.is-blocked,
.app-footer-player-next-zone.is-blocked {
  color: #c7c7c7;
}

.app-footer-player-replay-zone.is-setup-locked,
.app-footer-player-next-zone.is-setup-locked {
  color: #c7c7c7;
}

.app-footer-player-replay-zone.is-loading,
.app-footer-player-next-zone.is-loading {
  color: #625dfe;
}

.app-footer-player-replay-zone.is-blocked.is-loading,
.app-footer-player-next-zone.is-blocked.is-loading {
  color: #c7c7c7;
}

.app-footer-player-replay-icon,
.app-footer-player-next-icon {
  width: 25px;
  height: 25px;
  display: block;
  flex: 0 0 25px;
}

.app-footer-player-replay-icon {
  fill: currentColor;
}

.app-footer-player-next-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  background-color: currentColor;
  mask: url("../source/skip-forward-fill.svg") center / contain no-repeat;
  -webkit-mask: url("../source/skip-forward-fill.svg") center / contain no-repeat;
}

.app-footer-player-play-pause-zone {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 0 2px;
  border: 0;
  border-radius: 100px;
  appearance: none;
  background: transparent;
  color: #3A3B3C;
  cursor: pointer;
}

.app-footer-player-play-pause-zone:hover {
  background: rgba(128, 128, 128, 0.07);
}

.app-footer-player-play-pause-zone:disabled {
  cursor: default;
}

.app-footer-player-play-pause-zone:disabled:hover {
  background: transparent;
}

.app-footer-player-play-pause-zone:focus-visible {
  outline: 2px solid rgba(81, 62, 223, 0.35);
  outline-offset: 2px;
}

.app-footer-player-play-pause-zone.is-playing {
  color: #c7c7c7;
}

.app-footer-player-play-pause-zone.is-playing:not(.is-empty) {
  color: #3A3B3C;
}

.app-footer-player-play-pause-zone.is-message-pending:not(.is-displaying) {
  color: #50C878;
}

.app-footer-player-play-pause-zone.is-displaying {
  color: #625dfe;
}

.app-footer-player-play-pause-zone.is-loading {
  color: #3A3B3C;
}

.app-footer-player-play-pause-zone.is-playing.is-loading {
  color: #c7c7c7;
}

.app-footer-player-play-pause-zone.is-playing:not(.is-empty).is-loading {
  color: #3A3B3C;
}

.app-footer-player-play-pause-zone.is-displaying.is-loading {
  color: #625dfe;
}

.app-footer-player-play-icon,
.app-footer-player-pause-icon {
  width: 28px;
  height: 28px;
  display: none;
  fill: currentColor;
  flex: 0 0 28px;
}

.app-footer-player-pause-icon {
  margin-right: 1px;
}

.app-footer-player-play-pause-zone:not(.is-playing) .app-footer-player-play-icon {
  display: block;
}

.app-footer-player-play-pause-zone.is-playing .app-footer-player-pause-icon {
  display: block;
}

.app-menu-up {
  width: 100%;
  height: fit-content;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 5px;
}

.app-menu-down {
  width: auto;
  min-width: 55px;
  height: fit-content;
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 26px;
  transform: none;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  padding-left: 16px;
  background: #FCFCFC;
}

.app-menu-item {
  width: fit-content;
  min-width: 55px;
  height: fit-content;
  min-height: 45px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 10px;
  color: #808080;
  text-decoration: none;
}

.app-menu-item:hover {
  background: rgba(58, 59, 60, 0.03);
}

.app-menu-item.is-active {
  color: #513edf;
}

.app-menu-item-content {
  width: 100%;
  min-width: 223px;
  height: fit-content;
  display: flex;
  align-items: center;
  gap: 8px;
  color: currentColor;
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}

.app-menu-item-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  display: block;
  background: currentColor;
}

.app-menu-item-icon-home {
  mask: url("../source/home.svg") center / contain no-repeat;
  -webkit-mask: url("../source/home.svg") center / contain no-repeat;
}

.app-menu-item-icon-message {
  mask: url("../source/message-circle.svg") center / contain no-repeat;
  -webkit-mask: url("../source/message-circle.svg") center / contain no-repeat;
}

.app-menu-item-icon-integration {
  mask: url("../source/link.svg") center / contain no-repeat;
  -webkit-mask: url("../source/link.svg") center / contain no-repeat;
}

.app-menu-item-icon-style {
  mask: url("../source/palette.svg") center / contain no-repeat;
  -webkit-mask: url("../source/palette.svg") center / contain no-repeat;
}

.app-menu-item-icon-settings {
  width: 20px;
  height: 20px;
  flex-basis: 20px;
  mask: url("../source/settings.svg") center / contain no-repeat;
  -webkit-mask: url("../source/settings.svg") center / contain no-repeat;
}

.app-menu-down-item {
  min-width: 0;
  min-height: 0;
  padding: 0;
}

.app-menu-donation-group {
  position: relative;
  width: 100%;
}

.app-menu-donation-toggle {
  width: 100%;
  min-height: 0;
  height: fit-content;
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  gap: 8px;
  padding: 0;
}

.app-menu-donation-toggle .app-menu-item-content {
  min-width: 0;
  flex: 1 1 auto;
}

.app-menu-donation-toggle:hover {
  background: transparent;
  color: #3A3B3C;
}

.app-menu-donation-icon {
  mask: url("../source/coins.svg") center / contain no-repeat;
  -webkit-mask: url("../source/coins.svg") center / contain no-repeat;
}

.app-menu-down-separator {
  width: calc(100% - 16px);
  height: 1px;
  margin: 8px 0;
  background: #e6e6e6;
  flex: 0 0 auto;
}

.app-menu-donation-tooltip {
  position: absolute;
  left: 0;
  bottom: calc(100% + 4px);
  transform: translateY(4px);
  padding: 6px 8px;
  border-radius: 5px;
  background: #FCFCFC;
  border: 1px solid rgba(128, 128, 128, 0.18);
  color: #3A3B3C;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
  z-index: 30;
}

.app-menu-donation-group.has-donation-tooltip.is-donation-tooltip-visible .app-menu-donation-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.app-menu-down-item:hover {
  background: transparent;
  color: #3A3B3C;
}

.app-menu-item-label {
  display: block;
  opacity: 1;
  transition: opacity 260ms ease, width 260ms ease;
}

.app-menu-item[data-menu-tooltip]::after {
  content: attr(data-menu-tooltip);
  position: absolute;
  left: calc(100% + 10px);
  top: 50%;
  transform: translateY(calc(-50% + 2px));
  padding: 6px 8px;
  border: 1px solid rgba(128, 128, 128, 0.18);
  border-radius: 5px;
  background: #FCFCFC;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  color: #3A3B3C;
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease, visibility 0s linear 0s;
  visibility: hidden;
  white-space: nowrap;
  z-index: 30;
}

.app-menu-item.is-menu-tooltip-visible {
  z-index: 40;
}

.app-menu-item.is-menu-tooltip-visible::after {
  opacity: 1;
  transform: translateY(-50%);
  transition: opacity 160ms ease, transform 160ms ease, visibility 0s linear 0s;
  visibility: visible;
}

@keyframes app-menu-to-footer {
  0% {
    width: 88px;
    height: 100%;
    left: 0;
    top: 50%;
    bottom: auto;
    opacity: 1;
    transform: translateY(-50%);
  }

  45% {
    width: 88px;
    height: 100%;
    left: -88px;
    top: 50%;
    bottom: auto;
    opacity: 0;
    transform: translateY(-50%);
  }

  46% {
    width: 100%;
    height: 72px;
    left: 50%;
    top: auto;
    bottom: -72px;
    opacity: 0;
    transform: translateX(-50%);
  }

  100% {
    width: 100%;
    height: 72px;
    left: 50%;
    top: auto;
    bottom: 0;
    opacity: 1;
    transform: translateX(-50%);
  }
}

@keyframes app-footer-to-menu {
  0% {
    width: 100%;
    height: 72px;
    left: 50%;
    top: auto;
    bottom: 0;
    opacity: 1;
    transform: translateX(-50%);
  }

  45% {
    width: 100%;
    height: 72px;
    left: 50%;
    top: auto;
    bottom: -72px;
    opacity: 0;
    transform: translateX(-50%);
  }

  46% {
    width: 88px;
    height: 100%;
    left: -88px;
    top: 50%;
    bottom: auto;
    opacity: 0;
    transform: translateY(-50%);
  }

  100% {
    width: 88px;
    height: 100%;
    left: 0;
    top: 50%;
    bottom: auto;
    opacity: 1;
    transform: translateY(-50%);
  }
}

@keyframes app-menu-options-fade-out {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes app-menu-options-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.app-menu.is-transitioning-to-footer .app-menu-up,
.app-menu.is-transitioning-to-menu .app-menu-up,
.app-menu.is-transitioning-to-footer .app-menu-down,
.app-menu.is-transitioning-to-menu .app-menu-down {
  animation:
    app-menu-options-fade-out 180ms ease both,
    app-menu-options-fade-in 180ms ease 620ms both;
}

.app-header-processing {
  position: relative;
  width: 26px;
  height: 26px;
  margin-left: auto;
  margin-right: 4.45px;
  margin-bottom: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 26px;
}

.app-header-processing[hidden] {
  display: none !important;
}

.app-header-processing-spinner {
  font-size: 26px;
  position: relative;
  display: inline-block;
  width: 1em;
  height: 1em;
}

.app-header-processing-spinner.center {
  position: absolute;
  inset: 0;
  margin: auto;
}

.app-header-processing-spinner .app-header-processing-spinner-blade {
  position: absolute;
  left: 0.463em;
  top: 0.12em;
  width: 0.074em;
  height: 0.2777em;
  border-radius: 0.0555em;
  background-color: transparent;
  transform-origin: center 0.38em;
  animation: app-header-processing-fade 1s infinite linear;
}

.app-header-processing-spinner .app-header-processing-spinner-blade:nth-child(1) {
  animation-delay: 0s;
  transform: rotate(0deg);
}

.app-header-processing-spinner .app-header-processing-spinner-blade:nth-child(2) {
  animation-delay: 0.083s;
  transform: rotate(30deg);
}

.app-header-processing-spinner .app-header-processing-spinner-blade:nth-child(3) {
  animation-delay: 0.166s;
  transform: rotate(60deg);
}

.app-header-processing-spinner .app-header-processing-spinner-blade:nth-child(4) {
  animation-delay: 0.249s;
  transform: rotate(90deg);
}

.app-header-processing-spinner .app-header-processing-spinner-blade:nth-child(5) {
  animation-delay: 0.332s;
  transform: rotate(120deg);
}

.app-header-processing-spinner .app-header-processing-spinner-blade:nth-child(6) {
  animation-delay: 0.415s;
  transform: rotate(150deg);
}

.app-header-processing-spinner .app-header-processing-spinner-blade:nth-child(7) {
  animation-delay: 0.498s;
  transform: rotate(180deg);
}

.app-header-processing-spinner .app-header-processing-spinner-blade:nth-child(8) {
  animation-delay: 0.581s;
  transform: rotate(210deg);
}

.app-header-processing-spinner .app-header-processing-spinner-blade:nth-child(9) {
  animation-delay: 0.664s;
  transform: rotate(240deg);
}

.app-header-processing-spinner .app-header-processing-spinner-blade:nth-child(10) {
  animation-delay: 0.747s;
  transform: rotate(270deg);
}

.app-header-processing-spinner .app-header-processing-spinner-blade:nth-child(11) {
  animation-delay: 0.83s;
  transform: rotate(300deg);
}

.app-header-processing-spinner .app-header-processing-spinner-blade:nth-child(12) {
  animation-delay: 0.913s;
  transform: rotate(330deg);
}

@keyframes app-header-processing-fade {
  22% {
    background-color: #808080;
  }

  100% {
    background-color: transparent;
  }
}

.app-header-feedback-container {
  width: fit-content;
  max-width: 130px;
  height: fit-content;
  min-height: 30px;
  position: relative;
  display: flex;
  flex: 0 1 auto;
  align-items: center;
  margin: 0 4px;
  overflow: visible;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 180ms ease, max-width 240ms ease, margin 240ms ease, transform 240ms ease;
}

.app-header-feedback {
  width: fit-content;
  height: fit-content;
  min-height: 30px;
  appearance: none;
  border: 1px solid rgba(128, 128, 128, 0.17);
  border-radius: 10px;
  background: transparent;
  margin: 0;
  padding: 0 4px 0 8px;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #3A3B3C;
  cursor: pointer;
}

.app-header-feedback:hover {
  background: rgba(58, 59, 60, 0.04);
}

.app-header-feedback-main {
  width: fit-content;
  height: 30px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #3A3B3C;
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
}

.app-header-feedback-panel {
  position: absolute;
  top: calc(100% - 5px);
  right: 73px;
  width: 300px;
  height: fit-content;
  min-height: 138px;
  max-height: 80vh;
  padding: 8px;
  border-radius: 18px;
  background: #FCFCFC;
  border: 1px solid rgba(128, 128, 128, 0.16);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.12);
  z-index: 5;
}

.app-header-feedback-panel[hidden] {
  display: none !important;
}

.app-header-feedback-area {
  width: 100%;
  height: fit-content;
  min-height: 122px;
  position: relative;
}

.app-header-feedback-area.is-sent {
  min-height: 122px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.app-header-feedback-area.is-sent .app-header-feedback-input,
.app-header-feedback-area.is-sent .app-header-feedback-send {
  display: none;
}

.app-header-feedback-input {
  width: 100%;
  height: fit-content;
  min-height: 120px;
  max-height: 497px;
  display: block;
  resize: none;
  overflow-y: auto;
  padding: 12px 12px 48px;
  border: 1px solid rgba(128, 128, 128, 0.19);
  border-radius: 12px;
  outline: none;
  background: rgba(0, 0, 0, 0.01);
  color: #3A3B3C;
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.app-header-feedback-input::placeholder {
  color: #c7c7c7;
}

.app-header-feedback-input:focus {
  border-color: #3A3B3C;
}

.app-header-feedback-input:focus::placeholder {
  color: transparent;
}

.app-header-feedback-send {
  width: fit-content;
  height: fit-content;
  position: absolute;
  right: 5px;
  bottom: 7px;
  z-index: 2;
  appearance: none;
  border: 1px solid rgba(128, 128, 128, 0.21);
  border-radius: 10px;
  background: #FFFFFF;
  padding: 0 8px;
  display: flex;
  align-items: center;
  gap: 2px;
  cursor: pointer;
}

.app-header-feedback-send.is-empty {
  border-color: rgba(128, 128, 128, 0);
  background: rgba(0, 0, 0, 0.04);
  cursor: default;
}

.app-header-feedback-send-label {
  width: fit-content;
  height: 30px;
  display: flex;
  align-items: center;
  color: #3A3B3C;
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
}

.app-header-feedback-send-icon {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  display: block;
  background: #3A3B3C;
  mask: url("../source/arrow-right.svg") center / contain no-repeat;
  -webkit-mask: url("../source/arrow-right.svg") center / contain no-repeat;
}

.app-header-feedback-send.is-empty .app-header-feedback-send-label {
  color: #808080;
}

.app-header-feedback-send.is-empty .app-header-feedback-send-icon {
  background: #808080;
}

.app-header-feedback-success {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.app-header-feedback-success[hidden] {
  display: none !important;
}

.app-header-feedback-success-icon {
  width: 42px;
  height: 42px;
  display: block;
  background: #3A3B3C;
  mask: url("../source/INBOX.svg") center / contain no-repeat;
  -webkit-mask: url("../source/INBOX.svg") center / contain no-repeat;
}

.app-header-feedback-success-title {
  width: fit-content;
  height: fit-content;
  margin: 10px 8px 0;
  color: #3A3B3C;
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
}

.app-header-feedback-success-label {
  width: fit-content;
  height: fit-content;
  margin: 6px 8px 0;
  color: #808080;
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
  text-align: center;
}

.app-header-feedback-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  display: block;
  background: #3A3B3C;
  mask: url("../source/chatbubble-ellipses-outline.svg") center / contain no-repeat;
  -webkit-mask: url("../source/chatbubble-ellipses-outline.svg") center / contain no-repeat;
}

.app-header-feedback-label {
  width: fit-content;
  height: fit-content;
}

.app-header-feedback-key {
  width: 22px;
  height: 24px;
  margin-right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.05);
  color: #3A3B3C;
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
}

.app-header-notification {
  width: 30px;
  max-width: 30px;
  height: 30px;
  position: relative;
  flex: 0 0 30px;
  margin-left: 3px;
  margin-right: 3px;
  border-radius: 100px;
  background: transparent;
  overflow: visible;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 180ms ease, width 240ms ease, max-width 240ms ease, flex-basis 240ms ease, margin 240ms ease, transform 240ms ease, background-color 160ms ease, border-radius 160ms ease;
}

.app-header-notification:hover {
  background: rgba(128, 128, 128, 0.15);
}

.app-header-notification.is-tooltip-visible .app-header-notification-tooltip {
  opacity: 1;
  transform: translateX(-50%);
  pointer-events: auto;
}

.app-header-notification.is-panel-open {
  border-radius: 100px;
  background: transparent;
}

.app-header-notification.is-panel-open .app-header-notification-icon {
  color: #513edf;
}

.app-header-notification.is-panel-open:hover {
  background: transparent;
}

.app-header-notification-layout {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-header-notification-icon {
  width: 20px;
  height: 20px;
  display: block;
  position: relative;
  z-index: 2;
  color: #3A3B3C;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.app-header-notification-alert {
  width: 11px;
  height: 11px;
  position: absolute;
  top: 1px;
  right: 4px;
  z-index: 3;
  border: 2px solid #FCFCFC;
  border-radius: 20px;
  background: #DE1738;
}

.app-header-notification-alert[hidden] {
  display: none !important;
}

.app-header-notification-tooltip {
  position: absolute;
  left: calc(50% - 9px);
  top: calc(100% + 3px);
  transform: translateX(-50%);
  padding: 6px 8px;
  border-radius: 5px;
  background: #FCFCFC;
  border: 1px solid rgba(128, 128, 128, 0.18);
  color: #3A3B3C;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
  z-index: 3;
}

.app-header-notification-panel {
  position: absolute;
  top: calc(100% - 5px);
  right: 0;
  width: 389px;
  min-height: 189px;
  border-radius: 12px;
  background: #FCFCFC;
  border: 1px solid rgba(128, 128, 128, 0.16);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.12);
  z-index: 5;
}

.app-header-notification-panel[hidden] {
  display: none !important;
}

.app-header-notification-zone {
  width: 100%;
  min-height: 189px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 12px;
}

.app-header-notification-title {
  width: fit-content;
  height: fit-content;
  color: #3A3B3C;
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
}

.app-header-notification-row {
  width: 100%;
  min-height: 32px;
  height: fit-content;
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.app-header-notification-interaction {
  width: fit-content;
  min-width: 40px;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1px;
  border-radius: 8px;
  border: 1px solid rgba(128, 128, 128, 0.12);
  background: rgba(0, 0, 0, 0.02);
}

.app-header-notification-filter {
  width: 78px;
  height: 24px;
  appearance: none;
  border: 1px solid rgba(128, 128, 128, 0);
  border-radius: 5px;
  background: transparent;
  color: #808080;
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
}

.app-header-notification-filter:hover {
  color: #525252;
}

.app-header-notification-filter.is-selected {
  border-color: rgba(128, 128, 128, 0.24);
  background: #FFFFFF;
  color: #3A3B3C;
  font-weight: 500;
  cursor: default;
}

.app-header-notification-filter.is-selected:hover {
  color: #3A3B3C;
}

.app-header-notification-mark-read {
  width: fit-content;
  height: fit-content;
  appearance: none;
  border: 0;
  background: transparent;
  color: #808080;
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  padding: 0;
  cursor: default;
}

.app-header-notification-mark-read.is-active {
  color: #3A3B3C;
  font-weight: 500;
  cursor: pointer;
}

.app-header-notification-mark-read.is-active:hover {
  text-decoration: underline;
}

.app-header-notification-scroll-body {
  width: 100%;
  height: fit-content;
  max-height: 485px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.app-header-notification-no-news {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding-top: 24px;
  padding-bottom: 20px;
}

.app-header-notification-no-news[hidden] {
  display: none !important;
}

.app-header-notification-no-news-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 4px;
  display: block;
  background: #808080;
  mask: url("../source/bell-off.svg") center / contain no-repeat;
  -webkit-mask: url("../source/bell-off.svg") center / contain no-repeat;
}

.app-header-notification-no-news-title {
  width: fit-content;
  height: fit-content;
  color: #3A3B3C;
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}

.app-header-notification-no-news-label {
  width: fit-content;
  height: fit-content;
  color: #8a8a8a;
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
}

.app-header-notification-loading {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding-top: 26px;
  padding-bottom: 20px;
}

.app-header-notification-loading[hidden] {
  display: none !important;
}

.app-header-notification-ripple {
  width: 45px;
  height: 40px;
  position: relative;
}

.app-header-notification-ripple span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 40px;
  height: 40px;
  border: 2px solid #8a8a8a;
  border-radius: 50%;
  opacity: 1;
  transform: translate(-50%, -50%) scale(0);
  animation: app-header-notification-ripple 1.2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.app-header-notification-ripple span:nth-child(2) {
  animation-delay: -0.6s;
}

@keyframes app-header-notification-ripple {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
  }
}

.app-header-notification-loading-label {
  width: fit-content;
  height: fit-content;
  color: #8a8a8a;
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
}

.app-header-notification-list {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.app-header-notification-each {
  width: 100%;
  height: fit-content;
  position: relative;
}

.app-header-notification-item-alert {
  width: 11px;
  height: 11px;
  margin-bottom: 3px;
  border: 3px solid rgba(255, 255, 255, 0.59);
  border-radius: 100px;
  background: #0088FF;
}

.app-header-notification-item-alert[hidden] {
  display: none !important;
}

.app-header-notification-item-message {
  width: fit-content;
  height: fit-content;
  margin-top: 7px;
  margin-bottom: 8px;
  color: #3A3B3C;
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.35;
}

.app-header-notification-each.is-unread .app-header-notification-item-message {
  font-weight: 500;
}

.app-header-notification-item-row {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  margin-bottom: 9px;
}

.app-header-notification-item-date {
  width: auto;
  height: fit-content;
  flex: 1 1 140px;
  display: flex;
  align-items: center;
  color: #3A3B3C;
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
}

.app-header-notification-item-actions {
  width: fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 0 0 auto;
}

.app-header-notification-item-row.is-wrapped .app-header-notification-item-actions {
  width: 100%;
  flex: 0 0 100%;
}

.app-header-notification-item-cta {
  width: fit-content;
  max-width: 120px;
  height: 28px;
  flex: 0 0 auto;
  padding: 0 8px;
  border: 0;
  border-radius: 5px;
  background: #513edf;
  color: #FFFFFF;
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 28px;
  text-align: center;
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app-header-notification-item-row.is-wrapped .app-header-notification-item-cta {
  width: 100%;
  max-width: none;
  flex: 1 1 0;
}

.app-header-notification-item-cta:hover {
  background: rgba(81, 62, 223, 0.72);
}

.app-header-notification-item-mark {
  width: fit-content;
  height: fit-content;
  min-height: 28px;
  flex: 0 0 auto;
  appearance: none;
  border: 1px solid rgba(128, 128, 128, 0.19);
  border-radius: 5px;
  background: transparent;
  color: #3A3B3C;
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
  padding: 0 8px;
  cursor: pointer;
}

.app-header-notification-item-row.is-wrapped .app-header-notification-item-mark {
  width: 100%;
  flex: 1 1 0;
}

.app-header-notification-item-mark:hover {
  background: rgba(0, 0, 0, 0.05);
}

.app-header-help {
  width: 30px;
  height: 30px;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  margin-left: 3px;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  transition: background-color 160ms ease, border-radius 160ms ease;
}

.app-header-help.is-context-open {
  border-radius: 100px;
  background: transparent;
}

.app-header-help.is-context-open .app-header-help-icon,
.app-header-help.is-context-open .app-header-help-layout {
  color: #513edf;
}

.app-header-help.is-context-open:hover {
  border-radius: 100px;
  background: transparent;
}

.app-header-help:hover {
  border-radius: 100px;
  background: rgba(128, 128, 128, 0.15);
}

.app-header-help.is-tooltip-visible .app-header-help-tooltip {
  opacity: 1;
  transform: translateX(-50%);
  pointer-events: auto;
}

.app-header-help-layout {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #3A3B3C;
  line-height: 1;
  white-space: nowrap;
}

.app-header-help-icon {
  display: block;
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  color: #3A3B3C;
}

.app-header-help-icon-ellipsis {
  display: none;
  object-fit: contain;
}

.app-header-help-tooltip {
  position: absolute;
  left: calc(50% - 9px);
  top: calc(100% + 3px);
  transform: translateX(-50%);
  padding: 6px 8px;
  border-radius: 5px;
  background: #FCFCFC;
  border: 1px solid rgba(128, 128, 128, 0.18);
  color: #3A3B3C;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
  z-index: 3;
}

.app-header-context-menu {
  position: absolute;
  top: calc(100% + 9px);
  right: 0;
  min-width: 187px;
  padding: 6px;
  border-radius: 12px;
  background: #FCFCFC;
  border: 1px solid rgba(128, 128, 128, 0.16);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.12);
  display: flex;
  flex-direction: column;
  gap: 3px;
  z-index: 4;
}

.app-header-context-menu[hidden] {
  display: none !important;
}

.app-header-context-menu-item {
  width: 100%;
  appearance: none;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #3A3B3C;
  font: inherit;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  text-align: left;
  padding: 10px 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.app-header-context-menu-item:hover {
  background: rgba(128, 128, 128, 0.12);
}

.app-header-context-menu-toggle {
  position: relative;
  background: transparent;
  display: none;
  overflow: visible;
}

.app-header-context-menu-mobile-notification {
  display: none;
}

.app-header-context-menu-mobile-feedback {
  display: none;
}

.app-header-context-menu-mobile-settings {
  display: none;
}

.app-header-context-menu-mobile-notification .app-header-context-menu-icon {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.app-header-context-menu-mobile-notification.is-panel-open {
  color: #513edf;
}

.app-header-context-menu-mobile-feedback.is-panel-open {
  color: #513edf;
}

.app-header-context-menu-feedback-icon {
  background: currentColor;
  mask: url("../source/chatbubble-ellipses-outline.svg") center / contain no-repeat;
  -webkit-mask: url("../source/chatbubble-ellipses-outline.svg") center / contain no-repeat;
}

.app-header-context-menu-settings-icon {
  background: currentColor;
  mask: url("../source/settings.svg") center / contain no-repeat;
  -webkit-mask: url("../source/settings.svg") center / contain no-repeat;
}

.app-header-context-menu-notification-badge {
  width: 23px;
  min-width: 23px;
  height: 23px;
  flex: 0 0 auto;
  padding: 0;
  border: 2px solid #FCFCFC;
  border-radius: 20px;
  background: #DE1738;
  color: #FFFFFF;
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 600;
  line-height: 19px;
  text-align: center;
}

.app-header-context-menu-notification-badge[hidden] {
  display: none !important;
}

.app-header-donation-group {
  position: relative;
  display: none;
}

.app-header-donation-tooltip {
  position: absolute;
  left: 12px;
  top: calc(100% + 0.75px);
  transform: translateY(-4px);
  padding: 6px 8px;
  border-radius: 5px;
  background: #F5F5F5;
  border: 1px solid rgba(128, 128, 128, 0.18);
  color: #3A3B3C;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
  z-index: 6;
}

.app-header-donation-group.has-donation-tooltip.is-donation-tooltip-visible .app-header-donation-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.app-header-context-menu-separator {
  height: 1px;
  margin: 0 12px;
  background: #e6e6e6;
  display: none;
  flex: 0 0 auto;
}

.app-header-context-menu-icon {
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  object-fit: contain;
  flex: 0 0 auto;
}

.app-header-context-menu-label {
  flex: 1 1 auto;
}

.app-header-toggle {
  position: relative;
  width: 38px;
  height: 22px;
  flex: 0 0 38px;
  border-radius: 999px;
  background: #cbd5e1;
  transition: background-color 160ms ease;
}

.app-header-toggle-thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.2);
  transition: transform 160ms ease;
}

.app-header-context-menu-toggle.is-enabled .app-header-toggle,
.app-menu-donation-toggle.is-enabled .app-header-toggle {
  background: #2ea84a;
}

.app-header-context-menu-toggle.is-enabled .app-header-toggle-thumb,
.app-menu-donation-toggle.is-enabled .app-header-toggle-thumb {
  transform: translateX(16px);
}

.app-header-context-menu-toggle:not(.is-enabled) .app-header-toggle,
.app-menu-donation-toggle:not(.is-enabled) .app-header-toggle {
  background: #b7b7b7;
}

.app-header-context-menu-toggle:not(.is-enabled) .app-header-toggle-thumb,
.app-menu-donation-toggle:not(.is-enabled) .app-header-toggle-thumb {
  transform: translateX(0);
}

.app-header-context-menu-toggle.is-changing .app-header-context-menu-label,
.app-menu-donation-toggle.is-changing .app-menu-item-label {
  color: #9ca3af;
}

.app-header-context-menu-toggle.is-changing .app-header-context-menu-icon,
.app-menu-donation-toggle.is-changing .app-menu-donation-icon {
  color: #9ca3af;
  opacity: 1;
}

.app-header-context-menu-toggle.is-changing .app-header-toggle,
.app-menu-donation-toggle.is-changing .app-header-toggle {
  opacity: 0.52;
}

.app-header-context-menu-toggle.is-disabled,
.app-menu-donation-toggle.is-disabled {
  opacity: 1;
  cursor: not-allowed;
}

.app-header-context-menu-toggle.is-disabled:hover,
.app-menu-donation-toggle.is-disabled:hover {
  background: transparent;
}

.app-header-context-menu-toggle.is-disabled .app-header-context-menu-label,
.app-menu-donation-toggle.is-disabled .app-menu-item-label {
  color: #9ca3af;
}

.app-header-context-menu-toggle.is-disabled .app-header-context-menu-icon,
.app-menu-donation-toggle.is-disabled .app-menu-donation-icon {
  color: #9ca3af;
  opacity: 1;
}

.app-header-context-menu-toggle.is-disabled .app-header-toggle,
.app-menu-donation-toggle.is-disabled .app-header-toggle {
  background: #e5e7eb;
}

.app-header-context-menu-toggle.is-disabled .app-header-toggle-thumb,
.app-menu-donation-toggle.is-disabled .app-header-toggle-thumb {
  background: #f8fafc;
  transform: translateX(0);
}

@media (max-width: 860px) {
  .app-style-form {
    grid-template-columns: minmax(0, 1fr);
  }

  .app-style-color-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .app-style-row1 {
    overflow-x: auto;
  }

  .app-style-tabs {
    width: 100%;
  }

  .app-style-tab {
    width: auto;
    flex: 1 1 0;
  }

  .app-style-card-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .app-style-form {
    grid-template-columns: minmax(0, 1fr);
  }

  .app-style-group-grid,
  .app-style-color-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 817px) {
  .app-header-help-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
  }
}

@media (max-width: 768px) {
  .app-index-period-select {
    margin-top: 2px;
    margin-bottom: 16px;
    order: 0;
  }

  .app-index-setup {
    margin-bottom: 12px;
    order: 0;
  }

  .app-index-period-zone {
    min-width: 0;
    max-width: none;
    height: 34px;
    min-height: 34px;
    gap: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
  }

  .app-index-period-option {
    min-width: 24%;
    max-width: none;
  }

  .app-index-period-option.is-selected,
  .app-index-period-option:disabled {
    border-color: transparent;
    background: #513edf;
    color: #FFFFFF;
  }

  .app-index-period-option.is-selected:hover,
  .app-index-period-option:disabled:hover {
    background: #513edf;
    color: #FFFFFF;
  }

  .app-index-custom-range.is-selected {
    border-color: transparent;
    background: #513edf;
    color: #FFFFFF;
  }

  .app-index-custom-range.is-selected .app-index-custom-range-icon {
    color: #FFFFFF;
  }

  .app-index-custom-range {
    width: 34px;
    height: 34px;
    min-height: 34px;
    flex: 0 0 34px;
    gap: 0;
    padding: 0 0 0 1px;
    border-radius: 100px;
  }

  .app-index-custom-range-icon {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
    color: #3A3B3C;
    mask-image: url("../source/chevron-forward-outline.svg");
    -webkit-mask-image: url("../source/chevron-forward-outline.svg");
  }

  .app-index-custom-range-label {
    display: none;
  }

  .app-index-custom-range-panel {
    left: 0;
    right: 0;
    width: 100%;
  }

  .app-index-period-select.is-custom-range-open .app-index-custom-range-panel {
    top: calc(100% - 28px);
    padding: 4px;
  }

}

@media (max-width: 480px) {
  .app-messages-row-action-label {
    display: none;
  }

  .app-messages-row-action {
    width: 34px;
    padding: 0;
  }

  .app-messages-sort {
    width: 34px;
  }

  .app-messages-sort-arrow {
    display: none;
  }

  .app-index-custom-range-content {
    flex-direction: column;
  }

  .app-index-custom-range-presets {
    width: 100%;
    flex-basis: auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 3px;
    padding-right: 0;
    padding-bottom: 5px;
    border-right: 0;
    border-bottom: 1px solid rgba(128, 128, 128, 0.12);
  }

  .app-index-custom-range-preset {
    min-height: 32px;
    padding: 0 8px;
    font-size: 12px;
    text-align: center;
  }

  .app-index-custom-range-main {
    padding-top: 5px;
    padding-left: 0;
  }

  .app-index-custom-range-calendars {
    grid-template-columns: 1fr;
  }

  .app-index-row1 {
    flex-wrap: wrap;
  }

  .app-index-earnings-card,
  .app-index-review-card {
    width: 100%;
    flex-basis: 100%;
  }
}

@media (max-width: 515px) {
  .app-index-metric-label {
    font-size: 11px;
  }

  .app-index-metric-value {
    font-size: 18px;
  }
}

@media (max-width: 370px) {
  .app-index-period-option {
    min-width: 31%;
  }

  .app-index-period-option-month {
    display: none;
  }
}

@media (max-width: 290px) {
  .app-index-metric-label {
    font-size: 9px;
  }

  .app-index-metric-value {
    font-size: 14px;
  }
}

@media (max-width: 280px) {
  .app-index-period-option {
    min-width: 47%;
  }

  .app-index-period-option-week {
    display: none;
  }
}

@media (max-width: 992px) and (min-width: 769px) {
  .app-sidebar-control {
    display: none;
  }

  .app-rest-body {
    width: calc(100% - 88px);
    margin-left: 88px;
  }

  .app-menu {
    width: 88px;
    overflow: visible;
  }

  .app-menu.is-transitioning-to-menu {
    animation: app-footer-to-menu 440ms ease 180ms both;
    pointer-events: none;
  }

  .app-menu-item {
    padding-right: 0;
    padding-left: 0;
  }

  .app-menu-down {
    width: 55px;
    align-items: center;
    right: auto;
    padding-left: 0;
  }

  .app-menu-down-item {
    width: 100%;
  }

  .app-menu-donation-group {
    width: 100%;
  }

  .app-menu-donation-toggle {
    width: 100%;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
  }

  .app-menu-donation-toggle .app-header-toggle {
    display: block;
    width: 32px;
    height: 18px;
    flex: 0 0 18px;
  }

  .app-menu-donation-toggle .app-header-toggle-thumb {
    width: 14px;
    height: 14px;
  }

  .app-menu-donation-toggle.is-enabled .app-header-toggle-thumb {
    transform: translateX(14px);
  }

  .app-menu-down-separator {
    width: 100%;
  }

  .app-menu-item-content {
    min-width: 0;
    justify-content: center;
    gap: 0;
  }

  .app-menu-item-label {
    width: 0;
    opacity: 0;
    overflow: hidden;
    white-space: nowrap;
  }
}

@media (max-width: 768px) {
  .app-sidebar-control {
    display: none;
  }

  .app-rest-body {
    width: 100%;
    height: calc(100% - 72px);
    margin-left: 0;
    margin-bottom: 72px;
    transition: none;
  }

  .app-body-zone {
    padding-top: 12px;
    padding-bottom: 32px;
  }

  .app-settings-rest-body {
    width: 100%;
    height: 100%;
    min-height: 100%;
    padding: 0;
    margin-bottom: 0;
  }

  .app-settings-body-zone {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
  }

  .app-messages-body-zone {
    padding-bottom: 0;
  }

  .app-page-header {
    padding-bottom: 18px;
  }

  .app-page-title {
    font-size: 26px;
  }

  .app-page-description {
    font-size: 14px;
  }

  .app-page-grid {
    grid-template-columns: 1fr;
  }

  .app-menu {
    width: 100%;
    height: 72px;
    left: 50%;
    top: auto;
    bottom: 0;
    transform: translateX(-50%);
    padding: 14px 8px 22px;
    border-right: 0;
    border-top: 1px solid rgba(128, 128, 128, 0.19);
    flex-direction: row;
    align-items: center;
    transition: none;
  }

  .app-menu-up {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .app-menu-down {
    display: none;
  }

  .app-menu-item {
    min-width: 22%;
    min-height: 0;
    padding-right: 0;
    padding-left: 0;
    border-radius: 0;
  }

  .app-menu-item:hover {
    background: transparent;
  }

  .app-menu-item:not(.is-active):hover {
    color: #3A3B3C;
  }

  .app-menu-item-content {
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 500;
  }

  .app-menu.is-transitioning-to-footer {
    animation: app-menu-to-footer 440ms ease 180ms both;
    pointer-events: none;
  }

  .app-header-context-menu-toggle {
    display: flex;
  }

  .app-header-donation-group {
    display: block;
  }

  .app-header-context-menu-separator-mobile-donation {
    display: block;
  }

  .app-header-context-menu-mobile-settings {
    display: flex;
  }

  .app-header-context-menu-separator-mobile-settings {
    display: block;
  }

  .app-header-help-icon-feather {
    display: none;
  }

  .app-header-help-icon-ellipsis {
    display: block;
  }
}

@media (max-width: 279px) {
  .app-menu-item-content {
    gap: 0;
  }

  .app-menu-item-label {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .app-menu {
    transition: none;
  }

  .app-header,
  .app-header-feedback-container,
  .app-header-notification {
    transition: none;
  }
}

@media (max-width: 565px) {
  .app-index-row2 {
    height: auto;
    min-height: 0;
    flex-direction: column;
  }

  .app-index-column3,
  .app-index-column4 {
    width: 100%;
    min-height: 278px;
    flex-basis: 100%;
  }

  .app-index-column3-metric .app-index-metric-value {
    font-size: 18px;
  }

  .app-index-column3-metric .app-index-metric-trend {
    font-size: 11px;
  }

  .app-messages-row1 {
    flex-wrap: wrap;
    column-gap: 8px;
    row-gap: 14px;
  }

  .app-messages-row-tools {
    display: contents;
  }

  .app-messages-row-actions {
    width: fit-content;
    order: 2;
  }

  .app-messages-search {
    width: 100%;
    height: 44px;
    order: 3;
  }

  .app-messages-search-input {
    font-size: 14px;
  }

  .app-header {
    height: 58px;
  }

  .app-header {
    padding-left: 16px;
    padding-right: 10px;
  }

  .app-header-help-tooltip {
    left: calc(50% - 27px);
  }

  .app-header-context-menu {
    position: fixed;
    top: 53px;
    width: calc(100vw - 28px);
    min-width: 0;
    left: 14px;
    right: auto;
  }

  .app-header-notification {
    width: 0;
    max-width: 0;
    flex-basis: 0;
    margin-left: 0;
    margin-right: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-4px);
  }

  .app-header-feedback-container {
    max-width: 0;
    margin-left: 0;
    margin-right: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-4px);
  }

  .app-header-context-menu-mobile-notification {
    display: flex;
  }

  .app-header-context-menu-separator-mobile-notification {
    display: block;
  }

  .app-header-context-menu-mobile-feedback {
    display: flex;
  }

  .app-header-context-menu-separator-mobile-feedback {
    display: block;
  }

  .app-header-notification-panel {
    position: fixed;
    top: 53px;
    width: calc(100vw - 28px);
    min-height: 189px;
    left: 14px;
    right: auto;
  }

  .app-header-feedback-panel {
    position: fixed;
    top: 53px;
    width: calc(100vw - 28px);
    left: 14px;
    right: auto;
  }

  .app-header-context-menu-item {
    font-size: 14px;
    gap: 8px;
  }

  .app-header-context-menu-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
  }

  .app-header-toggle {
    width: 38px;
    height: 22px;
    flex: 0 0 38px;
  }

  .app-header-toggle-thumb {
    top: 2px;
    left: 2px;
    width: 18px;
    height: 18px;
  }

  .app-header-context-menu-toggle.is-enabled .app-header-toggle-thumb {
    transform: translateX(16px);
  }
}

.app-title {
  display: flex;
  align-items: center;
  width: auto;
  height: 100%;
  flex: 1 1 auto;
  color: #3A3B3C;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
}

@supports (-webkit-touch-callout: none) {
  body {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .app-shell {
    height: 100%;
  }
}
