.toaster_container {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 350px;
  z-index: 999999;
  min-height: 0;
  max-height: 100%;
  overflow-x: hidden;
  transition: All 500ms ease-in-out;
  transition-delay: 0s;
  -webkit-transition: All 500ms ease-in-out;
  -moz-transition: All 500ms ease-in-out;
  -o-transition: All 500ms ease-in-out;
}

.toaster_container::-webkit-scrollbar {
  width: 2px;
  background-color: #ccc;
}

.toaster_container::-webkit-scrollbar-track {
  background-color: #fff;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
}

.toaster_container::-webkit-scrollbar-thumb {
  background-color: #ccc;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.toaster_container ul {
  padding: 0;
  margin-bottom: 0;
}

.toaster_container ul li {
  list-style: none;
  padding: 5px;
  transition: All 300ms ease-in-out;
  transition-delay: 0s;
  -webkit-transition: All 300ms ease-in-out;
  -moz-transition: All 300ms ease-in-out;
  -o-transition: All 300ms ease-in-out;
  opacity: 0;
  transform: translateY(50%);
}

.toaster_container ul li.showing_toaster {
  opacity: 1;
  transform: translateY(0);
}

.toaster_container ul li.removing_toaster {
  opacity: 0;
  transform: translateX(50%);
}

.toaster_container ul li:hover {
  cursor: pointer;
}

.toaster_container ul li .toaster_closebutton {
  position: absolute;
  top: 10px;
  left: 16px;
  width: 10px;
  height: 10px;
  z-index: 2;
}

.toaster_container ul li .toaster_closebutton svg {
  width: 100%;
  height: 100%;
  opacity: 0.3;
  transition: All 100ms ease-in-out;
  transition-delay: 0s;
  -webkit-transition: All 100ms ease-in-out;
  -moz-transition: All 100ms ease-in-out;
  -o-transition: All 100ms ease-in-out;
}

.toaster_container ul li .toaster_closebutton svg:hover {
  cursor: pointer;
  opacity: 0.8;
}

.toaster_container ul li .toaster_closebutton svg:hover path {
  fill: #fff;
}

.toaster_container ul li .toaster_card {
  position: relative;
  background: #f1f1f1;
  border-radius: 5px;
  padding: 15px;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.05), 0 6px 6px rgba(0, 0, 0, 0.2);
  min-height: 90px;
  display: flex;
  align-items: center;
  color: #fff;
}

.toaster_container ul li .toaster_card.success {
  background-color: #64d268c9;
  border: 3px solid #64d268;
}

.toaster_container ul li .toaster_card.error {
  background-color: #a9443c;
}

.toaster_container ul li .toaster_card.warning {
  background-color: #deac00;
}

.toaster_container ul li .toaster_card .toaster_timebar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  text-align: right;
}

.toaster_container ul li .toaster_card .toaster_timebar .toaster_bar {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
}

.toaster_container ul li .toaster_card .toaster_icon {
  margin-right: 10px;
}

.toaster_container ul li .toaster_card .toaster_icon svg .path {
  stroke: #fff;
}

.toaster_container ul li .toaster_card .toaster_content {
  width: 100%;
}

.toaster_container ul li .toaster_card .toaster_title {
  font-weight: bold;
  font-size: 16px;
  padding: 0px 15px 0 0;
}

.toaster_container ul li .toaster_card .toaster_title.hasMessage {
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.toaster_container ul li .toaster_card .toaster_message {
  font-size: 14px;
}

.toaster_container ul li .toaster_card svg {
  width: 35px;
  display: block;
}

.toaster_container ul li .toaster_card svg .path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 0;
}

.toaster_container ul li .toaster_card svg .path.circle {
  -webkit-animation: dash 0.9s ease-in-out;
  animation: dash 0.9s ease-in-out;
}

.toaster_container ul li .toaster_card svg .path.line {
  stroke-dashoffset: 1000;
  -webkit-animation: dash 0.9s 0.35s ease-in-out forwards;
  animation: dash 0.9s 0.35s ease-in-out forwards;
}

.toaster_container ul li .toaster_card svg .path.check {
  stroke-dashoffset: -100;
  -webkit-animation: dash-check 0.9s 0.35s ease-in-out forwards;
  animation: dash-check 0.9s 0.35s ease-in-out forwards;
}

@-webkit-keyframes dash {
  0% {
    stroke-dashoffset: 1000;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes dash {
  0% {
    stroke-dashoffset: 1000;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

@-webkit-keyframes dash-check {
  0% {
    stroke-dashoffset: -100;
  }

  100% {
    stroke-dashoffset: 900;
  }
}

@keyframes dash-check {
  0% {
    stroke-dashoffset: -100;
  }

  100% {
    stroke-dashoffset: 900;
  }
}