
/*-------- MODAL ALERT --------*/

 #modal-alert-bg
	{
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0px; 
	left: 0px;
	background-color: #000000;
	opacity: 0.70;
	filter: alpha(opacity=70);
	z-index: 1000;
	}

 #modal-alert
	{
	position: fixed;
	top:0; left:0; right:0; bottom:0;
	margin: auto;
	width: 90%;
	max-width: 450px;
	height: 200px;
	padding: 22px 20px 50px 20px;
	box-sizing: border-box;
	background-color: #ffffff;
	z-index: 1001;
	font-family: Roboto, Arial, Tahoma;
	font-weight: 300;
	box-shadow: 2px 2px 4px #555555;
	}

 #modal-alert .close-btn
	{
	position: absolute;
	display: inline-block;
	top: 0px;
	right: 0px;
	width: 40px;
	height: 40px;
	background: url('/plugins/alert/images/close.jpg') center center no-repeat;
	cursor: pointer;
	}

 #modal-alert .icon
	{
	display: none;
	position: absolute;
	top: 50px;
	left: 20px;
	width: 70px;
	height: 70px;
	background-repeat: no-repeat;
	background-size: 100% auto;
	z-index: 1002;
	}

 #modal-alert .title
	{
	margin-bottom: 8px;
	font-size: 14px;
	font-weight: bold;
	color: #000000;
	text-align: center;
	}

 #modal-alert .text
	{
	font-size: 14px;
	text-align: center;
	line-height: 20px;
	}
 #modal-alert .text:first-letter
	{
	text-transform: uppercase;
	}

 #modal-alert .text div
	{
	margin: 10px 0;
	}

 #modal-alert .text strong
	{
	text-transform: uppercase;
	}

 #modal-alert .text a,
 #modal-alert .text .a
	{
	font-size: 14px;
	color: #f47920;
	text-decoration: none;
	cursor: pointer;
	}
 #modal-alert .text a:hover,
 #modal-alert .text .a:hover
	{
	text-decoration: underline;
	}

 #modal-alert .text input[type=text]
	{
	max-width: 350px;
	padding: 5px;
	border: 1px solid #cccccc;
	border-radius: 2px;
	font-size: 18px;
	}

 #modal-alert .bottom
	{
	position: absolute;
	width: 100%;
	height: 50px;
	bottom: 0px;
	left: 0px;
	background-color: #f6f6f7;
	border-top: 1px solid #e5e5e5;
	}

 #modal-alert .bottom .btn
	{
	position: absolute;
	bottom: 10px;
	right: 20px;
	display: inline-block;
	padding: 8px 10px;
	min-width: 70px;
	box-sizing: border-box;
	border: none;
	font-family: inherit;
	background: #aaaaac;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 1px;
	color: #ffffff;
	text-transform: uppercase;
	text-align: center;
	cursor: pointer;
	outline: none;

	-webkit-transition: background 200ms ease;
	-moz-transition: background 200ms ease;
	-o-transition: background 200ms ease;
	transition: background 200ms ease;	
	}
 #modal-alert .bottom .btn:hover
	{
	background-color: #000000;
	}

 #modal-alert.info
	{
	padding-left: 100px;
	}

 #modal-alert.info .icon
	{
	display: block;
	background-image: url('/plugins/alert/images/info.png');
	}

 #modal-alert.info .title
	{
	color: #606060;
	}

 #modal-alert.warning
	{
	max-width: 470px;
	padding-left: 100px;
	outline: 4px solid transparent;

	-webkit-animation: WARNING 300ms 2;
  	-moz-animation:    WARNING 300ms 2;
  	-o-animation:      WARNING 300ms 2;
  	animation:         WARNING 300ms 2;
	}

 #modal-alert.warning .icon
	{
	display: block;
	background-image: url('/plugins/alert/images/warning.png');
	}

 #modal-alert.warning .title
	{
	color: #000000;
	}

 #modal-alert.error
	{
	max-width: 470px;
	padding-left: 100px;
	outline: 4px solid transparent;

	-webkit-animation: ERROR 300ms 2;
  	-moz-animation:    ERROR 300ms 2;
  	-o-animation:      ERROR 300ms 2;
  	animation:         ERROR 300ms 2;
	}

 #modal-alert.error .icon
	{
	display: block;
	background-image: url('/plugins/alert/images/error.png');
	}

 #modal-alert.error .title
	{
	color: #ff0000;
	}


/*-------- ANIMATION --------*/

 @-webkit-keyframes ERROR
	{
  	0%   { outline-color: transparent; }
  	50%  { outline-color: #ff4444; }
  	100% { outline-color: transparent; }
	}
 @-moz-keyframes ERROR
	{
  	0%   { outline-color: transparent; }
  	50%  { outline-color: #ff4444; }
  	100% { outline-color: transparent; }
	}
 @-o-keyframes ERROR
	{
  	0%   { outline-color: transparent; }
  	50%  { outline-color: #ff4444; }
  	100% { outline-color: transparent; }
	}
 @keyframes ERROR
	{
  	0%   { outline-color: transparent; }
  	50%  { outline-color: #ff4444; }
  	100% { outline-color: transparent; }
	}

 @-webkit-keyframes WARNING
	{
  	0%   { outline-color: transparent; }
  	50%  { outline-color: #ffbb44; }
  	100% { outline-color: transparent; }
	}
 @-moz-keyframes WARNING
	{
  	0%   { outline-color: transparent; }
  	50%  { outline-color: #ffbb44; }
  	100% { outline-color: transparent; }
	}
 @-o-keyframes WARNING
	{
  	0%   { outline-color: transparent; }
  	50%  { outline-color: #ffbb44; }
  	100% { outline-color: transparent; }
	}
 @keyframes WARNING
	{
  	0%   { outline-color: transparent; }
  	50%  { outline-color: #ffbb44; }
  	100% { outline-color: transparent; }
	}


/*-------- TOP ALERT --------*/

 #top-alert
	{
	display: none;
	position: fixed;
	top: 10px;
	right: 10px;
	width: 270px;
	max-width: 90%;
	min-height: 60px;
	padding: 20px 20px 20px 70px;
	box-sizing: border-box;
	font-family: Roboto, Arial, Tahoma;
	border-top: 1px solid #dddddd;
	border-right: 1px solid #dddddd;
	box-shadow: -2px 2px 6px RGBA(0,0,0, 0.25);
	background: url('/plugins/alert/images/ok.png') 15px center no-repeat;
	background-color: #ffffff;
	z-index: 1001;

	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;

	opacity: 0;
	-webkit-transform: translate(0, -30px);
	-moz-transform: translate(0, -30px);
	-o-transform: translate(0, -30px);
	transform: translate(0, -30px);
	}

@media (min-width: 1250px) 
 {
 #top-alert
	{
	top: 80px;
	right: 15px;
	}
 }

 #top-alert.show
	{
	opacity: 1;
	-webkit-transform: translate(0,0);
	-moz-transform: translate(0,0);
	-o-transform: translate(0,0);
	transform: translate(0,0);
	}

 #top-alert .close-btn
	{
	position: absolute;
	top: 0px;
	right: 0px;
	width: 30px;
	height: 30px;
	background: url('/plugins/alert/images/close.jpg') center center no-repeat;
	cursor: pointer;
	}

 #top-alert .text
	{
	font-size: 14px;
	font-weight: 500;
	text-align: left;
	line-height: 20px;
	}

 #top-alert .text a:hover
	{
	text-decoration: underline;
	}
