body {
	font-family: 'Poppins';
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
}

.payment_checkout_modal {
	width: 100%;
	height: 100vh;
	/* position: fixed; */
	background-color: rgba(37, 56, 88, 0.6);
	z-index: 10000;
	overflow-y: scroll;
	/* padding: 30px 0px; */
}

.payment_checkout_modal_content {
	width: 75%;
	max-width: 360px;
	/* max-height: 735px; */
	display: flex;
	flex-direction: column;
	background-color: #fff;
	border-radius: 25px;
	padding: 25px;
	padding-bottom: 0px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	position: relative;
	margin: 20px auto;
}

.close_checout_modal_x {
	color: #253858;
	font-size: 27px;
	font-weight: 275;
	cursor: pointer;
	position: absolute;
	left: 20px;
	top: 10px;
	transform: rotate(45deg);
}

#card_payment_form {
	display: flex;
	flex-direction: column;
}

#card-element {
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
	margin-bottom: 20px;
}

#submit_button {
	background-color: #3171fe;
	color: #fff;
	border: none;
	padding: 20px 25px;
	border-radius: 10px;
	cursor: pointer;
	transition-duration: 0.3s;
	font-weight: 700;
	font-size: 18px;
}

.payment_header_blue_word {
	color: #3171fe;
}

#submit_button:hover {
	transform: scale(1.03);
}

#submit_button:disabled {
	opacity: 0.5;
}

.stripe_input_element {
	padding: 14px;
	border: 1px solid #d9d9d9;
	border-radius: 8px;
	margin-bottom: 20px;
	margin-left: -4px;
}

.payment_method_input {
	padding: 12px;
	border: 1px solid #d9d9d9;
	border-radius: 8px;
	font-size: 16px;
	outline: none;
	margin-left: -4px;
}

.stripe_input_element.error {
	border-color: #e40000;
}

.payment_bottom_inputs {
	display: flex;
	justify-content: start;
}

.expiry-cvc-container {
	display: flex;
	flex-direction: column;
	margin-right: 20px;
}

#card_expiry_element {
	width: 110px;
}

#card_cvc_element {
	width: 75px;
}

.half_width_input {
	width: 100%;
}

label {
	margin-bottom: 5px;
	font-size: 12px;
	font-weight: 400;
	color: #253858;
	text-align: start;
	font-weight: 400;
}

.checkout_header {
	font-weight: 300;
	font-size: 12px;
	color: #253858;
	margin-bottom: 20px;
}

.checkoud_header_info {
	font-weight: 600;
	font-size: 18px;
	margin-bottom: 20px;
}

.payment_select_method_header {
	color: #253858;
	font-weight: 400;
	font-size: 16px;
	margin-bottom: 10px;
}

.payment_method_options_container {
	width: 100%;
	display: flex;
	justify-content: center;
	margin-bottom: 20px;
}

.payment_method_paypal {
	width: 50%;
	margin-right: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 0px 4px 15px 0px #00000040;
	border-radius: 10px;
	cursor: pointer;
	padding: 10px 0px;
	background-color: #fff;
}

.payment_method_paypal > img {
	height: 25px;
	width: 85px;
}

.payment_method_card {
	width: 50%;
	box-shadow: 0px 4px 15px 0px #00000040;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	padding: 10px 0px;
	background-color: #fff;
}

.payment_method_paypal.checked {
	background-color: #edf5fc;
}

.payment_method_card.checked {
	background-color: #edf5fc;
}

.payment_method_card_container {
	display: flex;
	align-items: center;
	margin-top: -5px;
}

.payment_method_card_container > :first-child {
	margin-right: -10px;
}

.payment_method_card_container > img:nth-child(1) {
	height: 34px;
}

.payment_method_card_container > img:nth-child(2) {
	height: 50px;
}

.payment_method_card_header {
	color: #253858;
	font-weight: 600;
	font-size: 12px;
}

.payment_total_container {
	display: flex;
	justify-content: space-between;
	margin: 20px 0px;
}

.payment_total_text {
	font-weight: 400;
	font-size: 14px;
	color: #253858;
}

.payment_total_price {
	font-weight: 700;
	font-size: 14px;
	color: #253858;
}

.payment_errors_container {
	display: flex;
	flex-direction: column;
	align-items: start;
}

.payment_error_container {
	display: flex;
	margin-bottom: 5px;
}

.payment_error_icon {
	margin-right: 5px;
}

.payment_error_text {
	font-weight: 400;
	font-size: 10px;
	color: #ee4747;
}

.payment_error_container#card,
.payment_error_container#expiry,
.payment_error_container#cvc,
.payment_error_container#funds,
.payment_error_container#custom {
	display: none;
}

.payment_paypal_payment_method_form {
	display: none;
}

.payment_modal_security_assurance_container {
	display: flex;
	width: 130px;
	background-color: #00ff000f;
	margin-top: 15px;
	padding: 5px;
	align-items: center;
	border-radius: 5px;
}

.payment_modal_security_assurance_container > img {
	height: 14px;
	margin-right: 5px;
}

.payment_modal_pay_safe_text {
	font-size: 11px;
	font-weight: 300;
}

.payment_modal_paying_brands_logos {
	margin-top: 15px;
	display: flex;
	flex-direction: center;
	align-items: center;
}

.payment_modal_paying_brands_logos > img:nth-child(1) {
	height: 36px;
}

.payment_modal_paying_brands_logos > img:nth-child(2) {
	height: 60px;
}

.payment_modal_card_option_footer {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-top: 10px;
}

.payment_last_plan_timer_container {
	display: flex;
	flex-direction: column;
	width: 100%;
	background-color: #3171fe;
	border-top-right-radius: 8px;
	border-top-left-radius: 8px;
	padding: 20px 0px;
	display: none;
}

.payment_plans_section.last_payment {
	border-top-right-radius: 0px;
	border-top-left-radius: 0px;
	border-right: 1px solid #3171fe;
	border-bottom: 1px solid #3171fe;
	border-left: 1px solid #3171fe;
}

.payment_last_plan_timer_header {
	font-weight: 400;
	font-size: 18px;
	color: #fff;
}

.payment_last_plan_timer_header_bold {
	font-weight: 700;
}

.payment_last_plan_timer_value {
	font-size: 24px;
	font-weight: 700;
	color: #fff;
	margin-top: 5px;
}

.payment_plan_price_container {
	display: flex;
}

.payment_plans_section.last_payment
	.payment_plan.payment_plan_most_popular
	.payment_plan_price_per_day_container_most_popular.payment_plan_price_per_day_container.last_payment
	span {
	color: #e40000 !important;
}

.payment_section_title {
	text-align: left;
	margin: 10px 0px;
	font-size: 16px;
	color: #253858;
}

.payment_method_info {
	font-size: 10px;
	margin-top: 20px;
}

.payment_security_assurance_container {
	display: flex;
	margin-top: 15px;
	align-items: center;

	justify-content: center;
}

.payment_security_assurance {
	background-color: #00ff000f;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 5px 10px;
	border-radius: 6px;
}

.payment_security_assurance > img {
	height: 24px;
	margin-right: 5px;
}

.payment_pay_safe_text {
	font-size: 12px;
	font-weight: 300;
	color: #00be00;
}

.payment_paying_brands_logos {
	margin: 15px 0px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.payment_paying_brands_logos > img:nth-child(1) {
	height: 36px;
}

.payment_paying_brands_logos > img:nth-child(2) {
	height: 60px;
	margin: 0px -10px;
}

.payment_paying_brands_logos > img:nth-child(3) {
	height: 24px;
}

.b_quiz_footer_policy {
	text-align: center;
	font-size: 12px;
	color: #898989;
	font-weight: 400;
	line-height: 18px;
	letter-spacing: 0.03em;
	max-width: 300px;
	width: 100%;
	margin: auto auto 15px auto;
}
.b_quiz_footer_policy a {
	text-decoration: none;
	color: #898989;
}

.input-error {
	border-color: tomato;
	color: tomato;
}

.payment_method_input_error_message {
	color: tomato;
	font-size: 12px;
	margin: 0;
	padding: 0;
	text-align: left;
	margin-top: 5px;
	margin-bottom: 20px;
}
