/* clear */
* {
	margin: 0px;
	padding: 0px;
	border: none;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
}

*:focus {
	outline: 0;
}

input:focus,
select:focus,
textarea:focus,
button:focus,
input[type=text] {
	outline: none;
}

body {
	text-align: center;
	background: black;
	color: #fff;
	font-family: 'Anton', sans-serif;
	min-height: 568px;
}

h1 {
	font-size: 26px;
	margin-bottom: 15px;
	letter-spacing: .5px;
	line-height: 1.2;
}

h1.clr2 {
	margin-bottom: 6px;
}

h2 {
	line-height: 1.3;
	font-size: 20px;
	text-transform: uppercase;
}

h2,
.terms,
label,
select,
input,
.is-danger.help {
	font-family: 'Poppins', sans-serif;
}

a {
	color: #fff;
}

.sml {
	font-weight: 300;
	font-size: 10px;
	margin: -10px auto 30px;
}

.logo {
	width: 90px;
}

.wrap {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
}

.stepWrap {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	width: 100%;
	padding: 0px 20px;
}

.stp {
	height: 100%;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
}

.stp.autoStep {
	justify-content: center;
}

.hold {
	display: none;
	opacity: 0;
	transform: scale(.2);
}

.done {
	display: none
}

.in {
	animation: in ease 1s forwards;
}

.anicon {
	width: 100px;
	text-align: center;
	margin-bottom: 10px;
}

.anicon img {
	width: 30px;
}

.ttl {
	height: 30px;
	margin: 0px auto 8px;
	padding: 0px 0px 10px;
}

.brdB {
	margin: 10px auto;
	width: 150px;
	height: 1px;
}

.btnWrap {
	display: flex;
	width: 100%;
	justify-content: center;
	align-items: center;
	flex-direction: row;
}

.blnkT {
	text-transform: capitalize;
	font-size: 14px;
	animation: blnk .2s infinite ease;
	margin: 20px auto;
}

.lft {
	text-align: left;
}

h2.point {
	font-size: 16.5px;
	text-transform: capitalize;
}

.chkPionts h2.point {
	line-height: 2;
}

.Prizes {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.prize {
	display: none;
	width: 32px;
	animation: in ease .6s forwards;
	margin: 0px 2px;
}

.prize.showP {
	display: block
}

.step17 .Prizes {
	display: none;
}

.chk {
	width: 14px;
}

.chkPionts .point {
	opacity: .2;
}

.chkPionts .btn,
.chkPionts .btn-submit {
	opacity: 0;
}

.chkPionts .point.in,
.chkPionts .btn.in,
.chkPionts .btn-submit.in {
	animation: in ease .6s forwards;
}

.stpCnt {
	width: 240px;
	margin: 10px auto;
}

.optWrap {
	display: flex;
	justify-content: space-around;
	align-items: center;
	width: 100%;
}

.optTtl {
	font-weight: 300;
	font-size: 16px;
	margin-top: 10px;
}

.opt {
	width: 30%;
}

.opt img {
	width: calc(100% - 20px);
	border-radius: 5px;
	opacity: .5;
	box-shadow: 0px 0px 20px #000;
}

.opt.active img {
	width: 100%;
	opacity: 1;
}

.opt.active .optTtl {
	font-weight: bold;
	font-family: 'Anton', sans-serif;
	letter-spacing: 1.4px;
}

.anicon.anicon6 img,
.anicon.anicon12 img {
	width: auto;
	height: 63px;
}

.stpCnt1,
.step18 .stpCnt2 {
	display: block;
}

.stpCnt2,
.step18 .stpCnt1 {
	display: none;
}

@keyframes in {
	0% {
		transform: scale(.15);
		opacity: 0;
	}

	30% {
		opacity: 1;
		transform: scale(1);
	}

	100% {
		opacity: 1;
		transform: scale(.95);
	}
}

/* loading screen */
.loading {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	background: #1e203d;
	justify-content: center;
	align-items: center;
}

.loading::after {
	content: '';
	width: 100%;
	height: 100%;
	background-size: cover;
	display: block;
	position: absolute;
	left: 0px;
	top: 0px;
	background-repeat: no-repeat;
	background-position: center;
}

.load .loading {
	display: flex;
}

.loadWrap {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.introLoad {
	width: 70px;
	margin-top: 10px;
	animation: blnk .5s infinite ease;
}

@keyframes blnk {
	0% {
		opacity: 0
	}

	50% {
		opacity: 1
	}

	100% {
		opacity: 0
	}
}

/* Form */
.formWrap {
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
	padding: 0.5rem;
}

.fieldWrap {
	background: rgba(6, 4, 40, .44);
	padding: 15px 15px 0px;
	border-radius: 10px;
	margin-bottom: 15px;
}

.field {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-content: flex-start;
	margin-bottom: 20px;
	position: relative;
}

label {
	font-weight: 300;
	font-size: 14px;
	max-width: 40%;
	text-align: left;
	align-self: center;
	line-height: 1.2;
}

.impWrap {
	width: calc(60% - 8px);
}

#mobile-terms {
	margin-top: 6px;
}

.terms {
	color: #fff;
	font-size: 8.5px;
	font-weight: 200;
	text-align: justify;
}

.is-danger.help {
	width: auto;
	text-align: right;
	position: absolute;
	bottom: 0px;
	right: 5px;
	transform: translateY(100%);
	font-size: 11px;
	background: #df5454;
	padding: 4px 4px 2px;
	border-radius: 4px 0px 4px 4px;
	font-weight: 300;
	min-width: 54%
}

select,
input {
	width: 100%;
	padding: 2px 7px;
	border-radius: 5px;
	font-size: 15px;
	font-weight: 300;
	color: #141250;
	min-height: 27px;
}

iframe {
	width: 100%;
}

/* footer */
.footer p,
.footer p a {
	color: #fff;
	font-weight: 200;
	font-size: 10px;
}

.footer {
	padding: 10px;
}

/* header */
header {
	padding: 20px;
}


/* videoBG */
.bg video {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.bg img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.bg {
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0px;
	left: 0px;
	z-index: -1;
}

.bg::after,
.bg::before {
	content: '';
	width: 100%;
	height: 100%;
	background-size: cover;
	display: block;
	position: absolute;
	left: 0px;
	top: 0px;
	background-repeat: no-repeat;
	background-position: center;
}

.bg::before {
	background: rgba(6, 4, 46, .78);
}

#neft .bg::before {
	background: rgba(6, 4, 46, .69);
}


/* button*/
.btn,
.btn-submit {
	text-transform: uppercase;
	font-weight: 200;
	font-size: 25px;
	padding: 10px 65px;
	border-radius: 80px;
	margin: 20px 0px;
	color: #fff;
	font-family: 'Anton', sans-serif;
}

.btn2 {
	margin-right: 10px;
	padding: 10px 25px;
	letter-spacing: -1px;
}

button.btn,
button.btn-submit {
	margin: 0px 0px 20px
}


@media only screen and (min-width:374px) {

	.btn,
	.btn-submit {
		font-size: 25px;
	}
}

@media only screen and (min-width:680px) {
	.stp {
		justify-content: center;
	}

	.logo {
		width: 130px;
	}

	.stepWrap {
		max-width: 600px;
	}

	h1 {
		font-size: 36px;
	}

	h2,
	h2.point {
		line-height: 1.2;
		font-size: 29px;
	}

	.ttl {
		height: 40px;
	}

	.blnkT {
		font-size: 19px;
	}

	.prize {
		width: 40px;
	}

	.stpCnt {
		width: 270px;
	}

	.sml {
		font-size: 12px;
		margin: 0px auto 30px;
	}

	body {
		min-height: 735px
	}

	body.step17 {
		min-height: 750px
	}

	/* button */
	.btn:hover,
	.btn-submit:hover {
		box-shadow: none;
	}

	.btn,
	.btn-submit {
		font-size: 32px;
		padding: 10px 70px;
	}

	/* Form */
	label {
		font-size: 20px;
	}

	.is-danger.help {
		font-size: 14px;
		padding: 2px 4px 2px;
		min-width: 57%
	}

	.field {
		margin-bottom: 22px;
	}
}

/* colors */
.cta {
	color: #e7135f
}

.ctaBG {
	background: #e7135f
}

.clr2 {
	color: #ffce00;
}

.clr2BG {
	background: #ffce00;
}

.clr3 {
	color: #19c59b;
}

.clr3Fill {
	Fill: #19c59b;
}

.optTtl.active {
	color: #ffce00;
}

.ttl {
	border-bottom: solid 1px #ffce00;
}

.opt.active img {
	border: solid 1px #ffce00;
	box-shadow: 0px 0px 20px #ffce00;
}

/* cursors */
html {
	cursor: url('assets/images/arrw.png'), auto;
}

.btn,
.btn-submit,
a,
.opt,
select {
	cursor: url('assets/images/pointer.png'), auto;
}

/* loading screen */
.loading::after {
	background-image: url('assets/images/bg.png');
}

#neft .loading::after {
	background-image: none;
}

/* videoBG */
.bg::after {
	background-image: url('assets/images/bg.png');
}

#neft .bg::after {
	background-image: none
}

/* btn */
.btn,
.btn-submit {
	box-shadow: 0px 0px 8px #e7135f;
}

.btn2 {
	background: #3f3d62;
	box-shadow: 0px 0px 8px #3f3d62;
}

/* remove extra decorative graphics */

@media only screen and (min-width:680px) {
	.bg::after {
		background-image: url('assets/images/bg.png');
	}
}
.cls-1{
	fill:#e28413;
}

.cls-2{
	fill:#ffe000;
}

.cls-3{
	fill:#fff;
}