.inform-modal {
  position: fixed;
  height: auto;
  left: auto;
  right: 40px;
  bottom: 24px;
  width: auto;
  z-index: 10001;
}

.notification {
  color: #212529;
  font-family: Circe, Open Sans, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  text-align: left;

  margin: 0 auto;
  max-width: 466px;
  /* animation-duration: 0.95s; */
  /* animation-name: fadeInUp; */
  display: none;
  margin-left: 40px;
}

.notification-container {
  background: #E8F3FB;
  background: #e6eff5;
  /* border: 1px solid #45b5ff; */
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(63,63,63,.15);
}

.notification-close {
  padding: 10px 10px 0 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

.notification-close-btn {
  cursor: pointer;
}

.notification-body {
  padding: 20px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}

.notification-close-btn path {
  transition: all ease .3s;
}

.notification-close-btn:hover path {
  stroke: #212529;
}

.notification-content-container {
  display: flex;
}

/* .iit-link {
  color: #1477b9;
  text-decoration: none;
} */

.notification-title {
  font-weight: 600;
  margin-bottom: 4px;
  /* margin-top: 7px; */
  font-size: 18px;
  line-height: 1.6;
}

.notification-message {
  font-size: 14px;  
}

.showNotificationWindow {
  animation-name: fadeInUp;
  animation-duration: 0.7s;
  animation-fill-mode: both;
}

.hideNotificationWindow {
  animation-name: fadeOutDown;
  animation-duration: 1.0s;
  animation-fill-mode: both;
}