/*Promo popup begin*/

/* Outer */
.popup {
    width:100%;
    height:100%;
    display:none;
    position:fixed;
    top:0px;
    left:0px;
    background:rgba(0,0,0,0.75);
	z-index: 9999;
}
 
/* Inner */
.popup-inner {
    /*max-width:500px;*/
    width:60%;
    padding:20px;
    position:absolute;
    top:50%;
    left:50%;
    -webkit-transform:translate(-50%, -50%);
    transform:translate(-50%, -50%);
    box-shadow:0px 2px 6px rgba(0,0,0,1);
    background:#fff;
}

#field-container{
	text-align:center;
	max-width: 400px;
    margin: 0 auto;
}

#input-email{
	display:inline;
}

.input-width{
	width: 90% !important;
}

/*
#subscribe-go{
	width: 30px;
    height: 30px;
    color: white;
    background-color: #000;
    border-radius: 50%;
    line-height: 30px;
    text-align: center;
    font-size: 1.2em;
	float:right;
	display:inline;
}

*/

#subscribe-go{
	background: #000;
    color: #ffffff !important;
    width: 80px;
    height: 36px;
    text-align: center;
    font-size: 12px;
    line-height: 38px;
    border: none !important;
    text-transform: uppercase;
    padding: 0 !important;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    display: inline-block;
}

/* Close Button */
.popup-close {
    width:30px;
    height:30px;
    padding-top:4px;
    display:inline-block;
    position:absolute;
    top:0px;
    right:0px;
    transition:ease 0.25s all;
    -webkit-transform:translate(50%, -50%);
    transform:translate(50%, -50%);
    border-radius:1000px;
    background:rgba(0,0,0,0.8);
    font-family:Arial, Sans-Serif;
    font-size:20px;
    text-align:center;
    line-height:100%;
    color:#fff;
}
 
.popup-close:hover {
    -webkit-transform:translate(50%, -50%) rotate(180deg);
    transform:translate(50%, -50%) rotate(180deg);
    background:rgba(0,0,0,1);
    text-decoration:none;
}

#main-title{
	text-align:center;
	font-size:2.8em!important;
}

#slogan {
	
	text-align:center!important;
	font-size:1.3em!important;
}

@media (max-width:760px) {
	
	.input-width{
		width: 85% !important;
	}

	.popup-inner {
		width:80% !important;
		padding:10px !important;
	}
	
	#main-title{
		text-align:center;
		font-size:2em!important;
	}
	
	#slogan {
	
	text-align:center!important;
	font-size:1.3em!important;
	}
}

/*promo popup end*/