.jq-toast-wrap,.jq-toast-wrap *{margin:0;padding:0}
.jq-toast-wrap{inset: 60px 10px auto auto !important;}
.jq-toast-wrap{display:block;position:fixed;width:300px; pointer-events:none!important;letter-spacing:normal;z-index:9999999999999!important}
.jq-toast-wrap.bottom-left{bottom:20px;left:20px}
.jq-toast-wrap.bottom-right{bottom:20px;right:40px}
.jq-toast-wrap.top-left{top:20px;left:20px}
.jq-toast-wrap.top-right{top:20px;right:40px}
.jq-toast-single{width: [object Object]px; 
	height: [object Object]px; 
	background: #F8F8F8; 
	/* border: solid #BDBDBD 1px;  */
	box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2)  ; 
	-webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2)  ; 
	-moz-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2)  ; display:block;width:100%;padding:10px;margin:0 0 5px;border-radius:4px;font-size:12px;font-family:arial,sans-serif;line-height:17px !important;position:relative;pointer-events:all!important;background-color:#444;color:#fff}.jq-toast-single h2{font-family:arial,sans-serif;font-size:14px !important;margin:0 0 7px;background:0 0;color:inherit;line-height:inherit;letter-spacing:normal}
.jq-toast-single a{color:#eee;text-decoration:none;font-weight:700;border-bottom:1px solid #fff;padding-bottom:3px;font-size:12px}
.jq-toast-single ul{margin:0 0 0 15px;background:0 0;padding:0}
.jq-toast-single ul li{list-style-type:disc!important;line-height:17px !important;background:0 0;margin:0;padding:0;letter-spacing:normal}
.close-jq-toast-single{position:absolute;top:20px;right:7px;font-size:25px;cursor:pointer}
.jq-toast-loader{display:block;position:absolute;bottom:0px;height:3px;width:0;left:0;border-radius:5px;}
.jq-toast-loaded{width:100%;}
.jq-has-icon{padding:10px 10px 10px 50px;background-repeat:no-repeat;background-position:10px}
.jq-icon-info{background-image:url("../images/toast/info.png");background-size: 10%;background-color:white;color:black;border-left: 3px solid #31CDDD;margin-top: 10px;}
.jq-icon-warning{background-image:url("../images/toast/warning.png");background-size: 9%;background-color:white;color:black;border-left:3px solid #FFC048;margin-top: 10px;}.jq-icon-error{background-image:url("../images/toast/cross.png");background-size: 10%; background-color:white;color:black;border-left:3px solid #EA3446;margin-top: 10px;}
.jq-icon-success{background-image:url("../images/toast/correct.png");background-size: 9%; color:black;background-color:white;border-left:3px solid #3BB54A;margin-top: 10px;}


.Toast-2 input {
  width: 120px;
  height: 40px;
  font-family: 'Ubuntu', sans-serif;
  font-size: 15px;
  border: none;
  color: white;
  cursor: pointer;
}

.Toast-2 #error {
  position: fixed;
  top: 50%;
  left: 35%;
  transform: translate(-50%, -35%);
  background: #FF5252;
}
.Toast-2 #success {
  position: fixed;
  top: 50%;
  left: 45%;
  transform: translate(-50%, -45%);
  background: #66BB6A;
  
}
.Toast-2 #info {
  position: fixed;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -55%);
  background: #29B6F6;
}
.Toast-2 #warning {
  position: fixed;
  top: 50%;
  left: 65%;
  transform: translate(-50%, -65%);
  background: #FFAB40;
}

.Toast-2 #error:hover {
  background: #D32F2F;
  box-shadow: 0 5px 5px rgba(0,0,0, 0.5);
}
.Toast-2 #success:hover {
  background: #00C853;
  box-shadow: 0 5px 5px rgba(0,0,0, 0.5);
}
.Toast-2 #info:hover {
  background:#0a9fe2;
  box-shadow: 0 5px 5px rgba(0,0,0, 0.5);
}
.Toast-2 #warning:hover {
  background: #ff950d;
  box-shadow: 0 5px 5px rgba(0,0,0, 0.5);
}
.Toast-2 input:focus{
  outline: none;
}