* { outline: none; }

:root {
	--Source-Color: #09e;
	--Source-Positive-Background: #072;
	--Source-Positive-Color: #8fa;
	--Source-Negative-Background: #802;
	--Source-Negative-Color: #f8a;
	--Source-Border: 1px solid #f0ede3;
	--Source-Tint-Nice: rgba(128, 255, 162, 0.8);
	--Source-Tint-Darken: rgba(0, 0, 0, 0.6);
	--Source-Shadow-Left: 0;
	--Source-Shadow-Top: 2px;
	--Source-Shadow-Blur: 5px;
	--Source-Shadow-Grow: 0;
	--Source-Shadow-Color: rgba(0,0,0,0.5);
	--Source-Shadow: var(--Source-Shadow-Left) var(--Source-Shadow-Top) var(--Source-Shadow-Blur) var(--Source-Shadow-Grow) var(--Source-Shadow-Color);
	--Source-P-Margin-Top: 0;
	--Source-P-Margin-Right: 0;
	--Source-P-Margin-Bottom: 12px;
	--Source-P-Margin-Left: 0;
	--Source-P-Margin: var(--Source-P-Margin-Top) var(--Source-P-Margin-Right) var(--Source-P-Margin-Bottom) var(--Source-P-Margin-Left);
	--Layout-BgColor: #fff;
	--Layout-Width: 1600px;
	--Gold: #fccc03;
	--CD-01-Fg: #000;
	--CD-01-Bg: #fff;
	--CD-02-Fg: #fff;
	--CD-02-Bg: #74848a;
	--CD-03-Fg: #006ab3;
	--CD-03-Bg: #fff;
	--CD-ColorA: #d5102f;
	--CD-ColorA-Dipped: #d00320;
	--CD-ColorB: #e9ebec;
	--CD-ColorC: #ac2c3f;
	--CD-Fill-Light: var(--CD-ColorB);
	--CD-Fill-Dark: #666;
	--CD-Cat-Flow: #005aa8;
	--CD-Cat-Pressure: #008938;
	--CD-Cat-Level: #fc9b00;
	--CD-Cat-Temperature: #d3001b;
	--CD-Cat-Generic: #6d9cb3;
	--CD-Cat-Addons: #790b70;
	--Source-Font: 'Inter', sans-serif;
	--Font-Size-Base: 16px;
	--Font-Size-Main: 18px;
}

body,
.GPS {
	font-family: 'Inter', sans-serif;
	font-weight: 200;
	font-size: var(--Font-Size-Base);
	line-height: 150%;
	color: var(--CD-01-Fg);
}
body {
	padding: 0;
	margin: 0;
	background-color: var(--Layout-BgColor);
}

#content {
	background-color: #fff;
	transition: filter 200ms linear;
}
#content.unfocus {
	filter: brightness(25%) contrast(110%) saturate(110%) blur(1px);
}
body.locked {
	overflow: hidden;
}

img { border: none; display: inline-block; }
object:hover { border: 0px solid transparent; }

.mxci { max-width: 100%; }

.small { font-size: 85%; }

p, hr, .GPM { margin: 0 0 12px 0; }
p { line-height: 150%; }
.inline { display: inline; }
.floatRight { float: right; }
.floatLeft { float: left; }
.clearBoth { clear: both; }
.nowrap, .NoWrap { white-space: nowrap; }
.BorderBox { box-sizing: border-box; }
.justify { text-align: justify; }

.valignTop.valignTop.valignTop,
.vaTop.vaTop.vaTop,
.alignTop.alignTop.alignTop { vertical-align: top; }
.vaMiddle.vaMiddle.vaMiddle,
.alignMiddle.alignMiddle.alignMiddle { vertical-align: middle; }
.vaBottom.vaBottom.vaBottom { vertical-align: bottom; }
.vaBase.vaBase.vaBase { vertical-align: baseline; }

.alignRight.alignRight.alignRight { text-align: right; }
.alignLeft.alignLeft.alignLeft { text-align: left; }
.alignCenter.alignCenter.alignCenter { text-align: center; }

.displayBlock.displayBlock.displayBlock { display: block; }
.displayInline.displayInline.displayInline,
.inline.inline.inline { display: inline; }
.displayInlineBlock.displayInlineBlock.displayInlineBlock,
.inlineBlock.inlineBlock.inlineBlock { display: inline-block; }
.displayNone.displayNone.displayNone { display: none; }

.invisible.invisible.invisible { visibility: hidden; }

.posAbsolute.posAbsolute.posAbsolute { position: absolute; }
.posRelative.posRelative.posRelative { position: relative; }

.oHidden.oHidden.oHidden { overflow: hidden; }

.bold { font-weight: bold; }
.italic { font-style: italic; }
.uppercase { text-transform: uppercase; }
.cursorPointer { cursor: pointer; }
.cursorDefault { cursor: default; }

.NoSelect {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.TransformMirror {
	-ms-transform: scale(-1, 1);
	-webkit-transform: scale(-1, 1);
	transform: scale(-1, 1);
}

.ClearFloat:after {
	content: '';
	display: block;
	clear: both;
}

.LoStage {
	max-width: 1200px;
	width: 96%;
	padding-left: 2%;
	padding-right: 2%;
	margin: auto;
}

.FieldRequired:after {
	content: '*';
	color: #a23;
}

.TableFlow {overflow-x: auto;}


/* Flexy Stuff */

.flexed,
.justflex {
	display: -webkit-box; -ms-flex: 1; display: -ms-flexbox; display: flexbox; display: box; display: -ms-flex; display: -webkit-flex;
	display: flex;
	flex: 0 1 auto;
}
.justflex {
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	-ms-justify-content: space-between;
	justify-content: space-between;
}
.flexwrap {
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.flexigrow1 {
	-webkit-flex-grow: 1;
	-ms-flex-grow: 1;
	flex-grow: 1;
}
.flextop { align-items: flex-start; }
.flexmiddle { align-items: center; }
.flexbase { align-items: baseline; }
.flexbottom { align-items: flex-end; }
.flexstretch { align-items: stretch; }

.flexcenter { justify-content: center; }
.flexright { justify-content: flex-end; }
.flexaround { justify-content: space-around; }

.flexitop { align-self: flex-start; }
.fleximiddle { align-self: center; }
.flexibase { align-self: baseline; }
.flexibottom { align-self: flex-end; }

.flexcol {	
	flex-direction: column;
}


.DefaultGrid {
	display: grid;
	grid-column-gap: 2%;
}
@media all and (min-width: 800px) {
	.Grid2 {grid-template-columns: repeat(2, 1fr);}
	.Grid3 {grid-template-columns: repeat(2, 1fr);}
	.Grid4 {grid-template-columns: repeat(3, 1fr);}
}

@media all and (min-width: 1200px) {
	.Grid3 {grid-template-columns: repeat(3, 1fr);}
	.Grid4 {grid-template-columns: repeat(4, 1fr);}
}

/* some widths */
.w10p { width: 10%; }
.w20p { width: 20%; }
.w30p { width: 30%; }
.w40p { width: 40%; }
.w50p { width: 50%; }
.w60p { width: 60%; }
.w70p { width: 70%; }
.w80p { width: 80%; }
.w90p { width: 90%; }
.w100p,
.fullWidth { width: 100%; }
.noMargin { margin: 0; }
.cfx { display: block; width: 100%; height: 1px; } /*clear full x-axis*/
.jfx { display: inline-block; width: 100%; height: 1px; } /*justify full x-axis*/

/* Columns */
.s1.o2 { width: 49%; }
.s1.o3 { width: 32%; }
.s2.o3 { width: 66%; }
.s1.o4 { width: 23.5%; }
.s2.o4 { width: 49%; }
.s3.o4 { width: 74.5%; }
.s1.o5 { width: 19%; }
.s2.o5 { width: 39.25%; }
.s3.o5 { width: 59.5%; }
.s4.o5 { width: 79.75%; }

.table { display: table; }
.table.inlineBlock, .table.inline { display: inline-table; }
.table .row { display: table-row; }
.table .row .cell { display: table-cell; }
.table .row.vaMiddle .cell { vertical-align: middle; }
.table .row.displayNone, .table .row .cell.displayNone { display: none; }
table.nbcpcs {
	border: none;
	padding: 0;
	border-spacing: 0;
	border-collapse: collapse;
}

/* Default Table */
table[border="1"], table[border="1"] tbody, table[border="1"] tr,
table[border="1"] th, table[border="1"] td {
	border: none;
}
table[border="1"] th,
table[border="1"] td {
	border-style: solid;
	border-color: var(--CD-ColorA);
	border-width: 1px 0 0 1px;
}
table[border="1"] th:last-child,
table[border="1"] td:last-child {
	border-right-width: 1px;
}
table[border="1"] tr:last-child th,
table[border="1"] tr:last-child td{
	border-bottom-width: 1px;
}

/* The Pads */
.pl { padding-left: 5px; }
.pr { padding-right: 5px; }
.pt { padding-top: 5px; }
.pb { padding-bottom: 5px; }
.ph { padding-top: 5px; padding-bottom: 5px; }
.pv { padding-left: 5px; padding-right: 5px; }
.pc { padding: 5px; }

/* The Lines */
.bl { border-left: 1px solid #f0ede3; }
.br { border-right: 1px solid #f0ede3; }
.bt { border-top: 1px solid #f0ede3; }
.bb { border-bottom: 1px solid #f0ede3; }
.bh { border-top: 1px solid #f0ede3; border-bottom: 1px solid #f0ede3; }
.bv { border-left: 1px solid #f0ede3; border-right: 1px solid #f0ede3; }
.bc { border: 1px solid #f0ede3; }

h1,
.h1s {
	font-size: 120%;
	line-height: 120%;
	font-weight: 400;
	padding: 0px;
	margin: 0 0 1em;
	color: var(--CD-ColorA);
}
h2,
.h2s {
	margin: 0px;
	margin-bottom: .75em;
	padding: 0px;
	font-size: 110%;
	font-weight: 300;
	color: var(--CD-ColorA);
}
.main h1 + h2 {
	transform: translateY(-1em);
}
p + h2 { padding-top: .5em; }
h3 {
	margin: 0px;
	padding: 0px;
	margin-bottom: 0.5em;
	font-weight: 400;
	color: var(--CD-03-Fg);
	font-size: 100%;
}
h4 {
	margin: 0px;
	padding: 0px;
	margin: 0 0 0.5em 0;
	font-weight: normal;
	font-style: italic;
	font-size: 100%;
}
strong {
	font-weight: 400;
}

a, .GAS { color: var(--CD-ColorA); text-decoration: none; }
a:hover, .GAS:hover { text-decoration: underline; color: #000; }
a.selected, .GAS.selected { text-decoration: underline; }

.AnchorButton {
	display: inline-block;
	box-sizing: border-box;
	padding: 8px 12px;
	background: var(--CD-ColorA);
	color: var(--CD-02-Fg);
	border-radius: 5px;
	font-weight: 400;
	text-decoration: none;
	transition: all 200ms;
	box-shadow: 0px 0px 0px var(--CD-02-Bg);
	transform: translate3d(0px, 0px, 0px);
}
.AnchorButton:hover {
	text-decoration: none;
	color: var(--CD-02-Fg);
	box-shadow: 2px 2px 5px var(--CD-02-Bg);
	transform: translate3d(-1px, -1px, -1px);
}
.AnchorButton:active,
.AnchorButton:focus {
	box-shadow: inset 0 0 0 1px var(--CD-ColorA), inset 0 0 0 2px #f2f2f2;
}

figure.Annotation {
	position: relative;
}
figure.Annotation button,
figure.Annotation figcaption {
	position: absolute;
}
figure.Annotation button {
	display: block;
	transform: translateX(-50%) translateY(-50%) scale(1);
	background-color: var(--Source-Tint-Nice);
	box-sizing: border-box;
	padding: 3px 6px;
	border: 1px solid #fff;
	border-radius: 3px;
	cursor: pointer;
	transition: all 200ms;
	animation-name: SoftPulse;
	animation-duration: 2s;
	animation-iteration-count: infinite;
}
figure.Annotation button:hover,
figure.Annotation button:active,
figure.Annotation button:focus {
	z-index: +2;
	box-shadow: 0 0 4px #fff inset;
	transform: translateX(-50%) translateY(-50%) scale(1.1);
	animation: none;
}
figure.Annotation button:active,
figure.Annotation button:focus {
	background-color: var(--CD-03-Fg);
	color: var(--CD-03-Bg);
}
figure.Annotation figcaption {
	visibility: hidden;
	box-sizing: border-box;
	padding: 6px 12px;
	border-radius: 5px;
	background-color: rgba(255, 255, 255, 0.8);
	transform: translateY(-50%) scale(0);
	box-shadow: var(--Source-Shadow);
	margin: auto;
	filter: blur(200px);
	backdrop-filter: blur(4px);
	opacity: 0;
	transition: all 400ms;
}
figure.Annotation button:hover + figcaption,
figure.Annotation button:active + figcaption,
figure.Annotation button:focus + figcaption {
	visibility: visible;
	opacity: 1;
	z-index: +1;
	filter: blur(0);
	transform: translateY(1em) scale(1);
}

@keyframes SoftPulse {
	0% {box-shadow: 0 0 0 rgba(128, 255, 162, 0.0), 0 0 2px rgba(0, 0, 0, 0.0);}
	25% {box-shadow: 0 0 10px rgba(128, 255, 162, 1), 0 0 5px rgba(0, 0, 0, 0.5);}
	100% {box-shadow: 0 0 20px rgba(128, 255, 162, 0), 0 0 15px rgba(0, 0, 0, 0.0);}
}


ul:not([type]) {
	margin: 0 0 1em;
	padding: 0;
	/* fix render issues on mobile */
	padding-right: 1px;
	/* end fix */
	list-style: none;
	overflow: hidden;
}
ul:not([type]) > li {
	margin: 0;
	padding: 0;
	padding: 2px 0px;
	padding-left: 20px;
	position: relative;
}
ul:not([type]) li:before {
	content: '';
	position: absolute;
	left: 8px;
	top: .7em;
	background-color: var(--CD-01-Fg);
	border-radius: 100%;
	width: 5px;
	height: 5px;
	transition: all 2s;
	animation-name: RotateCW;
	animation-duration: 2s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}
@keyframes RotateCW {
	0% {transform: rotate(0deg);}
	100% {transform: rotate(360deg);}
}
ul:not([type]) li:hover:before {
	border-radius: 0;
	transition: all 200ms;
	background-color: var(--CD-ColorA);
}
ol {
	margin: 0;
	padding: 0 0 1em;
	padding-left: 23px;
	/*font-weight: bold;*/
}
ol li {
	margin: 0;
	padding: 0;
	padding: 2px 0px;
}

select {
	font-size: var(--Font-Size-Base);
}
INPUT[type=text], INPUT[type=password], textarea {
	font-family: var(--Source-Font);
	border: 1px solid #434343;
	border-color: #eaeaea #ddd #ddd #eaeaea;
	padding: 1px 5px 0;
	font-size: 100%;
	border-radius: 0;
}
INPUT[type=text], INPUT[type=password] {
	height: 16px;
	line-height: 1em;
}

INPUT.button, INPUT[type="submit"], INPUT[type="button"], INPUT[type="reset"], BUTTON {
	color: black;
	border: 1px solid;
	border-left-color: #D0D7E8;
	border-top-color: #D0D7E8;
	border-bottom-color: #D0D7E8;
	border-right-color: #D0D7E8;
	padding: 0px 3px;
	background: white;
}
INPUT[type="submit"].displayNone {
	display: block;
	width: 1px;
	height: 1px;
	overflow: hidden;
	border: none;
	background: none;
	opacity: 0.01;
	position: absolute;
	top: -9999px;
	left: -9999px;
}
label { position: relative; }

input.ui[type="checkbox"],
input.ui[type="radio"] {
	position: absolute;
	transform: scale(0);
	margin-left: 15px; 
}
input.ui[type="checkbox"] + label,
input.ui[type="radio"] + label {
	position: relative;
	padding-left: 26px;
	margin-right: 14px;
	cursor: pointer;
}
input.ui[type="radio"] + label {
	padding-top: 3px;
	padding-bottom: 3px;
}

input.ui[type="checkbox"] + label:before,
input.ui[type="checkbox"] + label:after,
input.ui[type="radio"] + label:before,
input.ui[type="radio"] + label:after {
	content: '';
	display: inline-block;
	box-sizing: border-box;
	position: absolute;
	left: 0;
	top: 12px;
	transform: translateY(-50%);
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: #fff;
	transition: all 200ms;
}
input.ui[type="checkbox"] + label:after,
input.ui[type="checkbox"] + label:before {
	border-radius: 0;
}
input.ui[type="checkbox"] + label:before,
input.ui[type="radio"] + label:before {
	border: 1px solid rgba(0,0,0,0.5);
}
input.ui[type="checkbox"] + label:after,
input.ui[type="radio"] + label:after {
	left: 4px;
	transform: translateY(-50%) scale(1.5);
	width: 6px;
	height: 6px;
	background-color: var(--Scarlett-Color);
	opacity: 0;
	transition: all 300ms;
}
input.ui[type="checkbox"]:checked + label:after,
input.ui[type="radio"]:checked + label:after {
	transform: translateY(-50%) scale(1);
	opacity: 1;
}
input.ui[type="checkbox"]:checked + label:before,
input.ui[type="radio"]:checked + label:before {
	background: #fff;
}
input[type='radio'].ui:focus + label {
	box-shadow: 0 1px 0 var(--Scarlett-Color);
}

.shortNum {
	width: 30px;
	text-align: center;
	padding-left: 0;
	padding-right: 0;
}

hr {
	border: none;
	border-bottom: 1px solid #b8b8b8;
	font-size: 0px;
	background-color: transparent;
}

sup, sub {
	height: 0;
	line-height: 1;
	vertical-align: baseline;
	position: relative;
	font-size: 75%;
}

sup { bottom: 1ex; }
sub { top: .5ex; }

video {
	max-width: 100%;
	background-color: #000;
}

/* Consent Manager */
.PleaseConsent {
	width: 100%;
	aspect-ratio: 8 / 5;
	background-color: rgba(0, 0, 0, 0.1);
	text-align: center;
}
.PleaseConsent .inner {
	position: relative;
	top: 50%;
	transform: translateY(-50%);
}


.ui {
	font-family: var(--Source-Font);
}
.ui:hover {
	text-decoration: none;
}
.ui.candy {
	display: inline-block;
	color: #fff;
	background: var(--CD-ColorA);
	border: 1px solid rgb(255, 91, 0);
	padding: 0px 5px;
	border-radius: 2px;
	position: relative;
}
.ui.cta {
	font-size: 200%;
	padding: 0.3em 0.5em;
	margin: 1em;
	box-shadow: var(--Source-Shadow);
	transition: all 200ms;
	line-height: 1em;
	cursor: pointer;
}
.ui.cta:hover {
	transform: scale(1.05);
}


dialog {
	border: none;
	border-radius: 4px;
	box-shadow: var(--Source-Shadow);
}
dialog::backdrop {
	background-color: rgba(23, 23, 27, 0.5);
}

/* Dev stuff */
.doodle {
	margin: 20px;
	padding: 10px;
	border: var(--Source-Border);
	font-size: 20px;
	display: inline-block;
	position: relative;
	background-color: rgba(0, 0, 0, 0.1);
	box-shadow: var(--Source-Shadow);
}
.doodle:before,
.doodle:after {
	content: 'wip';
	position: absolute;
	font-size: 12px;
	background-color: rgba(255, 255, 255, 0.5);
	padding: 0 5px;
	color: teal;
	border: 1px solid teal;
	border-radius: 3px;
}
.doodle:before {
	top: -10px;
	right: 5px;
	border-width: 1px 1px 0 0;
}
.doodle:after {
	left: 5px;
	bottom: -10px;
	border-width: 0 0 1px 1px;
}