/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}



.container {
	padding: 20px 5%
}

@media (min-width: 768px) and (orientation: landscape) {
	
	.container.padded-md {
		padding: 40px 32%
	}
	.container.padded-lg {
		padding: 100px 32%
	}
	
}



.flex {
	box-sizing: border-box;
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-ms-flex: 1 0 0;
	-webkit-box-flex: 1 0 0;
	flex: 1 0 0;
	margin-left: -5px;
	margin-right: -5px;
	-ms-flex-direction: row;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	flex-direction: row;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

@media (min-width: 768px) and (orientation: landscape) {
	
	.flex.margined-not-xs {
		margin: 0 20px
	}
	
}

.flex.md {
	margin-left: -12px;
	margin-right: -12px
}

.flex-vertical {
	-ms-flex-direction: column;
	-webkit-box-orient: vertical;
	flex-direction: column;
}

.flex-item {
	padding: 0 5px;
	-ms-flex: 1 0 0;
	-webkit-box-flex: 1;
	flex: 1 0 0;
}

.flex.md .flex-item {
	padding: 0 12px
}

.flex.auto .flex-item {
	flex: 1 1 auto
}

.flex-center {
	-ms-flex-pack: center;
	-webkit-box-pack: center;
	justify-content: center;
	text-align:center
}

.flex-between {
	-ms-flex-pack: justify;
	-webkit-box-pack: justify;
	justify-content:space-between
}

.flex-between .flex-item {
	flex-grow: 0;
	flex-basis: auto
}


















html,body {
	margin: 0;
	padding: 0;
	height: 100vh
}

body {
	background: #000;
	color: #ddd;
	font-family: 'Open Sans', sans-serif;
	line-height: 1.25;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

* { box-sizing: border-box }

img { max-width: 100% }










a {
    color: #0add23;
    text-decoration: none
}

a:active, a:hover {
	color: #71ed80;
    text-decoration: none
}

a.inherit {
	color: inherit
}

a.white {
	color: white
}

a.inherit:active, a.inherit:hover {
	text-decoration: underline
}

h1, h2 {
	margin-top: 0
}

h3 {
	margin: 5px 0 25px 0
}




hr {
	height: 1px;
	border: none;
	margin: 30px 0;
	background-color: #555
}














/*
	Site logo
*/
.site-logo.md {
	width: 60px
}























/*
	Buttons
*/
.button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display: inline-block;
	cursor: pointer;
	font-size: 1rem;
	line-height: 1;
	letter-spacing: 1px;
	text-align: center;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	padding: 10px 14px;
	border-radius: 4px;
	background: transparent;
	border: 1px solid #777;
	color: #eee;
	text-align: center;
	text-transform: uppercase;
	transition: all .15s
}

.button:hover,
.button:active {
	color: inherit;
	background-color: rgba(255,255,255, .2);
}

.button.enlarge:hover,
.button.enlarge:active {
	transform: scale(1.06);
	transition: all .15s
}

/* Sizes */
.button.xxs {
	font-size: 12px;
	padding: 8px 10px
}

.button.xs {
	font-size: 13px;
	padding: 9px 10px
}

.button.md {
	width: 100%
}

.button.lg {
	width: 100%;
	font-weight: bold;
	font-size: 1.05rem;
	padding: 12px 10px 13px 10px
}

.button.xl {
	width: 100%;
	font-weight: bold;
	font-size: 1.2rem;
	padding: 15px 12px;
	text-transform: uppercase
}

.button.xxl {
	width: 100%;
	font-weight: bold;
	font-size: 1.4rem;
	padding: 18px 15px 20px 15px;
	text-transform: uppercase
}

/* Tweaks */
.button.sharp {
	border-radius: 2px
}

.button.pill {
	border-radius: 200px
}

.button.full {
	width: 100%
}

.button.margined {
	margin: 0 0 5px 0
}

.button.bet-selection {
	position: relative;
	text-align: left;
	padding-right: 25px
}

.button.bet-selection strong {
	font-weight: normal
}

.button.bet-selection span {
	position: absolute;
	top: 0;
	right: 0;
	display: inline-block;
	width: 30px;
	height: 30px;
	line-height:30px;
	background-color: rgba(255,255,255, .15);
	font-weight: bold;
	text-align: center;
	border-radius: 50%
}

.button.selected {
	border-color: #0add23;
	background-color: rgba(0,0,0, .8);
}

.button.darken:active {
	filter: brightness(.7)
}

.button[disabled] {
	opacity: .6;
	cursor: not-allowed
}

/* Colours */
.button.primary {
	color: black;
	background: #0add23;
	border: 1px solid transparent
}

.button.positive {
	border: none;
	background: rgb(0,113,0);
	background: linear-gradient(0deg, rgba(0, 113, 0, 1) 0%, rgba(0,189,0,1) 100%);
	color: white
}

.button.attention {
	border: none;
	background: rgb(158,4,4);
	background: linear-gradient(0deg, rgba(158,4,4,1) 0%, rgba(255,0,0,1) 100%);
	color: white
}




























/*
	Site Nav
	Mobile: Bottom bar
	Desktop: Left bar
*/
#site-nav {
	position: fixed;
	z-index: 5;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 50px;
	background: black;
	box-sizing: border-box;
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-ms-flex: 0 1 auto;
	-webkit-box-flex: 0;
	flex: 0 1 auto;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-pack: justify;
	-webkit-box-pack: justify;
	justify-content: space-between;
	
	-ms-flex-direction: column;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
}

.site-nav-menu {
	margin: 0;
	padding: 0;
	list-style: none;
	position: relative;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 50px;
	background: black;
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-direction: row;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	flex-direction: row;
	justify-content: center
}

.site-nav-menu > li {
	-ms-flex: 1 0 auto;
	-webkit-box-flex: 0;
	flex: 1 0 auto;
}

.site-nav-menu > li.separator {
	display: none
}

.site-nav-menu > li > a {
	display: block;
	text-align: center;
	background: rgba(0,0,0, .4);
	width: 100%;
	height: 50px
}

.site-nav-menu > li > a:hover,
.site-nav-menu > li > a:active {
	
}

.site-nav-menu > li > a.selected {
	
}

.site-nav-menu img {
	width: 35px;
	opacity: .5;
	margin-top: 7px
}

.site-nav-menu > li > a:hover img,
.site-nav-menu > li > a:active img {
	opacity: 1
}

.site-nav-menu > li > a.on img {
	opacity: 1
}

.site-nav-menu > li > a.site-nav-menu-home > img {
	margin: 14px 0
}

@media (min-width: 768px) and (orientation: landscape) {
	
	#site-nav {
		width: 80px;
		height: 100%;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch
	}
	
	.site-nav-menu {
		height: auto
	}
	
	.site-nav-menu:last-child {
		margin-bottom: 20px
	}
	
	.site-nav-menu > li {
		-ms-flex: 0 0 auto;
		-webkit-box-flex: 0;
		flex: 0 0 auto;
	}
	
	.site-nav-menu > li.separator {
		display: list-item;
		margin: 20px 0;
		width: 65%
	}
	
	.site-nav-menu > li.separator.divided {
		border-bottom: 1px solid rgba(255,255,255, .28);
	}
	
	.site-nav-menu > li > a {
		border-left: 3px solid transparent;
		border-right: 3px solid transparent;
		width: 80px;
		height: auto;
		padding: 16px 0;
	}
	
	.site-nav-menu > li > a.selected {
		border-left-color: #0add23
	}
	
	.site-nav-menu img {
		margin-top: 0
	}
	
	.site-nav-menu > li > a.site-nav-menu-home img {
		opacity: 1
	}
	
}












/*
	Site Menu
	Mobile: Main body content
	Desktop: Left bar, after Site Nav
*/
#site-menu {
	position: fixed;
	z-index: 9;
	top: 0;
	left: 100%;
	width: 100%;
	padding: 0 0 50px 0;
	background-color: #181b31;
	height: 100%;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center bottom;
	transition: transform .3s
}

#site-menu.show {
	transform: translateX(-100%);
	transition: transform .5s
}

.menu-title {
	font-size: .95em;
	margin: 0 0 10px 0
}

.menu-subtitle {
	font-size: .8em;
	margin: 0 0 35px 0
}

.menu-subtitle small {
	display: block;
	color: #aaa;
	font-size: 1em;
	margin-top: 4px
}

.toggle-site-menu {
	float: right;
	border: 0;
	padding: 0 8px;
	margin: 0 0 0 20px;
	font-size: 1.5em;
	min-width: 35px;
	height: 35px;
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: center
}

.toggle-site-menu > small {
	font-size: .6em;
	display: inline-block;
	margin-right: 8px
}

@media (min-width: 768px) and (orientation: landscape) {
	
	#site-menu {
		position: fixed;
		top: 0;
		left: 80px;
		width: 23%;
		height: 100%;
		padding: 0
	}
	
	#site-menu.show {
		transform: none
	}
	
	#site-menu .container.scrollable {
		min-height: 0;
		height: calc(100% - 105px);
		overflow-y: auto;
		-webkit-overflow-scrolling: touch
	}
	
}



/*
	Site footer
	Mobile: Inline
	Desktop: Fixed to bottom of #site-menu
*/
#site-side-footer {
	text-align: center;
	padding-bottom: 60px
}

#site-side-footer .logo {
	height: 25px;
	width: auto;
	margin: 0 2px
}

@media (min-width: 768px) and (orientation: landscape) {
	
	#site-side-footer {
		position: fixed;
		z-index: 10;
		bottom: 0;
		padding-bottom: 0;
		left: 80px;
		width: 23%;
		height: auto
	}
	
	#site-side-footer .logo {
		height: 19px;
		opacity: .6
	}
	
	#site-side-footer .logo:hover {
		opacity: 1
	}
	
}

/*
	Main site footer
	Mobile: Inline
	Desktop: Inline
*/
#site-footer {
	background-color: #262626;
	color: #aaa;
	margin-top: 200px;
	font-size: .9em;
	line-height: 1.3
}

.footer-nav {
	margin: 0 0 5px 0
}

.footer-nav.sm {
	font-size: .9em
}

.footer-icons {
	text-align: center
}

.footer-icon {
	height: 16px;
	width: auto;
	margin: 12px 5px;
}

.footer-icon.social {
	fill: white;
	height: 32px
}

@media (min-width: 768px) and (orientation: landscape) {
	
	#site-footer {
		font-size: .8em;
		padding: 0 25px
	}
	
}










/*
	Site Content. Named betrace for tidy URL.
	Mobile: Appears after selecting an item from site-menu
	Desktop: Main body content
*/
#betrace {
	min-height: 100vh;
	padding-bottom: 80px
}

@media (min-width: 768px) and (orientation: landscape) {
	
	#betrace {
		display: block;
		width: 100%;
		padding-left: calc(23% + 80px);
		padding-bottom: 0;
		background: radial-gradient(at 65% bottom, rgba(46, 46, 46, 1), rgba(0,0,0,1) 60%);
		background-attachment: fixed
	}
	
}












/*
	Content Head
	Header bar on content areas
*/
.content-head {
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	padding: 18px 15px;
	justify-content: center;
	align-content: center;
	align-items: center
}

.content-head.separated {
	border-bottom: 1px solid rgba(255,255,255, .22)
}

.content-head > * {
	flex: 1 1 auto;
	margin: 0 5px
}

.content-head-title {
	display: block;
	font-size: .8em;
	color: #999;
	margin: 0 0 2px 0
}

.content-head-lead {
	
}

.head-site {
	display: inline-block;
	font-size: .9em;
	letter-spacing: 4px;
	vertical-align: middle;
	font-weight: normal;
	color: #aaa;
	text-transform: uppercase;
	padding: 10px 0 10px 0;
	margin-bottom: 20px;
	border-bottom: 1px solid rgba(255,255,255, .34)
}

.head-site > img {
	width: auto;
	height: 11px
}

.head-title {
	margin: 0 0 20px 0;
	font-size: 1.4em;
	vertical-align: middle
}

@media (min-width: 768px) and (orientation: landscape) {
	
	.content-head {
		height: 79px;
	}
	
	.head-site {
		padding: 0;
		margin: 0;
		border-bottom: none
	}
	
	.head-title {
		display: inline-block;
		margin: 0 0 0 8px;
		padding: 0 0 0 16px;
		border-left: 1px solid rgba(255,255,255, .28);
		line-height: 41px
	}
	
}



























/*
	Page Menu
	List.
*/
.page-menu {
	margin: 0;
	padding: 0;
	list-style: none;
	max-height: 100%;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch
}

.page-menu > li {
	margin: 0;
	padding: 0;
	display: block
}

.page-menu > li > a {
	display: block;
	padding: 12px 0;
	font-size: 1.4em;
	color: #999
}

.page-menu > li > a:hover,
.page-menu > li > a:active,
.page-menu > li > a.selected {
	color: #fff
}




























/*
	Game List
	Mobile: As-is
	Desktop: Extra padding on sides
*/
.game-list {
	min-height: 50%;
	transition: opacity .5s
}

.game-list.loading {
	opacity: .1;
	transition: opacity .15s
}

.game-list-item {
	color: inherit !important;
	line-height: 1.5;
	background: rgb(70,30,84);
	background: linear-gradient(90deg, rgba(70,30,84,1) 0%, rgba(54,62,76,1) 48%);
	padding: 12px 5px 12px 15px;
	border-radius: 5px;
	cursor: pointer;
	display: flex;
	align-items: center;
	margin: 10px 0;
	transform: scale(1);
	transition: transform .3s, opacity .3s
}

.game-list-item.match {
	background: rgb(1,39,78);
	background: linear-gradient(90deg, rgba(1,39,78,1) 0%, rgba(54,62,76,1) 48%);
}

.game-list-item.positive {
	background: rgb(19,73,10);
	background: linear-gradient(90deg, rgba(19,73,10,1) 0%, rgba(54,62,76,1) 48%);
}

.game-list-item.attention {
	background: rgb(60,11,11);
	background: linear-gradient(90deg, rgba(60,11,11,1) 0%, rgba(54,62,76,1) 48%);
}

.game-list-item.progress {
	position: relative;
	background: rgba(54,62,76,1);
	overflow: hidden
}

.game-list-item.progress > .progress-bar {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgb(158,4,4);
	background: linear-gradient(0deg, rgba(158,4,4,1) 0%, rgba(255,0,0,1) 100%);
	transform: scaleX(0);
	transform-origin: left;
	z-index: -1;
	transition: transform 1.5s
}

.game-list-item.progress.positive > .progress-bar {
	background: rgb(0,113,0);
	background: linear-gradient(0deg, rgba(0, 113, 0, 1) 0%, rgba(0,189,0,1) 100%);
}

.game-list-item.selected {
	border: 1px solid #0add23;
	filter: brightness(1.5)
}

.game-list .game-list-item:active {
	filter: brightness(.8)
}

.game-list-item .icon {
	flex-basis: 6%;
	margin-right: 10px
}

.game-list-item .icon img {
	display: block;
	vertical-align: middle
}

.game-list-item .buy-in {
	flex-basis: 20%;
	color: #fa9aff;
	font-size: 1.3em;
	line-height: 1.2;
	font-weight: bold
}

.game-list-item.match .buy-in {
	color: #00ffe7
}

.game-list-item .buy-in small {
	font-size: .6em;
	opacity: .7;
	font-weight: normal;
	display: block
}

.game-list-item .name {
	flex-basis: 30%;
	flex-grow: 1;
	flex-shrink: 0;
	font-size: 1em;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden
}

.game-list-item .name small {
	font-size: .8em;
	opacity: .7;
	font-weight: normal;
	display: block
}

.game-list-item .players {
	flex-basis: 17%;
	flex-grow: 0;
	flex-shrink: 0;
	font-size: 1.2em;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden
}

.game-list-item .players small {
	font-size: .6em;
	opacity: .7;
	font-weight: normal;
	display: block
}

.game-list-item .date {
	flex-basis: 17%;
	flex-grow: 0;
	flex-shrink: 0;
	font-size: 1.2em;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden
}

.game-list-item .date small {
	font-size: .6em;
	opacity: .7;
	font-weight: normal;
	display: block
}

.game-list-item .info {
	flex-basis: 20%;
	flex-grow: 0;
	flex-shrink: 0;
	font-size: 1em;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden
}

.game-list-item .info.lg {
	flex-basis: 25%;
	flex-grow: 1
}

.game-list-item .info.md {
	flex-basis: 20%
}

.game-list-item .info.sm {
	flex-basis: 14%
}

.game-list-item .info.shaded {
	background: rgba(0,0,0, .25)
}

.game-list-item .info small {
	font-size: .75em;
	opacity: .7;
	font-weight: normal;
	display: block
}

@media (min-width: 768px) and (orientation: landscape) {
	
	.game-list {
		
	}
	
	.game-list-item {
		padding: 0 0 0 22px;
		font-size: 1.04em
	}
	
	.game-list-item.padded {
		padding-top: 12px;
		padding-bottom: 12px
	}
	
	.game-list:hover .game-list-item {
		opacity: .7;
		transition: transform .3s, opacity .3s
	}
	
	.game-list .game-list-item:hover {
		color: inherit;
		transform: scale(1.04);
		opacity: 1;
		transition: transform .3s, opacity .3s
	}
	
	.game-list-item .icon {
		flex-basis: 3%;
		margin-right: 20px
	}
	
	.game-list-item .buy-in {
		flex-basis: 12%;
		font-size: 1.9em
	}
	
	.game-list-item .buy-in small {
		font-size: .5em;
	}
	
	.game-list-item .name {
		font-size: 1.2em
	}
	
	.game-list-item .name small {
		font-size: .6em;
	}
	
	.game-list-item .info {
		padding: 12px 7px
	}
	
	.game-list-item .info small {
		font-size: .8em;
	}
	
}


















/*
	Promo tiles.
*/
.promos {
	
}

.promos .promo.sm {
	flex-basis: 33%
}

.promos .promo.lg {
	flex-basis: 67%
}

.promos .promo-img {
	border-radius: 12px
}

@media (min-width: 768px) and (orientation: landscape) {
	
	
	
}



























/*
	Modals. Example usage: Join game confirmation
	Mobile: Slides down from top. Mostly full width.
	Desktop: Less width, position info on right.
*/
.modal {
	position: fixed;
	z-index: 20;
	top: 0;
	left: 15px;
	right: 15px;
	border-bottom-left-radius: 6px;
	border-bottom-right-radius: 6px;
	box-shadow: 0 4px 10px 4px rgba(0,0,0, .5);
	min-height: 50%;
	background-color: #eee;
	transform: translateY(-105%);
	transition: transform .4s
}

.modal.show {
	transform: translateY(0);
	transition: transform .5s
}

.modal-close-btn {
	position: absolute;
	top: 15px;
	right: 15px;
	width: 40px;
	height: 40px;
	border-radius: 20px;
	font-size: 25px;
	text-align: center;
	line-height: 38px;
	background: rgba(255,255,255, .2);
	color: white
}

.modal-close-btn:hover {
	color: white;
	background-color: rgba(255,255,255, .4)
}

.modal-detail {
	padding: 20px 25px;
	color: black;
	text-align: center
}

.modal-detail-container {
	height: 350px
}

.modal-info {
	background-color: rgb(54,62,76);
	color: white;
	padding: 20px 25px 0px 25px
}

.modal-info-item {
	display: inline-block;
	width: 49%;
	text-align: center;
	font-size: .9em
}

.modal-info-title {
	display: block;
	font-size: .9em;
	text-transform: uppercase;
	opacity: .7;
	margin: 0 0 2px 0
}

.modal-info-value {
	display: block;
	font-size: 1.3em;
	font-weight: bold;
	margin: 0 0 20px 0
}

.modal-title {
	font-size: 1.6em;
	letter-spacing: 1px;
	margin: 0 0 15px 0
}

.modal-lead {
	font-size: 1.2em;
	color: #555;
	margin: 0 0 40px 0
}

.modal-value-block {
	flex: 0 0 17%;
	font-size: .8em
}

.modal-value-title {
	font-size: .9em;
	text-transform: uppercase;
	font-weight: bold;
	color: #555;
	margin: 0 0 2px 0;
	display: block
}

.modal-value-buy-in {
	font-size: 3em;
	font-weight: bold;
	color: #cf0909;
	margin: 0 0 15px 0;
	display: block;
}

.modal-value-win {
	font-size: 1.7em;
	font-weight: bold;
	color: black;
	margin: 0 0 15px 0;
	display: block
}

.modal-text {
	margin: 0 0 8px 0
}

.modal-small-print {
	font-size: .9em;
	color: #555;
	margin: 15px 0 0 0
}

@media (min-width: 768px) and (orientation: landscape) {
	
	.modal {
		left: 18%;
		right: 18%;
		padding-right: 18%
	}
	
	.modal-detail {
		padding: 35px 25px
	}
	
	.modal-detail-container {
		height: 370px
	}
	
	.modal-info {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		width: 28%;
		padding: 35px 25px 15px 35px;
		border-bottom-right-radius: 6px
	}
	
	.modal-info-item {
		display: block;
		width: 100%;
		text-align: left;
		font-size: 1em
	}
	
	.modal-value-buy-in {
		font-size: 4em
	}
	
	.modal-info-item.foot {
		position: absolute;
		bottom: 0;
		width: 100%
	}
	
	.modal-info-value {
		margin-bottom: 35px
	}
	
}



/*
	Modal which covers Site Menu
*/
.modal-site-menu {
	position: fixed;
	z-index: 10;
	top: 0;
	left: 0;
	width: 100%;
	min-height: 30%;
	max-height: 90%;
	border-bottom-left-radius: 6px;
	border-bottom-right-radius: 6px;
	background-color: rgb(54,62,76);
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	transform: translateY(-105%);
	transition: transform .4s
}

.modal-site-menu.show {
	transform: translateY(0);
	transition: transform .5s
}

@media (min-width: 768px) and (orientation: landscape) {
	
	.modal-site-menu {
		left: 80px;
		width: 23%
	}
	
}




















/*
	Table design
*/
.table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 50px
}

.table tr {
	background-color: rgba(0,0,0, .4);
	opacity: 1;
	transition: opacity .2s
}

.table.row-select tbody:hover tr {
	opacity: .6;
	transition: opacity .2s
}

.table.row-select tbody tr:hover {
	opacity: 1;
	filter: brightness(2);
	background-color: #121423
}

.table tr:nth-child(even) {
	background-color: transparent
}

.table th {
	background-color: #181b31
}

.table th,
.table td {
	padding: 7px 12px;
	text-align: left;
}

.table th.right,
.table td.right {
	text-align: right
}

.table .controls {
	opacity: 0;
	white-space: nowrap
}

.table tbody tr:hover .controls {
	opacity: 1
}

.table.row-select tbody tr:hover {
	cursor: pointer
}

@media (min-width: 768px) and (orientation: landscape) {
	
	.modal-site-menu .table {
		font-size: .9em
	}
	
}






































/*
	Bet selections
*/
.market-options {
	margin: 0 0 35px 0
}

.market-result {
	margin: 0 0 10px 0;
	border: 1px solid #555;
	border-radius: 4px;
	padding: 5px 8px;
	border: 1px solid #0add23;
	background-color: rgba(0,0,0, .8);
}

.market-result:empty {
	display: none
}

























/*
	Menu: Tabbed
*/
.tabbed-menu {
	margin: 0;
	padding: 0;
	list-style: none;
	text-align: center
}

.tabbed-menu > li {
	margin: 0;
	padding: 0;
	display: inline-block
}

.tabbed-menu > li > a {
	display: block
}































/*
	Forms and inputs
*/
.form-item {
	margin: 0 0 20px 0
}

.label {
	display: block;
	font-size: .9em;
	text-align: left;
	color: #ccc;
	margin: 0 0 6px 0
}

.input {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font-size: 16px;
	display: block;
	width: 100%;
	line-height: 1;
	padding: 11px 15px;
	border-radius: 5px;
	border: none;
	background: #ddd;
	color: black
}

.input:focus {
	background: #fff
}

.input.inline {
	display: inline-block;
	width: auto;
	min-width: 150px
}

.input.inline.sm {
	width: 75px
}

select.input {
	background-image: linear-gradient(45deg, transparent 50%, gray 50%), linear-gradient(135deg, gray 50%, transparent 50%), linear-gradient(to right, #ccc, #aaa);
	background-position: calc(100% - 15px) 18px, calc(100% - 10px) 18px, calc(100% - 30px) 9px;
	background-size: 5px 5px, 5px 5px, 1px 1.5em;
	background-repeat: no-repeat;
	padding-top: 13px;
	padding-bottom: 15px;
	padding-right: 10px
}

.form-notification {
	padding: 18px;
	background: #444;
	border-radius: 10px;
	margin: 0 0 20px 0;
	border: 4px solid #888;
	font-weight: bold
}

.form-notification h4 {
	display: inline-block;
	padding-bottom: 4px;
	margin: 0 0 14px 0;
	border-bottom: 1px solid #888;
	font-weight: bold;
	font-size: 1.3em
}

.form-notification p {
	margin: 0
}

.form-notification.error { background: #fcdbdb; border-color: #b21717; color: #b21717 }
.form-notification.error h4 { border-color: #b21717 }


















/*
	Toast
*/
.toast {
	position: fixed;
	z-index: 20;
	top: 0;
	left: 0;
	right: 0;
	font-size: 1.2em;
	text-align: center;
	padding: 20px;
	box-shadow: 0 3px 6px 2px rgba(0,0,0, .5);
	border-bottom-left-radius: 6px;
	border-bottom-right-radius: 6px;
	opacity: 0;
	transform: translateY(-108%);
	transition: all .5s
}

.toast.show {
	opacity: 1;
	transform: translateY(0);
	transition: all .2s
}

.toast.positive {
	background: rgb(0,113,0);
	background: linear-gradient(0deg, rgba(0,113,0,1) 0%, rgba(0,189,0,1) 100%);
	color: white
}

.toast.attention {
	background: rgb(158,4,4);
	background: linear-gradient(0deg, rgba(158,4,4,1) 0%, rgba(255,0,0,1) 100%);
	color: white
}

@media (min-width: 768px) and (orientation: landscape) {
	
	.toast {
		left: 10%;
		right: 10%
	}
	
}


















/*
	Loading spinner
*/
.lds-ring {
	display: inline-block;
	position: relative;
	width: 80px;
	height: 80px
}
.lds-ring div {
	box-sizing: border-box;
	display: block;
	position: absolute;
	width: 64px;
	height: 64px;
	margin: 8px;
	border: 8px solid #fff;
	border-radius: 50%;
	animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
	border-color: #000 transparent transparent transparent
}
.lds-ring.white div {
	border-color: #fff transparent transparent transparent
}
.lds-ring div:nth-child(1) {
	animation-delay: -0.45s
}
.lds-ring div:nth-child(2) {
	animation-delay: -0.3s
}
.lds-ring div:nth-child(3) {
	animation-delay: -0.15s
}
@keyframes lds-ring {
	0% {
		transform: rotate(0deg)
	}
	100% {
		transform: rotate(360deg)
	}
}










.busy {
	animation: busy 1s infinite
}

@keyframes busy {
	0% { opacity: 1 }
	50% { opacity: .5 }
	100% { opacity: 1 }
}































.text-left { text-align: left }
.text-center { text-align: center }
.text-right { text-align: right }

.text-positive { color: #0add23 }
.text-attention { color: #de0b0b }

.hidden { display: none !important }
.invisible { visibility: hidden }










@media (min-width: 768px) and (orientation: landscape) {
	
	.only-xs { display: none !important }
	
}

@media (max-width: 767px) and (orientation: portrait) {
	
	.not-xs { display: none !important }
	
}





/*
	Tablets, iPads (landscape), or higher
*/
@media (min-width: 768px) and (orientation: landscape) {
	
}
