/* Accessibility Options */

.accessibility-options {
	font-size: 0.889rem;
	line-height: 1.222;
}

.accessibility-options div {
	position: fixed;
	bottom: 0;
	right: 0;
	z-index: 30;
	padding: 0.5em 1.5rem 6em;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(1em);
	opacity: 0;
    transition: opacity .5s ease 0s, transform .5s ease 0s, visibility 0s ease .5s;
    background-color: rgba(var(--dark), 0.9);
    box-shadow: 0 1em 1.5em rgba(var(--black), 0.2);
    backdrop-filter: blur(0.4rem);
    min-width: 19.375em;
}

.show.accessibility-options div {
	visibility: visible;
    transform: translateY(0);
    opacity: 1;
	pointer-events: auto;
    transition: opacity .5s ease, transform .5s ease;
}

.header-hide .accessibility-options div {
	visibility: hidden;
	pointer-events: none;
	transform: translateY(1em);
	opacity: 0;
    transition: opacity .5s ease 0s, transform .5s ease 0s, visibility 0s ease .5s;
}

.accessibility-options ul {}

.accessibility-options li {}

.accessibility-options li + li {
	border-top: solid 1px rgba(var(--white), 0.1);
}

.accessibility-options li button {
	width: 100%;
	padding: 1.3em 0;
	color: rgb(var(--white));
	transition: color 0.35s ease, border-color 0.35s ease, background-color 0.35s ease;
}

.accessibility-options li button:hover,
.accessibility-options li button:focus {
	color: rgb(var(--grey));
}

.accessibility-options li button svg {
	margin-right: 1em;
	font-size: 1.5em;
}

.accessibility-options li button:hover svg,
.accessibility-options li button:focus svg {
}

/* Accessibility Options */

/* Accessibility Options [Trigger] */

.accessibility-options > button {
	position: fixed;
	cursor: pointer;
	z-index: 40;
	bottom: 1.5rem;
	right: 1.5rem;
	color: rgb(var(--white));
	background-color: rgb(var(--light-blue));
	width: 1.75em;
	height: 1.75em;
	font-size: 1.778em;
	border-radius: 50%;
	transition: background-color 0.35s ease, color 0.35s ease, opacity 0.5s ease, transform 0.5s ease;
}

.accessibility-options > button:hover,
.accessibility-options > button:focus {
	background-color: rgb(var(--blue));
}

.header-hide .accessibility-options > button {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(50%);
	transition: color 0.35s ease, opacity 0.5s ease, transform 0.5s ease, visibility 0s ease 0.5s;
}

.accessibility-options > button svg {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 1;
	pointer-events: auto;
	transition: opacity 0.5s ease;
}

.accessibility-options > button .close {
	font-size: 0.75em;
}

.show.accessibility-options .open, 
.accessibility-options:not(.show) .close {
	opacity: 0;
	pointer-events: none;
}

/* Accessibility Options [Trigger] */

/* Accessibility Options [Text Size] */

html.x1 {
    font-size: 1.15vw;
}

html.x2 {
    font-size: 1.25vw;
}

/* Accessibility Options [Text Size] */

/* Responsive [1440px] */

@media screen and (max-width: 1440px) {
}

/* End Responsive [1440px] */

/* Responsive [1200px] */

@media screen and (max-width: 1200px) {
	.accessibility-options {
	    font-size: 0.889rem;
	}
}

/* End Responsive [1200px] */

/* Responsive [1000px] */

@media screen and (max-width: 1000px) {
}

/* End Responsive [1000px] */

/* Responsive [800px] */

@media screen and (max-width: 800px) {
	.accessibility-options {
	    display: none;
	    visibility: hidden;
	}
}

/* End Responsive [800px] */

/* Responsive [650px] */

@media screen and (max-width: 650px) {
}

/* End Responsive [650px] */

/* Responsive [550px] */

@media screen and (max-width: 550px) {
}

/* End Responsive [550px] */