.popup-overlay {
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 999;
    display: none;
    background-color: #777777;
    cursor: pointer;
    opacity: 0.7;
}

#popup {
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001;
}

#popup #popup-content {
    margin: 6em auto 0;
    position: relative;
    width: 90%;
	max-width: 40em;
    min-height: 10em;
}
@media (max-width: 450px) { 
    #popup #popup-content { margin-top: 3em}
}
@media (min-width: 451px) and (max-width: 800px) { 
    #popup #popup-content { margin-top: 4.5em}
}

#popup-close {
    position: absolute;
    top: .5em;
	right: .5em;
	z-index: 1002;
}

#popup #popup-content_container {
	padding: 0;	
    border-radius: 0;
    background-color: #fff;
    box-shadow: -webkit-box-shadow: 4px 5px 0px 0px rgba(0,0,0,0.17); -moz-box-shadow: 4px 5px 0px 0px rgba(0,0,0,0.17); box-shadow: 4px 5px 0px 0px rgba(0,0,0,0.17);
}




