@charset "UTF-8";
/* CSS Document */

/* Effect 1: Fade in and scale up */
.body-com .st-container{
	overflow: hidden !important;
}
.com-modal {
	position: fixed;
	top: 50%;
	left: 50%;
	/* width: 50%; */
	/* max-width: 800px; */
	width: 800px;
	/* min-width: 320px; */
	height: auto;
	z-index: 8000;
	visibility: hidden;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}

.com-show {
	visibility: visible !important;
}

.com-overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	visibility: hidden;
	top: 0;
	left: 0;
	z-index: 1000;
	opacity: 0;
	background-color: rgba(0, 0, 0, 0.4);
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.com-show ~ .com-overlay {
	opacity: 1;
	visibility: visible;
}

.com-effect-1 .com-content {
	-webkit-transform: scale(0.7);
	-moz-transform: scale(0.7);
	-ms-transform: scale(0.7);
	transform: scale(0.7);
	opacity: 0;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.com-show.com-effect-1 .com-content {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}
.com-resize {
    overflow: auto;
    height: 100%;
}
/* Content styles */
.com-content {
	background: rgba(255,255,255,1);
	position: relative;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	margin: 0 auto;
}

.com-content .img {
	margin: 0;
	padding: 0;
	width:320px;
	display:inline-block;
	vertical-align:top;
	text-align: left;
}
.com-content .img > img {
	margin: 40px 0 40px 40px;
	width:280px;
	height:auto;
}
.com-content .withimg {
	margin: 0;
	padding: 0;
	width:480px;
	display:inline-block;
	vertical-align:top;
	text-align: left;
}

.com-content h3 {
	margin: 0;
	padding: 40px 40px 0;
	width: 80%;
	font-size: 24px;
	line-height: 27px;
}
.com-content > div p {
	margin: 0;
	padding: 12px 40px 40px 40px;
	line-height: 24px !important;
}

.com-content-close{
	top:0px;
	right:0px;
	
	width:46px;
	height:46px;
	overflow:hidden;

	position:absolute;
	z-index:10;
	
	display:inline-block;
	
	background-image:url(BTN_comunicazione_close.png);
	background-position:center;
	background-repeat:no-repeat;
	background-size:46px;

	-webkit-border-radius: 50em;
	-moz-border-radius: 50em;
	border-radius: 50em;

	background-clip: border-box;
	-webkit-background-clip: border-box;
	-moz-background-clip: border-box;

	opacity:0.60;
	cursor:pointer;
	
	-webkit-transition: all 0.3s ease-out;
	-moz-transition:  all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.com-content-close:hover {
	opacity:1;
}