.a-toast {
  position: fixed;
  display: inline-block;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border-radius: 15px;
  padding: 8px 15px;
  margin: 0px 10px;
  border: none;
  z-index: 1000;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
  font-size: 13px;

  transition-property: opacity;
  transition-duration: 0.8s;
  opacity: 0;
}

.a-toast-show {
  opacity: 1;
}

.a-toast-pos-top{top: 50px;}
.a-toast-pos-bottom{bottom: 50px;}

.a-toast-success{background: rgba(0, 155, 202, 0.85);}
.a-toast-warn{background: #69fe88;color: #111111}
.a-toast-danger {background: rgba(204, 42, 2, 0.85);}
