/* Import helper classes */
@import "helpers.css";

html {
   -webkit-text-size-adjust: none;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
	min-height: 100vh;
	font-family: "Avenir Web", "Avenir Next", "Avenir", "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: #26363b;
	background:
		radial-gradient(circle at top, rgba(255,255,255,0.16), transparent 30%),
		linear-gradient(180deg, #9f81bb, #26363b);
}

:root {
	--campaign-accent: #fccf00;
	--campaign-blue: #0070bd;
	--campaign-ink: #26363b;
	--campaign-panel-shadow:
		0 18px 40px rgba(24, 31, 34, 0.14),
		0 0 0 1px rgba(38, 54, 59, 0.08);
	--campaign-locker-panel:
		inset 0 10px 0 rgba(0, 86, 152, 0.5),
		inset 0 -12px 0 rgba(133, 191, 240, 0.22),
		inset 10px 0 0 rgba(0, 86, 152, 0.22),
		inset -10px 0 0 rgba(133, 191, 240, 0.16),
		inset 0 0 0 4px rgba(0, 86, 152, 0.22),
		inset 0 0 0 14px rgba(171, 224, 244, 0.16),
		0 1px 0 rgba(255, 255, 255, 0.04);
}

/* ==========================================================================
   Page Visiblity
   ========================================================================== */

#entry{
	display: block;
/* 	display: none; */
}

#thanks{
	display: none;
   /*display: block;*/
}

/* ==========================================================================
   Global Links
   ========================================================================== */

a:link, a:visited, a:active {
	color: #284044;
	text-decoration: underline;
}

a:hover {
	text-decoration: none;
}

/* ==========================================================================
   Container
   ========================================================================== */

.container{
	position: relative;
	max-width: 1080px;
	width: 100%;
	margin: 0 auto;
	background: transparent;
}

.locker-shell{
	margin-top: 0;
	padding-bottom: 0;
}

.site-content{
	margin: 0;
	padding: 44px 4% 40px;
	background: #ffffff;
	border-radius: 34px;
	box-shadow: var(--campaign-panel-shadow);
}

/* ==========================================================================
   Intro
   ========================================================================== */

.intro{
	background: #c42126;
	color: #FFF;
	text-align: center;
	padding: 20px 4%;
}

.intro .contest-dates{
	margin-top: 40px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.primary-btn{
	color: #26363b !important;
	border: 0;
	padding: 14px 28px;
	font-size: 1.125rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease, background 0.2s ease;
	text-decoration: none !important;
	text-transform: uppercase;
	font-weight: 800;
	border-radius: 30px;
	min-height: 58px;
	min-width: 220px;
	position: relative;
	background:
		linear-gradient(180deg, rgba(240, 243, 247, 0.98), rgba(164, 176, 188, 0.98));
	box-shadow:
		inset 0 2px 0 rgba(255, 255, 255, 0.82),
		inset 0 -4px 0 rgba(76, 90, 102, 0.42),
		inset 0 0 0 1px rgba(95, 108, 119, 0.44),
		inset 10px 0 18px rgba(255, 255, 255, 0.18),
		inset -10px 0 18px rgba(63, 77, 91, 0.14),
		0 10px 18px rgba(38, 54, 59, 0.2);
}

.button-loader,
.button-loading-label{
	display: none;
}

.primary-btn.is-loading{
	cursor: wait;
}

.primary-btn.is-loading .button-label{
	display: none;
}

.primary-btn.is-loading .button-loader,
.primary-btn.is-loading .button-loading-label{
	display: inline-flex;
}

.button-loader{
	width: 20px;
	height: 20px;
	border: 3px solid rgba(38, 54, 59, 0.28);
	border-top-color: #26363b;
	border-radius: 50%;
	animation: button-spin 0.8s linear infinite;
}

.button-loading-label{
	align-items: center;
}

.primary-btn:hover,
.primary-btn:focus{
	background: linear-gradient(180deg, rgba(225, 230, 235, 0.98), rgba(145, 158, 170, 0.98));
	color: #26363b !important;
	text-decoration: none;
	transform: translateY(-1px);
	box-shadow:
		inset 0 2px 0 rgba(255, 255, 255, 0.68),
		inset 0 -3px 0 rgba(76, 90, 102, 0.34),
		inset 0 0 0 1px rgba(95, 108, 119, 0.38),
		0 8px 14px rgba(38, 54, 59, 0.18);
}

.primary-btn:focus-visible{
	outline: 3px solid rgba(38, 54, 59, 0.48);
	outline-offset: 3px;
}

.primary-btn:disabled{
	opacity: 1;
}

.primary-btn.is-loading:hover,
.primary-btn.is-loading:focus{
	transform: none;
}

.primary-btn::before,
.primary-btn::after{
	content: "";
	position: absolute;
	top: 50%;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	transform: translateY(-50%);
	background: linear-gradient(180deg, rgba(177, 188, 200, 0.96), rgba(97, 108, 118, 0.96));
	box-shadow:
		inset 0 1px 1px rgba(255, 255, 255, 0.5),
		0 1px 2px rgba(0, 0, 0, 0.18);
}

.primary-btn::before{
	left: 14px;
}

.primary-btn::after{
	right: 14px;
}

.form-buttons{
	text-align: center;
	margin-top: 20px;
}

.form-buttons input,
.form-buttons button{
	margin: 0 10px;
}

@keyframes button-spin{
	to {
		transform: rotate(360deg);
	}
}


/* ==========================================================================
   Typography
   ========================================================================== */

h1,
h2,
h3{
	font-weight: normal;
}

h1{
	font-size: 3.75rem;
	line-height: 1.1;
	margin: 0.25em 0;
}

h2{
	font-size: 2.25rem;
	line-height: 1.2;
	margin: 0.5em 0;
}

h3{
	font-size: 1.75rem;
	line-height: 1.2;
	margin: 0.5em 0;
}

.mice{
	font-size: 0.95em;
}

.nowrap{
	white-space: nowrap;
}

/* ==========================================================================
   Header
   ========================================================================== */

header{
	max-width: 1080px;
	margin: 0 auto;
	background: none;
}

.locker-header{
	background: none;
	padding-top: 28px;
	overflow: hidden;
}

.hero{
	display: block;
	width: 80%;
	max-width: 1080px;
	height: auto;
	margin: 0 auto 18px;
}

.header-top{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100px;
}

.logo{
	width: 190px;
}

/* ==========================================================================
   Footer
   ========================================================================== */

footer {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	align-items: center;
	position: relative;
	color: #FFF;
	clear: both;
	max-width: 1080px;
	margin: 0 auto;
	padding: 20px 0;
}

footer a:link,
footer a:visited {
	color: #FFF;
	text-decoration: none;
}

.copyright {
	text-align: center;
	font-size: 1em;
	margin: 20px 0;
	width: 100%;
	padding: 0 4%;
	margin-top: 0;
}

.copyright a:hover{
	text-decoration: underline;
}

.social {
	text-align: center;
}

.social svg{
	fill: #FFF;
}

.social a {
	display: inline-block;
	margin: 0 5px;
	width: 22px;
	transition: opacity 0.2s;
}

.social a:hover{
	opacity: 0.5;
}


.social a:last-child {
	margin-right: 0;
}

/* ==========================================================================
   Entry Form
   ========================================================================== */

#entry h1 strong{
	font-size: 5.5rem;
}

#entry > .site-content > h3{
	max-width: 820px;
	margin: 0 auto 18px;
	font-size: clamp(1.5rem, 3.15vw, 2.36rem);
	line-height: 1.05;
	font-weight: 900;
	text-align: center;
	text-transform: uppercase;
	color: var(--campaign-blue);
}

#entry > .site-content > h3 > small{
	font-size: clamp(1.125rem, 2.36vw, 1.77rem);
	color: var(--campaign-blue);
}

.instructions{
	text-align: center;
	max-width: 720px;
	margin: 0 auto 18px;
	padding: 0 12px 12px;
}

.instructions p{
	max-width: 680px;
	margin-left: auto;
	margin-right: auto;
	font-size: 1.18rem;
	line-height: 1.55;
	color: #26363b;
}

.instructions h4{
	margin-bottom: 14px;
	font-size: 1.42rem;
	line-height: 1.32;
	font-weight: 800;
	color: #26363b;
}

#entry .tagline{
	/*width: 627px;*/
	max-width: 100%;
}

.tagline{
	display: block;
	margin: 0 auto;
}

#entryForm {
	margin: 40px auto;
	max-width: 760px;
	padding: 68px 34px 72px;
	border-radius: 30px;
	background: rgba(0, 112, 189, 0.88);
	box-shadow: var(--campaign-locker-panel);
}

textarea, input { outline: none; }

input[type="checkbox"] {
    width: 20px; height: 20px; margin-right: 10px;
    margin-left: -25px !important;
}

input[type="text"],input[type="email"],input[type="tel"], select {
	border-radius: 22px !important;
	width: 98%;
	line-height: 1.2;
	font-family: "Avenir Web", "Avenir Next", "Avenir", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 1.2rem;
	font-weight: 800;
	height: 56px;
	padding: 0 16px 0;
	border: 0;
	background: #FFF;
	box-shadow:
		inset 0 -4px 0 rgba(38, 54, 59, 0.08),
		0 0 0 4px rgba(159, 129, 187, 0.34);
	color: #26363b;
}

#checkboxes {
	clear: both;
}

.checkbox p{
	margin-left: 5px;
	padding-top: 0px;
	margin-bottom: 5px;
	font-weight: normal;
	font-style: normal;
}

#checkboxes a:link,
#checkboxes a:visited,
#checkboxes a:active{
	color: #ffffff;
}

#checkboxes a:hover{
	color: #ffffff;
}

label{
	font-size: 1.12rem;
	font-weight: 700;
	color: #ffffff;
	letter-spacing: 0.01em;
}

label.radio{
	width: 40px;
}

label.error {
	color: #FFFFFF;
	height: 15px;
	margin-left: 10px;
	margin-top: 10px;
	position: absolute;
	text-align: left;
	width: 15px;
	z-index: 1000;
}

input.error, select.error {
	background: #fff2f2;
	color: #26363b;
	outline: 4px solid rgba(196, 33, 38, 0.55);
}

#rules.error + p,
#rules.error + p a{
	font-weight: bold;
	color: #dc1325;
}

#rules.error + p:after{
	content: " (Required)";
}

#fav-store.error:after{
	content: "error";
}

input.error[type="text"],
input.error[type="email"],
input.error[type="tel"],
select.error + .select2 .select2-selection--single{
	background-image: url('../img/error.svg');
	background-position: top 6px right 10px;
	background-repeat: no-repeat;
	background-size: 15px 15px;
}

input.error[type="text"]:focus,
input.error[type="email"]:focus,
input.error[type="tel"]:focus{
	color: #26363b;
}

.select2-container{
	width: 98% !important;
	margin-top: 5px !important;
}

.select2-container--default .select2-selection--single,
.select2-search--dropdown .select2-search__field{
	height: 32px !important;
}

.select2-container--default .select2-selection--single{
	border: 0 !important;
	border-radius: 22px !important;
	background: #ffffff !important;
	box-shadow:
		inset 0 -4px 0 rgba(38, 54, 59, 0.08),
		0 0 0 4px rgba(159, 129, 187, 0.34);
}

.select2-container--default .select2-selection--single .select2-selection__rendered{
	line-height: 56px !important;
	padding-left: 16px !important;
	padding-right: 40px !important;
	font-size: 1.2rem;
	font-weight: 800;
	color: #26363b !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow{
	height: 56px !important;
}

select.error + .select2 .select2-selection--single{
	background-color: #fff2f2;
	box-shadow:
		inset 0 -4px 0 rgba(38, 54, 59, 0.08),
		0 0 0 4px rgba(196, 33, 38, 0.55);
}

select.error + .select2 .select2-selection--single .select2-selection__arrow{
	right: 28px;
}

select.error + .select2 .select2-selection--single .select2-selection__arrow b{
	border-color: #26363b transparent transparent transparent;
}

select.error + .select2 .select2-selection--single .select2-selection__rendered{
	color: #26363b;
}

#checkboxes{
	margin-left: 150px;
	margin-top: 20px;
	padding-top: 8px;
	border-top: 1px solid rgba(38, 54, 59, 0.16);
}

#checkboxes label{
	font-size: 0.98rem;
	line-height: 1.4;
	margin-top: 10px;
	margin-bottom: 0 !important;
	font-weight: 600;
}

#checkboxes label.error {left: 305px; margin-top: 0;}

#btSubmit {
	padding: 10px 30px;
	font-weight: 800;
	height: 58px;
	font-size: 1.125rem;
	border-radius: 999px;
}

.control-group{
	margin-bottom: 24px !important;
}

.control-label{
	text-align: left !important;
	font-size: 1.125rem;
	line-height: 1.2;
}

.form-horizontal .control-label{
	width: 145px;
	display: flex;
	align-items: center;
	min-height: 56px;
	padding-top: 0;
	margin-bottom: 0;
}

.form-horizontal .controls{
	margin-left: 145px;
}

/* ==========================================================================
   Error Messages
   ========================================================================== */

.mandatory-fields{
	font-size: 0.95rem;
	margin-top: 15px;
	margin-left: 145px;
	font-weight: normal;
	font-style: italic;
	color: #ffffff;
}

.form-message{
	display: none;
	margin: 20px 0 0 145px;
	padding: 14px 16px;
	max-width: 453px;
	font-size: 1.08rem;
	font-weight: 700;
	line-height: 1.4;
	border: 1px solid rgba(191, 227, 250, 0.34);
	background: rgba(38, 54, 59, 0.88);
	color: #ffffff;
	border-radius: 18px;
	text-align: center;
}

.form-message.is-visible{
	display: block;
}

.form-message.is-error{
	border-color: rgba(196, 33, 38, 0.98);
	background: rgba(196, 33, 38, 0.94);
	color: #ffffff;
}

.form-message.is-success{
	border-left-color: #2b8c4d;
	background: #edf8f1;
	color: #1c6034;
}

/* ==========================================================================
   Thanks
   ========================================================================== */

#thanks h1{
	font-size: 3.25rem;
	margin-bottom: 24px;
}

#thanks .tagline{
	max-width: 100%;	
}

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

#thanks .tagline{
	margin-top: 56px;
}

.thanks-copy{
	padding-bottom: 0;
}

.thanks-label{
	margin: 0 0 12px;
	font-size: 1rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--campaign-accent);
}

.thanks-combo{
	margin: 0 auto 28px;
	max-width: 420px;
	padding: 20px 26px;
	border-radius: 24px;
	background: #fff7eb;
	box-shadow:
		inset 0 4px 0 rgba(255,255,255,0.78),
		inset 0 -6px 0 rgba(207,127,15,0.18),
		0 0 0 4px rgba(217,130,18,0.52);
	font-size: clamp(2.8rem, 6.5vw, 4.2rem);
	line-height: 1;
	font-weight: 900;
	letter-spacing: 0.12em;
	color: #26363b;
	text-align: center;
	text-transform: uppercase;
}

.thanks-copy h3{
	max-width: 760px;
	margin-left: auto;
	margin-right: auto;
	font-size: 1.5rem;
	line-height: 1.4;
	color: #26363b;
}

/* ==========================================================================
   Rules Dialog
   ========================================================================== */

#rules-dialog {
	background: #FFF;
	color: #000;
	padding: 20px 30px;
	text-align: left;
	max-width: 750px;
	height: 750px;
	margin: 40px auto;
	position: relative;
	overflow-y: hidden;
}

.rules-content{
	height: 100%;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
}

.rules-content p,
.rules-content li{
	font-size: 1rem;
	line-height: 1.4;
}

.rules-content ol li{
	margin: 10px 0;
}


.rules-title{
	margin-bottom: 20px;
	text-align: center;
}

.rules-title h1{
	font-size: 1.8em;
	line-height: 30px;
	padding: 0 14%;
}

.rules-title h1,
.rules-title h2{
	font-weight: bold;
}

.rules-title h2,
.rules-title h3{
	margin: 0;
	font-size: 1.2em;
	line-height: 1.2;
}

@media (max-width: 767px) {
	.site-content{
		margin: 16px;
		padding: 26px 18px;
		border-radius: 22px;
	}

	#entryForm{
		padding: 22px 16px 26px;
	}

	.form-horizontal .control-label,
	.form-horizontal .controls{
		width: auto;
		margin-left: 0;
	}

	#checkboxes,
	.mandatory-fields,
	.form-message{
		margin-left: 0;
		max-width: 100%;
	}
}

/**
* Fade-zoom animation for first dialog
*/

/* start state */
.my-mfp-zoom-in .zoom-anim-dialog {
	opacity: 0;

	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;



	-webkit-transform: scale(0.8);
	-moz-transform: scale(0.8);
	-ms-transform: scale(0.8);
	-o-transform: scale(0.8);
	transform: scale(0.8);
}

/* animate in */
.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
	opacity: 1;

	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

/* animate out */
.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
	-webkit-transform: scale(0.8);
	-moz-transform: scale(0.8);
	-ms-transform: scale(0.8);
	-o-transform: scale(0.8);
	transform: scale(0.8);

	opacity: 0;
}

/* Dark overlay, start state */
.my-mfp-zoom-in.mfp-bg {
	opacity: 0;
	-webkit-transition: opacity 0.3s ease-out;
	-moz-transition: opacity 0.3s ease-out;
	-o-transition: opacity 0.3s ease-out;
	transition: opacity 0.3s ease-out;
}
/* animate in */
.my-mfp-zoom-in.mfp-ready.mfp-bg {
	opacity: 0.8;
}
/* animate out */
.my-mfp-zoom-in.mfp-removing.mfp-bg {
	opacity: 0;
}

/* ==========================================================================
   Media Queries
   ========================================================================== */

@media only screen and (max-width: 750px) {

	/* remove breaks */
	/* br{
	    display: none;
	} */

	/* entry */

	#entry h2 br{
		display: none;
	}

	#entry > .site-content > h3{
		font-size: clamp(1.24rem, 5.25vw, 1.84rem);
		margin-bottom: 14px;
	}

	#entry .tagline{
	}

	/* Form Elements */

	#entryForm{
		width: 100%;
		padding: 22px 16px 26px;
	}

	.form-horizontal .control-label{
		width: 100%;
		display: block;
		min-height: 0;
		margin-bottom: 8px;
	}

	.form-horizontal .controls{
		margin-left: 0;
		width: 100%;
	}

	#checkboxes,
	.mandatory-fields{
		margin-left: 0;
	}

	/* hide start over button on mobile */
	input[type='reset']{
		display: none;
	}

	input[type="text"],
	input[type="email"],
	input[type="tel"],
	select{
		height: 44px;
	}

	.select2-container--default .select2-selection--single .select2-selection__arrow{
		height: 40px !important;
	}

	.select2-container--default .select2-selection--single,
	.select2-search--dropdown .select2-search__field{
		height: 40px !important;
	}

	.select2-container--default .select2-selection--single .select2-selection__rendered{
		line-height: 38px !important;
	}

	input.error[type="text"], input.error[type="email"], input.error[type="tel"], select.error + .select2 .select2-selection--single{
		background-position: top 8px right 7px;
		background-size: 20px 20px;
	}
}

@media only screen and (max-width: 550px) {

	.header-top{
		height: 50px;
	}

	.logo{
		width: 130px;
	}

	#rules-dialog{
		height: 600px;
	}

	/* entry */

	.intro .contest-dates{
		margin-top: 20px;
	}

	#entry h1 strong{
		font-size: 2.3rem;
	}

	#entry > .site-content > h3{
		font-size: 1.16rem;
		line-height: 1.1;
	}

	h1{
		font-size: 1.8rem;
		line-height: 1;
	}

	h2{
		font-size: 1.25rem;
	}

	h3{
		font-size: 1.25rem;
	}

	/* thanks */

	#thanks h1 strong{
		font-size: 2rem;
	}

	#thanks .tagline{
		margin-top: 32px;
	}

	.thanks-combo{
		margin-bottom: 22px;
		padding: 16px 18px;
		font-size: 2.4rem;
	}
}

@media only screen and (max-width: 430px) {
	/* entry */
	.control-label{
		font-size: 1.05rem;
	}
}
