/* Styles for the CoverPop.js plugin */
/*
html,
body {
    overflow: auto;
}

body {
    position: relative;
}
*/

.CoverPop-open,
.CoverPop-open body {
    overflow: hidden;
}

#CoverPop-cover {
    display: none;
    position: fixed;
    overflow: scroll;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9000;
    -webkit-animation: fade-in .25s ease-in;
    -moz-animation-name: fade-in .25s ease-in;
    -ms-animation-name: fade-in .25s ease-in;
    -o-animation-name: fade-in .25s ease-in;
    animation-name: fade-in .25s ease-in;
}

    .CoverPop-open #CoverPop-cover {
        display: block;
    }


@-webkit-keyframes fade-in {
    0% { opacity: 0; }
    25% { opacity: 0; }
    100% { opacity: 1; }
}

/*
* Custom Styles
*/

* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

	.CoverPop-close-design{
		display: block;
		text-align: center;
		text-transform: uppercase;
		text-decoration: underline;
		font-weight: 800;
        letter-spacing: 1px;
		margin-top: 20px;
		cursor: pointer;
    }

    .splash {
        background-color: rgb(0,0,0);
        background-color: rgba(0,0,0,0.85);
		color: #333;
    }

	.splash-center {
		text-align: center;
		max-width: 480px;
		padding: 15px;
		background-color: rgba(255,255,255,1);
		margin: 4% auto 0;
		border-radius: 0;
		border: 4px #900222 outset;
	}

	.splash-icon{
		text-align: center;
		max-width: 100%;
		margin-top: -15px;
	}

	.splash-title {
		text-align: center;
		text-transform: uppercase;
		line-height: 1em;
		margin-top: 1em;
	}

	.splash-content{
		margin-top: 2em;
		font-weight: 400;
		line-height: 1.6em;
	}

	.splash-content p{
		margin-top: 1em;
	}

	.splash-content strong{
		font-weight: 700;
	}

	.splash-content em{
		font-style: italic;
	}

	.splash-content u{
		text-decoration: underline;
	}


	.input-text {
		width: 100%;
		margin-bottom: 5px;
		border: solid 1px #ccc;
		padding: 7px;
	}

	.submit-button {
		margin-bottom: 10px;
	}

	.close-splash {
		margin: 0;
		font-size: 12px;
	}

@media screen and (max-width: 420px) {
    .splash-center {
        margin: 0;
    }
}