/* style switcher */

:root {
	--toolbar-font: var(--ambed-font);
	--toolbar-border-radius: 0px;
	--toolbar-letter-spacing: 0;
	--toolbar-black: var(--ambed-black);
	--toolbar-primary: var(--ambed-base);
}


#switcher-toggler {
	position: absolute;
	top: 20px;
	left: 100%;
	font-size: 22px;
	color: #fff;
	width: 40px;
	height: 40px;
	background-color: var(--toolbar-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 500ms;
	border-top-right-radius: var(--toolbar-border-radius);
	border-bottom-right-radius: var(--toolbar-border-radius);
}

#switcher-toggler:hover {
	color: #fff;
	background-color: var(--toolbar-black);
}

#styleOptions {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	grid-gap: 15px;
	grid-template-columns: 1fr 1fr 1fr;
}

#styleOptions li {
	width: 100%;
	height: 46.6667px;
	border-radius: 50%;
	overflow: hidden;
}

#styleOptions li a {
	display: block;
	width: 100%;
	height: 100%;
}

/* lang bar  */

.skiptranslate {
	display: none !important;
}

/* body fix */

body {
	top: auto !important;
}