.bottom-bar-background
{
	/* display: set by @media*/
	position: fixed;
	bottom: 0em;
	height: 4em;
	width: 100%;
	
	background-color: #3C3F42;
	background-image: linear-gradient(#3C3F42, #000000);
	background-image: -webkit-linear-gradient(#3C3F42, #000000); 
	background-image: -moz-linear-gradient(#3C3F42, #000000); 
	background-image: -ms-linear-gradient(#3C3F42, #000000); 
	background-image: -o-linear-gradient(#3C3F42, #000000); 
}

.bottom-bar
{
	/* top, bottom and height is set by @media */
	position: fixed;
	width: 100%;
	pointer-events: none;
}

.bottom-bar-outer-button-container
{
	text-align: center;
	user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	top: 0.2em;
	position: relative;
}

.bottom-bar-inner-button-container
{
	display: inline-block;
	pointer-events: auto; /** turn on click events for this one**/
}

.bottom-bar-inner-button-container-responsive
{
	/*display: set by @media*/
}

.betting-button-value
{
	margin: 0em;
	font-size: 0.8em;
	color: #FFFFFF;
	font-family: JMyriad;
	position: absolute;
	width: 100%;
	top: 16%;
}

.betting-button-description
{
	margin: 0em;
	font-size: 0.7em;
	color: #FFFFFF;
	font-family: JMyriad;
	position: absolute;
	bottom: 5%;
	width: 100%;
}

/*This is the button styling even if it's a label really*/
.betting-button-label
{
	display: block;
	width: 7em;
	height: 2.2em;
	font-size: 0.8em;
	font-family: JMyriad;
	cursor: pointer;
	overflow: hidden;
	position: relative;
	margin-left: 1px;
	margin-right: 1px;

	border: 0;
	border-radius: 4px;
	border-top-width: 1px;
	border-top-style: solid;
	border-bottom-width: 1px;
	border-bottom-style: solid;

	border-top-color: #99E6FF;
	border-bottom-color: #0070BD;
	
	background-color: #3ACEFF;
	background-image: linear-gradient(#3ACEFF, #0198FF);
	background-image: -webkit-linear-gradient(#3ACEFF, #0198FF); 
	background-image: -moz-linear-gradient(#3ACEFF, #0198FF); 
	background-image: -ms-linear-gradient(#3ACEFF, #0198FF); 
	background-image: -o-linear-gradient(#3ACEFF, #0198FF); 
	
	box-shadow: 0 1px 1px rgba(0,0,0,0.3);
	color: #FFFFFF;
}

.bottom-bar-button-checkbox
{
	display: none;
}

/*When the checkbox/button is checked use this style*/
.betting-button-label-checked
{
	margin-left: 0px;
	margin-right: 0px;
	border-radius: 4px;
	border-width: 1px;
	border-style: solid;
	border-color: rgba(51,51,51,0.4);
	
	border-top-color: #0098FF;
	border-bottom-color: #0070BD;
	
	background-color: #0070BD;
	background-image: linear-gradient(#0070BD, #0198FF);
	background-image: -webkit-linear-gradient(#0070BD, #0198FF); 
	background-image: -moz-linear-gradient(#0070BD, #0198FF); 
	background-image: -ms-linear-gradient(#0070BD, #0198FF); 
	background-image: -o-linear-gradient(#0070BD, #0198FF); 
	
	box-shadow: none;	
}

/*Text colors for when the checkbox/button is checked
"when the class is checked and the next element (+) is that class and a child with that class then set the css"
*/
.betting-button-label-checked .betting-button-value,
.betting-button-label-checked .betting-button-description
{
	color: #FFFFFF;
}

.betting-button-arrow-up,
.betting-button-arrow-down
{
	margin: 0em;
	font-size: 0.5em;
	font-family: JMyriad;
	position: absolute;
	bottom: 30%;
	right: 1em;
	color: #FFFFFF;
}

.betting-button-arrow-up
{
	display: none;
}

.betting-button-arrow-down
{
	display: block;
}

.betting-button-label-checked .betting-button-arrow-up
{
	display: block;
}

.betting-button-label-checked .betting-button-arrow-down
{
	display: none;
}

/*display set by media queries*/
.landscape-logo
{
	height: 1.6em;
	position: relative;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	margin-bottom: 0.2em;
	margin-left: 0.2em;
	margin-right: 0.2em;
}

/*display is set by media queries*/
.bottom-totalbet
{
	height: 0.8em;
	width: 100%;
	bottom: 3.2em;
	position: fixed;
	text-align: center;
}

.bottom-totalbet-item
{
	color: #FFFFFF;
	display: inline-block;
	font-size: 0.7em;
	bottom: 0.0em;
	position: relative;
}