:root {
	--pharma-green-darkest: #174123;
	--pharma-green-dark: #157a32;
	--pharma-green-light: #5aa969;
	--pharma-green-lighter: #80b088;
	--pharma-green-lightest: #b4ceb9;
}
html, body {
	margin: 0;
	font-family: 'helvetica', sans-serif;
	font-size: 12pt;
	color: rgb(47, 47, 47);
	-webkit-font-smoothing: antialiased !important;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
	-moz-osx-font-smoothing: grayscale;
	background: var(--pharma-green-darkest)
}
/* HEADER STYLES */
.header {
	position: fixed;
	top: 0; left: 0; bottom: 0; right: 0;
	background: var(--pharma-green-dark);
	height: 75px;
	z-index: 10;
}
.header a, .header a:visited, .header a:active {
	color: white;
	text-decoration: none;
}
.header .logo {
	background-image: url(/core/media/logo.webp);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	position: absolute;
	top: 0; bottom: 0; left: 40px; width: 200px;
}
.header .login {
	display: flex;
	align-items: center;
	position: absolute;
	top: 0; bottom: 0; right: 40px;
}
.header .login:hover {
	text-decoration: underline
}
.header .menu {
	display: flex;
	align-items: center;
	position: absolute;
	top: 0; bottom: 0; right: 40px;
}
.header .menu a, .header .menu a:visited, .header .menu a:active {
	display: block;
	height: 40px;
	aspect-ratio: 1/1;
	box-sizing: border-box;
	border-top: 3px solid white;
	border-bottom: 3px solid white;
	transition: .25s
}
.header .menu a span {
	position: absolute;
	height: 3px;
	background: white;
	position: absolute;
	top: 50%; right: 0; left: 0;
	margin-top: -1.5px;
}
.header .menu .menu_open {
	transform: rotate(-90deg)
}
/* GENERAL STYLES */
.sleeve {
	max-width: 1500px;
	margin: auto;
	box-sizing: border-box
}
.accordion_header {
	padding: 10px;
	background-color: var(--pharma-green-light);
	color: white;
	margin-bottom: 1px;
	cursor: pointer;
	transition: .25s;
	text-transform: uppercase
}
.accordion_header:hover {
	background-color: var(--pharma-green-dark) !important;
}
.accordion_body {
	display: none
}
.full {
	width: 100%;
	box-sizing: border-box
}
.nowrap {
	white-space: nowrap
}
.required_field {
	color: red
}
.required_field_marked {
	border-color: red !important;
	background: rgb(251, 226, 223) !important
}
.reveal_names {
	font-size: 85%;
	color: red;
	opacity: .3
}
.show_answer {
	background: rgb(243, 220, 218);
	border: 1px solid salmon;
	padding: 20px;
	line-height: normal !important;
	display: none
}
/* BODY STYLES */
h1, h2, h3, h4, h5 {
	font-size: 150%;
	color: var(--pharma-green-dark);
	text-transform: capitalize
}
.wrapper {
	background: rgba(255, 255, 255, .9);
	margin-top: 40px;
	box-sizing: border-box
}
.wrapper .content {
	background: white;
	padding: 40px;
	box-sizing: border-box
}
.smoke {
	position: fixed;
	top: 0; right: 0; bottom: 0; left: 0;
	background: rgba(0, 0, 0, 0.8);
	z-index: 11;
	display: none
}
.loading_wheel {
	position: absolute;
	width: 150px;
	aspect-ratio: 1/1;
	top: 50%;
	left: 50%;
	margin-top: -75px;
	margin-left: -75px
}
/* FOOTER STYLES */
.footer {
	text-align: center;
	color: rgba(255, 255, 255, 0.6);
	font-size: 85%
}
.footer .content {
	padding: 40px
}
.footer p {
	max-width: 900px;
	margin: 0 auto 0 auto;
}
.footer p img {
	height: 30px;
	width: auto;
	margin-bottom: -4px
}
.footer p strong {
	font-size: 120%;
	line-height: 3em
}
.footer span {
	display: block;
	border-top: 3px solid var(--pharma-green-light);
	border-bottom: 3px solid var(--pharma-green-lightest)
}
