.alert-overlay
{
	position:fixed;
	bottom:0;
	left:0;
	width:100%;
	height:auto;
	z-index:100;
	display:none;
}

/*.alert-overlay .background 
{
	width:100%;
	height:100%;
	background-color:#000000;
	opacity:.5;
}*/

#alert_list
{
	width:100%;
	height:auto;
	/*position:absolute;*/
	position:relative;
	bottom:0;
	left:0;
	-moz-transition: bottom .2s ease-in;
    -o-transition: bottom .2s ease-in;
    -webkit-transition: bottom .2s ease-in;
    transition: bottom .2s ease-in;
}

.alert-container.show { bottom:0px; display:block;}

#alert_list .close-icon 
{
	position:absolute;
	right:1rem;
	top:1rem;
	width:20px;
	height:20px;
	/*background-image:url("../../img/theme/icon-closepopin-100x100.png");*/
	background-repeat: no-repeat;
	background-size:20px 20px;
}

#alert_list .alert-container
{
	margin-left:5px;
	margin-right:5px;
	margin-bottom:5px;
	background-color:#FFFFFF;
	padding:1.5rem;
	position:relative;
}

.alert-container h3 {font-size:1.5rem;color:#e50051;margin-bottom:.4rem;padding-right:2rem;text-transform: uppercase;font-weight: bold;}
/*.alert-container a {color:inherit!important;}*/
.alert-container a p {margin-bottom:5px;font-size:1.4rem;line-height:1.8rem;color:#111111;}



/** DESKTOP **/
@media only screen and (min-width: 1024px)
{
	.alert-list
	{
		top:-500px;
		right:20px;
		bottom:auto;
		left:auto;
		width:300px;
		border-color:#FF0000;
		border-width:1px;
		border-style:solid;
	}

	.alert-container.show 
	{
		display:block;
		bottom:auto;
		top:20px;
	}

}