:root {
	--brand-primary-color: #005978;
	--brand-secondary-color: #005978;
	--nav-background-color: rgba(101, 101, 101, 1);
	--body-copy-color: rgba(89, 89, 89, 1);
	--neutral-color: rgba(89, 89, 89, 1);
	--bullet-list-color: #005978;
	--additional-info-color: rgba(168, 168, 168, 1);
	--drop-shadow: 0px 2px 4px 0px rgba(103, 103, 103, 1);
	--border-color: rgba(213, 213, 213, 1);
	--border-radius: 5px;
	--button-background-color: linear-gradient(180deg, #676767, #676767 44%, #505050 61%);
	--button-hover-color: linear-gradient(180deg, rgba(103, 103, 103, 1), rgba(103, 103, 103, 1) 10%, rgba(80, 80, 80, 1) 100%);
	--debug-color: rgba(255, 74, 71, .5);
}

html,
body {
	overflow: initial;
	height: 100%;
}

body,
body *,
body *:before,
body *:after {
	border: 0 none;
	outline: 0;
	margin: 0;
	padding: 0px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-webkit-touch-callout: none;
	-webkit-text-size-adjust: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	font-smooth: auto;

}

*,
*::before,
*::after {
	/* outline: 1px solid var(--debug-color) !important; */
}

body {
	margin: 0;
	height: 100%;
	background: linear-gradient(var(--brand-primary-color), var(--brand-primary-color) 27px, rgba(255, 255, 255, 1) 24px, rgba(255, 255, 255, 1) 100%);
	background-repeat: repeat-x;
	font-family: Helvetica, Arial, sans-serif;
	overflow-x: hidden;
	background-color: #FFF;
}

sup {
	position: relative;
	top: 0em;
	left: 0em;
	margin-right: .025em;
	font-size: 60% !important;
	display: inline;
	vertical-align: super;
}

sub {
	font-size: 60%;
	vertical-align: bottom;
	display: inline !important;
}

.underline {
	text-decoration: underline !important;
}

.no-decoration {
	text-decoration: none !important;
}

.bold {
	font-weight: bold !important;
}

a,
a:link,
a:visited {
	text-decoration: none;
}

.nobr {
	white-space: nowrap;
}



/*
==================================================
Utilities
==================================================
*/

.brand-primary-color {
	color: var(--brand-primary-color) !important;
}

.brand-secondary-color {
	color: var(--brand-secondary-color) !important;
}

/* width 1025px and up */

@media only screen and (min-width: 1025px) {
	.hide-desktop {
		display: none !important;
	}

	.show-desktop {
		display: block !important;
	}
}

/* width 1024px and down */

@media only screen and (max-width: 1024px) {
	.hide-tablet {
		display: none !important;
	}

	.show-tablet {
		display: block !important;
	}
}

/* width 768px and down */

@media only screen and (max-width: 768px) {
	.hide-mobile {
		display: none !important;
	}

	.show-mobile {
		display: block !important;
	}
}

/*
==================================================
Wrappers
==================================================
*/

.wrapper {
	position: relative;
	max-width: 992px;
	width: 992px;
	margin: 0 auto;
}

.header-wrapper {
	display: block;
	overflow: visible;
	width: 100%;
	height: 105px;
}

.sidebar-wrapper {
	float: left;
	width: 330px;
	margin-right: 16px;
}

.main-wrapper {
	width: 636px;
	display: flex;
	flex-direction: column;
}

/*
==================================================
Header
==================================================
*/

.header-wrapper .header-logo {
	position: absolute;
	top: 58px;
	left: 5px;
}

.header-wrapper .header-logo a {
	display: block;
	width: 100%;
	height: auto;
}

.header-wrapper .header-logo a img {
	width: auto;
	height: 26px;
}

.header-wrapper .header-image {
	width: 100%;
	pointer-events: none;
}

/*
==================================================
Nav
==================================================
*/

.nav-container .nav-toggle-btn {
	position: absolute;
	top: 45px;
	right: 6%;
	background-color: var(--brand-primary-color);
	height: 40px;
	width: 40px;
	border-radius: var(--border-radius);
	box-shadow: var(--drop-shadow);
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	align-items: center;
	padding: 6px 0px;
	cursor: pointer;
}

.nav-container .nav-close-btn {
	position: absolute;
	top: 0px;
	right: 0px;
	height: 55px;
	width: 55px;
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	align-items: center;
	cursor: pointer;
}

.nav-container .nav-toggle-btn .icon-bar,
.nav-container .nav-close-btn .icon-bar {
	height: 2px;
	background-color: rgba(255, 255, 255, 1);
	display: block;
	width: 50%;
	border-radius: 1px;
}

.nav-container .nav-close-btn .icon-bar {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	position: absolute;
}

.nav-container .nav-close-btn .icon-bar:first-child {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

nav {
	position: relative;
	background: var(--nav-background-color);
	border-radius: var(--border-radius);
	box-shadow: var(--drop-shadow);
	padding: 4px 16px;
}

.nav-container nav .nav-item {
	font-weight: bold;
	font-size: 14px;
	height: 56px;
	display: flex;
	align-items: center;
	position: relative;
}

.nav-container nav .nav-item sup {
	top: -0.25em;
}

.nav-container nav .nav-item::before {
	content: "";
	position: absolute;
	bottom: 0px;
	width: 100%;
	height: 1px;
	background-color: rgba(0, 0, 0, .5);
}

.nav-container nav .nav-item.button-pdf:after {
	right: 1px;
	pointer-events: none;
}

.nav-container nav .nav-item:last-child:before {
	display: none;
}

.nav-container nav .nav-item .nav-link {
	text-decoration: none !important;
	color: rgba(255, 255, 255, 1);
	opacity: .5;
	padding-left: 10px;
	height: 100%;
	width: 100%;
	display: flex;
	align-items: center;
}

.nav-container nav .nav-item.active .nav-link,
.nav-container nav .nav-item .nav-link:hover {
	opacity: 1;
}

.nav-container nav ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

/*
==================================================
Additonal Information Box
==================================================
*/

.additional-info-container p {
	margin-top: 16px;
	background-color: var(--additional-info-color);
	box-shadow: var(--drop-shadow);
	border-radius: var(--border-radius);
	font-size: 14px;
	color: rgba(255, 255, 255, 1);
	font-weight: bold;
	padding: 24px;
	text-align: center;
	line-height: 1.45;
}

.additional-info-container p.catalog {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.additional-info-container p.catalog img {
	margin-right: 12px;
}

.additional-info-container p.catalog a {
	text-decoration: underline !important;
	display: inherit;
	flex-direction: row;
	text-align: left;
	line-height: 1.25;
}

.additional-info-container p.catalog a,
.additional-info-container p.catalog a:visited,
.additional-info-container p.catalog a:active {
	color: blue;
}

/*
==================================================
Main Content Area
==================================================
*/

.content-container {
	border-radius: var(--border-radius);
	box-shadow: var(--drop-shadow);
	color: var(--body-copy-color);
	overflow: hidden;
}

.content-container .main {
	padding: 0px 24px 12px 24px;
}

.content-container>h1 {
	background-color: var(--neutral-color);
	border-radius: var(--border-radius) var(--border-radius) 0 0;
	padding: 12px 24px;
	color: rgba(255, 255, 255, 1);
	font-size: 24px;
	margin-bottom: 18px;
	font-weight: 500;
}

.content-container .main>h2 {
	font-size: 18px;
	line-height: 1.25;
	margin-bottom: 8px;
	color: var(--brand-primary-color);
}

.content-container .main>h3 {
	font-size: 16px;
	line-height: 1.25;
	margin-bottom: 8px;
}

.content-container ul,
.content-container ol,
.content-container p {
	font-size: 12px;
	line-height: 1.25;
	margin-bottom: 12px;
}

.content-container ol~p,
.content-container ul~p {
	margin-bottom: 6px;
}

.content-container p,
.content-container ul,
.content-container ol,
.content-container .main>h2 {
	clear: both;
}

.content-container ul {
	list-style: none;
	margin-bottom: 12px;
	padding-left: 18px;
}

.content-container ul li {
	line-height: 1.25;
	padding-left: 12px;
	margin-bottom: 5px;
}

.content-container ul li:before {
	content: "\2022";
	color: var(--bullet-list-color);
	display: inline-block;
	width: 12px;
	margin-left: -12px;
}

.content-container ol {
	padding-left: 18px;
	list-style: none;
	counter-reset: item;
}

.content-container ol>li {
	line-height: 1.25;
	margin-bottom: 5px;
	counter-increment: item;
}

.content-container ol li:before {
	font-weight: bold !important;
	display: inline-block;
	text-align: right;
	content: counter(item) ". ";
	padding-right: 3px;
	margin-left: -18px;
}

/*
==================================================
REMS Button
==================================================
*/

.rems-button-grid-container {
	display: grid;
	column-gap: 12px;
	row-gap: 12px;
	grid-template-columns: repeat(2, 1fr);
	margin-bottom: 12px;
}

.rems-button {
	position: relative;
	display: flex;
	flex-direction: row;
	align-items: center;
	text-decoration: none !important;
	background: #676767;
	background: var(--button-background-color);
	padding: 14px 24px;
	font-size: 13px;
	font-weight: regular;
	line-height: 1.25;
	color: #a8a8a8 !important;
	text-shadow: 0 2px #00545b;
	border-radius: var(--border-radius);
	min-height: 56px;
	justify-content: flex-start;
}

.rems-button:hover {
	color: rgba(255, 255, 255, 1) !important;
	text-shadow: none;
}

.button-pdf:after {
	position: absolute;
	top: calc(50% - 10px);
	right: 21px;
	display: block;
	width: 20px;
	height: 20px;
	content: "";
	background-image: url(../images/acrobat-icon.png);
	background-size: contain;
	background-repeat: no-repeat;
}

.button-check:after {
	position: absolute;
	top: calc(50% - 10px);
	right: 21px;
	display: block;
	width: 20px;
	height: 20px;
	content: "";
	background-image: url(../images/checkmark-icon.png);
	background-size: contain;
	background-repeat: no-repeat;
}

.rems-button.center {
	justify-content: center;
	text-align: center;
}

/*
==================================================
Violator
==================================================
*/

.violator-wrapper {
	position: relative;
	display: block;
	clear: both;
	box-shadow: var(--drop-shadow);
	padding: 16px;
	margin-bottom: 12px;
	justify-content: space-between;
	border-radius: var(--border-radius);
	background-color: var(--brand-primary-color);
	overflow: hidden;
	color: #FFF !important;
	transform-style: preserve-3d;
}

.violator-wrapper:before {
	content: "REMS";
	position: absolute;
	font-weight: bold;
	right: -10px;
	top: -20px;
	font-size: 130px;
	color: rgba(255, 255, 255, .165) !important;
	pointer-events: none;
	line-height: 1;
	transform: translateZ(-1px);
	z-index: -1;
}

.violator-wrapper .violator-container {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}

.violator-wrapper .violator-container>.body-copy {
	width: 300px;
}

.violator-wrapper .violator-container>.body-copy>h3 {
	padding-bottom: 10px;
	font-weight: bold;
}

.violator-wrapper .violator-container>.body-copy p {
	padding-right: 0px;
	font-weight: bold;
	margin-bottom: 5px;
}

.violator-wrapper .violator-container .qr-code {
	border-radius: var(--border-radius);
	overflow: hidden;
	height: 95px;
	width: 95px;
	margin-left: 16px;
}

.violator-wrapper .violator-container .download-badges {
	margin-left: 16px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.violator-wrapper .violator-container .appstore-icon img {
	height: 39px;
	width: 130px;
}

.violator-wrapper .violator-container .appstore-icon:first-child img {
	margin-bottom: 16px;
}

/*
==================================================
Endmatter & Copyright
==================================================
*/

.endmatter-container {
	margin: 16px 0px;
	display: flex;
	flex-direction: column;
}

.endmatter-container p {
	font-size: 12px;
	font-weight: bold;
	line-height: 1.5;
	color: #4d4d4f;
}

.copyright-container p {
	font-size: 12px;
	font-weight: normal;
	line-height: 1.5;
	color: var(--body-copy-color);
	text-align: center;
}

/*
==================================================
Footer Links
==================================================
*/

.footer-link-container {
	margin: 0px;
	font-size: 12px;
}

.footer-link-container ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: row;
	width: 100%;
	justify-content: space-between;
}

.footer-link-container .footer-link-item {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 100%;
	font-weight: bold;
}

.footer-link-container .footer-link-item a {
	text-decoration: none;
	text-align: center;
	color: var(--brand-primary-color);
}

.footer-link-container .footer-link-item::after {
	content: "";
	position: absolute;
	right: 0px;
	display: flex;
	width: 1px;
	height: 100%;
	background-color: #000;
}

.footer-link-container .footer-link-item:last-child:after {
	display: none;
}

/*
==================================================
Products .products-table
==================================================
*/

.products {
	padding: 0px;
	width: auto;
	display: flex;
	flex-direction: column;
}

.products a,
.products a span {
	text-decoration: underline;
	color: var(--brand-primary-color);
}

.products a[href^="mailto:"] span {
	display: inline-block;
}

.products .products-table {
	width: 100%;
	border-collapse: collapse;
	border: 1px solid var(--border-color);
	font-size: 12px;
	margin: 0 0 16px;
	padding: 0px;
	line-height: 1.35;
}

.products .products-table th,
.products .products-table td {
	border: 1px solid var(--border-color);
	text-align: left;
	margin: 0px;
	padding: 8px;
}

.products .products-table th {
	color: rgba(0, 0, 0, 1) !important;
	vertical-align: top;
}

.products .products-table td {
	vertical-align: top;
	color: var(--body-copy-color);
}

.products .products-table tr td:last-child {
	padding-left: 6px !important;
	padding-right: 6px !important;
}

.products .bullet {
	position: relative;
	display: block;
	padding-left: .65em;
}

.products .bullet::before {
	content: attr(data-char);
	position: absolute;
	left: 0px;
	display: block;
	color: var(--bullet-list-color);
}

/*
==================================================
Reporting Table
==================================================
*/

.reporting-table {
	width: 100%;
	margin: 0 0 16px;
	padding: 0px;
	overflow: hidden;
	border-spacing: 0;
	border-collapse: separate;
	border-radius: var(--border-radius);
	border: 1px solid #797979;
	font-size: 12px;
	line-height: 1.25;
	color: var(--body-copy-color);
}

.reporting-table a,
.reporting-table a:link,
.reporting-table a:visited {
	color: var(--body-copy-color);
	text-decoration: underline;
}

.reporting-table .reporting-table-key,
.reporting-table .reporting-table-value {
	vertical-align: top;
	color: var(--body-copy-color);
	font-weight: bold;
	padding: 6px 14px;
	word-break: break-word;
}

.reporting-table .reporting-table-row {
	display: flex;
	flex-direction: row;
}

.reporting-table .reporting-table-row:nth-child(even) {
	background-color: #D5D5D6;
}

.reporting-table p {
	margin: 0;
	padding: 10px;
	font-size: 12px;
	font-weight: bold;
}

.reporting-table .title {
	font-weight: bold;
	color: rgba(255, 255, 255, 1);
	background-color: #a8a8a8;
	vertical-align: top;
	padding: 10px;
	width: 100%;
}

.reporting-table .reporting-table-key {
	width: 15%;
	min-width: 15%;
	color: var(--brand-primary-color);
	font-weight: bold;
	word-break: keep-all;
}

.overlay {
	background-color: rgba(0, 0, 0, .7);
	position: fixed;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}


/*
==================================================
Homepage Popup
==================================================
*/

.homepage-popup-wrapper p,
.homepage-popup-wrapper ul li {
	font-size: 12px !important;
}

/*
==================================================
Exit Popup
==================================================
*/

.exit-popup-wrapper {
	background-color: rgba(255, 255, 255, 1);
	padding: 0px;
	margin: 10% auto 0% auto;
	width: 90%;
	max-width: 425px;
	min-height: 275px;
	background: linear-gradient(var(--brand-primary-color), var(--brand-primary-color) 10px, rgba(255, 255, 255, 1) 10px, rgba(255, 255, 255, 1) 100%);
	background-repeat: repeat-x;
	border: 0 none;
}

.exit-popup-wrapper .exit-popup-container>h2 {
	padding: 36px 0px 16px 0px;
	color: var(--brand-primary-color);
	font-size: 20px;
}

.exit-popup-container {
	position: relative;
	width: auto;
	text-align: center;
	padding: 21px;
}

.exit-popup-container p {
	font-size: 16px;
	line-height: 1.25;
	padding-bottom: 16px;
	color: #000 !important;
}

.exit-popup-container .rems-button-grid-container {
	margin: 0px auto;
}

.exit-popup-container .rems-button-grid-container .rems-button {
	padding: 24px !important;
}

.exit-popup-close {
	position: absolute;
	top: 2px;
	right: 8px;
	width: 52px;
	height: 40px;
	background-image: url(../images/close-icon.png) ;
	background-position:center center;
	background-size: contain;
	background-repeat: no-repeat;
	cursor:pointer;
}

/*
==================================================
width 1024px and down
==================================================
*/

@media only screen and (max-width: 1024px) {
	.wrapper {
		min-width: 100% !important;
		width: 100% !important;
	}

	.main-wrapper {
		width: 90% !important;
		margin: 0 auto;
	}

	.header-wrapper {
		position: relative;
		width: 100%;
		margin: 0 auto;
		overflow: visible;
	}

	.header-wrapper .header-logo {
		top: 55px;
		left: 6%;
	}

	.header-wrapper .header-image {
		position: absolute;
		top: -5px;
		right: -120px;
		width: 1150px;
	}

	.nav-container {
		position: absolute !important;
		top: 0px !important;
		width: 100% !important;
		padding: 0px !important;
	}

	nav {
		z-index: 999999;
		position: fixed;
		display: none;
		border-radius: 0 !important;
		width: 100% !important;
		padding: 0px !important;
	}

	nav .nav-item {
		font-size: 18px !important;
		height: 55px !important;
	}

	nav .nav-item .nav-link {
		padding-left: 30px !important;
		width: 100%;
	}

	nav .nav-item::before {
		content: "" !important;
		position: absolute !important;
		bottom: 0px !important;
		width: 100% !important;
		height: 1px !important;
		background-color: #000 !important;
	}

	.nav-container nav .nav-item.button-pdf:after {
		right: 20px;
	}

	.content-container>h1 {
		font-size: 28px !important;
	}

	.content-container h2 {
		font-size: 18px !important;
	}

	.content-container h3 {
		font-size: 18px !important;
	}

	.content-container ul,
	.content-container ol,
	.content-container p {
		font-size: 16px;
	}

	.rems-button {
		padding: 14px 48px 14px 24px !important;
	}

	.reporting-table p,
	.reporting-table .reporting-table-key,
	.reporting-table .reporting-table-value {
		font-size: 16px;
		line-height: 1.45;
	}

	.reporting-table .title,
	.reporting-table p,
	.reporting-table .reporting-table-key,
	.reporting-table .reporting-table-value {
		padding: 10px 24px;
	}

	.additional-info-container p {
		width: 100%;
		font-size: 16px;
		margin: 16px auto;
	}

	.additional-info-container p.catalog a {
		align-items: center;
	}

	.additional-info-container p.catalog img {
		width: 20px;
		height: auto;
	}

	.footer-link-container {
		margin: 0px 24px;
		font-size: 14px;
	}

	.footer-link-container .footer-link-item a {
		padding: 8px
	}

	.violator-wrapper .violator-container>.body-copy {
		width: 100%;
	}

	.violator-wrapper .violator-container .qr-code {
		display: none !important;
	}

}

/*
==================================================
width 768px and down
==================================================
*/

@media only screen and (max-width: 768px) {
	.wrapper {
		max-width: 100% !important;
		width: 100% !important;
		top: 0px !important;
	}

	.main-wrapper {
		width: 100% !important;
		margin: 0 auto;
	}

	.main-wrapper .content-container {
		border-radius: 0px;
	}

	.header-wrapper {
		width: 100%;
		background: linear-gradient(var(--brand-primary-color), var(--brand-primary-color) 30px, rgba(255, 255, 255, 1) 24px, rgba(255, 255, 255, 0) 100%);
	}

	.header-wrapper .header-logo {
		top: 55px;
	}

	.header-wrapper .header-logo a img {
		height: 18px !important;
	}

	.header-wrapper .header-image {
		display: none;
	}

	.content-container>h1 {
		font-size: 28px !important;
		border-radius: 0px;
	}

	.content-container h2 {
		font-size: 22px !important;
	}

	.content-container h3 {
		font-size: 18px !important;
	}

	.content-container ul,
	.content-container ol,
	.content-container p {
		font-size: 18px;
	}

	.additional-info-container p {
		width: 90%;
		margin: 24px auto;
	}

	.rems-button-grid-container {
		display: grid;
		column-gap: 0px;
		grid-template-columns: auto;
	}

	.content-container .main .rems-button {
		width: 100% !important;
		font-size: 16px;
		line-height: 21px;
		word-break: break-word;
	}

	.footer-link-container {
		margin: 0 24px;
		font-size: 16px;
	}

	.nav-container .nav-toggle-btn {
		right: 24px;
	}

	.endmatter-container {
		width: 90%;
		margin: 12px 24px;
		flex-direction: column;
	}

	.endmatter-container p {
		font-size: 16px;
		width: 90%;
		margin: 0 auto;
		text-align: left;
	}

	.copyright-container div p {
		font-size: 16px;
		width: 90%;
		margin: 0 auto;
		text-align: left;
	}

	.violator-wrapper .violator-container {
		flex-direction: column !important;
	}

	.violator-wrapper .violator-container .download-badges {
		margin: 16px 0 0 0 !important;
	}

	.products .products-table tr:first-child {
		font-weight: inherit;
	}

	.product-card {
		border-collapse: collapse;
		border: 1px solid var(--border-color);
		padding: 14px 21px;
		margin-bottom: 16px;
	}

	.product-card p {
		display: table;
		margin-bottom: 0px !important;
		word-break: normal;
		font-size: 18px;
		line-height: 1.45;
	}

	.product-card span.table-cell {
		display: table-cell;
	}

	.exit-popup-wrapper {
		background-color: rgba(255, 255, 255, 1);
		padding: 0px;
		background: linear-gradient(var(--brand-primary-color), var(--brand-primary-color) 10px, rgba(255, 255, 255, 1) 10px, rgba(255, 255, 255, 1) 100%);
		background-repeat: repeat-x;
		border: 0 none;
	}

	.exit-popup-wrapper .exit-popup-container>h2 {
		font-size: 21px;
		padding: 16px 0px;
	}

	.exit-popup-container {
		padding: 24px;
	}

	.exit-popup-container p {
		padding: 0 16px 24px;
		line-height: 18px;
		font-size: 13px;
	}

	.exit-popup-container .rems-button-grid-container {
		display: grid !important;
		column-gap: 12px !important;
		row-gap: 12px !important;
		grid-template-columns: repeat(1, 1fr);
	}
	.reporting-table .reporting-table-row {
		flex-direction: column;
	}

	.reporting-table .reporting-table-key,
	.reporting-table .reporting-table-value {
		width: 100%;
		min-width: 100%;
	}

	.reporting-table .reporting-table-key {
		padding-bottom: 0px;
	}

	.reporting-table .reporting-table-value {
		padding-top: 0px;
	}
}