/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

 #notify_signup_field .optional{
	 display: none;
 }

 #notify .modal-window {
	position: fixed;
	background-color: rgba(0, 0, 0, 0.50);
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 999;
	display: none;
	transition: all 0.3s;
}
#notify .modal-window:target {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
}
#notify .modal-window > div {
	width: 400px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 1em 2em 2em 2em;
	background: white;
}
#notify .modal-window header {
	font-weight: bold;
}
#notify .modal-window h1 {
	font-size: 150%;
	margin: 0 0 15px;
}
#notify .modal-close {
	color: red;
    margin-bottom:10px;
    display: block;
    width: 100%;
    text-align: right;
}
#notify .modal-close:hover {
	color: black;
}


/** Signup Form **/
.notify-form-wrapper {
    max-width: 400px;
    margin: 0 auto;
}
.notify-form-wrapper h2 {
    text-align: center;
}
.notify-form-wrapper button {
    margin-top: 10px;
    display: block;
    width: 100%;
}
.notify-success{
    background-color: green;
    color:white;
}
