.aiuk-notification-popup-container {
  position: fixed;
  top: 80px;
  text-align: center;
  transform: translateX(-50%);
  left: 50%;
  width: 100%;
  max-width: 650px;
  z-index: 999;
}
.aiuk-notification-popup-wrapper,
body.accessibility-contrast .aiuk-notification-popup-wrapper {
  background-color: #ffff00 !important;
  padding: 16px;
}
.aiuk-notification-popup {
  background-color: #ffffff;
  padding: 15px 10px 15px 24px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.aiuk-notification-popup .notification__content {
  font-size: 18px;
  font-weight: bold;
}

.notification__close {
  right: 15px;
  top: 44px;
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0;
  text-align: left;
  cursor: pointer;
  transition: opacity 200ms;
  border: none;
}
.noty-close-button {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 23px;
  vertical-align: middle;
  border: none;
  background: none;
}

.noty-close-button:hover {
  opacity: 0.8;
}
.noty-close-button:focus {
  outline: none;
}
.noty-close-button:before,
.noty-close-button:after {
  position: absolute;
  left: 7px;
  top: 0px;
  content: ' ';
  height: 20px;
  width: 2px;
  background-color: #000;
}
body.accessibility-contrast .noty-close-button:before,
body.accessibility-contrast .noty-close-button:after {
  background-color: #fff !important;
}
.noty-close-button:before {
  transform: rotate(45deg);
}
.noty-close-button:after {
  transform: rotate(-45deg);
}
