#hs-notice-root {
  position: fixed;
  top: calc(12px + env(safe-area-inset-top, 0px));
  left: 50%;
  transform: translateX(-50%);
  z-index: 10050;
  width: min(calc(100vw - 24px), 480px);
  pointer-events: none;
}

.hs-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(4, 5, 23, 0.12);
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(4, 5, 23, 0.12);
  color: #040517;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 15px;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: auto;
}

.hs-notice--visible {
  opacity: 1;
  transform: translateY(0);
}

.hs-notice__body {
  flex: 1 1 auto;
  min-width: 0;
}

.hs-notice__dismiss {
  flex: 0 0 auto;
  border: 0;
  background: transparent;
  color: rgba(4, 5, 23, 0.56);
  font-size: 22px;
  line-height: 1;
  padding: 0;
  margin: -2px 0 0;
  cursor: pointer;
}

.hs-notice__dismiss:hover,
.hs-notice__dismiss:focus {
  color: #040517;
}

.hs-notice--success {
  border-color: rgba(141, 207, 147, 0.8);
  background: #f4fff0;
}

.hs-notice--info {
  border-color: rgba(100, 181, 244, 0.8);
  background: #f0f8ff;
}

.hs-notice--error {
  border-color: rgba(211, 47, 47, 0.45);
  background: #fff5f5;
}

.menu-item--debug {
  display: block;
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  color: inherit;
  padding: 0;
}

.menu-item--debug-label {
  display: block;
  font-weight: 700;
  opacity: 0.72;
  margin-top: 8px;
}

@media (max-width: 767px) {
  #hs-notice-root {
    top: calc(8px + env(safe-area-inset-top, 0px));
    width: min(calc(100vw - 16px), 480px);
  }

  .hs-notice {
    font-size: 14px;
    padding: 12px 14px;
  }
}
