/*#mask {
  position:absolute;
  left:0;
  top:0;
  z-index:9000;
  background-color:#000;
  display:block;
}  
#boxes .window {
  position:fixed;
  left:0;
  top:0;
  width:440px;
  height:200px;
  display:block;
  z-index:9999;
  padding:20px;
  border-radius: 15px;
  text-align: center;
}
#boxes #dialog {
  width:450px; 
  height:auto;
  padding:10px;
  background-color:#ffffff;
  font-family: 'Segoe UI Light', sans-serif;
  font-size: 15pt;
}
.maintext{
	text-align: center;
  font-family: "Segoe UI", sans-serif;
  text-decoration: block;
} 
#lorem{
	font-family: "Segoe UI", sans-serif;
	font-size: 12pt;
  text-align: left;
}
#popupfoot{
	font-family: "Segoe UI", sans-serif;
	font-size: 16pt;
  padding: 10px 20px;
}
#popupfoot a{
	text-decoration: block;
}
.agree:hover{
  background-color: #D1D1D1;
}
.popupoption:hover{
	background-color:#D1D1D1;
	color: green;
}
.popupoption2:hover{
	
	color: red;
}*/


/*   */

.modalDialog {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99999;
    display:block;
    opacity: 1;
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
    /*background-color: #000;
    opacity: 0.4;*/

  }
  .modalDialog > div {
    width: 80%;
    height: auto;
    position: relative;
    /*margin: 10% auto;*/
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    padding: 10px 20px;
    border-radius: 10px;
    background: #fff;
    border: 2px solid;
  }
  .close {
    /*background: #606061;*/
    background: url('../../images/close.png') center center no-repeat;
    color: #FFFFFF;
    line-height: 40px;
    position: absolute;
    right: -16px;
    text-align: center;
    top: -18px;
    width: 30px;
    height: 30px;
    font-size: 12px;
    text-decoration: none;
    font-weight: bold;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    /*-moz-box-shadow: 1px 1px 3px #000;
    -webkit-box-shadow: 1px 1px 3px #000;
    box-shadow: 1px 1px 3px #000;*/
    opacity: 1 !important;
    border: 2px solid;
    background-color: #cdcdcd;
  }
  /*.close:hover {
    background: #00d9ff;
  }*/
  .modalDialog .success{
    font-size: 20px;
    text-align: center;
    padding: 15px 0px;
    color: #000;
    border-bottom: 1px solid #cdcdcd;
    margin-bottom: 10px;
    background-color: #fff !important;
  }
  .modalDialog .content{
    color: #000;
    font-size: 20px;
    line-height: 25px;
  }