.signup {
	background: #F8F8F8;
	text-transform: none;
	letter-spacing: 0;
}
h1 {
	margin-top: 60px;
	font-weight: normal;
	font-size: 20px;
	color: #262626;
	text-align: center;
}
h1 img {
	margin-top: 20px;
	width: 271px;
}
.panel {
	background: #FFFFFF;
	border: 1px solid #EBEBEB;
	box-shadow: 2px 2px 40px 0 rgba(0,0,0,0.10);
	width: 690px;
	margin: 50px auto;
	border-radius: 4px;
	padding: 70px 40px;
	position: relative;
	color: #262626;
	text-align: left;
	max-width: 100%;
}
.progress-bar {
	height: 15px;
	width: 100%;
	background: #e5e5e5;
	border-radius: 4px 4px 0 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}
.progress-bar .progress-indicator {
	height: 100%;
	left: 0;
	background: #84C3EC;
	top: 0;
	border-radius: 4px 4px 0 0;
	transition: width 1s ease-in-out;
}
.step-1, .step-2, .step-3, .step-4 {
	display: none;
}
.step-1.active, .step-2.active, .step-3.active, .step-4.active {
	display: block;
}
h2 {
	margin-top: 0;
	font-weight: 200;
	font-size: 20px;
	margin-bottom: 30px;
}
.field {
	margin-bottom: 25px;
}
label {
	font-weight: bold;
	font-size: 13px;
	text-transform: uppercase;
	margin-bottom: 8px;
	display: inline-block;
}
input {
	background: #F6F6F6;
	border: 1px solid #E2E2E2;
	border-radius: 3px;
	height: 38px;
	padding: 6px 12px;
	font-size: 16px;
	font-family: inherit;
	font-weight: normal;
	width: 100%;
	max-width: 350px;
}
.next-step, .finish {
	background: #E67E22;
	border-radius: 4px;
	font-weight: bold;
	font-size: 14px;
	color: #FFFFFF;
	letter-spacing: 0.65px;
	text-align: center;
	height: 39px;
	margin: 60px auto 20px;
	border-radius: 3px;
	-webkit-appearance: none;
	appearance: none;
	border: 0;
	display: block;
	text-transform: uppercase;
	width: 240px;
	cursor: pointer;
}
.finish {
	background: #19B319;
}
.next-step:hover, .next-step:focus {
	background: #C66713;
}
.finish:hover, .finish:focus {
	background: #0F900F;
}
.next-step[disabled], .finish[disabled] {
	opacity: 0.3;
	pointer-events: none;
}
.field.checklist {
	margin-bottom: 50px;
}
.field.checklist label {
	display: inline-block;
	width: 200px;
	padding-right: 15px;
	vertical-align: top;
	cursor: pointer;
}
.field.checklist label input {
	width: auto;
	margin-right: 6px;
	vertical-align: top;
	height: auto;
	position: relative;
	top: -2px;
}
.other-field { 
	display: none;
}
.step-2 h2 {
	margin-bottom: 15px;
}
p {
	font-size: 14px;
	line-height: 20px;
}
.stripe-msg {
	font-size: 11px;
	color: #7C7C7C;
	text-align: right;
	width: 380px;
	max-width: 100%;
	margin: 10px auto;
	opacity: 0.6;
}
.payment-form-wrapper {
	width: 380px;
	max-width: 100%;
	margin: 30px auto;
}
.payment-form-wrapper input {
	max-width: 100%;
}
.field.referral-code {
	margin-top: 30px;
}
.field.referral-code label {
	display: inline-block;
	font-size: 14px;
	text-transform: none;
	font-weight: normal;
	width: calc(100% - 179px);
	opacity: 0.5;
}
.field.referral-code input {
	height: 28px;
	background: #F6F6F6;
	border: 1px solid #E2E2E2;
	border-radius: 3px;
	width: 145px;
	margin-left: 30px;
}
.field.cardholder-name {
	margin-bottom: 15px;
}
.StripeElement {
	background: #F6F6F6;
	border: 1px solid #E2E2E2;
	border-radius: 3px;
	padding: 10px;
}
#stripe-error {
	margin: 15px 0;
	background: #FFE6E6;
	border: 1px solid #E3B1B1;
	border-radius: 4px;
	padding: 10px 15px;
	font-size: 14px;
}
.referral-code-confirmation {
	margin: 15px 0;
	background: #D7FFE7;
	border: 1px solid #66FFA4;
	border-radius: 4px;
	padding: 10px 15px;
	font-size: 14px;
	display:  none;
}
form.processing {
	position: relative;
}
form.processing:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,0.8);
	z-index: 1000;
}
form.processing:after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 60px;
	height: 60px;
	margin: -30px 0 0 -30px;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url('/assets/images/loader.svg');
	-webkit-animation: rotating 1.2s linear infinite;
	-moz-animation: rotating 1.2s linear infinite;
	-ms-animation: rotating 1.2s linear infinite;
	-o-animation: rotating 1.2s linear infinite;
	animation: rotating 1.2s linear infinite;
	z-index: 1001;
}
@-webkit-keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.step-4 {
	text-align: center;
}
.step-4 p {
	font-size: 16px;
}
