#toast-container {
  animation: slideIn 0.5s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
  position: fixed;
  z-index: 999999;
  pointer-events: none;
}
@keyframes slideIn {
  0% {
    transform: translateX(180px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
  }
  40%,100% {
    opacity: 1;
  }
}
.toast-top-right {
  top: 40px;
  right: 40px;
}
#toast-container * {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
#toast-container > div {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #067306;
  border: 2px solid #008A00;
  -moz-border-radius: 12px;
  -webkit-border-radius: 12px;
  border-radius: 12px;


  position: relative;
  pointer-events: auto;
  overflow: hidden;
  margin: 0 0 6px;
  padding: 20px;
  min-width: 327px;
  background-position: 15px center;
  background-repeat: no-repeat;
}

#toast-container > div.toast-error {
  border: 2px solid #f5c2c7;
  color: #842029;
  background-color: #f8d7da;
  border-color: ;
}
.toast {
  background-color: #030303;
}
.toast-success {
  background-color: #EAF9DE;
}
.toast-message--wrapper {
  display: flex;
  justify-content: space-between;
}
}
.toast-message {
      -ms-word-wrap: break-word;
          word-wrap: break-word;
}
.toast-close {
  width: 24px;
  height: 24px;
}
.toast-close--item {
  padding: 5px;
  width: 100%;
  height: auto;
}
  .toast-close-button {
    position: relative;
    float: right;
    font-size: 32px;
    line-height: 14px;
    font-weight: 500;
    color: #000;
    opacity: .8;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    filter: alpha(opacity=80);
  }
  button.toast-close-button {
    padding: 0;
    cursor: pointer;
    background: 0 0;
    border: 0;
    -webkit-appearance: none;
  }
