﻿
/*
  Toast notification popup jQuery plugin Stylesheet
  (c) 2016 Nupin Mathew <nupindev@gmail.com>
  License: MIT
*/
/*CSS for toast popup*/

.toast-popup {
  background-color: rgba(0, 0, 0, 0.80);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  display: none;
  padding: 6px 12px;
  border-radius: 2px;
  box-shadow: 2px 2px 10px #555;
  position: fixed;
  top: 25%;
  z-index: 500000;
}
 @media screen and (min-width:768px) {

.toast-popup {
  top: 35%;
  font-size: 13px;
}
}
