/*Headbar*/

.hnav {
    display: flex;
    flex-flow: row wrap;
    justify-items: stretch;
    align-content: center;
    background: var(--box-body);
    transition: 1s all;
    height: 30px;
    padding: 0 1.5vw;
    gap: 1.5vw;
    font-family: var(--font-head);
    color: var(--headings-side);
    text-transform: var(--ftransf-head);
	font-size: 15px;
	position: sticky;
}

.hnav_off {
  margin-top: -30px;
  transition: 1s all;
}


.hnav a {
  color: var(--headings-side);
  text-transform: var(--ftransf-head);
  text-decoration: none;
  transition: 1s;
}

.hnav a:hover {
  color: var(--headings-header);
  transition: 1s;
}

.hnav but {
}

.hnav m {
  flex: 1;
}

.buttonklapp {
	content: "Â«";
}

.buttonklapp_back {
	content: "Â»";
}

/*Sidebar*/
.hsidebar {
  flex-grow: 0;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  gap: 5vh;
  padding: 0vw 1.5vw;
  background: var(--box-body);
  transition:1s all;
  flex-basis: 11vw;
  flex-shrink: 0;
	overflow: auto;
}

.hsidebar_off {
  padding: 0vh;
  margin-left: -11vw;
}

.hsidebar .thead {
  color: var(--headings-side);
  font-size: 18px;
  text-align: center;
   display: flex;
  flex-flow: column nowrap;
}

.hsidebar .thead a {
  text-decoration: none;
  color: var(--headings-side);
  transition: 0.5s;
	text-transform: lowercase;
}

.hsidebar .thead a:hover {
color: var(--headings-header);
  transition: 0.5s;
}

.hsidebar .tcat {
  color: var(--headings-side);
  font-size: 20px;
  text-align: center;
}

.hsidebar .tcat a {
  text-transform: lowercase;
  color: var(--headings-side);
  font-style: italic;
  transition: 0.5s;
  font-size: 25px;
}

.hsidebar .tcat a:hover {
color: var(--text-side);
  transition: 0.5s;
}

.hsidebar .tmain {
  color: var(--text-side);
}

.hsidebar .tbox {
  height: 30%;
  overflow: auto;
  flex-shrink: 1;
  padding: 0px;
  min-height: 80px;
}

.hsidebar .avaborder {
  justify-content: center;
  align-items: center;
  transform: rotate(45deg);
  padding: 10px;
  border: solid 1px var(--headings-side);
  flex: none;
  display: flex;
  margin-top: 15px;
}

.hsidebar .ava {
  width: 80px;
  height: 80px;
  overflow: hidden;
	background: var(--headings-side);
}

.hsidebar .ava img {
	height: 120px;
	transform: rotate(-45deg);
	margin: -24% -44%;
	filter: grayscale(100%);
	opacity: 0.4;
	transition: 1s all;
}

.hsidebar .ava img:hover {
	filter: grayscale(0%);
	opacity: 1;
	transition: 1s all;
}
