/* GENERAL */

.header {
	min-height: 4.3em;
}


a, a:hover, a:focus {
    text-decoration: none;
    transition: all 0.3s;
}

h1 {
	font-size: 2em;
}

h2 {
	font-size: 1.8em;
	color: #5a5d61;
	font-weight: 500;
}


/* SIDEBAR STYLE */

.wrapper {
    display: flex;
    width: 100%;
}

#sidebar {
	background: #343a40;
    min-width: 250px;
    max-width: 250px;
	height: 100vh;
	position: fixed;
	z-index: 999;
	top: 0;
	left: 0;
}

#sidebar.shown {
	transition: all 0.3s;
}

#sidebar.hidden {
    margin-left: -250px;
	transition: all 0.3s;
}

#sidebar.hiddenLoad {
    margin-left: -250px;
}

#sidebar h1, a {
	color: #8391a2;
}

#sidebar .activePage {
	color: #fff;
}

#sidebar ul li a:hover {
    color: #d1d1d1;
}

#sidebar h1 {
	font-size: 1.4em;
}

#sidebar a {
	font-size: 1.1em;
}

/* CONTENT STYLE */

#content {
    min-height: 100vh;
	position: absolute;
	top: 0;
	right: 0;
}

#content.shown {
	transition: all 0.3s;
    width: 100%;
}

#content.shownLoad {
    width: 100%;
}

#content.hidden {
	transition: all 0.3s;
    width: calc(100% - 250px);
}

#content.hiddenLoad {
    width: calc(100% - 250px);
}

#language-dropdown-menu {
	min-width: 0rem;
}

.calendarCard h3 {
	font-size: 2em;
	font-weight: bold;
}

h3.analytics {
	font-size: 1.2em;
	font-weight: italic;
}