/* CSS Document */

div.ippopup-modal {
	position: fixed;
	top: 0px;
	left: 50%;
	z-index: 1;
	width: 80%;
	margin-left: -40%;
	background-color: rgba(255,255,255,0.9);
	border: 0px solid #999;
	border: 0px solid rgba(0,0,0,0.3);
	*border: 0px solid #999;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
	-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: 0px 0px;
	border-bottom:0px 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: 0px 0px 20px;
	text-align: center;
	background-color: rgba(0,0,0,0);
	*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;
}

.button {
  background-color: rgb(20,120,180); /* DGH */
  border: none;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  font-weight:500;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
	  transition: all 0.5s;
  cursor: pointer;
}

.button:hover {
  background-color: rgb(90,180,255); /* DGH */
color: white;}


.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.button:hover span {
  padding-right: 25px;
}

.button:hover span:after {
  opacity: 1;
  right: 0;
}

/*  DGH */

.popUpBG {
	width:100%;
	height:60px;
	position:fixed;
	float:left;
	left:0px;
	top:0px;
	z-index:-1;
	background-color:rgba(255,255,255,0);
}

