@charset "utf-8";
/* CSS Document */
.reveal-modal-bg {
	position: fixed;
	height: 100%;
	width: 100%;
	z-index: 100;
	display: none;
	top: 0;
	left: 0;
	background: rgba(00, 00, 00, 0.4)
}
.reveal-modal {
	visibility: hidden;
	position: fixed;
	z-index: 101;
	    left: 50%;
    width: 100%;
    max-width: 400px;
    margin-left: -200px;

}
a.close-reveal-modal {
    width: 40px;
    height: 40px;
    display: inline-block;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.2);
    line-height: 40px;
    color: #000;
    font-size: 30px;
    border-radius: 50%;
}

