/* Access Options Menu */
.access-options {
	z-index: 65;
	text-align: center;
}

.cms-edit-layout .access-options {
	position: static;
}

.access-open.access-options {
	background-color: #000000;
	transition: transform .4s ease 0s;
	position: fixed;
	bottom: 0;
	left: 0;
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
	padding: 0;
	height: 100%;
}

.access-options .access-btn {
	padding: .5em;
	font-size: 1em;
	color: #FFFFFF;
	z-index: 1;
	outline: none;
	cursor: pointer;
	position: absolute;
}

.no-touch .access-options .access-btn:hover, .no-touch .access-options .access-btn:focus {
	background-color: #000000;
	color: #FFFFFF;
}

.access-options .access-btn.open-btn {
	padding: .5em 1em;
	transition: transform .4s ease 0s, top .4s ease 0s, color .4s ease 0s, background-color .4s ease 0s, left .4s ease 0s, bottom .4s ease 0s;
	opacity: 0;
	pointer-events: none;
}

.access-options .access-btn.open-btn:focus {
	opacity: 1;
	pointer-events: all;
}

.access-options .access-btn.open-btn svg {
	color: #FFFFFF;
	margin-right: 1em;
}

.access-options .access-btn.open-btn:focus {
	position:relative;
}

.access-open.access-options .access-btn.open-btn {
	display: none;
}

.access-options .access-btn.close-btn {
	position: absolute;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	transition: color .4s ease 0s, background-color .4s ease 0s, left .4s ease 0s;
	visibility: hidden;
	display:flex;
	padding:.5rem;
	color: #FFFFFF;
	text-transform: uppercase;
	font-size: 14px;
	right: 1em;
    top: 3em;
}

.no-touch .access-options .access-btn.close-btn:hover, .access-options .access-btn.close-btn:focus {
	color: #000000;
	background-color: #FFFFFF;
}

.access-open.access-options .access-btn.close-btn {
	visibility: visible;
}

.access-options .access-btn.close-btn svg {
	font-size: 1.75em;
	margin-right: .5rem;
}

.access-options .top-info {
	display: none;
	padding: 2.222em 1em 2.222em 2em;
}

.access-options.access-open .top-info {
	display: flex;
}

.access-options .top-info > svg {
	color: #FFFFFF;
	font-size: 2.5em;
}

.access-options > ul {
	visibility: hidden;
	overflow: auto;
	display: none;
}

.access-open.access-options > ul {
	visibility: visible;
	display: block;
}

.access-options > ul::-webkit-scrollbar {
	width: 8px;
}

.access-options > ul::-webkit-scrollbar-thumb {
	border-radius: 5px;
	border: none;
	background-color: #FFFFFF;
}

.access-options > ul::-webkit-scrollbar-track {
	border-radius: 5px;
	background-color: #000000;
}

.access-options > ul > li {
	display: block;
}

.access-options ul li button {
	text-align: center;
	padding: 1em 2em;
	background-color: #000000;
	color: #FFFFFF;
	transition: background-color .4s ease 0s, color .4s ease 0s;
	outline: none;
	width: 100%;
	border-top:	solid 1px #FFFFFF;
}

.no-touch .access-options ul li button:hover, .no-touch .access-options ul li button:focus, .access-options ul li button.active {
	background-color: #FFFFFF;
	color: #000000;
}

.access-options ul li button svg {
	display: block;
	font-size: 1.5em;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	margin-right: .75em;
	color: #FFFFFF;
	transition: color .4s ease 0s;
}

.no-touch .access-options ul li button:hover svg, .no-touch .access-options ul li button:focus svg, .access-options ul li button.active svg {
	color: #000000;
}

.access-options ul li button.clear-btn {
	color: #FFFFFF;
	text-transform: uppercase;
	font-size: 14px;
}
.access-options ul li button.clear-btn svg {
	margin-right: 0;
	margin-left: 1em;
}

/* End Access Options Menu */

/* Content Only Mode */
html.content-open body .header-area, html.content-open body > main, html.content-open body > footer {
	display: none;
}

html.content-open #TopArea > div:not(#ContentZoneV1), html.content-open .content-piece.v1 {
	display: none;
}

.content-screen {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 3em 4%;
	overflow: auto;
	background-color: #FFFFFF;
	transition: transform .5s ease 0s, opacity .5s ease 0s;
	-webkit-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	transform: translateY(-100%);
	opacity: 0;
	z-index: 60;
	display: none;
}

html.high-contrast-mode .content-screen {
	background-color: #000000;
	color: #FFFFFF;
}

.access-open + .content-screen {
	padding-bottom: 8em;
}

.video-margin {
	margin-bottom: 6em;
}

.content-open .content-screen {
	opacity: 1;
	display: block;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
}

.content-screen img, .content-screen svg {
	display: none;
}

.content-screen .content-block + .content-block {
	margin-top: 2em;
}
/* End Content Only Mode */

/* High Contrast Mode */
html.high-contrast-mode {
}

html.high-contrast-mode body > *:not(#AccessibilityZone) *:not(img):not(.header-area):not(input):not(select):not(textarea):not(.btn), html.high-contrast-mode body > *:not(#AccessibilityZone) *:before, html.high-contrast-mode body > *:not(#AccessibilityZone) *:after {
	background-image: none !Important;
	background-color: #000000 !Important;
	color: #FFFFFF !Important;
}

html.high-contrast-mode a {
	text-decoration: underline !Important;
}

html.high-contrast-mode .btn, html.high-contrast-mode input, html.high-contrast-mode select, html.high-contrast-mode textarea {
	background-color: #FFFFFF !Important;
	color: #000000 !Important;
}

html.high-contrast-mode ::-webkit-input-placeholder {
	color: #000000 !Important;
}

html.high-contrast-mode :-moz-placeholder {
	color: #000000 !Important;
}

html.high-contrast-mode ::-moz-placeholder {
	color: #000000 !Important;
}

html.high-contrast-mode ::-ms-input-placeholder {
	color: #000000 !Important;
}
/* End High Contrast Mode */

/* Screen Mask Mode */
.screen-mask .mask {
	position: fixed;
	z-index: 63;
	width: 100%;
	background-color: rgba(0,0,0,0.75);
	display: none;
}

.high-contrast-mode.screen-mask .mask {
	background-color: rgba(255,255,255,0.75) !important;
}

.screen-mask.mask-active .mask {
	display: block;
}

.screen-mask .mask.top {
	top: 0;
}

.screen-mask .mask.bottom {
	bottom: 0;
}
/* End Screen Mask Mode */

/* Text Size STyles */
html.large-text body {
	font-size: 1.2em;
}

html.larger-text body {
	font-size: 1.4em;
}
/* End Text Size STyles */

/* 1024px Responsive */
@media screen and (max-width:1024px) {
	.access-options {
		-webkit-justify-content: flex-end;
		-ms-flex-pack: end;
		justify-content: flex-end;
		font-size: 1rem;
		display: none;
	}

	.mm-open .access-options {
		-webkit-transform: translateX(-200%) !Important;
		-ms-transform: translateX(-200%) !Important;
		transform: translateX(-200%) !Important;
	}

	.access-options .access-btn.open-btn {
		bottom: 5em;
	}

	.content-open .access-options:not(.access-open) .access-btn.open-btn {
		bottom: .8em;
	}

	.access-options > ul > li:nth-child(5), .access-options > ul > li:nth-child(2) {
		display: none;
	}

	.access-options ul li button svg {
		font-size: 1.5em;
	}
}
/* End 1024px Responsive */
