/*
* Skeleton V2.0.4
* Copyright 2014, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 12/29/2014
*/

/* Table of contents
––––––––––––––––––––––––––––––––––––––––––––––––––
- Grid
- Base Styles
- Typography
- Links
- Buttons
- Forms
- Lists
- Code
- Tables
- Spacing
- Utilities
- Clearing
- Media Queries
*/

/* Grid
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.container {
	position: relative;
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}

.column, .columns {
	width: 100%;
	float: left;
	box-sizing: border-box;
}

/* For devices larger than 400px */

@media (min-width: 400px) {
	.container {
		width: 85%;
		padding: 0;
	}
}

/* For devices larger than 768px */

@media (min-width: 768px) {
	.container {
		width: 100%;
	}
	.column, .columns {
		margin-left: 4%;
	}
	.column:first-child, .columns:first-child {
		margin-left: 0;
	}
	.one.column, .one.columns {
		width: 4.66666666667%;
	}
	.two.columns {
		width: 13.3333333333%;
	}
	.three.columns {
		width: 22%;
	}
	.four.columns {
		width: 30.6666666667%;
	}
	.five.columns {
		width: 42.6666666667%;
	}
	.six.columns {
		width: 48%;
	}
	.seven.columns {
		width: 56.6666666667%;
	}
	.eight.columns {
		width: 65.3333333333%;
	}
	.nine.columns {
		width: 74.0%;
	}
	.ten.columns {
		width: 82.6666666667%;
	}
	.eleven.columns {
		width: 91.3333333333%;
	}
	.twelve.columns {
		width: 100%;
		margin-left: 0;
	}
	.one-third.column {
		width: 30.6666666667%;
	}
	.two-thirds.column {
		width: 65.3333333333%;
	}
	.one-half.column {
		width: 48%;
	}
}

.show-for-small {
	display: none !important;
}

/* For devices smaller than 768px */

@media (max-width: 768px) {
	.hide-for-small {
		display: none !important;
	}
	.show-for-small {
		display: block !important;
	}
	table tr td, table tr th {
		font-size: .8em;
	}
}

.hide {
	display: none;
}

/* For devices smaller than 1200px */

@media (max-width: 1200px) {
	.child.six.columns {
		width: 100%;
		float: left;
		box-sizing: border-box;
	}
}

/* Base Styles
  –––––––––––––––––––––––––––––––––––––––––––––––––– */

/* NOTE
  html is set to 62.5% so that all the REM measurements throughout Skeleton
  are based on 10px sizing. So basically 1.5rem = 15px :) */

html {
	font-size: 62.5%;
}

body, button {
	font-size: 1.5rem;
	/* currently ems cause chrome bug misinterpreting rems on body element */
	line-height: 1.6;
	font-weight: 400;
	font-family: "Roboto Condensed", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: #707070;
}

/* Typography
  –––––––––––––––––––––––––––––––––––––––––––––––––– */

h1, h2, h3, h4, h5, h6 {
	margin-top: 0;
	margin-bottom: 2rem;
	font-weight: 400;
}

h1 {
	font-size: 4.0rem;
	line-height: 1.2;
	letter-spacing: -.1rem;
}

h2 {
	font-size: 3.6rem;
	line-height: 1.25;
	letter-spacing: -.1rem;
}

h3 {
	font-size: 3.0rem;
	line-height: 1.3;
	letter-spacing: -.1rem;
}

h4 {
	font-size: 2.4rem;
	line-height: 1.35;
	letter-spacing: -.08rem;
}

h5 {
	font-size: 1.8rem;
	line-height: 1.5;
	letter-spacing: -.05rem;
}

h6 {
	font-size: 1.5rem;
	line-height: 1.6;
	letter-spacing: 0;
}

.bold {
	font-weight: 700;
}
/* Larger than phablet */

@media (min-width: 550px) {
	h1 {
		font-size: 5.0rem;
	}
	h2 {
		font-size: 4.2rem;
	}
	h3 {
		font-size: 3.6rem;
	}
	h4 {
		font-size: 3.0rem;
	}
	h5 {
		font-size: 2.4rem;
	}
	h6 {
		font-size: 1.5rem;
	}
}

p {
	margin-top: 0;
}

.summary{
	background-color: #f5f5f5;
	padding: 2em;
	border-top: 8px solid #616161;
}

.summary-th th{
	font-size: 0.75em;
    font-weight: 700
}

/* Links
  –––––––––––––––––––––––––––––––––––––––––––––––––– */

a {
	color: #00c0cf;
}

a:hover {
	color: #009faa;
}

/* Buttons
  –––––––––––––––––––––––––––––––––––––––––––––––––– */

.button, button, input[type="submit"], input[type="reset"], input[type="button"] {
	display: inline-block;
	/* height: 38px; */
	padding: .5em 2em;
	text-align: center;
	font-weight: 300;
	line-height: 38px;
	text-transform: uppercase;
	text-decoration: none;
	white-space: nowrap;
	background-color: transparent;
	border-radius: 4px;
	cursor: pointer;
	box-sizing: border-box;
}

.button:hover, button:hover, input[type="submit"]:hover, input[type="reset"]:hover, input[type="button"]:hover, .button:focus, button:focus, input[type="submit"]:focus, input[type="reset"]:focus, input[type="button"]:focus {
	color: #333;
	border-color: #888;
	outline: 0;
}

.button.button-primary, button.button-primary, input[type="submit"].button-primary, input[type="reset"].button-primary, input[type="button"].button-primary {
	color: #FFF;
	background-color: #33C3F0;
	border-color: #33C3F0;
}

.button.button-primary:hover, button.button-primary:hover, input[type="submit"].button-primary:hover, input[type="reset"].button-primary:hover, input[type="button"].button-primary:hover, .button.button-primary:focus, button.button-primary:focus, input[type="submit"].button-primary:focus, input[type="reset"].button-primary:focus, input[type="button"].button-primary:focus {
	color: #FFF;
	background-color: #1EAEDB;
	border-color: #1EAEDB;
}

/* Forms
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
#userEmailField {
	height: 50px;
	padding: 6px 10px;
	/* The 6px vertically centers text on FF, ignored by Webkit */
	background-color: #fff;
	border: 1px solid #D1D1D1;
	border-radius: 0px;
	box-shadow: none;
	box-sizing: border-box;
}

#emailSubmit{
	height: 50px !important;
	padding: 0;
	border-radius: 4px !important;
}


input[type="email"], input[type="number"], input[type="search"], input[type="text"], input[type="tel"], input[type="url"], input[type="password"], textarea, select {
	height: 38px;
	padding: 6px 10px;
	/* The 6px vertically centers text on FF, ignored by Webkit */
	background-color: #fff;
	border: 1px solid #D1D1D1;
	border-radius: 4px;
	box-shadow: none;
	box-sizing: border-box;
}

/* Removes awkward default styles on some inputs for iOS */

input[type="email"], input[type="number"], input[type="search"], input[type="text"], input[type="tel"], input[type="url"], input[type="password"], textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

textarea {
	min-height: 65px;
	padding-top: 6px;
	padding-bottom: 6px;
}

input[type="email"]:focus, input[type="number"]:focus, input[type="search"]:focus, input[type="text"]:focus, input[type="tel"]:focus, input[type="url"]:focus, input[type="password"]:focus, textarea:focus, select:focus {
	border: 1px solid #33C3F0;
	outline: 0;
}

label, legend {
	display: block;
	margin-bottom: .5rem;
	font-size: 1.25em;
	font-weight: 300;
}

fieldset {
	padding: 0;
	border-width: 0;
}

input[type="checkbox"], input[type="radio"] {
	display: inline;
}

label>.label-body {
	display: inline-block;
	margin-left: .5rem;
	font-weight: normal;
}

/* Lists
  –––––––––––––––––––––––––––––––––––––––––––––––––– */

ul {
	list-style: circle inside;
}

ol {
	list-style: decimal inside;
}

ol, ul {
	padding-left: 0;
	margin-top: 0;
}

ul ul, ul ol, ol ol, ol ul {
	margin: 1.5rem 0 1.5rem 3rem;
	font-size: 90%;
}

li {
	margin-bottom: 1rem;
}

/* Code
  –––––––––––––––––––––––––––––––––––––––––––––––––– */

code {
	padding: .2rem .5rem;
	margin: 0 .2rem;
	font-size: 90%;
	white-space: nowrap;
	background: #F1F1F1;
	border: 1px solid #E1E1E1;
	border-radius: 4px;
}

pre>code {
	display: block;
	padding: 1rem 1.5rem;
	white-space: pre;
}

/* Tables
  –––––––––––––––––––––––––––––––––––––––––––––––––– */

th, td {
	padding: 1em .5em;
	text-align: left;
	border-bottom: 1px solid #E1E1E1;
}

/* Spacing
  –––––––––––––––––––––––––––––––––––––––––––––––––– */

button, .button {
	margin-bottom: 1rem;
}

input, textarea, select, fieldset {
	margin-bottom: 1.5rem;
}

pre, blockquote, dl, figure, table, p, ul, ol, form {
	margin-bottom: 2.5rem;
}

/* Utilities
  –––––––––––––––––––––––––––––––––––––––––––––––––– */

.u-full-width {
	width: 100%;
	box-sizing: border-box;
}

.u-max-full-width {
	max-width: 100%;
	box-sizing: border-box;
}

.u-pull-right {
	float: right;
}

.u-pull-left {
	float: left;
}

/* Misc
  –––––––––––––––––––––––––––––––––––––––––––––––––– */

hr {
	margin-top: 3rem;
	margin-bottom: 3.5rem;
	border-width: 0;
	border-top: 1px solid #E1E1E1;
}

/* Clearing
  –––––––––––––––––––––––––––––––––––––––––––––––––– */

/* Self Clearing Goodness */

.container:after, .row:after, .u-cf {
	content: "";
	display: table;
	clear: both;
}

.clear {
	clear: both;
}

/* Media Queries
  –––––––––––––––––––––––––––––––––––––––––––––––––– */

/*
  Note: The best way to structure the use of media queries is to create the queries
  near the relevant code. For example, if you wanted to change the styles for buttons
  on small devices, paste the mobile query code up in the buttons section and style it
  there.
  */

/* Larger than mobile */

@media (min-width: 400px) {}

/* Larger than phablet (also point when grid becomes active) */

@media (min-width: 550px) {}

/* Larger than tablet */

@media (min-width: 750px) {}

/* Larger than desktop */

@media (min-width: 1000px) {}

/* Larger than Desktop HD */

@media (min-width: 1200px) {}

/*    /o                 .oPYo.   o         8
    .P 8                 8        8         8
   .P  8 .oPYo. .oPYo.   `Yooo.  o8P o    o 8 .oPYo. .oPYo.
  oPooo8 8    8 8    8       `8   8  8    8 8 8oooo8 Yb..
 .P    8 8    8 8    8        8   8  8    8 8 8.       'Yb.
.P     8 8YooP' 8YooP'   `YooP'   8  `YooP8 8 `Yooo' `YooP'
..:::::..8 ....:8 ....::::.....:::..::....8 ..:.....::.....:
:::::::::8 :::::8 :::::::::::::::::::::ooP'.::::::::::::::::
:::::::::..:::::..:::::::::::::::::::::...::::::::::::::::*/

#app {
	margin: 1em;
	color: #707070;
	max-width: 1400px;
	margin: 0 auto;
}

.logo.columns {
	font-size: 2em;
	padding-left: 0;
	padding-right: 0;
	margin-bottom: 2rem;
	max-width: 7em;
}

p {
	color: #707070;
	font-size: 1em;
}

.yellow {
	color: #FA5;
}

.mainContainer {
	border: 1px solid #CCC;
}

#app .mainContainer>div {
	padding: 1.5em;
}

.firstColumn {
	border-right: 1px solid #CCC;
}

#app .has-background-gray{
	background-color: #616161;
}


/* Spacing Helpers */
#app .mx1 {
	margin-left: 0.25rem;
	margin-right: 0.25rem;
}

#app .mx2 {
	margin-left: 0.5rem;
	margin-right: 0.5rem;
}

#app .mx3 {
	margin-left: 0.75rem;
	margin-right: 0.75rem;
}

#app .mx4 {
	margin-top: 1rem;
	margin-bottom: 1rem;
}

#app .my1 {
	margin-top: 0.25rem;
	margin-bottom: 0.25rem;
}

#app .my2 {
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
}

#app .my3 {
	margin-top: 0.75rem;
	margin-bottom: 0.75rem;
}

#app .my4 {
	margin-top: 1rem;
	margin-bottom: 1rem;
}

#app .mr1 {
	margin-right: 0.25rem;
}

#app .mr2 {
	margin-right: 0.5rem;
}

#app .mr3 {
	margin-right: 0.75rem;
}

#app .mr4 {
	margin-bottom: 1rem;
}

@media (min-width: 550px) {
	.columns {
		margin-left: 0;
	}
	.six.columns {
		width: 50%;
	}
	.columns {
		padding: 0.5em;
	}
}

h1 {
	font-size: 2em;
}

h2 {
	font-size: 1.5em;
	padding-bottom: .2em;
	border-bottom: 1px solid #CCC;
}

h3 {
	font-size: 1.2em;
}

img {
	max-width: 100%;
}

.nav {
	float: right;
	position: relative;
	margin-bottom: 1.5em;
}

.nav:before {
	content: '';
	position: absolute;
	bottom: 50%;
	border-bottom: 2px solid #ddd;
	width: 90%;
	z-index: -1;
}

.nav>* {
	border: 1px solid #777;
	width: 2.8em;
	height: 2.8em;
	line-height: 2.8em;
	font-size: 1em;
	padding: 0;
	margin-right: 1em;
	border-radius: 50%;
	text-align: center;
	display: inline-block;
	cursor: pointer;
	color: #00c0cf;
	border-color: #00c0cf;
	background-color: white;
}

.nav .summary-tab{
	border-radius: 2em;
	width: fit-content;
	padding: 0 1.5em;
}

.navNumberFilled {
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
	color: white;
	background-color: #00c0cf;
}



.letter {
	border: 1px solid #777;
	width: 1.5em;
	height: 1.5em;
	line-height: 1.55em;
	font-family: "Roboto", sans-serif;
	font-size: 1em;
	padding: 0;
	margin-right: 0.5em;
	margin-bottom: 0.25em;
	border-radius: 50%;
	text-align: center;
	display: inline-block;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
	color: white;
	background-color: #00c0cf;
	border-color: #00c0cf;
}

.letterA {
	background-color: #FF9461;
	border-color: #FF9461;
}

.letterB {
	background-color: #AE9EB9;
	border-color: #AE9EB9;
}

.letterC {
	background-color: #95BD69;
	border-color: #95BD69;
}

.fixed-header {
	/* width: 400px; */
	box-sizing: border-box;
	table-layout: fixed;
	border-collapse: collapse;
}

.fixed-header tbody {
	border: 1px solid grey;
	display: block;
	/* width: 100%; */
	overflow-y: auto;
	overflow-x: hidden;
	height: 20em;
}

.fixed-header thead tr {
	display: block;
}

.fixed-header thead {
	background: white;
	color: #555;
}

.fixed-header th, .fixed-header td {
	text-align: center;
	width: 100px;
}

.fixed-header th:first-child, .fixed-header td:nth-child(2) {
	text-align: left;
	width: 300px;
}

.scale, .labels {
	box-sizing: border-box;
	overflow: hidden;
	white-space: nowrap;
}

.scale>div {
	display: inline-block;
	text-align: center;
	border-right: 1px solid #888;
	border-bottom: 2px solid #888;
	border-top-style: none;
	padding-bottom: .1em;
	padding-top: .75em;
}

.scale>div:first-child {
	border-left: 2px solid #888;
}

.scale>div:last-child {
	border-right: 2px solid #888;
}

.labels>div {
	display: inline-block;
	font-size: 0.9em;
	text-align: center;
	padding-left: .1em;
}

.labels>div, .scale>div {
	opacity: 1;
	transition: width 1s, opacity 1s;
}

.bucket1 {
	/* background-color: #D9F9FF; */
	background-image: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 20%, rgba(217, 249, 255, 1) 20%);
}

.bucket1, .room1 {
	width: 19.7%;
}

.bucket2 {
	/* background-color: #85ECFE; */
	background-image: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 20%, rgba(133, 236, 254, 1) 20%);
}

.bucket2, .room2 {
	width: 19.7%;
}

.bucket3 {
	/* background-color: #00C8E6; */
	background-image: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 20%, rgba(0, 200, 230, 1) 20%);
}

.bucket3, .room3 {
	width: 19.7%;
}

.bucket4 {
	/* background-color: #2B9BAD; */
	background-image: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 20%, rgba(43, 155, 173, 1) 20%);
}

.bucket4, .room4 {
	width: 19.7%;
}

.bucket5 {
	/* background-color: #006274; */
	background-image: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 20%, rgba(0, 98, 116, 1) 20%);
}

.bucket5, .room5 {
	width: 19.7%;
}

.alr .bucket1, .alr .room1 {
	width: 52.8%;
}

.alr .bucket2, .alr .room2 {
	width: 17.4%;
}

.alr .bucket3, .alr .room3 {
	width: 17.4%;
}

.alr .bucket4, .alr .room4 {
	width: 11.5%;
}

.alr .bucket4 {
	border-right: 2px solid #888;
}

.bucket1, .bucket2, .bucket3 {
	color: black;
}

.bucket4, .bucket5 {
	color: white;
}

.slideContainer {
	width: 100%;
}

.slider {
	-webkit-appearance: none;
	width: 100%;
	background: transparent;
	/* height: 0.05em; */
	height: 30px;
	cursor: default;
	margin-right: 0px;
	margin-left: 0;
	/* -11px; */
	overflow: visible;
	margin-bottom: 0px;
}

.sliderline {
	border-top: 1px solid #aaa;
	height: 1px;
	margin-top: -23px;
	margin-bottom: 14px;
}

.slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	cursor: default;
	background-color: transparent;
	width: 0;
	height: 0;
	border-left: 12px solid transparent;
	border-right: 12px solid transparent;
	border-top: 24px solid #FA5;
	border-bottom-style: none;
}

.slider::-moz-range-thumb {
	-webkit-appearance: none;
	appearance: none;
	cursor: default;
	background-color: transparent;
	width: 0;
	height: 0;
	border-left: 12px solid transparent;
	border-right: 12px solid transparent;
	border-top: 24px solid #FA5;
	border-bottom-style: none;
}

.slider::-ms-thumb {
	-webkit-appearance: none;
	appearance: none;
	cursor: default;
	width: 0;
	height: 0;
	border-left: 12px solid transparent;
	border-right: 12px solid transparent;
	border-top: 24px solid #FA5;
}

.inputContainer>input {
	box-sizing: border-box;
	padding: .75em 1em .75em 1em;
	text-align: right;
	font-size: 1.25em;
	color: #707070;
	width: 95%;
}

.inputContainer.METRIC>input {
	box-sizing: border-box;
	padding: .75em 2em .75em 1em;
	text-align: right;
	font-size: 1.25em;
	color: #707070;
	width: 95%;
}

.inputContainer>span {
	margin-left: -1.25em;
	font-size: 1.25em;
}

.inputContainer.METRIC>span {
	margin-left: -2.25em;
	font-size: 1.25em;
}

.inputContainer.nolabel {
	font-size: 1.25em;
	padding-top: 2.5em;
}

#app button.switchButton {
	background: transparent;
	border: #AE9EB9 1px solid;
	color: #AE9EB9;
	padding: .399em 1em .399em 1em;
	display: block;
	width: auto;
	margin-left: auto;
	margin-right: auto;
}

#app button.switchButton:hover {
	background: #AE9EB9;
	color: #fff;
}

thead {
	background-color: #00c0cf;
	color: white;
}

table {
	border-collapse: collapse;
	color: #555;
}

th {
	font-weight: 300;
	text-transform: uppercase;
}

th, td {
	border-bottom: none;
	text-align: center;
}

tr:nth-child(even) {
	background-color: #f5f5f5;
}

table:not('.fixed-header') tbody tr:first-child td {
	padding-top: 2em;
}

tbody.hoverable tr:hover {
	background-color: #d2eef7;
	cursor: pointer;
}

tbody.hoverable .selectedSurface {
	/* background-color: #00c0cf;
	color: white; */
}

tbody.hoverable .selectedSurface:hover {
	/* background-color: #00c0cf; */
}

#app button {
	background-color: #AE9EB9;
	color: white;
	border: none;
	border-radius: 4px;
	text-transform: uppercase;
	font-size: 1em;
}

#app button.is-large {
	font-size: 1.5em;
}

.sweet-modal-buttons a.button {
	background-color: #AE9EB9;
	color: white;
	border: none;
	border-radius: 0;
	text-transform: uppercase;
	font-size: 1em;
}

.modalText {
	font-size: 1.25em;
}

.sweet-modal-buttons a.button:hover {
	background-color: #AE9EB9;
	color: white;
	border: none;
	border-radius: 0;
	text-transform: uppercase;
	font-size: 1em;
}

.ratioRadio {
	display: block;
	position: relative;
	padding-left: 35px;
	margin-bottom: 12px;
	cursor: pointer;
	font-size: 22px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.ratioRadio input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}

.checkmark {
	position: absolute;
	top: -.2em;
	left: .7em;
	height: 25px;
	width: 25px;
	background-color: #eee;
	border-radius: 50%;
}

.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

.ratioRadio input:checked~.checkmark:after {
	display: block;
}

.ratioRadio .checkmark:after {
	top: 7px;
	left: 7px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #00c0cf;
}

.ratioRadio:hover input~.checkmark {
	background-color: #ccc;
}

.ratioRadio:checked input~.checkmark {
	background-color: #00c0cf;
}

p.choose {
	font-size: 1.25em;
	text-align: center;
	margin-bottom: 0;
}

hr.divider {
	border-style: none;
	border-bottom: 1px solid #CCC;
}

.sq {
	/* I don't know why this was here but it was throwing off the alignment so i removed it - Eric*/
	/* margin-top: -0.4em; */
}

label.rb {
	display: inline;
	margin-right: 2em;
	font-weight: 300;
}

.projectionChoice {
	margin-top: 1em;
}

#lensNotes {
	margin-left: 0;
	padding-left: 0;
	list-style-type: none;
}

#lensNotes li {
	margin-left: 0;
	padding-left: 0;
	font-size: 1.2em;
	font-weight: 300;
	border-bottom: 1px solid #ccc;
	padding-bottom: .25em;
}

#footNotes {
	margin-left: 0;
	padding-left: 0;
	margin-top: 1.25em;
	line-height: 1.2;
}

#footNotes li {
	margin-left: 0;
	padding-left: 0;
}

.scaleHeader {
	font-size: 1.25em;
	margin-top: -1em;
	padding-bottom: 1em;
}

label sup {
	vertical-align: top;
	font-size: .7em;
}

.parallaxNote {
	font-style: italic;
	text-align: right;
	color: #888;
	font-size: .8em;
	padding-top: .5em;
	padding-right: 2em;
}

::placeholder {
	/* Chrome, Firefox, Opera, Safari 10.1+ */
	color: #ccc;
	opacity: 1;
	/* Firefox */
	text-align: left;
	font-size: .8em;
}

:-ms-input-placeholder {
	/* Internet Explorer 10-11 */
	color: #ccc;
	text-align: left;
	font-size: .8em;
}

::-ms-input-placeholder {
	/* Microsoft Edge */
	color: #ccc;
	text-align: left;
	font-size: .8em;
}

.bad {
	color: #800;
}

.bad:hover {
	background-color: white;
	cursor: not-allowed;
}

.bad:nth-child(even):hover {
	background-color: #f5f5f5;
}

.inputContainer>input.centered {
	text-align: center;
}

.sglink {
	font-size: .7em;
	display: block;
	float: right;
}

.pdhelp {
	font-size: .6em;
	display: block;
	float: right;
	line-height: 1.1;
	margin-top: -.1em;
	letter-spacing: 0;
	font-style: italic;
	text-align: right;
}

.sdnote {
	font-size: .8em;
	text-align: center;
	margin: 0;
	line-height: 1.2;
	letter-spacing: 0;
	text-transform: initial;
}

.rule-of-thumb {
	width: 100%;
	margin-bottom: 1.5em;
}

.tableLensNote {
	margin-right: -200px;
	font-size: .75em;
	font-style: italic;
	color: #707070;
}

.flmath {
	text-align: center;
	padding-top: 3em;
	font-size: 1.1em;
}

.toggle-switch {
	position: relative;
	display: inline-block;
	width: 60px;
	height: 34px;
}

.toggle-switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

.toggle-slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #00c0cf;
	-webkit-transition: .4s;
	transition: .4s;
}

.toggle-slider:before {
	position: absolute;
	content: "";
	height: 26px;
	width: 26px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	-webkit-transition: .4s;
	transition: .4s;
}

input:checked+.toggle-slider {
	background-color: #FF9461;
}

input:focus+.toggle-slider {
	box-shadow: 0 0 1px #FF9461;
}

input:checked+.toggle-slider:before {
	-webkit-transform: translateX(26px);
	-ms-transform: translateX(26px);
	transform: translateX(26px);
}

/* Rounded sliders */

.toggle-slider.round {
	border-radius: 34px;
}

.toggle-slider.round:before {
	border-radius: 50%;
}

.headerContainer .switch-container {
	float: right;
	width: 12em;
}

@media (min-width: 768px) {
	.headerContainer .switch-container {
		float: right;
		width: 16em;
	}
}

/* Measurement Display */

.measurement-display {
	display: flex;
}

.measurement-display .letter {
	flex: 0 0 auto;
	font-size: 2rem;
}

.measurement-display .text-wrapper {
	flex: 1 1 auto;
}

/* .measurement-display-wrapper {
	border-right: 1px solid black;
} */

/* .measurement-display-wrapper:last-child {
	border-right: none;
} */

.is-show-on-print {
	display: none;
}

/* Print Styles */
@media print {

	#app .is-show-on-print {
		display: block !important;
	}
	#app {
		padding: 0;
		margin: 0;
	}

	#app div {
		font-size: 14px;
		padding: 0;
		margin: 0;
	}

	#app img {
		padding: 0;
		margin: 0;
	}

	#app .print-model {
		width: 100% !important;
	}
	#app h1 {
		font-size: 20px;
		padding: 0;
		margin: 0;
	}
	#app h2 {
		font-size: 16px;
		padding: 0;
		margin: 0;
	}
	#app h3 {
		font-size: 16px;
		padding: 0;
		margin: 0;
	}
	#app p {
		font-size:12px;
		padding: 0;
		margin: 0;
	}
	#app th {
		font-size:12px;
		padding: 0;
		margin: 0;
		background-color: #00c0cf;
    	color: white;
	}
	#app td {
		font-size:12px;
		padding: 0;
		margin: 0;
	}
	#app tr {
		font-size:12px;
		padding: 0;
		margin: 0;
	}
	#app tbody {
		font-size:12px;
		padding: 0;
		margin: 0;
	}

	#app table {
		font-size:12px;
		padding: 0;
		margin: 5px;
	}

	#app span {
		font-size:12px;
		padding: 0;
		margin: 0;
	}

	#app .measurement-display-wrapper {
		width: 33%;
	}

	/* #app .mainContainer .measurement-display-wrapper .measurement-display .text-wrapper span {
		font-size:14px;
	} */

	#app .headerContainer {
		display: none !important; 
	}

	#app .is-hide-on-print {
		display: none !important; 
	}

	#app .is-display-on-print {
		display: initial !important; 
	}

	#app li {
		font-size:10px;
		padding: 0;
		margin: 0;
	}

	#app ol {
		font-size:10px;
		padding: 0;
		margin: 0;
	}

	@-moz-document url-prefix() {
		#app div{
			font-size: 20px;
		}
		#app p{
			font-size: 20px;
		}
		#app h1 {
			font-size: 30px;
		}
		#app h2 {
			font-size: 30px;
			padding: 0;
			margin: 0;
		}
		#app h3 {
			font-size: 20px;
			padding: 0;
			margin: 0;
		}
		#app th {
			font-size:20px;
			padding: 0;
			margin: 0;
		}
		#app td {
			font-size:20px;
			padding: 0;
			margin: 0;
		}
		#app tr {
			font-size:20px;
			padding: 0;
			margin: 0;
		}
		#app tbody {
			font-size:20px;
			padding: 0;
			margin: 0;
		}
	
		#app table {
			font-size:20px;
			padding: 0;
			margin: 5px;
		}
	
		#app span {
			font-size:20px;
			padding: 0;
			margin: 0;
		}
		#app li {
			font-size:20px;
			padding: 0;
			margin: 0;
		}

		#app ol {
			font-size:20px;
			padding: 0;
			margin: 0;
		}
	}
}

/*oooo 8                .oPYo.
 8     8                8   `8
o8oo   8 .oPYo. `o  o' o8YooP' .oPYo. `o  o'
 8     8 8oooo8  `bd'   8   `b 8    8  `bd'
 8     8 8.      d'`b   8    8 8    8  d'`b
 8     8 `Yooo' o'  `o  8oooP' `YooP' o'  `o
:..::::..:.....:..:::..:......::.....:..:::..
:::::::::::::::::::::::::::::::::::::::::::::
:::::::::::::::::::::::::::::::::::::::::::*/

.flexcontainer {
	display: flex;
	flex-direction: row;
}

.flexitem {
	flex: 0 0 auto;
}

/* .flexitem.firstColumn {
}

.flexitem.secondColumn {
} */

@media (max-width: 768px) {
	.flexcontainer {
		display: flex;
		flex-direction: column-reverse;
	}
	tbody .selectedRatio {
		background-color: #00c0cf;
		color: white;
	}
	tbody.hoverable .selectedRatio:hover {
		background-color: #00c0cf;
	}
	.fixed-header thead, .selectableMobile thead {
		background-color: white;
		color: #555;
		font-size: .8em !important;
	}
	.selectableMobile tbody {
		border: 1px solid grey;
	}
	.labels>div {
		font-size: 0.8em;
		white-space: normal;
		line-height: 1.1;
		vertical-align: middle;
		padding-top: 4px;
	}
	.mainContainer {
		border-style: none;
	}
	.pdhelp {
		font-size: .45em;
		margin-top: 0;
	}
}