/*! 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}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:bold}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}

* { box-sizing: border-box }
img { max-width: 100%; height: auto; }

:root {
	
	--font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
	
	--background-color: rgb(255,255,255);
	--text-color: rgb(29,29,31);
	--text-color-muted: #778;
	--accent-color: #2abd14;
	--tint-color: #f2f2f4;
	--tint-color-darker: #d1d1d3;
	
	--header-background-color: #D9DD00;
	--header-backdrop-filter: blur(20px) saturate(140%);
	--header-highlight-color: rgba(29,29,31, .2);
	--header-border: 1px solid rgba(0,0,0, .2);
	
	--footer-background-color: #f1f2f5;
	--footer-border: 2px solid #ddd;
	
	--button-color: #fff;
	--button-background-color: #889;
	--button-prominent-color: #fff;
	--button-prominent-background-color: #2abd14;
	--button-positive-color: #fff;
	--button-positive-background-color:rgb(65, 184, 65);
	
	--main-border-color: #ccc;
	--input-border-color: #ccc;
	
	--link-highlight-background-color: rgba(0,0,0, .1);
	
	--pad-site: 0 20px;
	--icon-border-radius: 14%;
	
}

.color {
	color: rgb(65, 184, 65)
}

@media screen and (min-width: 601px) {
	:root {
		--pad-site: 0 20%;
	}
}


#theme-toggle-to-light {
	display: none
}

.dark #theme-toggle-to-light {
	display: initial
}

.dark #theme-toggle-to-dark {
	display: none
}








html {
	font-size: 62.5%;
	font-family: var(--font-family);
	background-color: var(--background-color);
	scroll-behavior: smooth;
}

body {
	font-size: 1.5rem;
	color: var(--text-color);
	background-color: var(--background-color);
}

@media screen and (min-width: 601px) {
	body {
		font-size: 1.7rem;
	}
}

a {
	color: var(--accent-color);
}

a.inherit-color {
	color: inherit;
	text-decoration: none;
}

h1 {
	font-size: 3.2rem;
	margin-top: 0;
	margin-bottom: 1em;
}

h2 {
	font-size: 22px;
	margin-top: 0;
	margin-bottom: .75em;
}

h3 {
	font-size: 20px;
	margin-top: 0;
	margin-bottom: .75em;
}

p {
	line-height: 1.6em;
	margin: 1em 0;
}

.lead {
	font-size: 23px;
	line-height: 35px;
	font-weight: 400;
	letter-spacing: 0.012em;
	margin-top: 32px;
	margin-bottom: 62px;
}

.lead small {
	display: block;
	font-size: .5em;
	line-height: 1.4em;
	margin-top: 10px;
}

@media screen and (min-width: 993px) {
	h1 {
		font-size: 3.8rem;
	}
	h2 {
		font-size: 2.7rem;
	}
	.lead {
		font-size: 2.8rem;
	}
}

.flex {
	display: flex;
	flex-wrap: wrap;
}

.flex .col {
	flex: 1;
	flex-basis: 100%;
	margin-bottom: 30px;
}

@media screen and (min-width: 601px) {
	.flex {
		flex-wrap: nowrap;
	}
}






.accent {
	color: var(--accent-color);
}

.btn,
.label {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display: inline-block;
	font-size: 14px;
	letter-spacing: .5px;
	line-height: 1em;
	border: none;
	border-radius: 8px;
	margin: 1px;
	padding: .75em 1.5em;
	background-color: var(--button-background-color);
	color: var(--button-color);
	text-decoration: none;
	text-align: center;
	cursor: default;
}

.btn.small,
.label.small {
	font-size: 1.2rem;
	padding: .5em 1em;
}

.btn:hover {
	filter: brightness(125%);
}

.btn.prominent {
	background-color: var(--button-prominent-background-color);
	color: var(--button-prominent-color);
}

.btn.positive,
.label.positive {
	background-color: var(--button-positive-background-color) !important;
	color: var(--button-positive-color);
}

.btn img {
	width: auto;
	height: 1em;
}


























#header-site {
	position: fixed;
	z-index: 9;
	top: 0;
	left: 0;
	width: 100%;
	height: 48px;
	display: flex;
	align-items: center;
	background-color: var(--header-background-color);
	-webkit-backdrop-filter: var(--header-backdrop-filter);
	padding: var(--pad-site);
	border-bottom: var(--header-border);
}

#nav-home {
	flex: 0 0 50%;
	color: inherit;
	font-size: 20px;
	font-weight: 700;
	text-decoration: none;
	color: var(--accent-color);
}

#nav-home img {
	width: auto;
	height: 1.5em;
}

#nav-header-menu {
	display: none;
	flex: 1 0 auto;
}

#nav-search {
	display: none;
	flex: 0 1 220px;
	width: 220px;
}

#nav-tools {
	display: flex;
	flex-grow: 1;
	text-align: right;
	align-items: center;
	justify-content: end;
}

.banner-header #nav-tools {
	position: absolute;
	top: 20px;
	left: 20px;
}

.nav-tool {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display: inline-block;
	border: none;
	background: none;
	width: 44px;
	height: 44px;
	padding: 8px;
	border-radius: 50%;
}

.nav-tool:hover {
	background-color: var(--link-highlight-background-color);
}

.dark .nav-tool img {
	filter: invert(1);
}

@media screen and (min-width: 993px) {
	#header-site {
		min-height: 54px;
		height: auto;
	}
	#nav-home {
		flex: 0 0 16%;
	}
	#nav-header-menu,
	#nav-search {
		display: block;
	}
}

#nav-search-input {
	width: 100%;
	height: 30px;
	border-radius: 15px;
	border: none;
	background-color: var(--background-color);
	border: 1px solid var(--input-border-color);
	padding: 0 15px;
	font-size: 16px;
}

#nav-header-menu ul {
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none;
}

#nav-header-menu ul li {
	flex: 0 0 auto;
	margin-left: 15px;
	margin-right: 15px;
	border-top-width: 3px;
	border-top-style: solid;
	border-top-color: transparent;
	border-bottom-width: 3px;
	border-bottom-style: solid;
	border-bottom-color: transparent;
}

#nav-header-menu ul li:first-child {
	margin-left: 0;
}

#nav-header-menu ul li a {
	display: block;
	height: 48px;
	line-height: 48px;
	margin: 0;
	padding: 0;
	color: var(--text-color-muted);
	font-weight: 400;
	text-decoration: none;
}

#nav-header-menu ul li:hover {
	border-bottom-color: var(--header-highlight-color);
}

#nav-header-menu ul li.active {
	border-bottom-color: var(--accent-color);
}

















.banner-header {
	position: absolute;
	width: 100%;
	padding: 20px;
	text-align: center;
}

.banner {
	padding-top: 90px;
}

.banner {
	display: flex;
	background-image: url('/media/img/banner-bg-06.png');
	background-position: right bottom;
	background-repeat: no-repeat;
	background-size: cover;
	height: 140px;
	padding: 0 20px;
}

.banner-eyebrow {
	display: block;
	margin-bottom: 5px;
}

.banner-title {
	display: block;
	font-weight: 700;
	font-size: 2.6rem;
	margin-bottom: 30px;
}

.banner-title small {
	display: block;
	font-size: .62em;
	margin-top: 4px;
}

@media screen and (min-width:601px) {
	.banner-title small {
		font-size: .65em;
	}
}

.banner-header #site-logo {
	width: 120px;
}

.flex {
	display: flex;
	gap: 30px;
	width: 100%;
}

@media screen and (max-width: 600px) {
	.flex-em {
		flex-wrap: nowrap;
		gap: 0px;
		padding-top: 40px;
	}
	.flex-em .col:first-child {
		flex-basis: 24%;
		width: 24%;
		max-width: 24%;
		flex-shrink: 0;
	}
	.flex-em h2 {
		font-size: 17px;
	}
	.flex-em .line-divider {
		width: 190px;
	}
	.flex-em .box.fixed-box {
		width: 190px;
		padding: 8px;
		font-size: 1.5rem;
	}
	.flex-em .fixed-box-date,
	.flex-em .fixed-box-terms {
		width: 190px;
	}
	.flex-em .lead {
		font-size: 18px;
		line-height: 28px;
	}
}

.flex.bottom {
	align-items: end;
	justify-content: center;
}

.flex .col {
	flex: 1 1 auto;
}

.flex .col.third {
	flex-basis: 100%;
	width: 100%;
}

.flex.banner-features {
	position: relative;
	top: auto;
	flex-wrap: wrap;
	justify-content: space-between;
}

.flex .col.with-ball {
	position: relative;
	flex-basis: 44%;
	width: 44%;
	flex-grow: 0;
	flex-shrink: 0;
}

.with-ball .content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	color: white;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.with-ball img {
	vertical-align: middle;
}

.with-ball .content strong {
	display: block;
	font-size: 3rem;
	line-height: 1;
	text-shadow: 0 2px 2px rgba(0,0,0, .75);
}

.with-ball .content span {
	
}

.ball-divider {
	display: block;
	margin: 8px 0;
	width: 50%;
	height: 4px;
	box-shadow: 0 2px 2px 0px rgba(0,0,0, .5);
	background-color: #a6ec48;
}

.line-divider {
	display: block;
	margin: 8px 0;
	width: 300px;
	height: 4px;
	box-shadow: 0 2px 2px 0px rgba(0,0,0, .5);
	background-color: #a6ec48;
}

.box.fixed-box {
	margin: 0 0 15px 0;
	padding: 12px;
	width: 300px;
	font-size: 2.3rem;
	font-weight: bold;
}

.fixed-box-date {
	display: block;
	font-size: .8em;
	margin: 0 0 15px;
	text-align: center;
	width: 300px;
}

.fixed-box-terms {
	display: block;
	font-size: .7em;
	line-height: 1.2;
	margin: 0 0 15px;
	text-align: left;
	width: 300px;
}

.spacer-for-small {
	padding-top: 180px !important;
}

.banner-spacer-for-small {
	padding-top: 155px !important;
}

@media screen and (min-width: 601px) {
	
	.banner-header #site-logo {
		width: 200px;
	}
	
	.banner {
		background-repeat: no-repeat;
		background-size: contain;
		height: 60vh;
		padding: var(--pad-site);
		padding-top: 60px;
		background-size: cover;
	}
	.banner-eyebrow {
		margin-top: 10vh;
		font-size: 2.1rem;
	}
	.banner-title {
		font-size: 4rem;
	}
	.flex .col.third {
		flex-basis: 33.333%;
		width: 33.333%;
	}
	.flex .col.with-ball {
		flex-basis: 20%;
		width: 20%;
	}
	.flex.banner-features {
		top: auto;
	}
	.spacer-for-small {
		padding-top: 0 !important;
	}
	.banner-spacer-for-small {
		padding-top: 0 !important;
	}
	
}






















.container {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	padding: var(--pad-site);
}

#side-nav {
	position: fixed;
	top: 0;
	width: 80%;
	height: 0;
	overflow: auto;
}

main {
	padding-top: 90px;
	width: 100%;
	flex-basis: 100%;
}

aside {
	width: 100%;
	flex-basis: 100%;
}

@media screen and (min-width: 993px) {
	
	aside {
		padding-top: 100px;
	}
	
}

























.scroll-sm {
	width: 100vw;
	margin-left: -20px;
	margin-right: -20px;
	padding: 15px 20px;
	white-space: nowrap;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}












.box {
	background: linear-gradient(rgb(255, 255, 36), rgb(219, 219, 0));
	border-radius: 15px;
	padding: 20px;
	text-align: center;
	max-width: 400px;
	margin: 30px auto 0 auto;
}

.box h2 {
	font-size: 2.5rem;
	margin: 0 0 10px 0;
}

.box .price {
	font-size: 3.2rem;
	font-weight: 900;
	margin: 0 0 1px 0;
}

.box .discount {
	display: block;
	margin: 0 0 20px 0;
	font-weight: 600;
	font-size: 1.4rem;
}

ul.benefits {
	list-style: none;
	margin: 0 0 30px 0;
	padding: 0;
}

ul.benefits li {
	margin: 0;
	padding: 0;
	font-size: 1.5rem;
	line-height: 1.4;
}

.small {
	display: block;
	margin-top: 10px;
	font-size: 11px;
}

@media screen and (min-width:601px) {
	.small {
		font-size: 1.2rem;
	}
	.box {
		max-width: 500px;
	}
}

.box.vertical small {
	display: block;
	text-transform: uppercase;
	font-size: .5em;
	line-height: 1;
	margin: 0 0 15px 0;
}

.label {
	display: inline-block;
	color: white;
	text-shadow: 0 0 3px rgba(0,0,0,1);
	margin: 0 0 20px 0;
	background: none;
	padding: 0;
	font-size: 1.4rem;
	font-weight: bold;
}

.box hr {
	margin: 30px 0;
	border: none;
	height: 1px;
	background: rgba(0,0,0, .2);
}

.box label {
	display: block;
	margin: 20px 0;
}

@media screen and (min-width: 993px) {
	.box.narrow {
		margin-left: auto;
		margin-right: auto;
		max-width: 350px;
	}
	.box.horiz .price {
		float: left;
		font-size: 3em;
		height: 100px;
	}
	.box.horiz .price {
		text-align: center;
		line-height: 1.1;
		margin-top: 15px;
	}
	.box.horiz .price small {
		display: block;
		font-size: .4em;
		line-height: 1;
		text-transform: uppercase;
		letter-spacing: 1px;
	}
}








.example-prizes {
	margin: 50px 0;
	font-size: .8em;
}

.example-row {
	padding: 1em 0;
	border-bottom: 1px solid #ddd;
}

.example-row span {
	display: inline-block;
	margin: 0 15px;
	font-weight: bold;
	font-size: 1.4rem;
	min-width: 60px;
}

.example-row span:first-child {
	text-align: left;
	justify-content: start;
}

.example-row span:last-child {
	text-align: right;
	justify-content: end;
}

.container.block {
	display: block;
}

h2 small {
	display: block;
	font-size: .6em;
	line-height: 1.3em;
}

@media screen and (min-width: 993px) {
	.example-row span {
		font-size: 1.9rem;
		min-width: 120px;
	}
}















.spacer {
	height: 80px;
}

.shadow-spacer {
	margin: 60px 0;
	height: 20px;
	background: white;
	box-shadow: 0 4px 3px 1px rgba(0,0,0, .2);
}

.shadow-spacer.only-sm {
	margin: 20px 0 5px 0;
	position: relative;
	top: 170px;
}

@media screen and (min-width: 601px) {
	.shadow-spacer.only-sm {
		display: none;
	}
}






.third-party-logo {
	width: auto;
	height: 40px;
	margin: 10px;
}











#footer-site {
	background-color: var(--footer-background-color);
	padding: var(--pad-site);
	padding-top: 30px;
	padding-bottom: 30px;
	border-top: var(--footer-border);
	font-size: 1.4rem;
	text-align: center;
}

#footer-site h3 {
	margin: 0 0 .5em 0;
	font-size: 1em;
}

#footer-site .copyright {
	margin: 0 0 10px 0;
}

.footer-links {
	margin: 0 0 10px 0;
	padding: 0;
	list-style: none;
}

.footer-links li {
	display: inline-block;
}

.footer-links a {
	display: inline-block;
	color: inherit;
	margin: 0 10px 0 0;
	padding: 5px 0;
}

.footer-p {
	margin: 0 0 10px 0;
}

@media screen and (min-width: 993px) {
	
	#footer-site {
		
	}
	
}







.center {
	text-align: center;
	justify-content: center;
}





























.list {
	margin-top: 0;
	margin-bottom: 40px;
	padding: 0;
	list-style: none;
}

.list .divider {
	
}

.list .list-item {
	font-size: 1.4rem;
	font-weight: 300;
}

.list.spaced .list-item {
	margin-top: 10px;
}

.list .list-item-title {
	margin-bottom: .5em;
}

.list .list-item a {
	display: block;
	color: var(--text-color-muted);
	line-height: 1.3;
	text-decoration: none;
	padding-top: 4px;
	padding-bottom: 4px;
	border-radius: 4px;
}

.list.no-wrap .list-item a {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.list .list-item a:hover {
	text-decoration: underline;
	background-color: var(--link-highlight-background-color);
}

.list .list-item-icon {
	width: 1em;
	height: 1em;
	margin-right: 8px;
	border-radius: 3px;
	vertical-align: top;
}

.dark .list-item-icon {
	filter: invert(1);
}

.list .info {
	display: inline-block;
	color: var(--accent-color);
	font-size: smaller;
	margin-bottom: 3px;
	font-weight: 600;
}

.list.key-val li {
	display: flex;
	justify-content: space-between;
	padding: .75em 0;
	border-bottom: 1px solid var(--main-border-color);
}

.list.key-val .list-item a {
	padding: 0;
	line-height: 1;
}

.list.key-val .val {
	text-align: right;
	color: var(--text-color-muted);
}




.tickets-list .ticket {
	display: inline-block;
	margin: 10px 0;
}

@media screen and (min-width: 993px) {
	
	.tickets-list .ticket {
		width: 48%;
	}
	
}




.block-link-list {
	margin: 0 0 60px 0;
	padding: 0;
	list-style: none;
}

.block-link-list a {
	display: block;
	color: inherit;
	padding: 1em 1em;
	background-color: var(--tint-color-darker);
	border-radius: 5px;
	margin-bottom: 5px;
	text-decoration: none;
}

.block-link-list a:hover {
	filter: brightness(.95);
}







































figure {
	margin-top: 0;
	margin-bottom: 30px;
	margin-left: 0;
	margin-right: 0;
}

.heading-img {
	width: 100%;
	border-radius: 20px;
}

@media screen and (min-width: 993px) {
	
	.container {
		padding: var(--pad-site);
	}
	
	#side-nav {
		position: relative;
		padding-top: 120px;
		width: 16%;
		flex-basis: 16%;
		height: auto;
		flex-shrink: 0;
		padding-right: 25px;
	}
	
	main {
		
	}
	
	aside {
		padding-top: 120px;
		width: 17%;
		flex-basis: 17%;
	}
	
	aside p {
		font-size: 14px;
		line-height: 20px;
	}
	
}








.section {
	margin-bottom: 70px;
}

aside .section {
	margin-bottom: 40px;
}








.menu {
	margin-bottom: 40px;
}

.menu a {
	display: inline-block;
	margin-right: 10px;
}



h2 .next-jackpot {
	display: block;
	font-size: 2em;
}

.lg-text {
	display: block;
	font-size: 2em;
	font-weight: bold;
	margin: 0 0 5px 0;
}























.heading-offer {
	display: flex;
	align-items: center;
	padding-left: 18px;
	border-left: 4px solid var(--accent-color);
	margin-bottom: 100px;
	background-color: var(--tint-color);
	border-radius: 12px;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-right: 10px;
}

.heading-offer.less-margin {
	margin-bottom: 60px;
}

.heading-offer .brand-icon {
	width: 60px;
	height: 60px;
	border-radius: 10px;
	margin-right: 20px;
}

.heading-offer.small {
	flex-direction: column;
	align-items: start;
	margin-bottom: 15px;
}

.heading-offer.small .brand-icon {
	width: auto;
	height: 60px;
	margin-bottom: 15px;
}

.heading-offer .label {
	display: inline-block;
	font-size: 10px;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 0.5px;
	color: var(--button-color);
	background-color: var(--button-background-color);
	padding: .4em .75em;
	border-radius: 3px;
	margin-bottom: 5px;
}

.heading-offer p {
	margin-top: 0;
}

.heading-offer .btn {
	font-size: 12px;
	padding: .5em 1em;
	border-radius: 5px;
}

@media screen and (min-width: 993px) {
	
	.heading-offer .brand-icon {
		width: 140px;
		height: 140px;
		border-radius: 14px;
	}
	
	.heading-offer .btn {
		font-size: 14px;
		border-radius: 8px;
		padding: .75em 1.5em;
	}
	
}









.section-title {
	margin-top: 1em;
	margin-bottom: 3px;
	font-size: 1.3rem;
	line-height: 1.3;
	font-weight: 600;
	text-transform: uppercase;
	color: var(--accent-color);
}

.section-sub-title {
	display: block;
	margin-bottom: 8px;
	font-size: 1.1rem;
	color: var(--text-color-muted);
}

.section-small-title {
	display: block;
	margin-bottom: 8px;
	font-size: 1.3rem;
	color: var(--text-color-muted);
}

.panel {
	margin-bottom: 40px;
	background-color: var(--tint-color);
	border-radius: 12px;
	padding-top: 10px;
	padding-bottom: 10px;
	text-align: center;
}

aside .panel {
	margin-bottom: 5px;
}

.result-number {
	display: inline-block;
	width: 30px;
	height: 30px;
	line-height: 26px;
	text-align: center;
	font-weight: 500;
	border: 2px solid var(--text-color);
	border-radius: 50%;
	font-size: 1.4rem;
	margin: 2px 0;
}

.result-number.bonus {
	background-color: var(--text-color);
	color: var(--background-color);
}





















.list-icon {
	width: auto;
	height: 1em;
	margin-right: 3px;
	vertical-align: top;
}

.dark .list-icon {
	filter: invert(1);
}

.info-list {
	padding: 0;
	margin-top: 0;
	list-style: none;
}

.info-list li {
	font-size: 14px;
	padding: 2px 0;
}









.info-bar {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 40px;
}

.info-bar .info-category {
	position: relative;
	flex-grow: 0;
	flex-shrink: 0;
	flex-basis: 100px;
	justify-content: center;
	text-align: center;
	margin-bottom: 1em;
}

.info-bar .info-category:after {
	display: block;
	content: '';
	position: absolute;
	right: 0;
	top: 20%;
	bottom: 20%;
	width: 1px;
	background-color: var(--main-border-color);
}

.info-bar .info-category:first-child:before {
	display: block;
	content: '';
	position: absolute;
	left: 0;
	top: 20%;
	bottom: 20%;
	width: 1px;
	background-color: var(--main-border-color);
}

.info-bar .info-category:last-child:after {
	display: none;
}

.info-bar .key {
	color:  var(--text-color-muted);
	font-size: 13px;
	font-weight: 600;
}

.info-bar .value {
	display: block;
	color:  var(--text-color);
	font-size: 25px;
	font-weight: 600;
}

@media screen and (min-width: 601px) {
	
	.info-bar {
		flex-wrap: nowrap;
		justify-content: space-between;
	}
	
	.info-bar .info-category {
		flex-grow: 1;
	}
	
	.info-bar .info-category:first-child:before {
		display: none;
	}
	
}






.features {
	display: grid;
	grid-column-gap: 15px;
	column-gap: 15px;
	margin-bottom: 60px;
}

.features .item {
	text-decoration: none;
	margin-bottom: 30px;
}

.features .item:hover {
	text-decoration: none;
}

.features img {
	display: block;
	border-radius: 10px;
}

.features .item-top-info {
	margin-top: 1em;
	margin-bottom: .1em;
	font-size: 1.3rem;
	line-height: 1.3;
	font-weight: 600;
	text-transform: uppercase;
	color: var(--text-color-muted);
}

.features .item-top-detail {
	margin-top: 0;
	margin-bottom: .6em;
	font-size: 1.3rem;
	line-height: 1.3;
	font-weight: 600;
	text-transform: uppercase;
	color: var(--accent-color);
}

.features .item-text {
	display: block;
	flex-direction: column;
}

.features .item-info {
	margin-top: 1em;
	margin-bottom: .25em;
	font-size: 1.3rem;
	line-height: 1.3;
	font-weight: 600;
	text-transform: uppercase;
	color: var(--accent-color);
}

.features .item-title {
	margin-top: 0;
	margin-bottom: 10px;
	font-size: 1.7rem;
	line-height: 1.3;
	color: var(--text-color);
}

.features .item-small-print {
	display: block;
	font-size: .8em;
	line-height: 1.3;
	margin-top: 5px;
	color: var(--text-color-muted);
}

.features.two-col {
	grid-template-columns: 1fr;
}

.features.three-col {
	grid-template-columns: 1fr 1fr;
}

@media screen and (min-width: 993px) {
	
	.features {
		grid-column-gap: 25px;
		column-gap: 25px;
	}
	
	.features .item {
		margin-bottom: 0;
	}
	
	.features.two-col {
		grid-template-columns: 1fr 1fr;
	}
	
	.features.three-col {
		grid-template-columns: 1fr 1fr 1fr;
	}
	
}






















.item-list {
	margin-top: 0;
	margin-bottom: 80px;
	padding: 0;
	list-style: none;
}

.item-list .date {
	margin-top: 60px;
}

.item-list .date:first-child {
	margin-top: 0;
}

.item-list .item {
	display: flex;
	flex-direction: column;
	border-top: 1px solid var(--main-border-color);
	padding-top: 20px;
	padding-bottom: 20px;
}

.item-list .item-media {
	flex-shrink: 0;
	flex-basis: 100%;
}

.item-list .item-media .item-logo {
	width: auto;
	height: 2.2rem;
	background-color: rgba(255,255,255, 1);
	border-radius: 2px;
	padding: 2px;
}

.item-list .item-media .item-logo.large {
	height: 3rem;
	padding: 4px;
}

.item-list .item-body {
	flex-grow: 1;
	margin-right: 15px;
}

.item-list .item-cta {
	flex-grow: 0;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
}

.item-list .time {
	float: right;
	font-size: 1.5rem;
	line-height: 1;
	letter-spacing: 1px;
	font-weight: 600;
	margin-top: 24px;
}

.item-list h3 {
	font-size: 1.8rem;
	font-weight: 500;
	margin-bottom: 2rem;
}

.item-list .info {
	margin-top: 0;
	margin-bottom: 7px;
	font-size: 1.5rem;
	line-height: 1;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	color: var(--text-color-muted);
}

@media screen and (min-width: 993px) {
	.item-list .item {
		flex-direction: row;
	}
	
	.item-list .item-media {
		position: relative;
		top: -3px;
		flex-shrink: 1;
		flex-basis: 32%;
		text-align: right;
	}
	
	.item-list .time {
		margin-top: 0;
	}
	
	.item-list h3 {
		margin-bottom: 0;
	}
}








.item-list-large {
	margin-top: 20px;
	margin-bottom: 60px;
	padding: 0;
	list-style: none;
}

.item-list-large .item {
	display: flex;
	flex-direction: column;
	border-bottom: 1px solid var(--main-border-color);
	padding-top: 20px;
	padding-bottom: 20px;
}

.item-list-large .item-media {
	flex-shrink: 0;
	flex-basis: 80px;
	width: 80px;
	max-width: 100px;
	margin-right:  25px;
	margin-bottom: 15px;
}

.item-list-large .item-body {
	flex-grow: 1;
	margin-right: 25px;
}

.item-list-large .item-cta {
	flex-grow: 0;
	flex-shrink: 0;
	display: flex;
	flex-direction: row;
	margin-top: 20px;
}

.item-list-large .item-icon {
	border-radius: var(--icon-border-radius);
}

.item-list-large h3 {
	margin-top: 0;
}

.item-list-large .terms {
	font-size: .75em;
	line-height: 1.35;
	color: var(--text-color-muted);
}

@media screen and (min-width: 993px) {
	
	.item-list-large .item {
		flex-direction: row;
	}
	
}







.brand-list-horizontal {
	display: block;
	margin-top: 30px;
	margin-bottom: 60px;
	margin-left: -20px;
	margin-right: -20px;
	padding-left: 18px;
	padding-right: 18px;
	list-style: none;
	white-space: nowrap;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}

.brand-list-horizontal li {
	display: inline-block;
	width: 90px;
	padding-left: 2px;
	padding-right: 2px;
}

.brand-list-horizontal a {
	text-decoration: none;
}

.brand-list-horizontal a:hover {
	text-decoration: underline;
}

.brand-list-horizontal .item-info {
	margin-top: 1em;
	margin-bottom: .25em;
	font-size: 1.1rem;
	line-height: 1.3;
	font-weight: 500;
	color: var(--text-color-muted);
}

.brand-list-horizontal .item-title {
	margin-top: 0;
	margin-bottom: 2.5em;
	font-size: 1.3rem;
	line-height: 1.3;
	color: var(--text-color);
}

.brand-list-horizontal .item-icon {
	display: block;
	border-radius: var(--icon-border-radius);
}

@media screen and (min-width: 993px) {
	
	.brand-list-horizontal {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
		grid-column-gap: 15px;
		column-gap: 15px;
	}
	
	.brand-list-horizontal li {
		width: auto;
		padding: 0;
	}
	
}

























.lottery-name {
	color: var(--accent-color);
	text-transform: uppercase;
	font-weight: 500;
}














form {
	margin-bottom: 60px;
}

table form {
	margin-bottom: 0;
}

.input-field {
	margin-bottom: 15px;
}

label {
	display: block;
	margin-bottom: 4px;
	font-size: 1.4rem;
}

.input {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font-size: 16px;
	padding: .5em .5em;
	border-radius: 3px;
	border: 1px solid var(--main-border-color);
	background: white;
	margin: 1px 0;
	max-width: 100%;
}








.existing-ticket {
	display: block;
	margin: 0 0 10px 0;
}















.dropzone {
	border: 4px dashed #bbb !important;
	margin: 40px 0 60px 0;
}






.status {
	margin: 0 0 40px 0;
	padding: 10px 14px;
	border-radius: 5px;
	background-color: #999;
	color: white;
}

.status.error {
	background-color: rgb(245, 202, 202);
	color: rgb(110, 10, 10)
}

.status.success {
	background-color: rgb(192, 243, 200);
	color: rgb(13, 109, 13)
}










table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 60px;
	font-size: 1.4rem;
}

table th,
table td {
	text-align: left;
	padding: 7px 2px;
	border-bottom: 1px solid #ddd;
}

table tbody tr:hover {
	background-color: var(--link-highlight-background-color);
}

@media screen and (max-width: 600px) {
	table {
		border: 0;
	}
	
	table caption {
		font-size: 1.3em;
	}
	
	table thead {
		border: none;
		clip: rect(0 0 0 0);
		height: 1px;
		margin: -1px;
		overflow: hidden;
		padding: 0;
		position: absolute;
		width: 1px;
	}
	
	table tr {
		display: flex;
		flex-direction: column;
		margin-bottom: .625em;
	}
	
	table td {
		border-bottom: 1px solid #ddd;
		display: block;
		font-size: .8em;
		text-align: right;
		padding: 10px 2px;
	}
	
	table td::before {
		content: attr(data-label);
		float: left;
		font-weight: bold;
		text-transform: uppercase;
	}
	
	table td:last-child {
		border-bottom: 0;
	}
}









.header-with-img {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #ddd;
	margin-bottom: 40px;
}

.header-with-img h1 {
	margin: 0;
}

.header-with-img img {
	flex-basis: 42%;
	flex-shrink: 0;
	width: 42%;
}








.ticker {
	overflow: hidden;
	margin-left: -20px;
	margin-right: -20px;
}

.ticker-lg {
	margin-left: 0;
	margin-right: 0;
}

.ticker-list {
	display: flex;
	flex-wrap: nowrap;
	padding: 12px 0;
	animation: ticker 15s infinite linear;
}

.only-lg .ticker-list {
	animation: ticker 30s infinite linear;
}

.ticker:hover .ticker-list {
	animation-play-state: paused;
}

.ticker-item {
	white-space: nowrap;
	margin-left: 15px;
	color: var(--accent-color);
}

@-moz-keyframes ticker {
  100% {
	transform: translateX(-100%);
  }
}
@-webkit-keyframes ticker {
  100% {
	transform: translateX(-100%);
  }
}
@-o-keyframes ticker {
  100% {
	transform: translateX(-100%);
  }
}
@keyframes ticker {
  100% {
	transform: translateX(-100%);
  }
}


























/* Shine */
.shine {
	position: relative;
	overflow: hidden;
	filter: brightness(100%);
}

.shine:after {
	content: "";
	top: 0;
	transform: translateX(100%);
	width: 100%;
	height: 100%;
	display: block;
	border-radius: 8px;
	position: absolute;
	z-index: 1;
	animation: slide 3s infinite;
	background: linear-gradient( to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(128, 186, 232, 0) 99%, rgba(125, 185, 232, 0) 100%
	);
}

/* animation */
@keyframes slide {
	0% {
		transform: translateX(-150%);
	}

	100% {
		transform: translateX(150%);
	}
}






















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

.text-color-muted { color: var(--text-color-muted); }









@media only screen and (min-width: 601px) {
	.only-sm {
		display: none !important;
	}
}

@media only screen and (max-width: 992px) {
	.only-lg {
		display: none !important
	}
}

