.left_wrapper {
	width: 484px;
	max-width: 100%;
	margin: auto;
}

.text_above_form {
	text-align: center;
	font-size: 30px;
	line-height: 1.266667;
	margin-bottom: 20px;
}

.form_wrapper {
	background-color: white;
	border-radius: 8px;
	box-shadow: 0 12px 24px -10px rgba(36,48,110,0.2);
	padding: 35px 60px 60px;
	margin: auto;
}

.signup_row {
	overflow: visible;
}

.already_signed_up {
	font-size: 14px;
	line-height: 18px;
	float: right;
	padding: 12px 0;
}

.already_signed_up a {
	color: var(--light-blue);
}

.invite_only_notice {
	background-color: var(--light-green);
	color: white;
	border-radius: 2px;
	padding: 11px 10px 11px 35px;
	font-size: 14px;
	line-height: 18px;
	background-image: url(../../img/info-circle.svg);
	background-size: 16px;
	background-position: 10px 12px;
	background-repeat: no-repeat;
	margin-bottom: 26px;
}

.invite_only_notice a {
	color: white;
	font-size: 14px;
	line-height: 18px;
}

.terms {
	font-size: 12px;
	line-height: 16px;
	margin-bottom: 16px;
	display: block;
}

.form_wrapper input[type=text],
.form_wrapper input[type=password],
.form_wrapper input[type=email] {
	width: 100%;
	margin-bottom: 8px;
}

#signup {
	margin-bottom: 87px;
}

#invite_code {
	margin-bottom: 23px;
}

.form_row {
	margin-left: -4px;
	margin-right: -4px;
	overflow: visible;
}

.form_col {
	float: left;
	padding-left: 4px;
	padding-right: 4px;
}

.form_col.half {
	width: 50%;
}

.tabs_wrapper {
	position: relative;
}

ul.tabs {
	padding: 0;
	margin: 0;
	list-style: none;
	overflow: hidden;
	margin-left: -4px;
	margin-right: -4px;
}

li.tab {
	float: left;
	padding-left: 4px;
	padding-right: 4px;
}

.tab_inside {
	border: 2px solid #E7F5FF;
	border-radius: 8px 8px 0 0;
	background-color: #FFFFFF;
	cursor: pointer;
	padding: 8px 15px 4px;
}

.tab.active .tab_inside {
	background-color: var(--lighter-blue);
}

.tab_title {
	font-size: 24px;
	line-height: 1.291667;
	font-weight: bold;
	color: var(--dark-blue);
}

.tab_subtitle {
	font-size: 14px;
	line-height: 18px;
}

.progress_bar {
	height: 5px;
	background-color: var(--lighter-blue);
	position: relative;
}

.progress {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 0%;
	background-color: var(--light-blue);
}

ul.content_tabs {
	padding: 0;
	margin: 0;
	list-style: none;
}

.content_tab {
	display: none;
	padding-top: 37px;
}

.content_tab.active {
	display: block;
}

.content_title {
	font-size: 18px;
	line-height: 1.277778;
	font-weight: bold;
	color: var(--dark-blue);
	margin-bottom: 19px;
}

.content_wrapper {
	padding: 0 15px;
}

.tab_screenshot {
	margin-top: 30px;
	text-align: center;
}

.tab_screenshot img[src*="marketing"] {
	width: 468px;
	max-width: 100%;
}

.pause_button {
	position: absolute;
	right: 0;
	top: -63px;
	display: inline-block;
	cursor: pointer;
	width: 40px;
	height: 40px;
	background-image: url(../../img/pause.svg);
	background-repeat: no-repeat;
	background-position: center;
}

.pause_button.paused {
	background-image: url(../../img/play.svg);
}

.signup_step {
	display: none;
}

.signup_step.active {
	display: block;
}

.signup_step .previus_step {
	margin-bottom: 20px;
}

.stripe_test_mode {
	font-size: 12px;
	line-height: 16px;
}

@media (min-width: 768px) and (max-width: 991px) {
	.form_wrapper {
		padding: 35px 30px 30px;
	}

	.tab_title {
		font-size: 18px;
	}

	.tab_subtitle {
		display: none;
	}

	.already_signed_up {
		font-size: 11px;
	}

	.terms {
		font-size: 11px;
	}
}

@media (max-width: 767px) {
	.pause_button {
		display: none;
	}

	.tab_title {
		font-size: 18px;
		text-align: center;
	}

	.tab_subtitle {
		font-size: 12px;
		line-height: 15px;
		text-align: center;
	}

	.signup_row {
		display: flex;
		flex-direction: column;
	}

	.signup_row .col {
		width: 100%;
		float: none;
	}	

	.signup_row .col:nth-child(2) {
		order: 1;
	}

	.signup_row .col:nth-child(1) {
		order: 2;
	}

	.form_wrapper {
		border: 2px solid #E6F8FD;
	}

	.form_wrapper {
		padding: 30px 21px;
	}

	.invite_only_notice {
		font-size: 12px;
		margin-bottom: 18px;
	}

	.invite_only_notice a {
		font-size: 12px;
	}

	.submit_button.wrapper .button {
		width: 100%;
		max-width: 400px;
	}

	.already_signed_up {
		float: none;
		text-align: center;
	}

	#signup {
		margin-bottom: 50px;
	}

	.tab_inside {
		padding: 8px 6px 6px;
	}

	ul.tabs {
		margin-left: -2px;
		margin-right: -2px;
	}

	li.tab {
		padding-left: 4px;
		padding-right: 2px;
	}

	.content_tab {
		padding-top: 21px;
		text-align: center;
	}

	.content_tab .content_wrapper {
		padding: 0 5px;
	}

	.tab_screenshot {
		display: none;
	}

	ul.content_tabs {
		margin-bottom: 40px;
	}
}
