.language-switcher:before {
	content: '';
	width: 34px;
	height: 34px;
	background-image: url('../_img/language-icon.svg');
	background-position: 50%;
	background-repeat: no-repeat;
	display: inline-block;
	vertical-align: middle;
	margin-right: 2px;
}

.language-switcher ul,
.language-switcher li {
	list-style: none;
	margin: 0;
	padding: 0;
	display: inline-block;
	vertical-align: middle;
}

.language-switcher li + li {
	margin-left: 6px;
}

.language-switcher a {
	display: block;
	/* width: 32px;
	height: 32px;
	line-height: 32px; */
	/* border: 2px solid #fff300; */
  /* color: #fff300; */
  color: #ffffff;
	text-align: center;
	/* text-transform: uppercase; */
  /* font-weight: bold; */
  text-transform: capitalize;
}


.language-switcher a:hover,
.language-switcher a:not([href]) {
	color: #fff300;
	/* background-color: #fff300; */
}

.language-switcher a:not([href]) {
  cursor: default !important;
  text-decoration: underline;
}

/* Language-switcher: Top-bar */

.topbar .language-switcher {
	white-space: nowrap;
	position: absolute;
	right: 0;
	padding: 6px 0;
	margin-right: 6px;
}

@media screen and (max-width: 1100px) {
	.header_content .language-switcher {
    display: none;
	}
}

/* Language-switcher: Sidepanel */

.sidepanel .language-switcher {
	padding: 16px;
	margin-top: 16px;
}

/* Language-switcher: Footer */

.footer .language-switcher {
	float: right;
	margin-right: 65px;
}

@media screen and (max-width: 890px) {
	.footer .language-switcher {
		float: none;
		margin-right: 0;
	}
}


/*
 * Sidepanel
 */

.sidepanel {
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	z-index: 2000;
	width: calc(100% - 75px);
	max-width: 320px;
	background-color: #212121;
	-webkit-transition: -webkit-transform 300ms ease;
	transition: -webkit-transform 300ms ease;
	transition: transform 300ms ease;
	transition: transform 300ms ease, -webkit-transform 300ms ease;

	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
}

.sidepanel.is--hidden {
	-webkit-transform: translateX(-100%);
	        transform: translateX(-100%);
}

.sidepanel-scroller {
	min-height: calc(100% + 1px);
}

html {
	height: 100%;
}

body.body-lock {
	height: 100%;
	overflow: hidden;
}

.sidepanel-toggle {
	/* position: absolute; */
	border: none;
	width: 55px;
	height: 55px;
	display: none;
	padding: 0;
	border: none;
	/* position: absolute; */
	/* right: 10px; */
	/* top: 7px; */
	background: transparent;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
	z-index: 2001;
	-webkit-transition: background-color 300ms ease;
  transition: background-color 300ms ease;
  position: relative;
}

.sidepanel-toggle:not(.is--hidden) {
	background-color: #fff300;
}

@media screen and (max-width: 1100px) {
	.sidepanel-toggle {
		display: block;
		/* top: 52px; */
	}
}

/*@media screen and (max-width: 480px) {
	.sidepanel-toggle {
		top: 7px;
	}
}*/

.hamburger {
	position: absolute;
	width: 32px;
	height: 32px;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	pointer-events: none;
}

.hamburger span {
	position: absolute;
	height: 4px;
	top: 16px;
  /* background-color: #000; */
  background-color: #ffffff;
	width: 100%;
	left: 0;
	-webkit-transition: opacity 150ms ease, color 150ms ease, -webkit-transform 150ms ease;
	transition: opacity 150ms ease, color 150ms ease, -webkit-transform 150ms ease;
	transition: transform 150ms ease, opacity 150ms ease, color 150ms ease;
	transition: transform 150ms ease, opacity 150ms ease, color 150ms ease, -webkit-transform 150ms ease;
}

.sidepanel-toggle .hamburger span:nth-child(1) { -webkit-transform: translateY(-2px) rotate(45deg); transform: translateY(-2px) rotate(45deg); }
.sidepanel-toggle .hamburger span:nth-child(2) { -webkit-transform: translateY(-2px); transform: translateY(-2px); opacity: 0; }
.sidepanel-toggle .hamburger span:nth-child(3) { -webkit-transform: translateY(-2px) rotate(-45deg); transform: translateY(-2px) rotate(-45deg); }

.sidepanel-toggle.is--hidden .hamburger span:nth-child(1) { -webkit-transform: translateY(-11px); transform: translateY(-11px); }
.sidepanel-toggle.is--hidden .hamburger span:nth-child(2) { -webkit-transform: translateY(-2px); transform: translateY(-2px); opacity: 1; }
.sidepanel-toggle.is--hidden .hamburger span:nth-child(3) { -webkit-transform: translateY(7px); transform: translateY(7px); }


.sidepanel-backdrop {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1999;
	background-color: rgba(20, 20, 20, 0.8);
	-webkit-transition: opacity 300ms ease, visibility 300ms;
	transition: opacity 300ms ease, visibility 300ms;
}

.sidepanel-backdrop.is--hidden {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

/*
 * Sidepanel shortcut menu
 */

.sidepanel .shortcut-menu {
	padding: 16px 16px 0 16px;
}

@media screen and (max-width: 1100px) {
	.sidepanel .shortcut-menu {
		display: none;
	}
}

@media screen and (max-width: 480px) {
	.sidepanel .shortcut-menu {
		display: block;
	}
}

/*
 * Sidepanel main menu
 */

.sidepanel-menu {
	margin-top: 16px;
}

.sidepanel-menu ul,
.sidepanel-menu li {
	list-style: none;
	margin: 0;
	padding: 0;
}

.sidepanel-menu p {
	margin: 0;
	padding: 0;
	position: relative;
}

.sidepanel-menu a {
	display: block;
	color: #fff300;
	font-weight: 600;
	line-height: 40px;
	padding: 0 56px 0 16px;
	-webkit-transition: background-color 0.3s ease-in-out;
	transition: background-color 0.3s ease-in-out;
}

.sidepanel-menu ul ul.is--hidden {
	display: none;
}

.sidepanel-menu ul ul a {
	padding: 0 16px 0 32px;
}

.sidepanel-menu button {
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	display: block;
	padding: 0;
	border: none;
	position: absolute;
	right: 0;
	top: 0;
	background: transparent;

}

.sidepanel-menu button span {
	content: '';
	position: absolute;
	border: 2px solid #fff300;
	width: 28px;
	height: 28px;
	line-height: 28px;
	top: 6px;
	right: 6px;
	pointer-events: none;

	-webkit-transition: background-color 0.3s ease-in-out;
	transition: background-color 0.3s ease-in-out;

}

.sidepanel-menu button span:after {
	pointer-events: none;
	color: #fff300;
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	margin: auto;

	width: 10px;
	height: 10px;
	border-style: solid;
	border-width: 10px 5px 0 5px;
	border-color: currentColor transparent transparent transparent;

	-webkit-transition: color 0.3s ease-in-out;
	transition: color 0.3s ease-in-out;

}

.sidepanel-menu button:not(.is--hidden) span:after {
	border-width: 0 5px 10px 5px;
	border-color: transparent transparent currentColor transparent;
}

.sidepanel-menu button:hover span {
	background-color: #fff300;
}

.sidepanel-menu button:hover span:after {
	color: #212121;
}

.sidepanel-menu a.current-menu-item,
.sidepanel-menu a:hover {
	color: #fff;
	background-color: #3f3f3f;
}
