/*! supertoasty.js - v1.5.0 - 2018-05-04
* https://jakim.me/supertoasty.js/
* Copyright (c) 2015-2018 Jakim Hernández; Licensed MIT */
.supertoast-container {
  position: fixed;
  z-index: 999999;
  pointer-events: none;
  line-height: normal;
  line-height: initial;
  -webkit-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}
/* the wrapper where the supertoast messages appends: */
.supertoast-container .supertoast-wrapper {
  position: relative;
  padding: 0.5em;
}
/* the class that is assigned to the sound player. */
/* normally, this is a hidden wildcard: */
.supertoast-container .supertoast-soundplayer {
  display: none;
  visibility: hidden;
}

/**
 * supertoast messages styles:
 * -------------------------------------------------- */

/* each supertoast message gets this style: */
.supertoast {
  position: relative;
  padding: 16px;
  border: 1px solid;
  margin: 0.5em 0em;
  border-left: 6px solid transparent;
  border-radius: 2px;
  pointer-events: none;
  -webkit-transition: all 0.32s ease-in-out;
  -o-transition: all 0.32s ease-in-out;
  transition: all 0.32s ease-in-out;
  -webkit-box-shadow: 0px 0px 9px rgba(0, 0, 0, .25);
  box-shadow: 0px 0px 9px rgba(0, 0, 0, .25);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* informational supertoast class: */
.supertoast--info {
  color: #31708f;
  background-color: #eaf2fa;
  border-color: #91c5f2;
}

/* successful supertoast class: */
.supertoast--success {
  color: #3c763d;
  background-color: #e9ffd9;
  border-color: #a6ca8a;
}

/* warning supertoast class: */
.supertoast--warning {
  color: #8a6d3b;
  background-color: #fff8c4;
  border-color: #f2c779;
}

/* error supertoast class: */
.supertoast--error {
  color: #a94442;
  background-color: #ffecec;
  border-color: #f5aca6;
}

/* this class is assigned to each supertoast message when autoClose
 * plugin option is set to BOOLEAN false. */
/* Normally, this is a pointer events handler:*/
.supertoast.close-on-click {
  cursor: pointer;
  pointer-events: auto;
}

/**
 * Progress bar styles:
 * ------------------------------------------------------------------------- */

/* each progress bar gets this style: */
.supertoast-progressbar {
  position: absolute;
  height: 4px;
  width: 0%;
  left: 0px;
  bottom: 0px;
  opacity: 0.5;
  -webkit-transition: width 0s ease;
  -o-transition: width 0s ease;
  transition: width 0s ease;
}

/* progress bar color for each supertoast type: */
.supertoast-progressbar--info {
  background-color: #91c5f2;
}

.supertoast-progressbar--success {
  background-color: #a6ca8a;
}

.supertoast-progressbar--warning {
  background-color: #f2c779;
}

.supertoast-progressbar--error {
  background-color: #f5aca6;
}

/**
 * Available supertoast transitions:
 * ------------------------------------------------------------------------- */

/* TRANSITION 01 - a [fade] transition (DEFAULT TRANSITION): */
.supertoast-container--fade {
  right: 0;
  bottom: 0;
}

.supertoast-container--fade .supertoast-wrapper {
  display: inline-block;
}

.supertoast.fade-init {
  opacity: 0;
}

.supertoast.fade-show {
  opacity: 1;
}

.supertoast.fade-hide {
  opacity: 0;
}
/* ------------------------------------------------------------------------- */

/* TRANSITION 02 - a [slideLeftFade] transition: */
.supertoast-container--slideLeftFade {
  right: 0;
  bottom: 0;
}

.supertoast-container--slideLeftFade .supertoast-wrapper {
  display: inline-block;
}

.supertoast.slideLeftFade-init {
  right: -100%;
  opacity: 0;
}

.supertoast.slideLeftFade-show {
  right: 0%;
  opacity: 1;
}

.supertoast.slideLeftFade-hide {
  right: 100%;
  opacity: 0;
}
/* ------------------------------------------------------------------------- */

/* TRANSITION 03 - a [slideLeftRightFade] transition: */
.supertoast-container--slideLeftRightFade {
  right: 0;
  bottom: 0;
}

.supertoast-container--slideLeftRightFade .supertoast-wrapper {
  display: inline-block;
}

.supertoast.slideLeftRightFade-init {
  right: -100%;
  opacity: 0;
}

.supertoast.slideLeftRightFade-show {
  right: 0%;
  opacity: 1;
}

.supertoast.slideLeftRightFade-hide {
  right: -100%;
  opacity: 0;
}
/* ------------------------------------------------------------------------- */

/* TRANSITION 04 - a [slideRightFade] transition: */
.supertoast-container--slideRightFade {
  right: 0;
  bottom: 0;
}

.supertoast-container--slideRightFade .supertoast-wrapper {
  display: inline-block;
}

.supertoast.slideRightFade-init {
  left: -100%;
  opacity: 0;
}

.supertoast.slideRightFade-show {
  left: 0%;
  opacity: 1;
}

.supertoast.slideRightFade-hide {
  left: 100%;
  opacity: 0;
}
/* ------------------------------------------------------------------------- */

/* TRANSITION 05 - a [slideRightLeftFade] transition: */
.supertoast-container--slideRightLeftFade {
  right: 0;
  bottom: 0;
}

.supertoast-container--slideRightLeftFade .supertoast-wrapper {
  display: inline-block;
}

.supertoast.slideRightLeftFade-init {
  left: -100%;
  opacity: 0;
}

.supertoast.slideRightLeftFade-show {
  left: 0%;
  opacity: 1;
}

.supertoast.slideRightLeftFade-hide {
  left: -100%;
  opacity: 0;
}
/* ------------------------------------------------------------------------- */

/* TRANSITION 06 - a [slideUpFade] transition: */
.supertoast-container--slideUpFade {
  top: 0;
  right: 0;
  bottom: 0;
}

.supertoast-container--slideUpFade .supertoast-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.supertoast.slideUpFade-init {
  bottom: -100%;
  opacity: 0;
}

.supertoast.slideUpFade-show {
  bottom: 0%;
  opacity: 1;
}

.supertoast.slideUpFade-hide {
  bottom: 100%;
  opacity: 0;
}
/* ------------------------------------------------------------------------- */

/* TRANSITION 07 - a [slideUpDownFade] transition: */
.supertoast-container--slideUpDownFade {
  top: 0;
  right: 0;
  bottom: 0;
}

.supertoast-container--slideUpDownFade .supertoast-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.supertoast.slideUpDownFade-init {
  bottom: -100%;
  opacity: 0;
}

.supertoast.slideUpDownFade-show {
  bottom: 0%;
  opacity: 1;
}

.supertoast.slideUpDownFade-hide {
  bottom: -100%;
  opacity: 0;
}
/* ------------------------------------------------------------------------- */

/* TRANSITION 08 - a [slideDownFade] transition: */
.supertoast-container--slideDownFade {
  top: 0;
  right: 0;
  bottom: 0;
}

.supertoast-container--slideDownFade .supertoast-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.supertoast.slideDownFade-init {
  top: -100%;
  opacity: 0;
}

.supertoast.slideDownFade-show {
  top: 0%;
  opacity: 1;
}

.supertoast.slideDownFade-hide {
  top: 100%;
  opacity: 0;
}
/* ------------------------------------------------------------------------- */

/* TRANSITION 09 - a [slideDownUpFade] transition: */
.supertoast-container--slideDownUpFade {
  top: 0;
  right: 0;
  bottom: 0;
}

.supertoast-container--slideDownUpFade .supertoast-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.supertoast.slideDownUpFade-init {
  top: -100%;
  opacity: 0;
}

.supertoast.slideDownUpFade-show {
  top: 0%;
  opacity: 1;
}

.supertoast.slideDownUpFade-hide {
  top: -100%;
  opacity: 0;
}
/* ------------------------------------------------------------------------- */

/* TRANSITION 10 - a [pinItUp] transition: */
.supertoast-container--pinItUp {
  top: 0;
  right: 0;
  bottom: 0;
}

.supertoast-container--pinItUp .supertoast-wrapper {
  display: inline-block;
  height: 25px;
  float: right;
}

.supertoast.pinItUp-init {
  bottom: -100%;
  opacity: 0;
}

.supertoast.pinItUp-show {
  bottom: 0%;
  opacity: 1;
}

.supertoast.pinItUp-hide {
  bottom: 100%;
  opacity: 0;
}
/* ------------------------------------------------------------------------- */

/* TRANSITION 11 - a [pinItDown] transition: */
.supertoast-container--pinItDown {
  top: 0;
  right: 0;
  bottom: 0;
}

.supertoast-container--pinItDown .supertoast-wrapper {
  display: inline-block;
  height: 25px;
  float: right;
}

.supertoast.pinItDown-init {
  top: -100%;
  opacity: 0;
}

.supertoast.pinItDown-show {
  top: 0%;
  opacity: 1;
}

.supertoast.pinItDown-hide {
  top: 100%;
  opacity: 0;
}
/* ------------------------------------------------------------------------- */