body{
	margin: 0;
}
section.public_access {
	font-family: sans-serif;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 100%;
	height: 100%;
	position: absolute;
	background-color: rgba(0, 0, 0, 1);
	z-index: 10000;
	display: none;
}
section.public_access .wrap {
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	position: absolute;
	height: 90%;
	max-height: 80vh;
	width: 90%;
	max-width: 500px;
	background-color: white;
	box-sizing: border-box;
	padding: 40px;
	border-radius: 10px;
	overflow: hidden;
	background-image: url(images/public_access_bg.png);
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
}
section.public_access .wrap .logo {
	background-image: url(images/logo.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	height: 100px;
	width: 200px;
	margin: 0 auto 20px auto;
}
section.public_access .wrap .social_links {
	width: 50%;
	margin: 0 auto;
	max-width: 300px;
	overflow: auto;
}
section.public_access .wrap .social_links .item {
	width: 33.33%;
	float: left;
	overflow: auto;
	position: relative;
}
section.public_access .wrap .social_links .item a {
	width: 35px;
	height: 35px;
	margin: 0 auto;
	background-color: white;
	display: block;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 50%;
	border-radius: 100px;
}
section.public_access .wrap .info {
	text-align: center;
	font-weight: normal;
	font-size: 15px;
	color: white;
}
section.public_access .wrap #public_access_code {
	margin: 0 auto;
	display: block;
	padding: 10px;
	font-size: 15px;
	font-weight: bold;
	border-radius: 5px;
	outline: none;
	border-width: 0px;
	text-align: center;
	width: 250px;
	text-transform: uppercase;
	box-sizing: border-box;
}
section.public_access .wrap #submit_public_access_code {
	box-sizing: border-box;
	margin: 10px auto 0 auto;
	padding: 0 10px;
	font-size: 15px;
	font-weight: bold;
	border-radius: 5px;
	text-align: center;
	width: 250px;
	height: 40px;
	line-height: 40px;
	background-color: #005eba;
	color: white;
	cursor: pointer;
	-webkit-touch-callout: none;
	/* iOS Safari */
	-webkit-user-select: none;
	/* Safari */
	-khtml-user-select: none;
	/* Konqueror HTML */
	-moz-user-select: none;
	/* Old versions of Firefox */
	-ms-user-select: none;
	/* Internet Explorer/Edge */
	user-select: none;
	/* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
	-webkit-tap-highlight-color: transparent;
	
	-webkit-transition: all linear 100ms;
-moz-transition: all linear 100ms;
-o-transition: all linear 100ms;
transition: all linear 100ms;
}
section.public_access .wrap #submit_public_access_code:hover {
	line-height: 38px;
	background-color: #0080ff;
	-webkit-box-shadow: inset 0px -1px 2px 0px rgba(0, 0, 0, 0.8), 0px 2px 3px 0px rgba(0, 0, 0, 0.4);
	-moz-box-shadow: inset 0px -1px 2px 0px rgba(0, 0, 0, 0.8), 0px 2px 3px 0px rgba(0, 0, 0, 0.4);
	box-shadow: inset 0px -1px 2px 0px rgba(0, 0, 0, 0.8), 0px 2px 3px 0px rgba(0, 0, 0, 0.4);
}
section.public_access .wrap #submit_public_access_code:active {
	line-height: 42px;
	background-color: #005eba;
	-webkit-box-shadow: inset 0px 0px 4px 0px rgba(0, 0, 0, 0.8);
	-moz-box-shadow: inset 0px 0px 4px 0px rgba(0, 0, 0, 0.8);
	box-shadow: inset 0px 0px 4px 0px rgba(0, 0, 0, 0.8);
}