:root {
	--dla-color--white: #FFFFFF;
	--dla-color--black: #000000;
	--dla-color--gray: #494949;
	--dla-color--gray-04: rgba(73,73,73,0.4);
	--dla-color--blue: #007ECE;
	--dla-color--blue-twitter: #20ACFF;
	--dla-color--blue-dark: #27558C;
	--dla-color--red: #D90019;
	--dla-font-condensed: "Open Sans Condensed", sans-serif;
	--dla-font: "Open Sans", sans-serif;
	--dla-title--text-color: var(--dla-color--gray);
	--dla-input--border-color: var(--dla-color--blue);
	--dla-button--bg-color: var(--dla-color--blue-dark);
	--dla-button--bg-color-hover: var(--dla-color--blue-twitter);
}

.dla-wrapper {
	font-family: var(--dla-font);
}
.dla-wrapper input[type=date],
.dla-wrapper input[type=email],
.dla-wrapper input[type=number],
.dla-wrapper input[type=password],
.dla-wrapper input[type=search],
.dla-wrapper input[type=tel],
.dla-wrapper input[type=text],
.dla-wrapper select,
.dla-wrapper textarea {
	border-color: var(--dla-color--gray-04);
	border-radius: 0;
}
.dla-wrapper input[type=date]:active, .dla-wrapper input[type=date]:focus,
.dla-wrapper input[type=email]:active,
.dla-wrapper input[type=email]:focus,
.dla-wrapper input[type=number]:active,
.dla-wrapper input[type=number]:focus,
.dla-wrapper input[type=password]:active,
.dla-wrapper input[type=password]:focus,
.dla-wrapper input[type=search]:active,
.dla-wrapper input[type=search]:focus,
.dla-wrapper input[type=tel]:active,
.dla-wrapper input[type=tel]:focus,
.dla-wrapper input[type=text]:active,
.dla-wrapper input[type=text]:focus,
.dla-wrapper select:active,
.dla-wrapper select:focus,
.dla-wrapper textarea:active,
.dla-wrapper textarea:focus {
	border-color: var(--dla-input--border-color);
}
.dla-wrapper .dla-label {
	color: var(--dla-title--text-color);
	font-size: 16px;
	font-weight: bold;
	line-height: 22px;
	margin-bottom: 7px;
}

button.dla-submit {
	background-color: var(--dla-button--bg-color);
	border: none;
	border-radius: 0;
	color: var(--dla-color--white);
	font-family: var(--dla-font);
	font-size: 1em;
	font-weight: bold;
	padding: 11px 5px;
	text-transform: uppercase;
}
button.dla-submit:hover {
	background-color: var(--dla-button--bg-color-hover);
}

.dla-login {
	-ms-flex-align: center;
	    align-items: center;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	    justify-content: center;
	padding: 30px 5px;
}
@media (min-width: 530px) {
	.dla-login {
		padding: 100px 15px;
	}
}

.dla-login-inner {
	border: 1px solid var(--dla-color--gray-04);
	-ms-flex-preferred-size: 450px;
	    flex-basis: 450px;
	padding: 20px 15px;
}
@media (min-width: 530px) {
	.dla-login-inner {
		padding: 35px 45px;
	}
}

.dla-login-title {
	color: var(--dla-title--text-color);
	font-family: "Open Sans Condensed", sans-serif;
	font-size: 22px;
	font-weight: bold;
	letter-spacing: 0;
	line-height: 32px;
}

.dla-login-row {
	margin-bottom: 20px;
}

.dla-login-submit {
	width: 100%;
}

.dla-login-footer {
	-ms-flex-align: center;
	    align-items: center;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	    justify-content: center;
}

.dla-login .dla-login-divider {
	margin: 25px 0;
}

.dla-login-message {
	line-height: 16px;
	color: var(--dla-button--bg-color);
}
.dla-login-message.error {
	color: var(--dla-color--red);
}

.dla-profile-message {
	color: var(--dla-button--bg-color);
	font-size: 0.9em;
	line-height: 16px;
}
.dla-profile-message.error {
	color: var(--dla-color--red);
}

.dla-profile-update-submit {
	margin-top: 10px;
	width: 100%;
}
@media (min-width: 530px) {
	.dla-profile-update-submit {
		width: 50%;
	}
}

.dla-dashboard {
	-ms-flex-align: center;
	    align-items: center;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: start;
	    justify-content: flex-start;
	padding: 0px 10px;
}
@media (min-width: 425px) {
	.dla-dashboard {
		padding: 80px 40px;
	}
}

.dla-dashboard-title {
	font-family: var(--dla-font-condensed);
	font-size: 38px;
	font-weight: bold;
	letter-spacing: -0.4px;
	line-height: 38px;
	margin-bottom: 20px;
}
@media (min-width: 530px) {
	.dla-dashboard-title {
		margin-bottom: 40px;
	}
}

.dla-dashboard-lockers {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	    flex-direction: column;
	max-width: 570px;
}

.dla-dashboard-locker {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: row;
	    flex-direction: row;
	margin-bottom: 10px;
}

.dla-dashboard-locker-avatar {
	-ms-flex-preferred-size: 90px;
	    flex-basis: 90px;
}
.dla-dashboard-locker-avatar .dla-dashboard-locker-img {
	height: 90px;
}

.dla-dashboard-profile {
	margin-left: 20px;
}

.dla-dashboard-profile-name {
	font-family: var(--dla-font-condensed);
	font-size: 22px;
	font-weight: bold;
	letter-spacing: 0;
	line-height: 32px;
	margin: 0 0 4px;
}

.dla-dashboard-profile-meta {
	margin-bottom: 4px;
}

.dla-dashboard-row {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	    flex-direction: column;
}
@media (min-width: 530px) {
	.dla-dashboard-row {
		-ms-flex-direction: row;
		    flex-direction: row;
	}
}

.dla-dashboard-col {
	-ms-flex-preferred-size: 0;
	    flex-basis: 0;
	-ms-flex-positive: 1;
	    flex-grow: 1;
	max-width: 100%;
	min-width: 0;
}
.dla-dashboard-col.sidebar {
	-ms-flex-preferred-size: auto;
	    flex-basis: auto;
	-ms-flex-positive: 0;
	    flex-grow: 0;
	margin-bottom: 10px;
}
@media (min-width: 530px) {
	.dla-dashboard-col.sidebar {
		border-right: 1px solid #dedede;
		margin-bottom: 0;
		margin-right: 30px;
		padding-right: 30px;
	}
}

.dla-dashboard-form-col {
	-ms-flex-preferred-size: 0;
	    flex-basis: 0;
	-ms-flex-positive: 1;
	    flex-grow: 1;
	max-width: 100%;
	min-width: 0;
}

.dla-dashboard-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.dla-dashboard-menu-item {
	font-family: var(--dla-font-condensed);
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
}
.dla-dashboard-menu-item.current a, .dla-dashboard-menu-item:hover a, .dla-dashboard-menu-item:active a {
	color: var(--dla-color--red);
}

.dla-dashboard-form-row {
	padding: 0 0 15px 0;
}
@media (min-width: 530px) {
	.dla-dashboard-form-row {
		padding: 0 15px 15px 0;
	}
}
.dla-dashboard-form-row.error label {
	color: var(--dla-color--red);
}
.dla-dashboard-form-row.error input {
	border-color: var(--dla-color--red);
}
.dla-dashboard-form-col:last-child .dla-dashboard-form-row {
	padding-right: 0;
}

@font-face {
	font-family: "GeogrotesqueMedium";
	font-style: normal;
	font-weight: 200;
	src: local("GeogrotesqueMedium"), local("GeogrotesqueMedium"), url(../assets/fonts/GeogrotesqueMedium.woff2) format("woff2");
}
.global-mobile-registration html, .global-mobile-registration body {
	font-family: Arial, serif;
	margin: 0;
	padding: 0;
	overflow: hidden;
}
.global-mobile-registration body {
	bottom: 0;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
}
.global-mobile-registration body {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.global-mobile-registration * {
	font-family: "GeogrotesqueMedium", serif;
}
.global-mobile-registration h1 {
	font-size: 32px;
	font-weight: 200;
	letter-spacing: 2px;
}
@media only screen and (min-width: 374px) and (max-width: 414px) {
	.global-mobile-registration h1 {
		font-size: 28px;
		margin-top: 10px;
	}
}
@media only screen and (max-width: 320px) {
	.global-mobile-registration h1 {
		font-size: 24px;
		margin-top: 0px;
	}
}
.global-mobile-registration h2 {
	border-bottom: 2px solid #eee;
	font-size: 26px;
	font-weight: 200;
	letter-spacing: 2px;
	margin-top: 0;
	padding-bottom: 10px;
}
@media only screen and (max-width: 320px) {
	.global-mobile-registration h2 {
		font-size: 24px;
		margin-bottom: 2px;
		padding-bottom: 0px;
	}
}
@media only screen and (min-width: 768px) {
	.global-mobile-registration h2 {
		margin-top: 20px;
	}
}
.global-mobile-registration h3 {
	font-size: 20px;
	letter-spacing: 2px;
}
@media only screen and (max-width: 414px) {
	.global-mobile-registration .preview h3 {
		margin-top: 10px;
	}
}
.global-mobile-registration h4 {
	font-size: 17px;
	letter-spacing: 2px;
	margin-top: 0;
	margin-bottom: 10px;
}
.global-mobile-registration p {
	font-size: 20px;
	letter-spacing: 1px;
	line-height: 1.2em;
	opacity: 0.8;
}
@media only screen and (min-width: 321px) and (max-width: 414px) {
	.global-mobile-registration p {
		font-size: 16px;
	}
}
@media only screen and (max-width: 320px) {
	.global-mobile-registration p {
		font-size: 14px;
		margin-bottom: 2px;
	}
}
@media only screen and (max-width: 414px) {
	.global-mobile-registration .text-size-0 h3 {
		margin-top: 10px;
		margin-bottom: 10px;
	}
}
@media only screen and (max-width: 414px) {
	.global-mobile-registration .text-size-0 p:first-of-type {
		margin-top: 5px;
	}
}
@media only screen and (max-width: 414px) {
	.global-mobile-registration .text-size-1 h3 {
		margin-top: 10px;
	}
}
@media only screen and (max-width: 414px) {
	.global-mobile-registration .text-size-2 h3 {
		margin-top: 10px;
	}
}
@keyframes flipInY {
	from {
		transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		animation-timing-function: ease-in;
		opacity: 0;
	}
	40% {
		transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
		animation-timing-function: ease-in;
	}
	60% {
		transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
		opacity: 1;
	}
	80% {
		transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
	}
	to {
		transform: perspective(400px);
	}
}
.global-mobile-registration .animate__flipInY {
	animation-duration: 0.75s;
	-webkit-backface-visibility: visible;
	backface-visibility: visible;
	animation-name: flipInY;
}
@keyframes flipOutY {
	from {
		transform: perspective(400px);
	}
	30% {
		transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
		opacity: 1;
	}
	to {
		transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		opacity: 0;
	}
}
.global-mobile-registration .animate__flipOutY {
	animation-duration: 0.75s;
	-webkit-backface-visibility: visible;
	backface-visibility: visible;
	animation-name: flipOutY;
}
.global-mobile-registration .animate__animated {
	animation-duration: 1s;
	animation-fill-mode: both;
}
@keyframes flip {
	from {
		transform: perspective(800px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
		animation-timing-function: ease-out;
	}
	40% {
		transform: perspective(800px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
		animation-timing-function: ease-out;
	}
	50% {
		transform: perspective(800px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
		animation-timing-function: ease-in;
	}
	80% {
		transform: perspective(800px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
		animation-timing-function: ease-in;
	}
	to {
		transform: perspective(800px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
		animation-timing-function: ease-in;
	}
}
.global-mobile-registration .animated.flip {
	-webkit-backface-visibility: visible;
	        backface-visibility: visible;
	animation-name: flip;
}
.global-mobile-registration .animated {
	animation-duration: 1s;
	animation-fill-mode: both;
}
.global-mobile-registration .animated-badge {
	animation-name: flipY360;
	animation-duration: 6s;
	animation-fill-mode: both;
	animation-iteration-count: infinite;
	-webkit-backface-visibility: visible;
	        backface-visibility: visible;
	transform-style: preserve-3d;
}
@keyframes flipY360 {
	from {
		transform: rotateY(0deg);
	}
	20% {
		transform: rotateY(360deg);
	}
	to {
		transform: rotateY(360deg);
	}
}
.global-mobile-registration .d-none {
	display: none !important;
}
.global-mobile-registration .d-flex {
	display: -ms-flexbox;
	display: flex;
}
@media all and (max-width: 320px) {
	.global-mobile-registration .hide-on-xs {
		display: none !important;
		/* This is intentional to override any other rules */
	}
}
@keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translate3d(30%, 0, 0);
	}
	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}
.global-mobile-registration .wizard-tab-content {
	display: -ms-flexbox;
	display: flex;
}
.global-mobile-registration .wizard-tab-content .wizard-tab-container {
	animation: fadeInRight 0.2s ease-out;
	display: block;
	padding-top: 90px;
	width: 100%;
}
@media only screen and (max-width: 320px) {
	.global-mobile-registration .wizard-tab-content .wizard-tab-container fieldset {
		padding: 3px 0;
	}
}
.global-mobile-registration .button,
.global-mobile-registration .vue-form-wizard .navigation .wizard-btn.button {
	background: #000;
	border: 0;
	border-radius: 3px;
	color: #fff;
	cursor: pointer;
	font-size: 24px;
	letter-spacing: 3px;
	padding: 10px 10px;
	text-transform: uppercase;
}
.global-mobile-registration .alt-button {
	background: #fff;
	color: #1246a1;
	display: block;
	font-size: 16px;
	margin-bottom: 10px;
}
.global-mobile-registration input,
.global-mobile-registration .button {
	transition: box-shadow 0.25s;
}
.global-mobile-registration input:focus,
.global-mobile-registration .button:focus {
	box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}
.global-mobile-registration .nav-button {
	background: transparent;
	border: 0;
	color: #fff;
	cursor: pointer;
	height: 40px;
	position: relative;
	width: 110px;
}
.global-mobile-registration .nav-button span {
	bottom: 0;
	display: block;
	font-size: 22px;
	left: 0;
	line-height: 44px;
	position: absolute;
	right: 0;
	text-align: center;
	text-transform: uppercase;
	top: 0;
	z-index: 1;
}
.global-mobile-registration .nav-button.left-nav-button span {
	margin-left: 15px;
}
.global-mobile-registration .nav-button.left-nav-button span.button-text {
	line-height: 40px;
	margin-left: 0px;
}
.global-mobile-registration .nav-button.left-nav-button span.button-text.faded {
	opacity: 0.5;
}
.global-mobile-registration .nav-button.right-nav-button span {
	margin-right: 15px;
}
.global-mobile-registration .nav-button.right-nav-button span.button-text {
	line-height: 40px;
	margin-right: 0px;
}
.global-mobile-registration .nav-button.right-nav-button span.button-text.faded {
	opacity: 0.5;
}
.global-mobile-registration .skip-button {
	background: #fff;
	border: 0;
	clear: both;
	color: #000;
	cursor: pointer;
	display: block;
	font-size: 18px;
	left: 0;
	margin: 2px auto auto;
	padding: 7px 10px;
	position: absolute;
	right: 0;
	text-decoration: none;
	width: 120px;
}
@media (max-width: 320px) {
	.global-mobile-registration .skip-button {
		display: inline;
		font-size: 14px;
		padding: 1px 2px;
		position: relative;
		width: 70px;
	}
}
.global-mobile-registration .play-button {
	background: transparent;
	border: 0;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-size: 20px;
	margin-bottom: 5px;
}
.global-mobile-registration .play-button:focus {
	background: transparent;
}
.global-mobile-registration .play-button .icon {
	background: #000 url(../assets/images/mobile-registration/icon_play_w.png);
	background-size: cover;
	border-radius: 3px;
	display: inline-block;
	height: 32px;
	margin-right: 5px;
	vertical-align: middle;
	width: 32px;
}
.global-mobile-registration .play-button .icon.playing {
	background-image: url(../assets/images/mobile-registration/icon_pause_w.png);
}
.global-mobile-registration .navigation {
	bottom: 10px;
	left: 10px;
	position: fixed;
	right: 10px;
	text-align: center;
	width: auto;
}
.global-mobile-registration .vue-form-wizard .wizard-tab-content {
	padding: 0;
}
.global-mobile-registration .wizard-progress-bar {
	background: #000 !important;
	/* Overrides an inline style of an third-party module */
	position: relative;
	top: 0;
}
.global-mobile-registration .vue-form-wizard.md .wizard-navigation .wizard-progress-with-circle {
	display: none;
	position: absolute;
	width: 100%;
}
.global-mobile-registration .wizard-tab-container {
	height: 100vh;
	overflow: auto;
}
.global-mobile-registration .step {
	margin: auto;
	max-width: 768px;
	padding: 20px 20px 200px;
}
@media screen and (min-width: 768px) {
	.global-mobile-registration .step {
		padding: 20px 40px 200px;
	}
}
@media screen and (max-width: 350px) {
	.global-mobile-registration .vue-form-wizard .wizard-card-footer .wizard-footer-right button {
		margin-bottom: 10px;
		margin-top: 0;
	}
}
.global-mobile-registration .hidden {
	display: none;
}
.global-mobile-registration fieldset {
	border: 0;
}
.global-mobile-registration fieldset label {
	display: block;
	font-size: 15px;
}
.global-mobile-registration fieldset input[type=radio] {
	margin-right: 10px;
}
.global-mobile-registration fieldset input[type=radio] ~ .radio-text {
	padding: 3px;
}
.global-mobile-registration fieldset input[type=radio]:focus ~ .radio-text {
	outline-width: 1px;
	outline-color: rgba(255, 255, 255, 0.7);
	outline-style: dotted;
}
.global-mobile-registration fieldset input[type=text],
.global-mobile-registration fieldset input[type=number],
.global-mobile-registration fieldset input[type=email] {
	background: transparent;
	border: 1px solid #fff;
	border-bottom-color: #aaa;
	border-right-color: #aaa;
	border-radius: 2px;
	color: #fff;
	font-size: 18px;
	letter-spacing: 2px;
	padding: 10px;
	text-align: center;
	width: 100%;
}
.global-mobile-registration fieldset input[type=text]:-ms-input-placeholder,
.global-mobile-registration fieldset input[type=number]:-ms-input-placeholder,
.global-mobile-registration fieldset input[type=email]:-ms-input-placeholder {
	color: #eee;
}
.global-mobile-registration fieldset input[type=text]::placeholder,
.global-mobile-registration fieldset input[type=number]::placeholder,
.global-mobile-registration fieldset input[type=email]::placeholder {
	color: #eee;
}
.global-mobile-registration fieldset input[type=text].fieldError,
.global-mobile-registration fieldset input[type=number].fieldError,
.global-mobile-registration fieldset input[type=email].fieldError {
	border-color: #ed334e;
}
.global-mobile-registration fieldset input[type=text].fieldError:-ms-input-placeholder,
.global-mobile-registration fieldset input[type=number].fieldError:-ms-input-placeholder,
.global-mobile-registration fieldset input[type=email].fieldError:-ms-input-placeholder {
	color: #fff;
}
.global-mobile-registration fieldset input[type=text].fieldError::placeholder,
.global-mobile-registration fieldset input[type=number].fieldError::placeholder,
.global-mobile-registration fieldset input[type=email].fieldError::placeholder {
	color: #fff;
}
@media only screen and (max-width: 320px) {
	.global-mobile-registration fieldset input[type=text],
.global-mobile-registration fieldset input[type=number],
.global-mobile-registration fieldset input[type=email] {
		font-size: 16px;
		padding: 8px 10px;
	}
}
@media only screen and (min-width: 768px) {
	.global-mobile-registration fieldset input[type=text],
.global-mobile-registration fieldset input[type=number],
.global-mobile-registration fieldset input[type=email] {
		margin-top: 10px;
	}
}
.global-mobile-registration fieldset .error {
	margin-top: -1px;
}
.global-mobile-registration fieldset .error * {
	background: #ed334e;
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;
	padding: 5px;
	text-align: center;
}
.global-mobile-registration fieldset select {
	background: transparent;
	border: 1px solid #fff;
	border-bottom-color: #aaa;
	border-right-color: #aaa;
	border-radius: 2px;
	color: #fff;
	font-size: 18px;
	padding: 5px;
	width: 49%;
	height: 42px;
}
.global-mobile-registration fieldset select.fieldError {
	border-color: #ed334e;
}
.global-mobile-registration fieldset select option {
	color: #000;
}
.global-mobile-registration .not-from-the-us-button {
	font-size: 14px;
	margin: auto auto 5px;
}
@media only screen and (max-width: 320px) {
	.global-mobile-registration .not-from-the-us-button {
		margin: 5px auto;
	}
}
@media only screen and (min-width: 768px) {
	.global-mobile-registration .not-from-the-us-button {
		margin: 20px auto 25px auto;
	}
}
.global-mobile-registration .dla-forms-cols-2 {
	-ms-flex-pack: justify;
	    justify-content: space-between;
	-ms-flex-direction: row;
	    flex-direction: row;
}
@media only screen and (max-width: 414px) {
	.global-mobile-registration #question {
		margin-top: 20px !important;
	}
}
.global-mobile-registration .vue-notification-group {
	display: block;
	margin-top: 20%;
	position: fixed;
	z-index: 5000;
}
.global-mobile-registration .vue-notification-wrapper {
	display: block;
	margin: 0;
	overflow: hidden;
	padding: 0;
	width: 100%;
}
.global-mobile-registration .notification-title {
	font-weight: 600;
}
.global-mobile-registration .vue-notification-template {
	background: white;
	box-sizing: border-box;
	display: block;
	text-align: left;
}
.global-mobile-registration .vue-notification {
	background: #000;
	border: 0;
	border-radius: 20px;
	box-sizing: border-box;
	color: white;
	display: block;
	font-size: 16px;
	margin: 0 5px 5px;
	padding: 10px;
	text-align: center;
}
.global-mobile-registration .vue-notification.warn {
	background: #ffb648;
}
.global-mobile-registration .vue-notification.error {
	background: #E54D42;
}
.global-mobile-registration .vue-notification.success {
	background: #68CD86;
}
.global-mobile-registration .vn-fade-enter-active, .global-mobile-registration .vn-fade-leave-active, .global-mobile-registration .vn-fade-move {
	transition: all 0.5s;
}
.global-mobile-registration .vn-fade-enter, .global-mobile-registration .vn-fade-leave-to {
	opacity: 0;
}
@media screen and (max-width: 350px) {
	.global-mobile-registration .vue-form-wizard .wizard-card-footer .wizard-footer-left {
		float: left;
	}
	.global-mobile-registration .vue-form-wizard .wizard-card-footer .wizard-footer-right {
		float: right;
	}
}
.global-mobile-registration #slide {
	animation: areaResize 3s linear 0.7s 1 normal both;
	-webkit-backface-visibility: visible;
	        backface-visibility: visible;
	background: #fff;
	bottom: 0;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
	left: 0;
	position: fixed;
	right: 0;
	text-align: center;
	top: 0;
	z-index: 1;
}
.global-mobile-registration #slide.notransitions {
	animation: none;
	bottom: calc(100vh - 90px);
	min-height: 90px;
	transition: none !important;
	/* Need important to disable transitions */
}
.global-mobile-registration #slide.notransitions img {
	animation: none;
	height: 60px;
	left: 20px;
	margin-left: 0px;
	margin-top: -30px;
	transition: none !important;
	/* Need important to disable transitions */
	width: 200px;
}
.global-mobile-registration #slide img {
	animation: imageResize 1.5s linear 4s 1 normal both;
	-webkit-backface-visibility: visible;
	        backface-visibility: visible;
	display: block;
	height: 78px;
	left: 50%;
	margin-left: -130px;
	margin-top: -39px;
	position: absolute;
	top: 50%;
	width: 260px;
}
.global-mobile-registration #slide .helper {
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}
@keyframes areaResize {
	0% {
		bottom: 0;
	}
	90% {
		bottom: 0;
	}
	100% {
		bottom: calc(100vh - 90px);
		min-height: 90px;
	}
}
@keyframes imageResize {
	0% {
		width: 260px;
	}
	100% {
		height: 60px;
		left: 20px;
		margin-left: 0px;
		margin-top: -30px;
		width: 200px;
	}
}
@media only screen and (max-device-width: 1024px) and (orientation: landscape) {
	.global-mobile-registration #intro,
.global-mobile-registration .logo-container {
		display: none;
	}
}
.global-mobile-registration .sports label {
	cursor: pointer;
	display: block;
}
.global-mobile-registration .sports input[type=checkbox] {
	height: 0;
	opacity: 0;
	position: absolute;
	width: 0;
}
.global-mobile-registration .sports input[type=checkbox] + label .heart {
	background-image: url(../assets/images/mobile-registration/heart-empty.png);
	background-repeat: no-repeat;
	background-size: contain;
	display: block;
	height: 24px;
	margin-top: 15px;
	margin: auto;
	width: 24px;
}
.global-mobile-registration .sports input[type=checkbox]:checked + label .heart {
	background: url(../assets/images/mobile-registration/heart-filled.png) no-repeat;
	background-size: contain;
}
.global-mobile-registration .sports input[type=checkbox]:focus + label {
	outline-width: 1px;
	outline-color: white;
	outline-style: solid;
}
.global-mobile-registration .wizard-tab-container {
	-webkit-mask-image: linear-gradient(to bottom, black 75%, transparent 90%);
	        mask-image: linear-gradient(to bottom, black 75%, transparent 90%);
}
.global-mobile-registration .grecaptcha-badge {
	visibility: hidden;
}
.global-mobile-registration #help-popup-close-button {
	background: url(../assets/images/mobile-registration/backspace-icon.png) #000 no-repeat center center;
	border-radius: 4px;
	cursor: pointer;
	display: block;
	height: 20px;
	padding: 7px;
	position: fixed;
	right: 20px;
	top: 30px;
	width: 20px;
	z-index: 2;
}
@media screen and (min-width: 320px) {
	.global-mobile-registration .privacy-reminder {
		font-size: 16px;
		line-height: 1.4em;
	}
}
.global-mobile-registration .vue-form-wizard {
	color: #fff;
	background: url(../assets/images/mobile-registration/background_0.png);
}
/*# sourceMappingURL=style.css.map */
