/**
* Prestashop Addons | Module by: <App1Pro>
*
* @author    Chuyen Nguyen [App1Pro].
* @copyright Chuyenim@gmail.com
* @license   http://app1pro.com/license.txt
*/
.warning_popup {
	display:none;
}
.warningpopup-overlay{
	position:fixed;
	width:100%;
	height:100%;
	top:0;
	left:0;
	z-index:9997;
	background:rgba(0,0,0,0.9)
}
.warningpopup-window{
	position:absolute;
	width:auto;
	max-width:600px;
	top:90px;
	left:50%;
	-webkit-box-shadow:0 0 6px rgba(0,0,0,0.3),0 6px 30px rgba(0,0,0,0.25);
	box-shadow:0 0 6px rgba(0,0,0,0.3),0 6px 30px rgba(0,0,0,0.25)}
.warningpopup-title{
	position:relative;
	padding:16px 25px;
	line-height:1;
	font-size:180%;
	font-weight:bold;
	text-shadow:0 1px rgba(0,0,0,0.7);
	color:#fbfbfb;
	background:#198a48; /* #1d2a4d, #198a48*/
	-webkit-border-top-left-radius:3px;
	border-top-left-radius:3px;
	-webkit-border-top-right-radius:3px;
	border-top-right-radius:3px;
}
.warningpopup-close{
	position:absolute;
	top:50%;
	right:.5em;
	margin-top:-.5em;
	font-size:150%;
	cursor:pointer}
.warningpopup-content{
	padding:25px;
	background:#fff
}
.warningpopup-content{
	max-height:480px;
	overflow-y:auto
}
.warningpopup-content p{
	padding:0;
	margin:0;
}
.warningpopup-content input{
	padding: 10px;
	margin: 10px;
	min-width: 320px;
	font-size:150%;
	color:#198a48;
	border:0;
	border:1px solid #ace2a9;
	background-color:#e4fae3;
}
.warningpopup-buttons{
	zoom:1;
	padding:10px;
	background-color:#fff;
	background:-webkit-linear-gradient(#d9d9d9, #fff);
	background:-moz-linear-gradient(#d9d9d9, #fff);
	background:-o-linear-gradient(#d9d9d9, #fff);
	background:-ms-linear-gradient(#d9d9d9, #fff);
	background:linear-gradient(#d9d9d9, #fff);
	-webkit-border-bottom-left-radius:3px;
	border-bottom-left-radius:3px;
	-webkit-border-bottom-right-radius:3px;
	border-bottom-right-radius:3px;
}
.warningpopup-buttons:before,.warningpopup-buttons:after{
	content:"";
	display:table
}
.warningpopup-buttons:after{clear:both}
.warningpopup-buttons .inner{
	width:100%;
	text-align:center;
}
.warningpopup-buttons button{
	cursor: pointer;
	padding:12px 20px;
	min-width:150px;
	color:#fbfbfb;
	font-size:160%;
	text-shadow:0 1px rgba(0,0,0,0.7);
	background:#198a48;
	border:0;
	border:1px solid #167c41;
	border-bottom:1px solid #0f532b;
	-webkit-border-radius:3px;
	border-radius:3px;
	-webkit-box-shadow:inset 0 1px rgba(255,255,255,0.45);
	box-shadow:inset 0 1px rgba(255,255,255,0.45)
}
.warningpopup-buttons button+button{
	margin-left:15px;
}
.warningpopup-buttons button.btn-ok {
	background: #198a48 url(../img/accept.png) no-repeat left center;
}
.warningpopup-buttons button.btn-cancel {
	border:1px solid #ccc;
	color:#000;
	background: url(../img/delete.png) no-repeat left center;
}
.warningpopup-buttons button:hover {
	color:#999;
}