
::selection {
	background: black;
	color: white;
}
html {
	overflow-y: scroll;
	box-sizing: border-box;
}
body {
	margin: 0 !important;
	font-family: 'Quantico', sans-serif !important;
	background-color: #FFFFFF;
	box-sizing: border-box;
	overflow: hidden;
    /*border-left: 2px solid black;*/
    /*border-right: 2px solid black;*/
	min-height: 100vh;
}
h1,h2,h3,h4,button,b {
	font-weight: 600;
	line-height: 1em;
	font-family: 'Quantico', sans-serif;
}
input {
	font-family: 'Quantico', sans-serif;
}
h1, h2, h3, h4 {
	font-size: 14px;
}
p,td,li,td,pre {
	font-size: 14px;
	line-height: 1.6em;
	font-family: 'Quantico', sans-serif;
}
#main-wrapper {
	margin-left: auto;
	margin-right: auto;
	margin-top: calc(55px + 1rem);
	width: 100%; 
	max-width: 1000px;
}
#app {
	margin-bottom: 50px;
}
#menu-bar-mobile {
	position: fixed;
	width: 100%;
	top: 0px;
	left: 0px;
	z-index: 55;
	box-sizing: border-box;
    /*border-top: 2px solid black;*/
	user-select: none;
}
#menu-bar-mobile-wrapper {
	width: 100%;
	max-width: 1000px;
	position: fixed;
	top: 0px;
    height: 55px;
	left: 50%;
	transform: translateX(-50%);
	box-sizing: border-box;
	border: 2px solid black;
	display: flex;
	z-index: 55;
	background-color: #FFFFFF;
	user-select: none;
}
#menu-bar-logo {
	user-select: none;
	width: 50%; 
	display: flex;
	align-items: center; 
	justify-content: center;
	height: 100%; 
    border-right: 2px solid black;
}
#menu-bar-mobile-burger {
	width: 70%; 
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	width: 50%;
	cursor: pointer;
}
.menu-bar-home {
	cursor: pointer;
	text-decoration: none;
	font-size: 14px;
	font-weight: bold;
	color: black;
	flex-grow: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}
#menu-bar-links {
	display: block;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 50%;
}
#menu-bar-links ul {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.fix-mobile {
	position: fixed !important;
	box-shadow: none !important;
}
#menu-bar-mobile-burger span {
	font-size: 25px;
	transform: translatey(-2px);
}
#dropdown-menu {
	display: block;
	position: fixed;
	height: fit-content;
	width: -moz-fit-content;
	z-index: 54;
	top: 0px;
	text-align: center;
    padding-top: 55px;
	background-color: #FFFFFF;
	width: 100%;
	max-width: 1000px;
	left: 50%;
	transform: translateX(-50%);
}
#dropdown-cover {
	display: block;
	position: fixed;
	width: 100vw;
	height: 100vh;
	z-index: 50;
	top: 0px;
	left: 0px;
	background-color: rgba(0, 0, 0, 0.7);
}
#dropdown-menu-content {
	position: relative;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	user-select: none;
	box-sizing: border-box;
	border-right: 2px solid black; 
	border-left: 2px solid black;
}
#dropdown-menu li:hover {
	background-color: black;
	color: #FFFFFF;
}
#dropdown-menu ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	white-space: nowrap;
}
#dropdown-menu li {
	display: flex;
	align-items: center;
	justify-content: center;
    height: 55px;
	font-size: 14px;
    border-bottom: solid 2px black;
}
#dropdown-menu a {
	color: inherit; 
	text-decoration: inherit;
	flex-grow: 1;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
@media screen and (max-width: 1000px) {
#dropdown-menu-content {
	border-right: none; 
	border-left: none;
}
#menu-bar-mobile-wrapper {
	border-right: none; 
	border-left: none;
}
}


