.dashboard, .filterPanel {
	position: fixed;
	top: 0;
	z-index: 96;
}

.dashboard {
	left: 0;
}

.filterPanel {
	right: 0;
}

.dashboard .dashboard-toggler, .filterPanel .filterPanel-toggler {
	position: absolute;
	opacity: 0;
	height: var(--dashboardBtnHeight);
	width: calc(var(--dashboardBtnWidth) + 10px);
	cursor: pointer;
}

	.dashboard .dashboard-toggler {
		top: var(--dashboardTopPos);
		z-index: 97;
		left: -5px;
	}

	.filterPanel .filterPanel-toggler {
		top: var(--filterPanelTopPos);
		z-index: 97;
		right: -5px;
	}

.dashboard .dashboard-hamburger, .filterPanel .filterPanel-hamburger {
	position: absolute;
	height: var(--dashboardBtnHeight);
	width: var(--dashboardBtnWidth);
	/*background: transparent;*/
	background-color: var(--colorPageBgd);
	/*padding: 10px;*/
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	z-index: 96;
	/*border: 2px solid transparent;*/
}

	.dashboard .dashboard-hamburger {
		left: 0;
		top: var(--dashboardTopPos);/*calc(50vh - 10px)*/
		border-radius: 0 50% 50% 0;
		box-shadow: 3px 2px 6px 1px var(--box-shadow);
	}
	
	.filterPanel .filterPanel-hamburger {
		right: 0;
		top: var(--filterPanelTopPos);/*calc(50vh - 10px)*/
		border-radius: 50% 0 0 50%;
		box-shadow: 3px 2px 6px 1px var(--box-shadow);
	}

.dashboard-icon, .filterPanel-icon {
	position: relative;
	top: 0;
	width: 80%;
	height: 80%;
	flex: none;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.4s;
	background-size: contain;
	background-repeat: no-repeat;
	vertical-align: middle;
}

	.dashboard-icon {
		left: 0;
		margin-right: 10px;
		margin-left: 0;
		transform: rotate(90deg);
	}

	.filterPanel-icon {
		right: 0;
		/*margin-right: 0;*/
		margin-top: 8px;
		/*transform: rotate(90deg);*/
	}

/* dashboard-hamburger line */
/*.dashboard .dashboard-hamburger > div {
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: #ccc;
	flex: none;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.4s;
}*/

/* dashboard-hamburger top & bottom line */
/*.dashboard .dashboard-hamburger > div:before,
.dashboard .dashboard-hamburger > div:after {
	content: "";
	position: absolute;
	top: 10px;
	left: 0;
	background: inherit;
	height: 2px;
	width: 100%;
	z-index: 1;
}

.dashboard .dashboard-hamburger > div:after {
	top: -10px;
}*/

/* dashboard-toggler Animation */
/*.dashboard .dashboard-toggler:checked + .dashboard-hamburger > div {
	transform: rotate(135deg);
}*/

/*.dashboard .dashboard-toggler:checked + .dashboard-hamburger > div:before,
.dashboard .dashboard-toggler:checked + .dashboard-hamburger > div:after {
	top: 0;
	transform: rotate(90deg);
}*/

/* Rotate on hover when checked */
/*.dashboard .dashboard-toggler:checked:hover + .dashboard-hamburger > div {
	transform: rotate(225deg);
}*/

.dashboard .dashboard-toggler:checked, .dashboard .dashboard-toggler:checked + .dashboard-hamburger {
	animation: showDashboardBtn 0.4s 1;
	background-color: var(--colorPageBgd);
}

.filterPanel .filterPanel-toggler:checked, .filterPanel .filterPanel-toggler:checked + .filterPanel-hamburger {
	animation: showFilterPanelBtn 0.4s 1;
	background-color: var(--colorPageBgd);
}

.dashboard .dashboard-toggler:checked ~ .fillIdleScreen, .filterPanel .filterPanel-toggler:checked ~ .fillIdleScreen {
	display: block !important;
}

.dashboard .dashboard-toggler:checked {
	left: calc(100vw - var(--dashboardBtnWidth) - 10px);
}

.filterPanel .filterPanel-toggler:checked {
	right: calc(100vw - var(--dashboardBtnWidth) - 10px);
}

.dashboard .dashboard-toggler:checked + .dashboard-hamburger {
	left: calc(100vw - 30px);
}

.filterPanel .filterPanel-toggler:checked + .filterPanel-hamburger {
	right: calc(100vw - 30px);
}

.dashboard .dashboard-toggler:checked + .dashboard-hamburger .dashboard-icon {
	transform: rotate(270deg);
}

.dashboard-content, .filterPanel-content {
	position: fixed;
	/*left: 0;*/
	background-color: var(--colorPageBgd);
	/*width: 0;*/
	width: calc(100vw - 30px);
	/*display: flex;*/
	align-items: center;
	justify-content: center;
	text-align: center;
	opacity: 0;
	transition: all var(--dashboard-content-speed) ease;
	overflow: auto;
	z-index: 51;
	/*border-top: 50px solid grey;
	border-right: 50px solid grey;*/
	padding-bottom: calc(var(--heightMenu) + 1px);
	box-shadow: 3px 2px 6px 1px #000;
}

	.dashboard-content {
		top: 20px;
		height: calc(100vh - 20px - var(--heightMenu));
		left: calc(30px - 100vw);
		border-radius: 0 24px 0 0;
		/*box-shadow: 3px 2px 6px 1px #555;*/
	}

	.filterPanel-content {
		top: var(--filterPanelTopPos);
		/*height: 180px;*/
		right: calc(30px - 100vw);
		border-radius: 0 0 0 24px;
		z-index: 98;
		padding-bottom: 20px;
	}

.dashboard-content > div, .filterPanel-content > div {
	position: relative;
	/*height: 100%;*/
	width: 100%;
	top: 0;
	flex: none;
	opacity: 0;
	/*transition: opacity 0.4s ease-in;*/
}

	.dashboard-content > div {
		left: 0;
	}

	.filterPanel-content > div {
		right: 0;
	}

/* Show dashboard-content */
.dashboard .dashboard-toggler:checked ~ .dashboard-content, .filterPanel .filterPanel-toggler:checked ~ .filterPanel-content {
	opacity: 1;
	/*width: calc(100vw - 30px);*/
	animation-direction: alternate;
	transition: all var(--dashboard-content-speed) ease;
	/*transition: opacity 0.4s ease-in;*/
}

	.dashboard .dashboard-toggler:checked ~ .dashboard-content {
		left: 0;
		animation: showDashboard 0.4s 1;
	}

	.filterPanel .filterPanel-toggler:checked ~ .filterPanel-content {
		right: 0;
		animation: showFilterPanel 0.4s 1;
	}

@keyframes showDashboard {
	0%   {left: calc(30px - 100vw);}
	100% {left: 0px; }
}

@keyframes showDashboardBtn {
	0%   {left: 0px;}
	100% {left: calc(100vw - 30px); }
}

@keyframes showFilterPanel {
	0%   {right: calc(30px - 100vw);}
	100% {right: 0px; }
}

@keyframes showFilterPanelBtn {
	0%   {right: 0px;}
	100% {right: calc(100vw - 30px); }
}

.dashboard .dashboard-toggler:checked ~ .dashboard-content > div, .filterPanel .filterPanel-toggler:checked ~ .filterPanel-content > div {
	opacity: 1;
	/*transition: opacity 0.4s ease-in;*/
}