.modal-dlg {
	z-index: 9990;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(162, 162, 193, 0.5);
    opacity: 0;
    visibility: hidden;
}
.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px 20px;
    width: 600px;
	color: #333333;
	font-size: 16px;
	line-height: 22px;
	text-align:center;
	max-height: 90%;
	overflow: auto;
 }
 
 .modal-content-terms {
 	text-align: left;
 	width: 680px;
 	max-height: 90%;
 }
 
 .modal-content-left {
 	text-align: left;
 	width: 800px;
 }
.close-button {
    float: right;
    text-align: center;
    cursor: pointer;
    font-size: 24px;
}

.show-modal {
    opacity: 1;
    visibility: visible;
}

.yes-button, .no-button {
    border-radius: 3px;
    border: solid 1px #333366;
    padding: 6px;
    min-width: 200px;
    cursor: pointer;
    font-weight: bold !important;
}

.yes-button {
	background-color: #333366;
	color: #FFF !important;	
}

.no-button {
	background-color: #ffffff;
	color: #333366 !important;
}

div.btn-area {
	margin: 20px auto 5px;
}

.yes-button:hover, .no-button:hover {
	border: solid 1px #ededed;
	background-color: #ededed;
	color: #333366 !important;
}

 .tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  white-space: normal;
  filter: alpha(opacity=0);
  opacity: 0;
  line-break: auto;
} 
 
 .tooltip.in {
  filter: alpha(opacity=90);
  opacity: 1 !important;
} 

.tooltip > .tooltip-inner {
	font-size:14px !important;
	line-height: 17px !important;
	font-weight: normal !important;
	max-width: 600px !important;
  	padding: 10px;
  	color: #000;
  	text-align: left;
  	background-color: #fff;
  	border: 1px solid gray;
  	border-radius: 4px;
  	box-shadow: 2px 3px 5px gray;
}
 
.spinning-center {
	position: fixed;
	z-index: 9999; 
	top: 50%; 
	left: 50%; 
	transform: translate(-50%, -50%);
}