#clickableHeader {
	top: 2em;
	margin-left: 1em;
	height: 0;
	position: sticky;
	z-index: 999;
	width: -webkit-fill-available;
	display: flex;
	justify-content: flex-end;
}

#clickableHeaderContainer {
	width: 100%;
	max-width: Calc(100px + 10vw);
	margin-right: 1em;
	height: fit-content;
	display: flex;
	flex-direction: column;
}
.clickableHeader {
	box-shadow: 0 -1px 0 var(--dark-bg-border);
	padding: 5px;
	padding-left: 0.5em;
	padding-right: 0.5em;
	cursor: pointer;
	opacity: 0.25;
	transition: opacity 0.15s ease-out;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none; 
}
.clickableHeader:not(:last-child) {
	border-bottom: var(--dark-bg-border) 1px solid;
}
.clickableHeader.indexed {
	opacity: 0.75;
}
.clickableHeader:hover {
	opacity: 1;
}
.clickableHeader.h2 {
	margin-left: 15px;
}
.clickableHeader.h3 {
	margin-left: 30px;
}
.clickableHeader.h4 {
	margin-left: 45px;
}
.clickableHeader.h5 {
	margin-left: 60px;
}

@media screen and (max-width: 1200px) {
	#clickableHeader {
		display: none;
	}
}

/*
#clickableHeaderContainer_mobileOpen {
	display: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none; 
}
@media screen and (max-width: 1250px) {
	#clickableHeaderContainer {
		height: calc(100vh - 100px);
		width: 100vw;
		background: var(--dark-bg-color);
		padding-bottom: 200px;
		padding-top: 200px;
		margin-bottom: calc(-100vh - 100px);
		display: flex;
		flex-direction: column;
		overflow-y: scroll;
		z-index: 9998;
		
		display: none;
	}
	#clickableHeaderContainer_mobileOpen {
		--button-height: 45px;
		--button-animtime: 0.15s;
		cursor: pointer;
		z-index: 9999;
		position: fixed;
		height: var(--button-height);
		width: 100vw;
		display: flex;
		justify-content: center;
		align-items: center;
		background-color: var(--dark-bg-color);
		border-top: 1px solid var(--dark-bg-border);
		transition: opacity 0.75s ease-in-out, background-color var(--button-animtime) ease-in-out, border-color var(--button-animtime) ease-in-out, scale var(--button-animtime) ease-in-out;
	}
	#clickableHeaderContainer_mobileOpen:hover {   
		background-color: rgb(40, 35, 45);
    	border-color: var(--dark-bg-highlight);
	}
}
