/* всплывающие окна */

div.popup {
	width:70%;
    height:70%;
	max-width: 900px;
	max-height: 900px;
	padding:10px;
	display: none;
	position: fixed;
	margin: auto;
	top: 0; left: 0; bottom: 0; right: 0;
	background-color: white;
	-webkit-box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.15);
	-moz-box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.15);
	box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.15);
	z-index:1000;
}

div.scroll {
	
	width:calc(100% - 30px);
	height:100%;
	max-width: 95%;
	max-height: 95%;
	
	padding:0 15px 0px 15px;
	overflow: auto;
	overflow-x: hidden;
	background-color: white;
	font-size: 12pt;
	margin-top: 10px;
}

a.boxclose {
	cursor: pointer;
	color:rgb(237, 0, 88);
	font-size: 72px;
	font-weight: bold;
	text-decoration: none;
	line-height: 0px;
	position: absolute;
	top:0px;
	right:-20px;
	display: block;
	/*float:right;*/
	border-bottom:none;
	
}

.boxclose:before {
    content: "×";
	
}

.boxclose:before {
    clear: both;
	}