#box_content_box_alert
{
	position:						fixed;
	top:							0px;
	left:							0px;
	width:							100%;
	height:							100%;
	display:						none;
	z-index:						1100;
}

#content_box_alert
{
	position:						absolute;
	top:							0;
	left:							0;
	right:							0;
	bottom:							0;
	margin:							auto;
	width:							500px;
	height:							200px;
	border:							1px solid #1883D7;
	background-color:				#FFFFFF;
	box-shadow:						0px 0px 10px 0px #D5D5D5;
	user-select:					none;
	border-radius:					10px 10px 0px 0px;
}

#barra_alta_alert
{
	position:						absolute;
	top:							0px;
	left:							0px;
	width:							100%;
	height:							40px;
	background-color:				#14A5EB;
	color:							#FFFFFF;
	text-align:						left;
	display:						table;
	border-radius:					10px 10px 0px 0px;
}

#lbl_barra_alta_alert
{
	font-size:						13px;
	color:							#FFFFFF;
	padding-left:					16px;
	display:						table-cell;
	vertical-align:					middle;
}

#box_alert
{
	position:						relative;
	top:							40px;
	padding:						15px;
}

#btn_chiudi_alert
{
	position:						absolute;
	right:							20px;
	bottom:							20px;
	width:							150px;
	height:							36px;
	background-color:				#14A5EB;
	color:							#FFFFFF;
	line-height:					36px;
	text-align:						center;
	cursor:							pointer;
}

#btn_chiudi_alert:hover
{
	background-color:				#0394DA;
}

#btn_chiudi_alert:active
{
	background-color:				#0283C9;
}

@media only screen and (max-width: 768px)
{
	#content_box_alert
	{
		width:						98%;
	}
}