/* 2022-10-21 14:57:06 */
.popup-wrapper {
	display: none;
	width: 100%;
	height: 100%;
	z-index: 10;
	background-color: rgba(255, 255, 255, 0.5);
	top: 0;
	left: 0;
	position: fixed;
}
.popup-inner {
	max-width: 1300px;
	margin: 0 auto;
	margin-top: 1%;
	background-color: white;
	border: 50px solid white;
	float: none;
	/* max-height: 700px; */
	/* height: 100%; */
	outline: 1px solid #125d72;
	padding: 2px;
}
.popup-header{
	padding-bottom: 20px;
	border-bottom: 1px solid #333;
	margin-bottom: 20px;
}
.popup-header .popup-hide{
	position: absolute;
	right: 0;
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.popup-description{
	margin-top: 20px;
	margin-bottom: 20px;
	background-color: rgb(195, 211, 195);
	padding: 15px;
	line-height: 1.4;
}
.popup-description p{
	margin-top: 5px;
	margin-bottom: 5px;
}
.popup-description p:first-child{
	margin-top: 7px;
}
.popup-description p:last-child{
	margin-bottom: 7px;
}
.popup-content{
	height: calc(100% - 75px);
	overflow-y: auto;
}
.popup-footer{
	position: sticky;
	bottom: 0;
	left: 0;
	background: white;
	/* margin-top: 20px; */
	padding-top: 10pt;
}
.popup-title{
	font-size: 32px;
	font-weight: bold;
}
.popup-body{
	height: calc(100% - 60px);
    overflow-y: auto;
}
.popup-row{
	margin-bottom: 20px;
	margin-top: 10px;
}
.popup-menu-blok{
	display: none;
}
.popup-footer button.close-popup {
	float: right;
	background: red;
	color: white;
	border: none;
	font-size: 20pt;
	padding: 1pt 10pt 2pt;
}
.popup-footer button.close-popup:hover {
	background: darkred;
}