.notificationContainer {
  display: inline-flex;
  position: fixed;
  z-index: 999;
  top: 140px;
  width: 400px;
  right: 40%;
  border-radius: 4px 0 0 4px;
  padding: 10px 25px 10px 10px;
  transition: all 0.5s ease-out;
  &.active {
    right: 0;
  }
  .closeIcon {
    position: absolute;
    right: 12px;
    top: -12px;
    img {
      width: 25px;
      cursor: pointer;
    }
  }
}

.success {
  border: 1px solid#429117;
  border-left-width: 10px;
  background: #deeee5;
}

.error {
  border: 1px solid#d53124;
  border-left-width: 10px;
  background: #fdd4d1;
}

.warning {
  border: 1px solid#c28d00;
  border-left-width: 10px;
  background: #ebcf84;
}

.toast-message {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  white-space: normal;
  width: 400px;
  word-wrap: break-word;
}
