/*================================
  Contact form submission modal
================================*/

.form-modal-obscure {
    position: fixed;
    z-index: 10000000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    background-color: rgba(0,0,0,0.8);
    text-align: center; 
    vertical-align: middle;
}

.form-modal-outer {
    position: fixed; 
    z-index: 10000000000;
    top: 15%; 
    left: 50%;  
	width: 940px;
    margin-left: -470px; 
	background: #ffffff; 
}

.form-modal-inner {
	position: relative;
	padding: 20px;
	font-size: 18px;
}

.form-modal-outer .confirm-close {
	position: absolute;
	top: -20px;
	right: 0;
	color: #ffffff;
	font-size: 14px;
	line-height: 14px;
	text-align: right;
	text-transform: uppercase;
}

