/********************************************************************************/
/* HEADER 
/********************************************************************************/

/* Header */
#page-header {
	position: fixed;
	z-index: 99;
	top: 0;
	left: 0;
	width: 100%;
	border-bottom: 1px solid;
	padding: 10px 0;
	box-shadow: 0 1px 2px rgba(0,0,0,0.25);
	background: var(--white-color);
	color: var(--dark-color);
}
.header-container {
	display: flex;
	align-items: center;
}
@media (min-width : 1200px) {
}

/***/



/* Header main */
#header-main {
}
/***/



/* Navbar toggle */
#navbar-toggle {
	margin: 0 6px;
	padding: 5px;
	cursor: pointer;
}
#navbar-toggle
#navbar-toggle:focus {
	outline: 0;
}
#navbar-toggle > span {
	display: block;
	width: 25px;
	height: 0;
	margin: 6px auto;
	border: 1px solid;
	border-radius: 2px;
	-webkit-transform-origin: 50% 50%;
			transform-origin: 50% 50%;
	-webkit-transition: all 0.5s cubic-bezier(0.770, 0.000, 0.175, 1.000);
			transition: all 0.5s cubic-bezier(0.770, 0.000, 0.175, 1.000);
}
#navbar-toggle.open > span:nth-child(1) {
	-webkit-transform: translateY(8px) rotate(-45deg);
			transform: translateY(8px) rotate(-45deg);
}
#navbar-toggle.open > span:nth-child(2) {
	width: 0px;
}
#navbar-toggle.open > span:nth-child(3) {
	-webkit-transform: translateY(-8px) rotate(45deg);
			transform: translateY(-8px) rotate(45deg);
}
/***/



/* Header logo */
#header-logo {
	display: none;
	margin: 0 15px;
}
#header-logo img {
}
/***/



/* Site title */
#site-title {
	margin: 0 15px;
	/*padding-inline-end: 15px;*/
}
#site-title h1 {
	margin: 0;
	font-size: 1.5em;
	font-weight: 500;
	letter-spacing: -1px;
}
#site-slogan {
	display: none;
}
/***/



/* Header menu */
#header-menu {
	position: relative;
	/*width: 10em;*/
	overflow: hidden;
	margin: 0 15px -10px 15px;
	padding-bottom: 10px;
}
#header-menu:hover {
	overflow: visible;
}

#header-menu .toggle-button {
	display: inline-block;
	width: 2.5em;
	height: 2.5em;
	outline: none;
	border: 1px solid;
	border-radius: 50%;
	line-height: calc(2.5em - 2px);
	text-align: center;
	color: #888;
}


#header-menu ul {
	position: absolute;
	top: 100%;
	left: -15px;
	min-width: 15em;
	border: 1px solid;
	border-top: 0;
	padding: 5px 0;
	background: var(--white-color);
	box-shadow: 0 1px 2px rgba(0,0,0,0.25);
}
#header-menu:hover ul {
}
#header-menu li {
	position: relative;
	padding: 0.25em 0.5em;
}
#header-menu a {
	display: block;
	padding: 0.25em 0.5em;
}
#header-menu a:after {
	content: '\f053';
	position: absolute;
	top: 50%;
	right: 0.5em;
	margin-top: -0.5em;
	font: var(--fa-font-solid);
	opacity: 0;
	-webkit-transition: all 0.2s ease;
			transition: all 0.2s ease;
}
#header-menu a:hover:after {
	right: 1em;
	opacity: 1;
}
/***/



/* Header search form */
#header-search {
	display: flex;
	margin: 0 15px 0 auto;
	border-radius: 2px;
	color: #888;
}


#header-search .toggle-button {
	position: relative;
	width: 2.5em;
	height: 2.5em;
	outline: none;
	border: 1px solid;
	border-radius: 50%;
	text-align: center;
	line-height: calc(2.5em - 2px);
}
#header-search .toggle-button.on > span:first-child,
#header-search .toggle-button:not(.on) > span:last-child {
	display: none;
}

#header-search .form-container {
	width: 0;
	overflow: hidden;
	opacity: 0;
	-webkit-transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
			transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
#header-search.on .form-container {
	width: 21em;
	opacity: 1;
}

#header-search-form {
	display: flex;
	flex-wrap: nowrap;
	margin: 0 0.25em;
	border: 1px solid #888;
	border-radius: 1.25em;
	overflow: hidden;
}

#header-search-form input[type="text"] {
	width: 100%;
	margin: -1px -2em -1px 0;
	border: 0;
	padding: 0.5em 2.5em 0.5em 1em;
	background: transparent;
	color: var(--dark-color);
	-webkit-transition: all 0.2s cubic-bezier(0.65, 0, 0.35, 1) 0.2s;
			transition: all 0.2s cubic-bezier(0.65, 0, 0.35, 1) 0.2s;
}
#header-search-form input[type="text"]:focus {
	box-shadow: none;
}

#header-search-form ::-webkit-input-placeholder { color: #eee; -webkit-text-fill-color: initial; }
#header-search-form :-moz-placeholder 			{ color: #eee; -webkit-text-fill-color: initial; }
#header-search-form ::-moz-placeholder 			{ color: #eee; -webkit-text-fill-color: initial; }
#header-search-form :-ms-input-placeholder 		{ color: #eee; -webkit-text-fill-color: initial; }

#header-search-form button[type="submit"] {
	position: relative;
	width: 2.5em;
	height: 2.5em;
	flex-shrink: 0;
	outline: none;
	margin: -1px;
	border: 1px solid;
	border-radius: 50%;
	padding: 0;
	background: var(--white-color);
	text-align: center;
	line-height: calc(2.5em - 2px);
}


@media (min-width : 1200px) {

}
/***/




/* Header btns */
#header-btns {
	margin: 0 15px;
}
#header-btns li {
	display: inline-block;
}
#header-btns a {
	display: inline-block;
	width: 2.5em;
	height: 2.5em;
	outline: none;
	border: 1px solid;
	border-radius: 50%;
	line-height: calc(2.5em - 2px);
	text-align: center;
}
/***/



/* Side panel */
#header-side-panel {
	position: fixed;
	z-index: -1;
	top: 0;
	bottom: 0;
	left: 0;
	width: 300px;
	max-width: 100%;
	display: flex;
	flex-direction: column;
	border-right: 1px solid;
	box-shadow: 1px 0 4px rgba(0,0,0,0.5);
	background: var(--light-color);
	-webkit-transform: translateX(-101%);
			transform: translateX(-101%);
	-webkit-transition: all 0.2s ease;
			transition: all 0.2s ease;
}
#header-side-panel.open {
	-webkit-transform: none;
			transform: none;
}

#side-cover {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 100%;
	width: 0;
	background: rgba(0,0,0,0.2);
	opacity: 0;
	-webkit-transition: opacity 0.4s ease, width 0s ease 0.4s;
			transition: opacity 0.4s ease, width 0s ease 0.4s;
	overscroll-behavior: none;
}
#header-side-panel.open #side-cover {
	/*
	cursor: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAABVtJREFUeNrsW11MW2UYPofBaKdG4yIouE5RN5xcEEMISmKa4JURUJJSfgKsyu6IV3jnhRfcbfEGnCSmCIWE34QIxMiN3JAYjVE25/iZiWWUWqB0ndOx/rDuecN3kmMp7dee/pzD+iZPTnLOd6DP873f+34/7xGErGUta1nLWuIWCoUUIcbfNgKTwG3gZ6DrsREAz9pDEWxvb28Ej/VALiAeSwFw/6NQFJudnTWj2WkgX6kIOSr0qA5crNHaFBQUkABngaeBk0pEyFUZeQsuA7HauVyu53A5DwQBPxCg1zXtAbzkyaxW6z1cSoDngSeBE5oeAiB/kZf8xMTE5szMDPX6s2wI6DQtAAU8XL7haYvg5zKbzWvSq8n4/5kWoD1WwJNsbm5uq66ubpmN938BL3AXeADsa1EA6vkhnoZweVdtbe1NRp5IO4F1iodMDM0JEFfP19fXSz3/D+AAaBj8CWwB95UMhxw19/z09LS854n8BrDMsM68IaAlASy8PU/kGxoaliOQJ0HsgAfwKQ2G6RSAO9VNTU39LSN/NwL53WSQT6cAFt5UNzk56TSZTCsy8o5UkU+XAB28PT82NuZsbGxcDet5Iv4H8FeyyadDAAp4gzwNR0dHN5ubm1ejuL0n2eSFZKyno6zp23mjPXqeyK8x8l5GfiXV5FPpAdypbmRkxJEp8qnaEOkIcRrcngLcD8A8MA5cAT4G3gZeYAsdUVCzhZG38JIfHh7e0Dz5MAHiIR/e85cZ+bcY+XxNkJcJcJGXvM1mk3r+e82Tl9bzvOSHhoaOHXkzL/nBwUFVkhcVkDewFRnPHt5GZ2cnLV/9bJJzW7aqk1KdPxOpTsk8wBKrgc/ne9jb22tXK3mlHvA1Lp3R2jidzgfFxcU/MoLesOnteqbJK/KAQCBwI1aboqIi3eLiYlmE9bwqyCuyvr6+08Fg8A5PAFxaWqK8/wnwDukiBbxYh6NqN31/f389RPDziGC322lJ+ybwDHCC53RY7Ua9WNLd3f0pRAjyiLC9vf0b3qHsoT8OHkDnigVAdVtb2xW/388lws7Ozq9454wkgpYFoB9/Sjg4o3u/tbX1SwRGXhGWmAintC4CncnR+dzrwAdms/nq4yaCyIYCBbY3gA+bmpq+4h0Ou7u71/R6veFYigBP2Of0hGssMGpTBBbJD4lgMpmuxuMJhYWFL2tSBFk+PyRCS0sLtyeQCDqd7qzmRAgreDokAgXGODzhusFgKNGUCBGqvuQiXJB5ApcIHo/nhkyEHM0JEM0T4hDhZllZ2SuaECFK/d9RMYFXhJXKyspzqhchRhHkUSmSSwSv17taXV19XtUicFSCKgqMEGHNaDSWqlYEznLYiJ6AReQ+rwgVFRXq9IQ4aoIVTZYgwq2ampoLqhMhzsJoRZMlEkF1npBAdbiimOB2u3/HOy+pRoQES+QVpciBgYHPhINq8cyLoOA7gYQnSwsLC3TCZAReFBSeKOVmULiQKIpU4UmVnpt0b3x8XMA90WazXcrLyzuyANrhcFDPv8repUJJKpvf15QHcEyWjgyMVVVV36Hd58B7bC/hpOaGQNi2eMQUiah/P5x8T0/PLTz/FvgCoC9HXhMOiikS3s1JxoZI4ttJoij/LeT29AFEMXCutLS0squr693y8vIzTqczaLVat+bn5+l8kUDnjT8BtNVOBy++jAiQgu21/4nANlwp7UkfSdFYdwNUUveLcHDctsPiQEK7uqqbXTMyPoYAIx1gAY+KJdeZBygunsxVqQBSdqDvAqRj9ULgCSaEm2WObWAPeJixGJCG4ZDPhsRTLNqTOP8B92QpMOFA9EiAAQADAUQmyEXORgAAAABJRU5ErkJggg==), auto;
	*/
	width: 100vw;
	opacity: 1;
	-webkit-transition: opacity 0.4s ease;
			transition: opacity 0.4s ease;
}



#side-top-bar {
	box-sizing: content-box;
	height: 60px;
	flex-shrink: 0;
	border-bottom: 1px solid;
	box-shadow: 0 0 2px rgba(0,0,0,0.25);
}
.side-container {
	padding: 15px 30px;
}
.side-menu {
}
.side-menu ul {
}
.side-menu li {
	padding: 0.25em 0;
}
.side-menu li.menu-hr {
	margin-top: 15px;
	border-top: 1px solid;
	padding-top: 15px;
}
.side-hr {
	margin: 15px 0;
	border-top: 1px solid;
}

#side-panel-footer {
	margin-top: auto;
	text-align: center;
	font-size: 14px;
}
/***/



/********************************************************************************/

