#toast-container {
  position: fixed;
  z-index: 999999;
  /*font-family: Tahoma, Geneva, sans-serif !important;*/
  /*font-size: 12px;*/
}

#toast-container > .toast {
  cursor: pointer;
  margin: 0 0 6px;
  padding: 0;
  width: 285px;
  min-height: 85px;
  height: auto;
  background-position: 15px center;
  background-repeat: no-repeat;
  -webkit-box-shadow: rgba(0, 0, 0, 0.3) 0px 2px 5px 0px;
  border-radius: 2px;
  box-shadow: rgba(0, 0, 0, 0.3) 0px;
  opacity: 0;
  position: relative;
}

#toast-container > .toast.ng-enter {
  -webkit-transition: 350ms cubic-bezier(0.25, 0.25, 0.75, 0.75) all;
  -moz-transition: 350ms cubic-bezier(0.25, 0.25, 0.75, 0.75) all;
  -ms-transition: 350ms cubic-bezier(0.25, 0.25, 0.75, 0.75) all;
  -o-transition: 350ms cubic-bezier(0.25, 0.25, 0.75, 0.75) all;
  transition: 350ms cubic-bezier(0.25, 0.25, 0.75, 0.75) all;
}

#toast-container > .toast.ng-leave {
  -webkit-transition: 350ms cubic-bezier(0.25, 0.25, 0.75, 0.75) all;
  -moz-transition: 350ms cubic-bezier(0.25, 0.25, 0.75, 0.75) all;
  -ms-transition: 350ms cubic-bezier(0.25, 0.25, 0.75, 0.75) all;
  -o-transition: 350ms cubic-bezier(0.25, 0.25, 0.75, 0.75) all;
  transition: 350ms cubic-bezier(0.25, 0.25, 0.75, 0.75) all;
}

#toast-container > .toast {
  right: -500px;
}

#toast-container > .toast.ng-enter {
  right: 15px;
  opacity: 1;
}

#toast-container > .toast.ng-leave {
  right: -1000px;
  opacity: 0;
}

.toast-glyphicon {
  padding: 5px;
}

#toast-container .electio-icon {
  color: #fff;
  display: table-cell !important;
  padding-top: 2px;
  padding-right: 10px;
}

#toast-container .toast-text .toast-message {
  line-height: 16px;
  padding-top: 2px;
}

/* Positioning */
.top-left {
  top: 12px;
  left: 12px;
}

.top-right {
  top: 12px;
  right: 12px;
}

.bottom-right {
  right: 12px;
  bottom: 12px;
}

.bottom-left {
  bottom: 12px;
  left: 12px;
}

/* Close Button */
button.toast-close-button {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  position: absolute;
  left: 265px;
  top: 0px;
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
  -webkit-text-shadow: 0 1px 0 #ffffff;
  text-shadow: 0 1px 0 #ffffff;
  opacity: 0.8;
}

button.toast-close-button:hover, button.toast-close-button:focus {
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.4;
}

.toast-text {
  padding: 15px;
  color: #FFF;
  display: block;
  vertical-align: middle;
  min-height: 70px;
  height: auto;
  /*max-height: 70px;*/
  overflow: hidden;
}

.toast-text .electio-font {
  display: table-cell;
  color: #fff;
}

.toast-title {
  font-size: 15px;
  font-weight: bold;
  height: 24px;
  overflow: hidden;
  display: block;
}

.toast-text ul {
  padding-left: 5px;
}

.toast-text ul li {
  padding-bottom: 5px;
  list-style: none;
}

.toast-message {
  display: table-cell;
  vertical-align: top;
}

.toast-message a, .toast-message label {
  color: #ffffff;
}

.toast-message a:hover {
  color: #cccccc;
  text-decoration: none;
}

/* Icons */
#toast-container > .toast-info {
  /**/
}

#toast-container > .toast-wait {
  /**/
}

#toast-container .toast-error {
  /**/
}

#toast-container .toast-success {
  /**/
}

#toast-container .toast-warning {
  /**/
}

/* Image */
.toast-image {
  height: 85px;
  overflow: hidden;
  float: left;
  width: 80px;
}

.toast-image img {
  width: 80px;
  height: 85px;
}

/* Colours */
.toast-success {
  background-color: #72D74D;
}

.toast-error {
  background-color: #CE283C;
}

.toast-info {
  background-color: #309c87;
}

.toast-note {
  background-color: #007ACC;
}

.toast-wait {
  background-color: #309c87;
}

.toast-warning {
  background-color: #F88F00;
}

/*Responsive Design*/
@media all and (max-width: 240px) {
  #toast-container > div {
    padding: 8px 8px 8px 50px;
    width: 11em;
  }
  #toast-container .toast-close-button {
    right: -0.5em;
    top: -0.9em;
  }
}
@media all and (min-width: 241px) and (max-width: 480px) {
  #toast-container > div {
    width: 18em;
  }
  #toast-container .toast-close-button {
    right: -0.5em;
    top: -0.9em;
  }
}
@media all and (min-width: 481px) and (max-width: 768px) {
  #toast-container > div {
    width: 25em;
  }
}

/*# sourceMappingURL=koToast.css.map */
