/*!
 * ngToast v2.0.0 (http://tameraydin.github.io/ngToast)
 * Copyright 2016 Tamer Aydin (http://tamerayd.in)
 * Licensed under MIT (http://tameraydin.mit-license.org/)
 */

.ng-toast {
  position: fixed;
  z-index: 1080;
  width: 100%;
  height: 0;
  margin-top: 20px;
  text-align: center;
}

.ng-toast.ng-toast--top.ng-toast--center .ng-toast__list {
  position: static;
}

.ng-toast.ng-toast--bottom,.ng-toast.ng-toast--bottom .ng-toast__list {
  top: auto;
  bottom: 0;
}

.ng-toast.ng-toast--bottom.ng-toast--center .ng-toast__list {
  pointer-events: none;
}

.ng-toast.ng-toast--bottom.ng-toast--center .ng-toast__message .alert {
  pointer-events: auto;
}
.ng-toast.ng-toast--left .ng-toast__list {
  right: auto;
  left: 0;
  margin-left: 20px;
}

.ng-toast.ng-toast--left .ng-toast__message {
  text-align: left;
}

.ng-toast .ng-toast__list {
  padding: 15px;
  position: absolute;
  margin: 0 auto;
  list-style: none;
  top: -20%;
  left: 50%;
  -webkit-animation-name: alert;
  -webkit-animation-duration: 5s;
  animation-name: alert;
  animation-duration: 5s;
  transform: translate(-50%, -0%);
  width: 35%;
}

.ng-toast .ng-toast__message {
  display: block;
  width: 100%;
  text-align: center;
}

.ng-toast .ng-toast__message .alert {
  display: inline-block;
  width: 100%
}

.ng-toast .ng-toast__message__count {
  display: inline-block;
  margin: 0 15px 0 5px;
}