#overlay {
    position: fixed;
    display: none;
    width: 30%;
    height: 90px;
    top: 25%;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(188,186,189);
    color: #2e2e2e;
    z-index: 2;
    cursor: pointer;
    margin: 0 auto;
    text-align: center;
    padding: 90px 5% 25px 5%;
    border-radius: 5px;
	
	-webkit-box-shadow: 0px 10px 10px 0px rgba(0,0,0,0.11);
	-moz-box-shadow: 0px 10px 10px 0px rgba(0,0,0,0.11);
	box-shadow: 0px 10px 10px 0px rgba(0,0,0,0.11);
}

#overlay::after {

    right: -15px;
    position: absolute;
    top: -15px;
	content:url('../img/close.png');
	transform: scale(.4);
	-webkit-transform: scale(0.4, 0.4);
	-ms-transform: scale(0.4, 0.4);
	width: 100px;
	height: 100px;
	display: block;
}