/* =====================================================
   WEB PUSH NOTIFICATION INVITE
===================================================== */

.notification-panel {
  position: fixed;

  right: 22px;
  bottom: 88px;

  z-index: 9998;

  width:
    min(360px, calc(100vw - 32px));

  padding:
    22px;

  border:
    1px solid rgba(253, 249, 250, 0.14);

  border-radius: 16px;

  background:
    rgba(4, 3, 21, 0.97);

  color: #fdf9fa;

  box-shadow:
    0 24px 65px rgba(0, 0, 0, 0.42);

  backdrop-filter:
    blur(18px);

  -webkit-backdrop-filter:
    blur(18px);
}


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


.notification-panel-close {
  position: absolute;

  top: 11px;
  right: 13px;

  width: 30px;
  height: 30px;

  padding: 0;

  border: 0;

  background: transparent;

  color:
    rgba(253, 249, 250, 0.50);

  font-size: 24px;

  cursor: pointer;
}


.notification-eyebrow {
  margin:
    0 0 9px;

  color: #ecf401;

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 0.16em;
}


.notification-panel h3 {
  margin:
    0 32px 10px 0;

  color: #fdf9fa;

  font-size: 23px;

  line-height: 1.08;

  letter-spacing: -0.03em;
}


.notification-copy {
  margin:
    0 0 17px;

  color:
    rgba(253, 249, 250, 0.58);

  font-size: 12px;

  line-height: 1.6;
}


.notification-subscribe-btn {
  width: 100%;

  min-height: 46px;

  padding:
    0 17px;

  border: 0;

  border-radius: 999px;

  background: #ecf401;

  color: #040315;

  font-size: 11px;

  font-weight: 800;

  letter-spacing: 0.04em;

  cursor: pointer;
}


.notification-subscribe-btn:disabled {
  cursor: default;

  opacity: 0.68;
}


.notification-status {
  min-height: 17px;

  margin:
    10px 0 0;

  color:
    rgba(253, 249, 250, 0.45);

  font-size: 10px;

  line-height: 1.45;
}


.notification-settings-link {
  padding: 0;

  border: 0;

  background: transparent;

  color:
    rgba(253, 249, 250, 0.52);

  font: inherit;

  font-size: 11px;

  cursor: pointer;
}


.notification-settings-link:hover {
  color: var(--accent, #ecf401);
}


@media (max-width: 600px) {

  .notification-panel {
    right: 16px;
    bottom: 76px;

    width:
      calc(100vw - 32px);
  }

}
