x-notification-top, x-notification-bottom {
  z-index: 10001;
  right: 0;
  min-width: 18rem;
  max-width: 22rem;
  display: block;
  position: fixed;
  padding: 1rem;
}
x-notification-top x-notification.notification-show, x-notification-bottom x-notification.notification-show {
  display: block;
  width: 100%;
}
x-notification-top:empty, x-notification-bottom:empty {
  padding: 0;
}
.is-mobile x-notification-top, .is-mobile x-notification-bottom {
  max-width: 100% !important;
  width: 100%;
}

x-notification-top {
  top: 0;
}
.is-mobile x-notification-top x-notification {
  animation: fadeInDown 0.4s;
}

x-notification-bottom {
  bottom: 0;
}
.is-mobile x-notification-bottom x-notification {
  animation: fadeInUp 0.4s;
}

x-notification {
  display: none;
  position: relative;
  overflow: hidden;
  padding: 0.875rem 1.85rem 0.875rem 1.1rem;
  margin-bottom: 1rem;
  border-radius: 0.5rem;
  line-height: 1.5em;
  font-size: 0.875rem;
  text-align: left;
  color: var(--color-text, #4A4A4A);
  background-color: var(--color-white, #FFFFFF);
  box-shadow: 0px 3px 1rem rgba(var(--color-dark-rgb, 31, 31, 31), 0.05), 0 28px 25px -25px var(--color-default-tint, #aaaaaa);
  border: 1px solid rgba(var(--color-border-rgb, 200, 199, 204), 0.5);
  animation: notificationShow 0.4s;
}
x-notification.notification-show {
  display: inline-block;
}
x-notification:empty {
  display: none !important;
}
x-notification:last-child {
  margin-bottom: 0px;
}
.is-dark-mode x-notification {
  color: var(--color-text-light, #FEFEFE);
  background-color: var(--color-black, #000000);
  border: 1px solid var(--color-dark-tint, #414141);
  box-shadow: 0px 3px 1rem rgba(var(--color-black-rgb, 0, 0, 0), 0.35);
}
x-notification.notification-with-icon {
  padding-left: 3.1rem;
}
x-notification.notification-hidding {
  animation: none;
  animation: notificationHide 0.4s;
}
x-notification .notification-with-interval {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  transition-property: width;
  transition-timing-function: linear;
  background-color: rgba(0, 0, 0, 0.1);
}
x-notification .notification-body {
  display: inline-block;
}
x-notification .notification-body h1, x-notification .notification-body h2, x-notification .notification-body h3, x-notification .notification-body h4, x-notification .notification-body h5, x-notification .notification-body h6, x-notification .notification-body b, x-notification .notification-body strong, x-notification .notification-body label {
  margin: 0;
  margin-bottom: 0.35rem;
  padding: 0;
  font-size: 0.95rem;
  font-weight: bold;
  line-height: 1.5em;
}
x-notification .notification-body p {
  line-height: 1.5em;
}
x-notification .notification-body p:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}
x-notification .notification-close {
  position: absolute;
  box-sizing: content-box;
  font-size: 1.5rem;
  line-height: 0.875rem;
  border: none;
  background-color: transparent;
  appearance: none;
  padding: 0px;
  margin: 0px;
  height: 1em;
  align-self: center;
  color: var(--color-text, #4A4A4A);
  opacity: 0.65;
  top: 0.7rem;
  right: 0.7rem;
}
.is-dark-mode x-notification .notification-close {
  color: var(--color-text-light, #FEFEFE);
}
x-notification .notification-close > span {
  padding: 0px;
  margin: 0px;
  line-height: 1em;
  box-sizing: content-box;
}
x-notification > x-animate x-icon {
  position: absolute;
  width: 2rem;
  height: 2rem;
  opacity: 0.85;
  font-weight: 700;
  left: 0.5rem;
  top: 0.525rem;
  font-size: 2rem !important;
}
.notification-with-header x-notification > x-animate x-icon {
  top: 0.875rem;
}
x-notification.notification-primary {
  color: var(--color-primary-lucid, #e3eafd) !important;
  background-color: var(--color-primary-tint, #5e8af4) !important;
  border: 1px solid rgba(var(--color-primary-rgb, 66, 117, 242), 0.35);
  box-shadow: 0px 3px 1rem rgba(var(--color-dark-rgb, 31, 31, 31), 0.15), 0 28px 25px -30px var(--color-primary-tint, #5e8af4);
}
.is-dark-mode x-notification.notification-primary {
  background-color: var(--color-primary-shaded, #2e52a9) !important;
  box-shadow: 0px 3px 1rem rgba(var(--color-dark-rgb, 31, 31, 31), 0.15), 0 28px 25px -30px rgba(var(--color-primary-rgb, 66, 117, 242), 0.2);
}
x-notification.notification-primary .notification-header {
  color: var(--color-white, #FFFFFF);
}
x-notification.notification-primary .notification-close {
  color: var(--color-primary-lucid, #e3eafd) !important;
}
x-notification.notification-primary hr {
  margin: 0.675rem 0px;
  opacity: 0.2;
  border-top-color: var(--color-primary-shaded, #2e52a9);
}
.is-dark-mode x-notification.notification-primary hr {
  opacity: 0.8;
  border-top-color: var(--color-primary-tinted, #7b9ef6);
}
x-notification.notification-primary a, x-notification.notification-primary a:active, x-notification.notification-primary a:link {
  color: var(--color-primary-lucid, #e3eafd);
  border-bottom: 1px dashed var(--color-primary-lucid, #e3eafd);
}
.is-dark-mode x-notification.notification-primary a, .is-dark-mode x-notification.notification-primary a:active, .is-dark-mode x-notification.notification-primary a:link {
  color: var(--color-primary-lucid, #e3eafd);
}
x-notification.notification-accent {
  color: var(--color-accent-lucid, #fddfdb) !important;
  background-color: var(--color-accent-tint, #f44734) !important;
  border: 1px solid rgba(var(--color-accent-rgb, 242, 39, 16), 0.35);
  box-shadow: 0px 3px 1rem rgba(var(--color-dark-rgb, 31, 31, 31), 0.15), 0 28px 25px -30px var(--color-accent-tint, #f44734);
}
.is-dark-mode x-notification.notification-accent {
  background-color: var(--color-accent-shaded, #a91b0b) !important;
  box-shadow: 0px 3px 1rem rgba(var(--color-dark-rgb, 31, 31, 31), 0.15), 0 28px 25px -30px rgba(var(--color-accent-rgb, 242, 39, 16), 0.2);
}
x-notification.notification-accent .notification-header {
  color: var(--color-white, #FFFFFF);
}
x-notification.notification-accent .notification-close {
  color: var(--color-accent-lucid, #fddfdb) !important;
}
x-notification.notification-accent hr {
  margin: 0.675rem 0px;
  opacity: 0.2;
  border-top-color: var(--color-accent-shaded, #a91b0b);
}
.is-dark-mode x-notification.notification-accent hr {
  opacity: 0.8;
  border-top-color: var(--color-accent-tinted, #f66858);
}
x-notification.notification-accent a, x-notification.notification-accent a:active, x-notification.notification-accent a:link {
  color: var(--color-accent-lucid, #fddfdb);
  border-bottom: 1px dashed var(--color-accent-lucid, #fddfdb);
}
.is-dark-mode x-notification.notification-accent a, .is-dark-mode x-notification.notification-accent a:active, .is-dark-mode x-notification.notification-accent a:link {
  color: var(--color-accent-lucid, #fddfdb);
}
x-notification.notification-danger {
  color: var(--color-danger-lucid, #fae1e3) !important;
  background-color: var(--color-danger-tint, #e15361) !important;
  border: 1px solid rgba(var(--color-danger-rgb, 220, 53, 69), 0.35);
  box-shadow: 0px 3px 1rem rgba(var(--color-dark-rgb, 31, 31, 31), 0.15), 0 28px 25px -30px var(--color-danger-tint, #e15361);
}
.is-dark-mode x-notification.notification-danger {
  background-color: var(--color-danger-shaded, #9a2530) !important;
  box-shadow: 0px 3px 1rem rgba(var(--color-dark-rgb, 31, 31, 31), 0.15), 0 28px 25px -30px rgba(var(--color-danger-rgb, 220, 53, 69), 0.2);
}
x-notification.notification-danger .notification-header {
  color: var(--color-white, #FFFFFF);
}
x-notification.notification-danger .notification-close {
  color: var(--color-danger-lucid, #fae1e3) !important;
}
x-notification.notification-danger hr {
  margin: 0.675rem 0px;
  opacity: 0.2;
  border-top-color: var(--color-danger-shaded, #9a2530);
}
.is-dark-mode x-notification.notification-danger hr {
  opacity: 0.8;
  border-top-color: var(--color-danger-tinted, #e7727d);
}
x-notification.notification-danger a, x-notification.notification-danger a:active, x-notification.notification-danger a:link {
  color: var(--color-danger-lucid, #fae1e3);
  border-bottom: 1px dashed var(--color-danger-lucid, #fae1e3);
}
.is-dark-mode x-notification.notification-danger a, .is-dark-mode x-notification.notification-danger a:active, .is-dark-mode x-notification.notification-danger a:link {
  color: var(--color-danger-lucid, #fae1e3);
}
x-notification.notification-warning {
  color: var(--color-warning-lucid, #fbf1e0) !important;
  background-color: var(--color-warning-tint, #e7b14e) !important;
  border: 1px solid rgba(var(--color-warning-rgb, 227, 163, 47), 0.35);
  box-shadow: 0px 3px 1rem rgba(var(--color-dark-rgb, 31, 31, 31), 0.15), 0 28px 25px -30px var(--color-warning-tint, #e7b14e);
}
.is-dark-mode x-notification.notification-warning {
  background-color: var(--color-warning-shaded, #9f7221) !important;
  box-shadow: 0px 3px 1rem rgba(var(--color-dark-rgb, 31, 31, 31), 0.15), 0 28px 25px -30px rgba(var(--color-warning-rgb, 227, 163, 47), 0.2);
}
x-notification.notification-warning .notification-header {
  color: var(--color-white, #FFFFFF);
}
x-notification.notification-warning .notification-close {
  color: var(--color-warning-lucid, #fbf1e0) !important;
}
x-notification.notification-warning hr {
  margin: 0.675rem 0px;
  opacity: 0.2;
  border-top-color: var(--color-warning-shaded, #9f7221);
}
.is-dark-mode x-notification.notification-warning hr {
  opacity: 0.8;
  border-top-color: var(--color-warning-tinted, #ebbf6d);
}
x-notification.notification-warning a, x-notification.notification-warning a:active, x-notification.notification-warning a:link {
  color: var(--color-warning-lucid, #fbf1e0);
  border-bottom: 1px dashed var(--color-warning-lucid, #fbf1e0);
}
.is-dark-mode x-notification.notification-warning a, .is-dark-mode x-notification.notification-warning a:active, .is-dark-mode x-notification.notification-warning a:link {
  color: var(--color-warning-lucid, #fbf1e0);
}
x-notification.notification-success {
  color: var(--color-success-lucid, #d9f3e9) !important;
  background-color: var(--color-success-tint, #26ba80) !important;
  border: 1px solid rgba(var(--color-success-rgb, 0, 174, 105), 0.35);
  box-shadow: 0px 3px 1rem rgba(var(--color-dark-rgb, 31, 31, 31), 0.15), 0 28px 25px -30px var(--color-success-tint, #26ba80);
}
.is-dark-mode x-notification.notification-success {
  background-color: var(--color-success-shaded, #007a4a) !important;
  box-shadow: 0px 3px 1rem rgba(var(--color-dark-rgb, 31, 31, 31), 0.15), 0 28px 25px -30px rgba(var(--color-success-rgb, 0, 174, 105), 0.2);
}
x-notification.notification-success .notification-header {
  color: var(--color-white, #FFFFFF);
}
x-notification.notification-success .notification-close {
  color: var(--color-success-lucid, #d9f3e9) !important;
}
x-notification.notification-success hr {
  margin: 0.675rem 0px;
  opacity: 0.2;
  border-top-color: var(--color-success-shaded, #007a4a);
}
.is-dark-mode x-notification.notification-success hr {
  opacity: 0.8;
  border-top-color: var(--color-success-tinted, #4dc696);
}
x-notification.notification-success a, x-notification.notification-success a:active, x-notification.notification-success a:link {
  color: var(--color-success-lucid, #d9f3e9);
  border-bottom: 1px dashed var(--color-success-lucid, #d9f3e9);
}
.is-dark-mode x-notification.notification-success a, .is-dark-mode x-notification.notification-success a:active, .is-dark-mode x-notification.notification-success a:link {
  color: var(--color-success-lucid, #d9f3e9);
}
x-notification.notification-info {
  color: var(--color-info-lucid, #e0f2f7) !important;
  background-color: var(--color-info-tint, #4eb7d0) !important;
  border: 1px solid rgba(var(--color-info-rgb, 47, 170, 200), 0.35);
  box-shadow: 0px 3px 1rem rgba(var(--color-dark-rgb, 31, 31, 31), 0.15), 0 28px 25px -30px var(--color-info-tint, #4eb7d0);
}
.is-dark-mode x-notification.notification-info {
  background-color: var(--color-info-shaded, #21778c) !important;
  box-shadow: 0px 3px 1rem rgba(var(--color-dark-rgb, 31, 31, 31), 0.15), 0 28px 25px -30px rgba(var(--color-info-rgb, 47, 170, 200), 0.2);
}
x-notification.notification-info .notification-header {
  color: var(--color-white, #FFFFFF);
}
x-notification.notification-info .notification-close {
  color: var(--color-info-lucid, #e0f2f7) !important;
}
x-notification.notification-info hr {
  margin: 0.675rem 0px;
  opacity: 0.2;
  border-top-color: var(--color-info-shaded, #21778c);
}
.is-dark-mode x-notification.notification-info hr {
  opacity: 0.8;
  border-top-color: var(--color-info-tinted, #6dc4d9);
}
x-notification.notification-info a, x-notification.notification-info a:active, x-notification.notification-info a:link {
  color: var(--color-info-lucid, #e0f2f7);
  border-bottom: 1px dashed var(--color-info-lucid, #e0f2f7);
}
.is-dark-mode x-notification.notification-info a, .is-dark-mode x-notification.notification-info a:active, .is-dark-mode x-notification.notification-info a:link {
  color: var(--color-info-lucid, #e0f2f7);
}
x-notification.notification-link {
  color: var(--color-link-lucid, #e3eafd) !important;
  background-color: var(--color-link-tint, #5e8af4) !important;
  border: 1px solid rgba(var(--color-link-rgb, 66, 117, 242), 0.35);
  box-shadow: 0px 3px 1rem rgba(var(--color-dark-rgb, 31, 31, 31), 0.15), 0 28px 25px -30px var(--color-link-tint, #5e8af4);
}
.is-dark-mode x-notification.notification-link {
  background-color: var(--color-link-shaded, #2e52a9) !important;
  box-shadow: 0px 3px 1rem rgba(var(--color-dark-rgb, 31, 31, 31), 0.15), 0 28px 25px -30px rgba(var(--color-link-rgb, 66, 117, 242), 0.2);
}
x-notification.notification-link .notification-header {
  color: var(--color-white, #FFFFFF);
}
x-notification.notification-link .notification-close {
  color: var(--color-link-lucid, #e3eafd) !important;
}
x-notification.notification-link hr {
  margin: 0.675rem 0px;
  opacity: 0.2;
  border-top-color: var(--color-link-shaded, #2e52a9);
}
.is-dark-mode x-notification.notification-link hr {
  opacity: 0.8;
  border-top-color: var(--color-link-tinted, #7b9ef6);
}
x-notification.notification-link a, x-notification.notification-link a:active, x-notification.notification-link a:link {
  color: var(--color-link-lucid, #e3eafd);
  border-bottom: 1px dashed var(--color-link-lucid, #e3eafd);
}
.is-dark-mode x-notification.notification-link a, .is-dark-mode x-notification.notification-link a:active, .is-dark-mode x-notification.notification-link a:link {
  color: var(--color-link-lucid, #e3eafd);
}
x-notification.notification-blue {
  color: var(--color-blue-lucid, #e0e7f4) !important;
  background-color: var(--color-blue-tint, #4d77c0) !important;
  border: 1px solid rgba(var(--color-blue-rgb, 45, 95, 181), 0.35);
  box-shadow: 0px 3px 1rem rgba(var(--color-dark-rgb, 31, 31, 31), 0.15), 0 28px 25px -30px var(--color-blue-tint, #4d77c0);
}
.is-dark-mode x-notification.notification-blue {
  background-color: var(--color-blue-shaded, #20437f) !important;
  box-shadow: 0px 3px 1rem rgba(var(--color-dark-rgb, 31, 31, 31), 0.15), 0 28px 25px -30px rgba(var(--color-blue-rgb, 45, 95, 181), 0.2);
}
x-notification.notification-blue .notification-header {
  color: var(--color-white, #FFFFFF);
}
x-notification.notification-blue .notification-close {
  color: var(--color-blue-lucid, #e0e7f4) !important;
}
x-notification.notification-blue hr {
  margin: 0.675rem 0px;
  opacity: 0.2;
  border-top-color: var(--color-blue-shaded, #20437f);
}
.is-dark-mode x-notification.notification-blue hr {
  opacity: 0.8;
  border-top-color: var(--color-blue-tinted, #6c8fcb);
}
x-notification.notification-blue a, x-notification.notification-blue a:active, x-notification.notification-blue a:link {
  color: var(--color-blue-lucid, #e0e7f4);
  border-bottom: 1px dashed var(--color-blue-lucid, #e0e7f4);
}
.is-dark-mode x-notification.notification-blue a, .is-dark-mode x-notification.notification-blue a:active, .is-dark-mode x-notification.notification-blue a:link {
  color: var(--color-blue-lucid, #e0e7f4);
}
x-notification.notification-indigo {
  color: var(--color-indigo-lucid, #e5e8f4) !important;
  background-color: var(--color-indigo-tint, #6e7abe) !important;
  border: 1px solid rgba(var(--color-indigo-rgb, 84, 99, 179), 0.35);
  box-shadow: 0px 3px 1rem rgba(var(--color-dark-rgb, 31, 31, 31), 0.15), 0 28px 25px -30px var(--color-indigo-tint, #6e7abe);
}
.is-dark-mode x-notification.notification-indigo {
  background-color: var(--color-indigo-shaded, #3b457d) !important;
  box-shadow: 0px 3px 1rem rgba(var(--color-dark-rgb, 31, 31, 31), 0.15), 0 28px 25px -30px rgba(var(--color-indigo-rgb, 84, 99, 179), 0.2);
}
x-notification.notification-indigo .notification-header {
  color: var(--color-white, #FFFFFF);
}
x-notification.notification-indigo .notification-close {
  color: var(--color-indigo-lucid, #e5e8f4) !important;
}
x-notification.notification-indigo hr {
  margin: 0.675rem 0px;
  opacity: 0.2;
  border-top-color: var(--color-indigo-shaded, #3b457d);
}
.is-dark-mode x-notification.notification-indigo hr {
  opacity: 0.8;
  border-top-color: var(--color-indigo-tinted, #8792ca);
}
x-notification.notification-indigo a, x-notification.notification-indigo a:active, x-notification.notification-indigo a:link {
  color: var(--color-indigo-lucid, #e5e8f4);
  border-bottom: 1px dashed var(--color-indigo-lucid, #e5e8f4);
}
.is-dark-mode x-notification.notification-indigo a, .is-dark-mode x-notification.notification-indigo a:active, .is-dark-mode x-notification.notification-indigo a:link {
  color: var(--color-indigo-lucid, #e5e8f4);
}
x-notification.notification-purple {
  color: var(--color-purple-lucid, #ece6f7) !important;
  background-color: var(--color-purple-tint, #916fcf) !important;
  border: 1px solid rgba(var(--color-purple-rgb, 125, 85, 199), 0.35);
  box-shadow: 0px 3px 1rem rgba(var(--color-dark-rgb, 31, 31, 31), 0.15), 0 28px 25px -30px var(--color-purple-tint, #916fcf);
}
.is-dark-mode x-notification.notification-purple {
  background-color: var(--color-purple-shaded, #583c8b) !important;
  box-shadow: 0px 3px 1rem rgba(var(--color-dark-rgb, 31, 31, 31), 0.15), 0 28px 25px -30px rgba(var(--color-purple-rgb, 125, 85, 199), 0.2);
}
x-notification.notification-purple .notification-header {
  color: var(--color-white, #FFFFFF);
}
x-notification.notification-purple .notification-close {
  color: var(--color-purple-lucid, #ece6f7) !important;
}
x-notification.notification-purple hr {
  margin: 0.675rem 0px;
  opacity: 0.2;
  border-top-color: var(--color-purple-shaded, #583c8b);
}
.is-dark-mode x-notification.notification-purple hr {
  opacity: 0.8;
  border-top-color: var(--color-purple-tinted, #a488d8);
}
x-notification.notification-purple a, x-notification.notification-purple a:active, x-notification.notification-purple a:link {
  color: var(--color-purple-lucid, #ece6f7);
  border-bottom: 1px dashed var(--color-purple-lucid, #ece6f7);
}
.is-dark-mode x-notification.notification-purple a, .is-dark-mode x-notification.notification-purple a:active, .is-dark-mode x-notification.notification-purple a:link {
  color: var(--color-purple-lucid, #ece6f7);
}
x-notification.notification-pink {
  color: var(--color-pink-lucid, #fee9f0) !important;
  background-color: var(--color-pink-tint, #f783aa) !important;
  border: 1px solid rgba(var(--color-pink-rgb, 246, 109, 155), 0.35);
  box-shadow: 0px 3px 1rem rgba(var(--color-dark-rgb, 31, 31, 31), 0.15), 0 28px 25px -30px var(--color-pink-tint, #f783aa);
}
.is-dark-mode x-notification.notification-pink {
  background-color: var(--color-pink-shaded, #ac4c6d) !important;
  box-shadow: 0px 3px 1rem rgba(var(--color-dark-rgb, 31, 31, 31), 0.15), 0 28px 25px -30px rgba(var(--color-pink-rgb, 246, 109, 155), 0.2);
}
x-notification.notification-pink .notification-header {
  color: var(--color-white, #FFFFFF);
}
x-notification.notification-pink .notification-close {
  color: var(--color-pink-lucid, #fee9f0) !important;
}
x-notification.notification-pink hr {
  margin: 0.675rem 0px;
  opacity: 0.2;
  border-top-color: var(--color-pink-shaded, #ac4c6d);
}
.is-dark-mode x-notification.notification-pink hr {
  opacity: 0.8;
  border-top-color: var(--color-pink-tinted, #f999b9);
}
x-notification.notification-pink a, x-notification.notification-pink a:active, x-notification.notification-pink a:link {
  color: var(--color-pink-lucid, #fee9f0);
  border-bottom: 1px dashed var(--color-pink-lucid, #fee9f0);
}
.is-dark-mode x-notification.notification-pink a, .is-dark-mode x-notification.notification-pink a:active, .is-dark-mode x-notification.notification-pink a:link {
  color: var(--color-pink-lucid, #fee9f0);
}
x-notification.notification-red {
  color: var(--color-red-lucid, #f7e2e1) !important;
  background-color: var(--color-red-tint, #cf5954) !important;
  border: 1px solid rgba(var(--color-red-rgb, 199, 60, 54), 0.35);
  box-shadow: 0px 3px 1rem rgba(var(--color-dark-rgb, 31, 31, 31), 0.15), 0 28px 25px -30px var(--color-red-tint, #cf5954);
}
.is-dark-mode x-notification.notification-red {
  background-color: var(--color-red-shaded, #8b2a26) !important;
  box-shadow: 0px 3px 1rem rgba(var(--color-dark-rgb, 31, 31, 31), 0.15), 0 28px 25px -30px rgba(var(--color-red-rgb, 199, 60, 54), 0.2);
}
x-notification.notification-red .notification-header {
  color: var(--color-white, #FFFFFF);
}
x-notification.notification-red .notification-close {
  color: var(--color-red-lucid, #f7e2e1) !important;
}
x-notification.notification-red hr {
  margin: 0.675rem 0px;
  opacity: 0.2;
  border-top-color: var(--color-red-shaded, #8b2a26);
}
.is-dark-mode x-notification.notification-red hr {
  opacity: 0.8;
  border-top-color: var(--color-red-tinted, #d87772);
}
x-notification.notification-red a, x-notification.notification-red a:active, x-notification.notification-red a:link {
  color: var(--color-red-lucid, #f7e2e1);
  border-bottom: 1px dashed var(--color-red-lucid, #f7e2e1);
}
.is-dark-mode x-notification.notification-red a, .is-dark-mode x-notification.notification-red a:active, .is-dark-mode x-notification.notification-red a:link {
  color: var(--color-red-lucid, #f7e2e1);
}
x-notification.notification-orange {
  color: var(--color-orange-lucid, #f9ebe1) !important;
  background-color: var(--color-orange-tint, #df9053) !important;
  border: 1px solid rgba(var(--color-orange-rgb, 217, 124, 53), 0.35);
  box-shadow: 0px 3px 1rem rgba(var(--color-dark-rgb, 31, 31, 31), 0.15), 0 28px 25px -30px var(--color-orange-tint, #df9053);
}
.is-dark-mode x-notification.notification-orange {
  background-color: var(--color-orange-shaded, #985725) !important;
  box-shadow: 0px 3px 1rem rgba(var(--color-dark-rgb, 31, 31, 31), 0.15), 0 28px 25px -30px rgba(var(--color-orange-rgb, 217, 124, 53), 0.2);
}
x-notification.notification-orange .notification-header {
  color: var(--color-white, #FFFFFF);
}
x-notification.notification-orange .notification-close {
  color: var(--color-orange-lucid, #f9ebe1) !important;
}
x-notification.notification-orange hr {
  margin: 0.675rem 0px;
  opacity: 0.2;
  border-top-color: var(--color-orange-shaded, #985725);
}
.is-dark-mode x-notification.notification-orange hr {
  opacity: 0.8;
  border-top-color: var(--color-orange-tinted, #e4a372);
}
x-notification.notification-orange a, x-notification.notification-orange a:active, x-notification.notification-orange a:link {
  color: var(--color-orange-lucid, #f9ebe1);
  border-bottom: 1px dashed var(--color-orange-lucid, #f9ebe1);
}
.is-dark-mode x-notification.notification-orange a, .is-dark-mode x-notification.notification-orange a:active, .is-dark-mode x-notification.notification-orange a:link {
  color: var(--color-orange-lucid, #f9ebe1);
}
x-notification.notification-yellow {
  color: var(--color-yellow-lucid, #f9f3e0) !important;
  background-color: var(--color-yellow-tint, #daba51) !important;
  border: 1px solid rgba(var(--color-yellow-rgb, 212, 174, 50), 0.35);
  box-shadow: 0px 3px 1rem rgba(var(--color-dark-rgb, 31, 31, 31), 0.15), 0 28px 25px -30px var(--color-yellow-tint, #daba51);
}
.is-dark-mode x-notification.notification-yellow {
  background-color: var(--color-yellow-shaded, #947a23) !important;
  box-shadow: 0px 3px 1rem rgba(var(--color-dark-rgb, 31, 31, 31), 0.15), 0 28px 25px -30px rgba(var(--color-yellow-rgb, 212, 174, 50), 0.2);
}
x-notification.notification-yellow .notification-header {
  color: var(--color-white, #FFFFFF);
}
x-notification.notification-yellow .notification-close {
  color: var(--color-yellow-lucid, #f9f3e0) !important;
}
x-notification.notification-yellow hr {
  margin: 0.675rem 0px;
  opacity: 0.2;
  border-top-color: var(--color-yellow-shaded, #947a23);
}
.is-dark-mode x-notification.notification-yellow hr {
  opacity: 0.8;
  border-top-color: var(--color-yellow-tinted, #e1c670);
}
x-notification.notification-yellow a, x-notification.notification-yellow a:active, x-notification.notification-yellow a:link {
  color: var(--color-yellow-lucid, #f9f3e0);
  border-bottom: 1px dashed var(--color-yellow-lucid, #f9f3e0);
}
.is-dark-mode x-notification.notification-yellow a, .is-dark-mode x-notification.notification-yellow a:active, .is-dark-mode x-notification.notification-yellow a:link {
  color: var(--color-yellow-lucid, #f9f3e0);
}
x-notification.notification-green {
  color: var(--color-green-lucid, #e1f6ea) !important;
  background-color: var(--color-green-tint, #56ca87) !important;
  border: 1px solid rgba(var(--color-green-rgb, 56, 193, 114), 0.35);
  box-shadow: 0px 3px 1rem rgba(var(--color-dark-rgb, 31, 31, 31), 0.15), 0 28px 25px -30px var(--color-green-tint, #56ca87);
}
.is-dark-mode x-notification.notification-green {
  background-color: var(--color-green-shaded, #278750) !important;
  box-shadow: 0px 3px 1rem rgba(var(--color-dark-rgb, 31, 31, 31), 0.15), 0 28px 25px -30px rgba(var(--color-green-rgb, 56, 193, 114), 0.2);
}
x-notification.notification-green .notification-header {
  color: var(--color-white, #FFFFFF);
}
x-notification.notification-green .notification-close {
  color: var(--color-green-lucid, #e1f6ea) !important;
}
x-notification.notification-green hr {
  margin: 0.675rem 0px;
  opacity: 0.2;
  border-top-color: var(--color-green-shaded, #278750);
}
.is-dark-mode x-notification.notification-green hr {
  opacity: 0.8;
  border-top-color: var(--color-green-tinted, #74d49c);
}
x-notification.notification-green a, x-notification.notification-green a:active, x-notification.notification-green a:link {
  color: var(--color-green-lucid, #e1f6ea);
  border-bottom: 1px dashed var(--color-green-lucid, #e1f6ea);
}
.is-dark-mode x-notification.notification-green a, .is-dark-mode x-notification.notification-green a:active, .is-dark-mode x-notification.notification-green a:link {
  color: var(--color-green-lucid, #e1f6ea);
}
x-notification.notification-teal {
  color: var(--color-teal-lucid, #e4f6f4) !important;
  background-color: var(--color-teal-tint, #68c9c0) !important;
  border: 1px solid rgba(var(--color-teal-rgb, 77, 192, 181), 0.35);
  box-shadow: 0px 3px 1rem rgba(var(--color-dark-rgb, 31, 31, 31), 0.15), 0 28px 25px -30px var(--color-teal-tint, #68c9c0);
}
.is-dark-mode x-notification.notification-teal {
  background-color: var(--color-teal-shaded, #36867f) !important;
  box-shadow: 0px 3px 1rem rgba(var(--color-dark-rgb, 31, 31, 31), 0.15), 0 28px 25px -30px rgba(var(--color-teal-rgb, 77, 192, 181), 0.2);
}
x-notification.notification-teal .notification-header {
  color: var(--color-white, #FFFFFF);
}
x-notification.notification-teal .notification-close {
  color: var(--color-teal-lucid, #e4f6f4) !important;
}
x-notification.notification-teal hr {
  margin: 0.675rem 0px;
  opacity: 0.2;
  border-top-color: var(--color-teal-shaded, #36867f);
}
.is-dark-mode x-notification.notification-teal hr {
  opacity: 0.8;
  border-top-color: var(--color-teal-tinted, #82d3cb);
}
x-notification.notification-teal a, x-notification.notification-teal a:active, x-notification.notification-teal a:link {
  color: var(--color-teal-lucid, #e4f6f4);
  border-bottom: 1px dashed var(--color-teal-lucid, #e4f6f4);
}
.is-dark-mode x-notification.notification-teal a, .is-dark-mode x-notification.notification-teal a:active, .is-dark-mode x-notification.notification-teal a:link {
  color: var(--color-teal-lucid, #e4f6f4);
}
x-notification.notification-cyan {
  color: var(--color-cyan-lucid, #e9f3fc) !important;
  background-color: var(--color-cyan-tint, #82beee) !important;
  border: 1px solid rgba(var(--color-cyan-rgb, 108, 178, 235), 0.35);
  box-shadow: 0px 3px 1rem rgba(var(--color-dark-rgb, 31, 31, 31), 0.15), 0 28px 25px -30px var(--color-cyan-tint, #82beee);
}
.is-dark-mode x-notification.notification-cyan {
  background-color: var(--color-cyan-shaded, #4c7da5) !important;
  box-shadow: 0px 3px 1rem rgba(var(--color-dark-rgb, 31, 31, 31), 0.15), 0 28px 25px -30px rgba(var(--color-cyan-rgb, 108, 178, 235), 0.2);
}
x-notification.notification-cyan .notification-header {
  color: var(--color-white, #FFFFFF);
}
x-notification.notification-cyan .notification-close {
  color: var(--color-cyan-lucid, #e9f3fc) !important;
}
x-notification.notification-cyan hr {
  margin: 0.675rem 0px;
  opacity: 0.2;
  border-top-color: var(--color-cyan-shaded, #4c7da5);
}
.is-dark-mode x-notification.notification-cyan hr {
  opacity: 0.8;
  border-top-color: var(--color-cyan-tinted, #98c9f1);
}
x-notification.notification-cyan a, x-notification.notification-cyan a:active, x-notification.notification-cyan a:link {
  color: var(--color-cyan-lucid, #e9f3fc);
  border-bottom: 1px dashed var(--color-cyan-lucid, #e9f3fc);
}
.is-dark-mode x-notification.notification-cyan a, .is-dark-mode x-notification.notification-cyan a:active, .is-dark-mode x-notification.notification-cyan a:link {
  color: var(--color-cyan-lucid, #e9f3fc);
}
x-notification.notification-brown {
  color: var(--color-brown-lucid, #e6e3e1) !important;
  background-color: var(--color-brown-tint, #706153) !important;
  border: 1px solid rgba(var(--color-brown-rgb, 87, 69, 53), 0.35);
  box-shadow: 0px 3px 1rem rgba(var(--color-dark-rgb, 31, 31, 31), 0.15), 0 28px 25px -30px var(--color-brown-tint, #706153);
}
.is-dark-mode x-notification.notification-brown {
  background-color: var(--color-brown-shaded, #3d3025) !important;
  box-shadow: 0px 3px 1rem rgba(var(--color-dark-rgb, 31, 31, 31), 0.15), 0 28px 25px -30px rgba(var(--color-brown-rgb, 87, 69, 53), 0.2);
}
x-notification.notification-brown .notification-header {
  color: var(--color-white, #FFFFFF);
}
x-notification.notification-brown .notification-close {
  color: var(--color-brown-lucid, #e6e3e1) !important;
}
x-notification.notification-brown hr {
  margin: 0.675rem 0px;
  opacity: 0.2;
  border-top-color: var(--color-brown-shaded, #3d3025);
}
.is-dark-mode x-notification.notification-brown hr {
  opacity: 0.8;
  border-top-color: var(--color-brown-tinted, #897d72);
}
x-notification.notification-brown a, x-notification.notification-brown a:active, x-notification.notification-brown a:link {
  color: var(--color-brown-lucid, #e6e3e1);
  border-bottom: 1px dashed var(--color-brown-lucid, #e6e3e1);
}
.is-dark-mode x-notification.notification-brown a, .is-dark-mode x-notification.notification-brown a:active, .is-dark-mode x-notification.notification-brown a:link {
  color: var(--color-brown-lucid, #e6e3e1);
}
x-notification.notification-stone {
  color: var(--color-stone-lucid, #e1e4e6) !important;
  background-color: var(--color-stone-tint, #566373) !important;
  border: 1px solid rgba(var(--color-stone-rgb, 56, 72, 90), 0.35);
  box-shadow: 0px 3px 1rem rgba(var(--color-dark-rgb, 31, 31, 31), 0.15), 0 28px 25px -30px var(--color-stone-tint, #566373);
}
.is-dark-mode x-notification.notification-stone {
  background-color: var(--color-stone-shaded, #27323f) !important;
  box-shadow: 0px 3px 1rem rgba(var(--color-dark-rgb, 31, 31, 31), 0.15), 0 28px 25px -30px rgba(var(--color-stone-rgb, 56, 72, 90), 0.2);
}
x-notification.notification-stone .notification-header {
  color: var(--color-white, #FFFFFF);
}
x-notification.notification-stone .notification-close {
  color: var(--color-stone-lucid, #e1e4e6) !important;
}
x-notification.notification-stone hr {
  margin: 0.675rem 0px;
  opacity: 0.2;
  border-top-color: var(--color-stone-shaded, #27323f);
}
.is-dark-mode x-notification.notification-stone hr {
  opacity: 0.8;
  border-top-color: var(--color-stone-tinted, #747f8c);
}
x-notification.notification-stone a, x-notification.notification-stone a:active, x-notification.notification-stone a:link {
  color: var(--color-stone-lucid, #e1e4e6);
  border-bottom: 1px dashed var(--color-stone-lucid, #e1e4e6);
}
.is-dark-mode x-notification.notification-stone a, .is-dark-mode x-notification.notification-stone a:active, .is-dark-mode x-notification.notification-stone a:link {
  color: var(--color-stone-lucid, #e1e4e6);
}

@keyframes notificationShow {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-50px, 0, 0);
    transform: translate3d(-50px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes notificationHide {
  to {
    opacity: 0;
    -webkit-transform: translate3d(-50px, 0, 0);
    transform: translate3d(-50px, 0, 0);
  }
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}