.reveal-modal-bg { 
	position: fixed; 
	height: 100%;
	width: 100%;
	background: #000;
	background: rgba(0,0,0,.8);
	z-index: 1004;
	display: none;	
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.reveal-modal {
	font-family: "Helvetica Neue", sans-serif;
	background: white;
	color: black;
	position: absolute;
	top: 50px;
	border: 2px solid black;
	padding: 20px;
    left:15%;
    width: 70%;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
	font-size: 1.1em;
	line-height: 1.5em;
	visibility: hidden;

	z-index: 1005;
	-moz-box-shadow: 0 0 10px rgba(0,0,0,.4);
	-webkit-box-shadow: 0 0 10px rgba(0,0,0,.4);
	-box-shadow: 0 0 10px rgba(0,0,0,.4);
}

.reveal-modal-fixed {
    position: fixed;
}

@media (max-width: 767px) {

  .reveal-modal {
    top: 50px;
    left: 0;
    right: 0;
    width: auto;
    margin: 0px;
  }
}

.reveal-modal .reveal-title{
	font-size:35px;
	color:black;
	line-height:45px;
}
.reveal-modal.small 		{ width: 200px; margin-left: -140px;}
.reveal-modal.medium 		{ width: 400px; margin-left: -240px;}
.reveal-modal.large 		{ width: 600px; margin-left: -340px;}
.reveal-modal.xlarge 		{
    width: 90%;
    left: 5%;
}

.reveal-modal .close-reveal-modal {
  cursor:pointer;
  position: absolute;
  font-size: 36px;
  font-weight: normal;
  line-height: 60px;
  height: 60px;
  width: 60px;
  text-align: center;
  top: 3px;
  right: 1px;
  color: black;
} 
