
.v-center {
  height: 100vh;
  width: 100%;
  display: table;
  position: relative;
  text-align: center;
}

.v-center > div {
  display: table-cell;
  vertical-align: middle;
  position: relative;
  top: -10%;
}

.btn {
  font-size: 3vmin;
  padding: 0.75em 1.5em;
  background-color: #fff;
  border: 1px solid #bbb;
  color: #333;
  text-decoration: none;
  display: inline;
  border-radius: 4px;
  -webkit-transition: background-color 1s ease;
  -moz-transition: background-color 1s ease;
  transition: background-color 1s ease;
}

.btn:hover {
  background-color: #ddd;
  -webkit-transition: background-color 1s ease;
  -moz-transition: background-color 1s ease;
  transition: background-color 1s ease;
}

.btn-small {
  padding: .75em 1em;
  font-size: 0.8em;
}

.modal-box {
  display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    width: 94%;
    border-radius: 0px;
	height:90%;
	z-index:9999;

}
@media (min-width: 32em) {

.modal-box { width: 98%; }
}

.modal-box header,
.modal-box .modal-header {
  padding: 1.25em 1.5em;
  border-bottom: 1px solid #ddd;
}

.modal-box header h3,
.modal-box header h4,
.modal-box .modal-header h3,
.modal-box .modal-header h4 { margin: 0; }

.modal-box .modal-body { padding: 2em 1.5em; }

.modal-box footer,
.modal-box .modal-footer {
  padding: 1em;
  border-top: 1px solid #ddd;
  background: rgba(0, 0, 0, 0.02);
  text-align: right;
}

.modal-overlay {
  opacity: 0;
  filter: alpha(opacity=0);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 900;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3) !important;
}

a.close {
  line-height: 1;
  font-size: 1.5em;
  position: absolute;
  top: 5%;
  right: 2%;
  text-decoration: none;
  color: #bbb;
}

a.close:hover {
  color: #222;
  -webkit-transition: color 1s ease;
  -moz-transition: color 1s ease;
  transition: color 1s ease;
}
.modal-box.sucess-popup{
height:auto !important
}

[data-ml-modal] .modal-overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.8) !important;
    z-index: 9999;
	opacity:1;
}

[data-ml-modal] .modal-dialog {
    position: fixed;
    width: 50%;
    z-index: 9999;
    background: #FFF;
    left: 50%;
    top: 50%;
	-ms-transform: translate(-50%,-50%);
-moz-transform:translate(-50%,-50%);
-webkit-transform: translate(-50%,-50%);
 transform: translate(-50%,-50%);
 border: none;
    border-top: solid #ea8401 2px;
    box-shadow: 0px 1px 5px 0px rgb(0 0 0 / 19%);
}
[data-ml-modal] .modal-dialog .modal-body{
border:none;
padding:50px;
}

[data-ml-modal] .modal-dialog h3 {
    color: #485967;
    padding-bottom: 20px;
    font-size: 21px;
    margin: 0;
	font-weight:bold;
}
[data-ml-modal] .modal-dialog .modal-body p {
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: .2px;
    padding: 0;
    color: #272827;
	margin:0px;
}
[data-ml-modal] .modal-close,[data-ml-modal] .modal-close-succes {
    position: absolute;
    top: 13px;
    right: 13px;
    color: #000000;
    height: 40px;
    width: 40px;
    font-size: 50px;
    line-height: 37px;
    text-align: center;
    font-weight: normal;
}


