<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

 .modal-popup{
    display: flex;
    justify-content: center;
 }

 .modal-wrap{
    position: fixed;
    overflow-y: auto;
    z-index: 10;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
 }

 .modal-overlay{
    position: fixed;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    background:black;
    opacity: 50%;
 }

 .modal-content{
    position: relative;
    display: flex;
    padding: 1rem;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
 }

 .modal-cancel{
    position: absolute;
    top:10px;
    right:10px;
    color:red;
 }

 .modal-cancel button{
    background:var(--color-content-bg);
 }

 .modal-inner{
    position: relative;
    width: 100%;
    border-radius: 10px;
    padding:2rem;
    overflow-y: auto;
    max-width: 42rem;
    background:var(--color-content-bg);
    border:2px solid var(--color-content-heading);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgb(59 130 246 / .5);
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
 }

 .modal-title{
    color:var(--color-content-heading);
 }

 #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 &gt; 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;
}
</pre></body></html>