/* Schnellenberg.nl  */
/* Toegankelijkheids­eisen  */

#fs-tgkh-toolbar{
	display: block;
	position: fixed;
	left: 0px;
	top: 15%;
	z-index: 99;
	background-color: transparent;
	color: var(--fs-teksten-zwart);
}

/* Toggle tab */
.fs-tgkh-toolbar-toggle{
	/* position: absolute; */
	left: 0;
	top: 0;
	width: 56px;
	height: 56px;
	background: var(--fs-main);
	box-shadow: 0 2px 8px rgba(0,0,0,.25);
	border-radius: 0 4px 4px 0;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 3;
}

.fs-tgkh-toolbar-toggle-link{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	color:  var(--fs-teksten-wit);
	text-decoration: none;
}

.fs-tgkh-toolbar-toggle-link svg{
	width: 28px;
	height: 28px;
}

/* Paneel */
.fs-tgkh-toolbar-overlay{
	position: relative;
	/* left: 56px; ruimte voor toggle */
	min-width: 300px;
	background:  var(--fs-bg-3);
	border-left: 3px solid var(--fs-main);
	box-shadow: 0 8px 24px rgba(0,0,0,.25);
	border-radius: 0px 4px 4px 0px;
	transform: translateX(-110%);
	transition: transform .3s ease;
	z-index: 2;
	display: none;
}
.fs-tgkh-toolbar-overlay.active {
  display: block;
}
/* Open toestand; later kan JS de klasse .fs-open toggelen */
#fs-tgkh-toolbar.fs-open .fs-tgkh-toolbar-overlay{
	transform: translateX(0);
}

.fs-tgkh-toolbar-inner{
	padding: 16px 18px 10px 18px;
}

.fs-tgkh-toolbar-title{
	margin: 0 0 8px 0;
	font-size: 20px;
	font-weight: 700;
	color: var(--fs-teksten-zwart);
}

.fs-tgkh-toolbar-items{
	list-style: none;
	margin: 0;
	padding: 6px 0 8px 0;
}

.fs-tgkh-toolbar-item{ 
	margin: 2px 0;
}

.fs-tgkh-toolbar-link{
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 6px;
	border-radius: 4px;
	color: #222;
	text-decoration: none;
}

.fs-tgkh-toolbar-link:hover,
.fs-tgkh-toolbar-link:focus{
	background: var(--fs-bg-3);
	outline: none;
}

.fs-tgkh-toolbar-icon{
	flex: 0 0 auto;
	color: #444;
}

.fs-tgkh-toolbar-icon svg{
	width: 20px;
	height: 20px;
}

.fs-tgkh-toolbar-text{
	font-size: 16px;
	line-height: 20px;
}

@media (max-width: 480px){
	#fs-tgkh-toolbar{ top: 10%; }
	.fs-tgkh-toolbar-overlay{ width: 86vw; }
	.fs-tgkh-toolbar-text{ font-size: 15px; }
}
