navbar {
  box-sizing: border-box;
  display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-end;
	align-items: center;
	position: fixed;
	z-index: 4;
	top: 0;
	height: 50px;
	padding: 20px;
  margin: 0px;
	background-color: var(--light);
  border-bottom: 1px solid;
  border-color: var(--gray-dd);
}

bottombar {
  box-shadow: 0px 0px 12px var(--shadow);
  box-sizing: border-box;
  display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	position: fixed;
	z-index: 4;
	bottom: 0;
	height: 40px;
	padding: 10px;
  margin: 0px;
  color: #000000;
	background-color: var(--main-color);
}

floating-div {
  box-sizing: border-box;
  display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-end;
	align-items: center;
	position: fixed;
	z-index: 1;
	bottom: 80px;
	height: 40px;
  width: 100%;
	padding: 10px;
  margin: 0px;
  color: #000000;
}

floating {
  box-shadow: 0px 0px 12px var(--shadow);
  box-sizing: border-box;
  display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	height: 40px;
	width: 100px;
	padding: 10px;
  margin: 0px;
  margin-right: 50px;
  color: #000000;
	background-color: var(--main-color);
}

#side-menu {
  width: 300px;
}

#side-menu.expanded {
  right: 0;
}

#side-menu.reduced {
  right: -350px;
}

#side-menu {
  box-sizing: border-box;
  height: 100%;
  padding: 35px 35px;
  box-shadow: 0px 0px 12px var(--shadow);
  background-color: var(--light);
  margin: 0px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  position: fixed;
  z-index: 3;
  top: 40px;
  transition: 0.8s;
}
