.popupWindowContainer {
	position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 99999;
    max-width: 95%;
    min-height: 250px;
    margin: auto;
    transition: all 0.11s ease;
    opacity: 0;
	display: none;
}
.popupWindowContainer:before {
	content: '';
    background: rgba(0,0,0,0.7);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}
.popup__header {
	text-align: center;
    padding: 15px 0;
	background: rgb(231,27,38);
	background: -moz-linear-gradient(180deg, rgba(231,27,38,1) 0%, rgba(193,25,25,1) 64%);
	background: -webkit-linear-gradient(180deg, rgba(231,27,38,1) 0%, rgba(193,25,25,1) 64%);
	background: linear-gradient(180deg, rgba(231,27,38,1) 0%, rgba(193,25,25,1) 64%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e71b26",endColorstr="#c11919",GradientType=1);
	color:#fff;
	border-radius: 12px 12px 0 0;
    border-bottom: 1px solid #ccc;
    position: relative;
	box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.25);
	font-size: 16px;
	font-weight: bold;
	cursor: move;
}
.popupWindow {
	height: 100%;
	background: url(../images/grain60.png) #fff;
	border-radius: 12px;
	box-shadow: 0px 0px 20px rgb(0 0 0 / 50%);
	padding-bottom:15px;
}
.popup__body {
	padding:26px 22px;
	font-family:Arial, Helvetica, sans-serif;
	height: calc(100% - 50px);
	max-height: 800px;
	overflow-y: auto;
}
.popup__body .table.inputData .cell {
	padding:2px 3px;
}
.popup__body .table.inputData .cell input[type=checkbox] {
	margin: 7px 5px;
    vertical-align: middle;
}
.popup__content object {
	height: 100%;
	width: 100%;	
}
.popupWindow:after {
	content:'';
	height:15px;
	width:100%;
	background: url(../images/grain.png) #1e1e1e;
	position: absolute;
    border-radius: 0 0 12px 12px;
}
.popupWindow_confirm {
	background: url(../images/grain60.png) #fff;
    text-align: center;
	padding:5px 0 20px;
}
.popupWindow_confirm input {
	margin:0 10px;
	font-size: 1.2em;
	padding:12px 30px;
	min-width: 100px;
}
.popupWindow_confirm input.cancel {
	background:rgb(0 134 178);
}
.popupWindow_confirm input.delete {
	background:rgb(0 146 178);
}
.popup_del {
	background:rgb(0 146 178);
}
.popup__close {
	position: absolute;
    top: 6px;
    left: 10px;
    height: 34px;
    width: 40px;
    /* background: rgba(182,36,39,1); */
    cursor: pointer;
    color: #000;
    border-radius: 0 5px 0 0;
	z-index: 1;
}
.popup__close:after {
	position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: "\d7";
    font-size: 35px;
    color: #fff;
    line-height: 34px;
    text-align: center;
}

/* exceptions */
#popUpInvoice.popupWindowContainer {
		height: 85% !important;
}
#popUpGroupClientList input[type=text] {
	padding: 3px 5px 2px;
  	width: 100px;
	font-size:0.95em;	
}

@media only screen and (min-height: 1280px) {
	.popupWindowContainer {
		height: 1000px !important;
	}
	.popup__body {
		max-height:inherit;	
	}
}