/* custom message */
div.AlertMsg {
	width: 302px; /* setting width of div*/
	height: 95px; /* setting height of div*/
	font: 12px Arial, Helvetica, sans-serif;
	color: #000000;
}

.AlertMsg, #AlertMsg {
	padding: 20px 40px 40px 40px;
	width: 576px;
	display: none;
	background: url(../images/white.png) no-repeat;
}

.AlertClose {
	background: url(../images/close.png) no-repeat;
	position: absolute;
	top: -4px;
	right: -2px;
	width: 35px;
	height: 35px;
	cursor: pointer;
}
        
.closeBtn {
	display:block;
	position:relative;
	margin:5px auto;
	padding:7px;
	border:0 none;
	width:70px;
	font:0.7em verdana,arial;
	text-transform:uppercase;
	text-align:center;
	color:#FFF;
	background-color:#357EBD;
	border-radius: 3px;
	text-decoration:none;
}
        
.AlertMsg::before, #AlertMsg::before {
	content: "";
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.20);
	z-index: -1;
}

.AlertMsg::after, #AlertMsg::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	z-index: -1;
}

.AlertMsg, #AlertMsg {
	background: #fff;
	padding: 24px 32px 72px 24px;
}

div.AlertMsg {
	width: 100%;
	max-width: 476px;
	height: auto;
}

div.AlertMsg h5 {
	font-size: 32px;
	font-weight: 400;
	line-height: 38px;
	margin-top: 32px !important;
	margin-bottom: 24px !important;
	text-align: center;
}

div.AlertMsg h5 strong {
	font-weight: 400;
}

div.AlertMsg hr {
	display: none;
}

div.AlertMsg h6 {
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 0.25px;
	color: #000 !important;
	text-align: center !important;
	margin-bottom: 32px;
}

.AlertClose {
	background: none;
	position: static;
	top: auto;
	right: auto;
	width: auto;
	height: auto;
	letter-spacing: 0.25px;
	font: 16px 'Open Sans', sans-serif;
	line-height: 22px;
	color: #000 !important;
	display: inline-block;
	vertical-align: top;
}

.AlertClose::before {
	content: "Indietro";
	padding-left: 30px;
	background: url('../images/restyling/close.png') no-repeat left center / 6px auto;
}

.AlertClose::after {
	content: "OK!";
	position: absolute;
	bottom: 24px;
	left: 50%;
	width: calc(100% - 48px);
	max-width: 260px;
	height: 48px;
	background: #000;
	color: #fff;
	text-align: center;
	line-height: 48px;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	transform: translateX(-50%);
}