body {
	margin: 0;
	overflow: hidden;
	height: 100vh;
	height: 100dvh;
	display: flex;
}

.content {
	width: 100%;
}

/* TEST ONLY */
/* #iContent {
	width: 100%;
	border: none;
	height: 100vh;
	height: calc(100vh - env(safe-area-inset-bottom)); 
}*/

.container {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: space-between;
}

.icon-bar .icon-bar-top {
	display: flex;
	flex-direction: column;
}

.icon-bar .icon-bar-bottom {
	display: flex;
	flex-direction: column;
}

.icon-bar {
	width: 50px;
	background-color: #555;
	/* height: 100vh; */
	box-shadow: inset -2px 0px 10px 0px #181818;
}

.icon-bar a {
	display: block;
	text-align: center;
	padding: 16px;
	transition: all 0.3s ease;
	color: #d4d4d4;
	font-size: 15px;
}

@media screen and (max-height: 590px) {
	.icon-bar a {
		padding: 10px;
	}
}

@media screen and (min-height: 590px) and (max-height: 750px) {
	.icon-bar a {
		padding: 12px;
	}
}

.icon-bar a:hover {
	background-color: #727272;
	color: white;
}

.icon-bar .mini-logo {
	padding: 13px 0px 10px 0px !important;
	border-bottom: dashed;
	border-width: 1px;
}

.icon-bar .danger {
	background-color: #c64d4d85;
}

.icon-bar .support {
	background-color: #4c7474;
}

.icon-bar .active {
	box-shadow:
		inset 5px 0 0 #5b5,
		inset 6px 0 0 #222;
	background: #e0e0e0;
	color: #3b3b3b;
}
