/* CSS Document */

div.ippopup-modal {
	position: fixed;
	top: 5%;
	left: 50%;
	z-index: 1050;
	width: 80%;
	margin-left: -40%;
	background-color: #fff;
	border: 1px solid #999;
	border: 1px solid rgba(0,0,0,0.3);
	*border: 1px solid #999;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	-webkit-box-shadow: 0 3px 7px rgba(0,0,0,0.3);
	-moz-box-shadow: 0 3px 7px rgba(0,0,0,0.3);
	box-shadow: 0 3px 7px rgba(0,0,0,0.3);
	-webkit-background-clip: padding-box;
	-moz-background-clip: padding-box;
	background-clip: padding-box;
	outline: none;
}
div.ippopup-modal.fade {
	-webkit-transition: opacity .3s linear, top .3s ease-out;
	-moz-transition: opacity .3s linear, top .3s ease-out;
	-o-transition: opacity .3s linear, top .3s ease-out;
	transition: opacity .3s linear, top .3s ease-out;
	top: -25%;
}
div.ippopup-modal.fade.in {
	top: 5%;
}
.ippopup-modal-body[class^="jviewport-height"],
.ippopup-modal-body[class*="jviewport-height"] {
	max-height: none;
}

.ippopup-modal-header {
	padding: 9px 15px;
	border-bottom: 1px solid #eee;
}
.ippopup-modal-header .close {
	margin-top: 2px;
}
.ippopup-modal-header h3 {
	margin: 0 !important;
	line-height: 30px;
}
.ippopup-modal-body {
	width: 96%;
	position: relative;
	max-height: 800px;
	padding: 2%;
	overflow:auto;
}
.ippopup-modal-body iframe {
	width: 100%;
	max-height: none;
	border: 0 !important;
}
.ippopup-modal-form {
	margin-bottom: 0;
}
.ippopup-modal-footer {
	padding: 14px 15px 15px;
	margin-bottom: 0;
	text-align: right;
	background-color: #f5f5f5;
	border-top: 1px solid #ddd;
	-webkit-border-radius: 0 0 6px 6px;
	-moz-border-radius: 0 0 6px 6px;
	border-radius: 0 0 6px 6px;
	-webkit-box-shadow: inset 0 1px 0 #fff;
	-moz-box-shadow: inset 0 1px 0 #fff;
	box-shadow: inset 0 1px 0 #fff;
	*zoom: 1;
}
.ippopup-modal-footer:before,
.ippopup-modal-footer:after {
	display: table;
	content: "";
	line-height: 0;
}
.ippopup-modal-footer:after {
	clear: both;
}
.ippopup-modal-footer .btn + .btn {
	margin-left: 5px;
	margin-bottom: 0;
}
.ippopup-modal-footer .btn-group .btn + .btn {
	margin-left: -1px;
}
.ippopup-modal-footer .btn-block + .btn-block {
	margin-left: 0;
}

.popup-bs-modal-center {
    top: 0 !important;
    left: 0 !important;
}