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

/*.popup:after {
  position: fixed;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0,0,0,0.5);
  z-index: -2;
}

.popup:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: black;
  z-index: -1;
}*/

.popup::before {
	content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
	
}


div.popup {
	position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
	width:100%;
	height:100%;
    z-index: 1000;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: rgba(255,255,255,.3);
    cursor: pointer;
	display:none;
}

div[class*="_popup"]::before {
	
	position: relative;
   
	width:100%;
	height:100%;
    margin: 50px auto;
    padding: 50px 60px;
    vertical-align: middle;
    text-align: left;
    background-color: #050505;
    border-radius: 3px;
    -webkit-box-shadow: 0 0 20px rgb(0 0 0 / 60%);
    box-shadow: 0 0 20px rgb(0 0 0 / 60%);
    cursor: default;
	
	
}

div[class*="_popup"]:after {
	
}

.spacer {
	content:'';
	height:50px;
    margin: 0 0 -50px 0;
	position: relative;
}

.buttonpopup {
	border-bottom: unset !important;
}


.popup .block {
	width:700px;
	max-width: 90%;
    /*height:70%;*/
	/*max-width: 900px;
	max-height: 900px;*/
	
	padding:40px 40px 20px 40px;
	/*overflow-y: auto;
	overflow-x: hidden;*/
	background-color: black;
	font-size: 12pt;
	position: absolute;
	top:15%;
	left:5%;
	right:5%;
}

/*div.scroll {
	
	width:calc(100% - 30px);
	height:100%;
	
	padding:0 15px 0px 15px;
	
	background-color: black;
	font-size: 12pt;
	margin-top: 10px;
}*/

a.boxclose {
	cursor: pointer;
	color:#e10000;
	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;
	}
	
.popup h3 {
	margin-bottom: 17px;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
}

.popup p {
	font-size: 14px;
    line-height: 17px;
}

.popup img {
	width:100% !important;
	height:auto !important;
	margin-bottom: 1em;
}