.notification-banner {
  align-items: center;
  background-color: #364344;
  display: none;
  padding: 8px 16px;
}
.notification-banner--open {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.notification-banner-icon {
  padding-right: 10px;
}

.notification-banner-text {
  color: #ffffff;
  line-height: 14px;
  font-family: "proxima-soft";
  font-size: 14px;
  font-weight: 500;
}

.notification-banner-text a {
  color: #ffffff;
  cursor: pointer;
  text-decoration: underline;
}

.notification-banner-close {
  outline: 0;
  border: 0;
  background: transparent;
  margin-left: auto;
  position: relative;
  cursor: pointer;
  padding: 8px;
}

.notification-banner-close-icon {
  width: 20px;
  height: 20px;
}
.notification-banner-close-icon:before,
.notification-banner-close-icon:after {
  content: ' ';
  position: absolute;
  left: 17px;
  height: 20px;
  width: 2px;
  background-color: #fff;
}
.notification-banner-close-icon:before {
  transform: rotate(45deg);
}
.notification-banner-close-icon:after {
  transform: rotate(-45deg);
}
