#sign_up_header {
	text-align: center;
	background-color: var(--secondary);
	padding-top: 5px;
	padding-bottom: 64px;
	margin-bottom: 0;
}

#sign_up_header h1 {
	margin-bottom: 18px;
	line-height: 1.25;
}

.sign_up_text {
	font-weight: bold;
	font-size: 38px;
	line-height: 1.236842;
	color: var(--light-blue);
	display: inline-block;
	position: relative;
}

.sign_up_text.pointer_arrow:before {
	position: absolute;
	content: '';
	width: 93px;
	height: 147px;
	display: block;
	right: -113px;
	top: 25px;
	background-image: url(../../img/green-arrow-signup.svg);
	background-size: auto 100%;
	background-repeat: no-repeat;
}

.text_above_switch {
	margin-bottom: 10px;
	font-size: 14px;
	line-height: 1.29;
}

.switch {
	width: 59px;
	height: 32px;
	border: 2px solid #303481;
	border-radius: 16px;
	background-color: #FFFFFF;
	position: relative;
	cursor: pointer;
}

.switch:before {
	content: '';
	border-radius: 50%;
	width: 26px;
	height: 26px;
	background-color: var(--primary);
	display: block;
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	left: 2px;
}

.switch.right:before {
	left: unset;
	right: 2px;
}

.payment_switch_wrapper > * {
	display: inline-block;
	vertical-align: middle;
}

#payment_switch {
	margin: 0 5px;
}

@media (min-width: 768px) and (max-width: 992px) {
	.sign_up_text {
		font-size: 32px;
	}

	.sign_up_text:before {
		height: 140px;
	}
}

@media (max-width: 767px) {
	.sign_up_text {
		font-size: 24px;
	}	

	#sign_up_header {
		padding-bottom: 42px;
	}

	.sign_up_text.pointer_arrow:before {
		width: 49px;
		height: 107px;
		right: -37px;
		top: 17px;
		background-image: url(../../img/arrow-mobile-green.svg);
	}
}

@media (max-width: 369px) {
	.sign_up_text.pointer_arrow:before {
		background-size: 42px auto;
	}
}
