/*** STANDARD BUTTON ***/
.button, .buttonLarge, .buttonSmall {
	display: inline-block;
	vertical-align: top;
	font-family: "StandardFontBold", "Arial", sans-serif;
	font-size: 18px;
	line-height: 266%; /*48px;*/
	/*letter-spacing: 0px;*/
	color: hsl(0, 0%, 100%);
	padding: 0px 16px;
	border-radius: 5px;
	background-color: hsl(203, 100%, 40%);
	border: solid 1px hsl(203, 100%, 40%);
	white-space: nowrap;
	text-align: center;
	cursor: pointer;
	pointer-events: all;
}

.standardView .button:hover, .standardView .buttonLarge:hover, .standardView .buttonSmall:hover {
	color: hsl(0, 0%, 100%);
	background-color: hsl(203, 100%, 50%);
	border: solid 1px hsl(203, 100%, 50%);
}

.phoneView .button {
	font-size: 16px;
	padding: 0px 14px;
}

.buttonLarge {
	font-size: 20px;
	padding: 0px 18px;
}

.phoneView .buttonLarge {}

.buttonSmall {
	font-size: 15px;
	padding: 0px 13px;
}

.phoneView .buttonSmall {
	font-size: 14px;
	padding: 0px 12px;
}



/* ROUND */
.buttonRound, .buttonRoundLarge, .buttonRoundSmall {
	border-radius: 100px; /* overdo it so round works with all sizes */
	padding: 0px 22px;
}

.phoneView .buttonRound {
	padding: 0px 20px;
}

.buttonRoundLarge {
	padding: 0px 24px;
}

.phoneView .buttonRoundLarge {
	padding: 0px 22px;
}

.buttonRoundSmall {
	padding: 0px 18px;
}

.phoneView .buttonRoundSmall {
	padding: 0px 16px;
}



/* COLORS */
.buttonLightBlue {
	color: hsl(198, 65%, 15%);
	background-color: hsl(198, 80%, 80%);
	border-color: hsl(198, 80%, 80%);
}

.standardView .buttonLightBlue:hover {
	color: hsl(198, 65%, 15%);
	background-color: hsl(198, 85%, 90%);
	border-color: hsl(198, 85%, 90%);
}

.buttonYellow {
	color: hsl(50, 85%, 10%);
	background-color: hsl(50, 85%, 65%);
	border-color: hsl(50, 85%, 65%);
}

.standardView .buttonYellow:hover {
	color: hsl(50, 85%, 15%);
	background-color: hsl(50, 85%, 75%);
	border: solid 1px hsl(50, 85%, 75%);
}

.buttonTeal {
	color: hsl(0, 0%, 100%);
	background-color: hsl(194, 100%, 45%);
	border-color: hsl(194, 100%, 45%);
}

.standardView .buttonTeal:hover {
	color: hsl(0, 0%, 100%);
	background-color: hsl(194, 100%, 55%);
	border-color: hsl(194, 100%, 55%);
}

.buttonGreen {
	color: hsl(0, 0%, 100%);
	background-color: hsl(158, 100%, 35%);
	border-color: hsl(158, 100%, 35%);
}

.standardView .buttonGreen:hover {
	color: hsl(0, 0%, 100%);
	background-color: hsl(158, 100%, 42%);
	border-color: hsl(158, 100%, 42%);
}

.buttonRed {
	color: hsl(0, 0%, 100%);
	background-color: hsl(0, 100%, 40%);
	border-color: hsl(0, 100%, 40%);
}

.standardView .buttonRed:hover {
	color: hsl(0, 0%, 100%);
	background-color: hsl(0, 100%, 50%);
	border-color: hsl(0, 100%, 50%);
}



/* WIRE BUTTONS */
.buttonBlueWire {
	color: hsl(203, 100%, 40%);
	background-color: hsl(0, 0%, 100%);
	border: solid 1px hsl(203, 100%, 40%);
}

.standardView .buttonBlueWire:hover {
	color: hsl(203, 100%, 40%);
	background-color: hsl(203, 100%, 92%);
	border: solid 1px hsl(203, 100%, 40%);
}

.buttonGreenWire {
	color: hsl(158, 100%, 35%);
	background-color: hsl(0, 0%, 100%);
	border: solid 1px hsl(158, 100%, 35%);
}

.standardView .buttonGreenWire:hover {
	color: hsl(158, 100%, 35%);
	background-color: hsl(158, 100%, 92%);
	border: solid 1px hsl(158, 100%, 35%);
}



/* 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;
	top: 1px;
	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;
}



/* FILTER BUTTON */
div.filterButton, div.filterButtonActive {
	position: relative;
	/*top: 0px;*/
	height: 38px;
	width: 38px;
	/*background-color: hsl(203, 100%, 38%);*/
	border-radius: 5px;
	opacity: 0.75;
	cursor: pointer;
	pointer-events: auto;
	/*transition: top 0.25s ease;*/
}

.standardView div.filterButton:hover {
	background-color: hsla(0, 0%, 0%, 0.15);
}

div.filterButtonActive {
	height: 44px;
	/*top: 6px;*/
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	background-color: hsl(50, 100%, 70%);
	opacity: 1;
}

div.filterButtonFilterIndicatorOff, div.filterButtonFilterIndicatorOn {
	position: absolute;
	z-index: 9;
	left: 1px;
	top: 1px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	pointer-events: none;
}

div.filterButtonFilterIndicatorOn {
	background-color: hsl(160, 100%, 50%);
}

div.filterButtonCircleT, div.filterButtonCircleM, div.filterButtonCircleB {
	position: absolute;
	z-index: 2;
	left: 21px;
	top: 7px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: hsl(0, 0%, 0%);
	pointer-events: none;
}

div.filterButtonCircleM {
	left: 11px;
	top: 16px;
}

div.filterButtonCircleB {
	left: 19px;
	top: 25px;
}

div.filterButtonLineT, div.filterButtonLineM, div.filterButtonLineB {
	position: absolute;
	z-index: 1;
	left: 7px;
	top: 9px;
	width: 24px;
	height: 2px;
	border-radius: 1px;
	background-color: hsl(0, 0%, 0%);
	pointer-events: none;
}

div.filterButtonLineM {
	top: 18px;
}

div.filterButtonLineB {
	top: 27px;
}


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

.phoneView div.tileButtonPanel {
	margin-top: 10px;
}

div.tileButtonWrapper {
	display: inline-block;
	margin: 25px;
	font-size: 0px;
}

.phoneView div.tileButtonWrapper {
	display: block;
	margin: 25px 0px;
}

.tileButton {
	position: relative;
	display: inline-block;
	vertical-align: top;
	width: 200px;
	height: 200px;
	background-color: hsl(203, 100%, 38%);
	border-radius: 10px;
	overflow: hidden;
	cursor: pointer;
	pointer-events: auto;
}

.phoneView .tileButton {
	width: 150px;
	height: 150px;
}

.standardView .tileButton:hover {
	background-color: hsl(203, 100%, 48%);
}

div.tileButtonIcon {
	position: relative;
	margin-top: 25px;
	text-align: center;
	font-size: 0px;
}

.phoneView div.tileButtonIcon {
	margin-top: 20px;
}

img.tileButtonIcon {
	display: inline-block;
	width: 100px;
	height: 100px;
}

.phoneView img.tileButtonIcon {
	width: 80px;
	height: 80px;
}

div.tileButtonLabel {
	font-family: "StandardFontBold", "Arial", sans-serif;
	font-size: 22px;
	color: hsl(0, 0%, 100%);
	text-align: center;
	padding: 20px 0px;
}

.phoneView div.tileButtonLabel {
	font-size: 18px;
	padding: 15px 0px;
}



/* DISABLED */
.buttonDisabled {
	opacity: 0.35;
	filter: saturate(0%);
	pointer-events: none;
}

