* { outline: none; }
*::-moz-focus-inner {
     border: 0!important;
 }
a:hover, a:active, a:focus {
    outline: none;
}
input::-moz-focus-inner {
    border: 0;
    outline: none;
}
body{
	position:relative!important;
	/* overflow: hidden; */
	display: block;
	clear: both;
	/* margin: 0 auto !important; */
}

.white-box { height: auto; }

.regular-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:#000;
    opacity:0.9;
    display:none;
    z-index:5000;
}
.icon-close {
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
    background-color: transparent;
    background-image: url(../images/modal_close_button.png);
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
    background-size: 26px 26px;
    background-position: center;
}
.icon-close::-moz-focus-inner {
  border: 0;
}


iframe{
    border: none;
}

/* MODAL */
.modal-container{
    position: absolute;
    width: 950px;
    height: 700px;
    background: #fff;
    display: none;
    z-index: 5000;
    overflow: hidden;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.modal-container.small{
    height: 380px;
}
