/*** STANDARD BUTTON ***/
.button, .buttonWire { /* white */
	display: inline-block;
	vertical-align: top;
	text-align: center;
	font-family: "StandardFontRegular", "Arial", sans-serif;
	font-size: 18px;
	letter-spacing: 0px;
	color: hsl(205, 100%, 10%) !important;
	line-height: 18px;
	white-space: nowrap;
	padding: 15px;
	border-radius: 5px;
	background-color: hsl(0, 0%, 100%);
	/*border: solid 1px hsl(0, 0%, 100%);*/
	overflow: hidden;
	cursor: pointer;
	pointer-events: all;
}

.button:hover, .buttonWire:hover { /* white */
	color: hsl(205, 100%, 10%) !important;
}

div.buttonItems {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 12px;
	color: inherit !important;
}

img.buttonIconSmall {
	height: 30px;
}

img.buttonIconMedium {
	height: 40px;
}

img.buttonIconLarge {
	height: 50px;
}

img.buttonIconDim {
	opacity: 0.65;
}

p.buttonLabel {
	font-size: 18px;
	letter-spacing: 0px;
	color: inherit !important;
}

.buttonBlue, .buttonBlue:hover {
	color: hsl(205, 100%, 5%) !important;
	background-color: hsl(205, 100%, 70%);
	/*border-color: hsl(205, 100%, 70%);*/
}

.buttonDarkBlue, .buttonDarkBlue:hover {
	color: hsl(0, 0%, 100%) !important;
	background-color: hsl(205, 75%, 30%);
	/*border-color: hsl(205, 65%, 30%);*/
}

.buttonGold, .buttonGold:hover {
	color: hsl(50, 100%, 5%) !important;
	background-color: hsl(50, 100%, 70%);
	/*border-color: hsl(50, 100%, 70%);*/
}

.buttonWire, .buttonWire:hover {
	background: none;
	color: hsl(0, 0%, 100%) !important;
	line-height: 16px;
	border: solid 1px hsl(0, 0%, 100%);
}

.buttonWireBlue, .buttonWireBlue:hover {
	color: hsl(205, 100%, 40%) !important;
	border-color: hsl(205, 100%, 45%);
}

.buttonFullWidth, .buttonFullWidth {
	display: block;
}




/*** LINK BUTTON ***/
div.linkButton {
	margin-top: 50px;
	text-align: center;
	font-size: 0px;
}

div.linkButton:first-child {
	margin-top: 0px;
}

a.linkButton {
	display: inline-block;
	font-size: 18px;
	color: hsl(195, 100%, 65%);
	text-decoration: none;
	cursor: pointer;
	pointer-events: auto;
}



/*** TOGGLE BUTTON ***/
div.toggleButtonOn, div.toggleButtonOff {
	position: relative;
	display: inline-block;
	width: 60px;
	height: 28px;
	border-radius: 14px;
	background-color: hsl(155, 100%, 38%);
	overflow: hidden;
	cursor: pointer;
	pointer-events: auto;
}

div.toggleButtonOff {
	background-color: hsl(0, 0%, 0%, 0.35);
}

div.toggleButtonCircle {
	position: absolute;
	width: 24px;
	height: 24px;
	border-radius: 12px;
	background-color: hsl(0, 0%, 100%);
	pointer-events: none;
}

div.toggleButtonOn div.toggleButtonCircle {
	top: 2px;
	right: 2px;
}

div.toggleButtonOff div.toggleButtonCircle {
	top: 2px;
	left: 2px;
}

div.toggleButtonTextOn, div.toggleButtonTextOff {
	position: absolute;
	font-family: StandardFontRegular, sans-serif;
	font-size: 13px;
	letter-spacing: 1px;
	line-height: 28px;
	pointer-events: none;
}

div.toggleButtonOn div.toggleButtonTextOn {
	display: block;
	color: hsl(0, 0%, 100%);
	top: 0px;
	left: 7px;
}

div.toggleButtonOff div.toggleButtonTextOn {
	display: none;
	color: hsl(0, 0%, 100%);
	top: 0px;
	left: 7px;
}

div.toggleButtonOn div.toggleButtonTextOff {
	display: none;
	color: hsl(0, 0%, 100%, 0.50);
	top: 0px;
	right: 5px;
}

div.toggleButtonOff div.toggleButtonTextOff {
	display: block;
	color: hsl(0, 0%, 100%, 0.50);
	top: 0px;
	right: 5px;
}

div.toggleButtonLabel {
	font-size: 15px;
	color: hsl(0, 0%, 30%);
	line-height: 30px;
}



/*** CHECKBOX BUTTONS ***/
div.checkBoxChecked, div.checkBoxUnchecked {
	display: flex; /*inline-block;*/
	align-items: center;
	column-gap: 8px;
	cursor: pointer;
	pointer-events: auto;
}

div.checkBoxIcon {
	position: relative;
	width: 24px;
	height: 24px;
	border: solid 2px hsl(205, 15%, 50%);
	border-radius: 3px;
	box-sizing: border-box;
}

div.checkBoxChecked div.checkBoxIcon {
	border-color: hsl(205, 100%, 50%);
	background-color: hsl(205, 100%, 50%);
}

.checkBoxIconSvg {
	position: absolute;
	display: block;
	width: 16px;
	height: 16px;
	left: 2px;
	top: 2px;
	fill: hsl(0, 0%, 100%); /*hsl(205, 100%, 50%);*/
}

div.checkBoxUnchecked .checkBoxIconSvg {
	display: none;
}

div.checkBoxLabel {
	font-family: "StandardFontBold", "Arial", sans-serif;
	font-size: 15px;
	line-height: 34px;
	color: hsl(205, 15%, 35%);
	overflow: hidden;
	white-space: nowrap;
}

div.checkBoxChecked div.checkBoxLabel {
	color: hsl(205, 100%, 40%);
}



/*** COMPARISON BUTTONS ***/
div.comparisonOptions {
	display: flex;
}

div.comparisonOpt, div.comparisonOptActive {
	width: 50px;
	font-family: "StandardFontBold", "Arial", sans-serif;
	font-size: 16px;
	line-height: 30px;
	text-align: center;
	color: hsl(205, 100%, 40%);
	background-color: hsl(0, 0%, 100%);
	border: solid 1px hsl(205, 100%, 45%);
	cursor: pointer;
	pointer-events: auto;
}

div.comparisonOpt:first-child, div.comparisonOptActive:first-child {
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}

div.comparisonOpt:last-child, div.comparisonOptActive:last-child {
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}

div.comparisonOptActive {
	color: hsl(0, 0%, 100%);
 	background-color: hsl(205, 100%, 45%);
 	pointer-events: none;
}


 
/*** OPTION BUTTONS ***/
div.optionItems {
	text-align: center;
	font-size: 0px;
	padding: 15px 0px 10px 0px;
}

div.optionItemContainer {
	text-align: center;
	font-size: 0px;
	margin-top: 30px;
}

div.optionItemContainer:first-child {
	margin-top: 0px;
}

div.optionItem {
	display: inline-block;
	font-size: 0px;
	/*margin-top: 30px;*/
	width: 290px;
}

/*
div.optionItem:first-child {
	margin-top: 0px;
}
*/

div.optionItemLabel {
	font-family: "StandardFontBold", "Arial", sans-serif;
	color: hsl(0, 0%, 100%);
	font-size: 18px;
	text-align: left;
}

div.optionItemDescription {
	font-style: italic;
	color: hsl(0, 0%, 65%);
	font-size: 15px;
	line-height: 135%;
	margin-top: 5px;
	text-align: left;
}

table.optionItem {
	margin-top: 10px;
}

table.optionItem td {
	font-size: 0px;
}

table.optionItem td.optionButton {}

table.optionItem td.example {}

div.optionButtonNorm, div.optionButtonSelected {
	width: 145px;
	color: hsl(205, 100%, 85%);
	background-color: hsl(205, 100%, 20%);
	border-bottom: solid 1px hsl(205, 50%, 40%);
	border-right: solid 1px hsl(205, 50%, 40%);
	font-size: 16px;
	line-height: 50px;
	text-align: center;
	padding: 0px 10px;
	pointer-events: auto;
	cursor: pointer;
}

table.optionItem tr:first-child div.optionButtonNorm, table.optionItem tr:first-child div.optionButtonSelected {
	border-top: solid 1px hsl(205, 50%, 40%);
}

table.optionItem td:first-child div.optionButtonNorm, table.optionItem td:first-child div.optionButtonSelected {
	border-left: solid 1px hsl(205, 50%, 40%);
}

table.optionItem tr.optionRowFirst td:first-child div.optionButtonNorm, table.optionItem tr.optionRowFirst td:first-child div.optionButtonSelected {
	border-top-left-radius: 5px;
}

table.optionItem tr.optionRowFirst td:last-child div.optionButtonNorm, table.optionItem tr.optionRowFirst td:last-child div.optionButtonSelected {
	border-top-right-radius: 5px;
}

table.optionItem tr.optionRowLast td:first-child div.optionButtonNorm, table.optionItem tr.optionRowLast td:first-child div.optionButtonSelected {
	border-bottom-left-radius: 5px;
}

table.optionItem tr.optionRowLast td:last-child div.optionButtonNorm, table.optionItem tr.optionRowLast td:last-child div.optionButtonSelected {
	border-bottom-right-radius: 5px;
}

/*
table.optionItem td:first-child div.optionButtonNorm, table.optionItem td:first-child div.optionButtonSelected {
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
	border-right: none;
}

table.optionItem td:last-child div.optionButtonNorm, table.optionItem td:last-child div.optionButtonSelected {
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	border-left: none;
}
*/

div.optionButtonSelected {
	color: hsl(0, 0%, 0%);
	background-color: hsl(50, 100%, 60%);
	/*border: none;*/
	border-color: hsl(50, 100%, 60%);
	pointer-events: none;
}

div.optionExample {
	color: hsl(205, 100%, 70%);
	font-size: 15px;
	text-align: center;
	margin-top: 10px;
}

