
.reveal-modal-container {
    display: flex;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5000;
    pointer-events: none;
}

/*	--------------------------------------------------
	Reveal Modals
	-------------------------------------------------- */

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

	.reveal-modal {
		visibility: hidden;
		position: absolute;
		top: 45px !important;
		/* left: 50%; */
		padding: 10px 20px 10px;
        max-height: calc(100% - 150px);
        overflow: auto;
		z-index: 101;
		background: #eee url('images/modal-gloss.png') no-repeat -200px -80px;
		-moz-border-radius: 5px;
		-webkit-border-radius: 5px;
		border-radius: 5px;
		-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);
		/* top: 0px;  */
		/* padding: 30px 40px; */
		/* margin-left: -300px;
		width: 520px; */
        pointer-events: initial;
    }

	.reveal-modal.small 		{ width: 80%; max-width: 200px; }
	.reveal-modal.medium 		{ width: 80%; max-width: 400px; }
	.reveal-modal.large 		{ width: 80%; max-width: 600px; }
	.reveal-modal.xlarge 		{ width: 80%; max-width: 800px; }
	.reveal-modal.xxlarge 		{ width: 80%; max-width: 1000px; }
	.reveal-modal.xxxlarge 		{ width: 80%; max-width: 1200px; }
    
	.reveal-modal.dynamic 		{ max-width: 95vw; }

	.reveal-modal .close-reveal-modal {
		font-size: 22px;
		line-height: .5;
		position: absolute;
		top: 8px;
		right: 11px;
		color: #aaa;
		text-shadow: 0 -1px 1px rbga(0,0,0,.6);
		font-weight: bold;
		cursor: pointer;
    } 
	/*
		
	NOTES
	
	Close button entity is &#215;
	
	Example markup
	
    <div class="reveal-modal-container">
        <div id="myModal" class="reveal-modal">
            <h2>Awesome. I have it.</h2>
            <p class="lead">Your couch.  I it's mine.</p>
            <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In ultrices aliquet placerat. Duis pulvinar orci et nisi euismod vitae tempus lorem consectetur. Duis at magna quis turpis mattis venenatis eget id diam. </p>
            <a class="close-reveal-modal">&#215;</a>
        </div>
    </div>
	
	*/
