.NotificationBarBodyCollapsingFix {
  padding-top: 0.1px;
  position: relative;
}

.NotificationBar {
  width: 100%;
  z-index: 15000;
  color: #fff;
}

.NotificationBarTop,
.NotificationBarStickyTop {
  position: fixed;
  top: 0;
  left: 0;
}

.NotificationBarBottom,
.NotificationBarStickyBottom {
  position: fixed;
  bottom: 0;
  left: 0;
}

.NotificationBarSlideTopAnimation {
  animation-name: slideTopAnimation;
  animation-timing-function: ease;
  animation-fill-mode: none;
  animation-duration: 0.5s;
}

.NotificationBarSlideBottomAnimation {
  animation-name: slideBottomAnimation;
  animation-timing-function: ease;
  animation-fill-mode: none;
  animation-duration: 0.5s;
}

.NotificationBarFadeAnimation {
  animation-name: fadeAnimation;
  animation-timing-function: ease;
  animation-fill-mode: none;
  animation-duration: 0.5s;
}

.NotificationBarClose {
  position: absolute;
  width: 18px;
  height: 18px;
}

.NotificationBarCloseIcon {
  background-image: url("images/CloseIconNotificationBar.png");
  background-repeat: no-repeat;
  background-size: 36px 18px;
  cursor: pointer;
}

.NotificationBarCloseIcon:hover {
  background-position: -18px 0;
}

.NotificationBarCloseTopRight {
  top: 0;
  right: 0;
}

.NotificationBarCloseTopLeft {
  top: 0;
  left: 0;
}

.NotificationBarCloseBottomRight {
  bottom: 0;
  right: 0;
}

.NotificationBarCloseVerticalCenter {
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
}

.NotificationBarContent {
  box-sizing: border-box;
  display: inline-block;
  width: 100%;
  height: 100%;
  padding: 7px 30px;
}

@keyframes slideTopAnimation {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes slideBottomAnimation {
  0% {
    transform: translateY(100%);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes fadeAnimation {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
