@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,500;1,600;1,700&family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Noto+Serif+Devanagari:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap");

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-size: 16px;
	line-height: 1.4;
	font-family: "Open Sans", sans-serif;
	/* font-family: 'Open Sans','Noto Serif Devanagari',sans-serif; */
	color: #fff;
	font-weight: 400;
	animation: fadeInAnimation ease 1s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
}

body.hindi-translate {
	font-family: "Noto Serif Devanagari", sans-serif;
}

.hindi-translate .header .head_title h2 {
	font-family: inherit;
}

@keyframes fadeInAnimation {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

h1 {
	font-weight: 700;
	font-size: 28px;
	margin-bottom: 16px;
}

h3 {
	font-size: 34px;
	line-height: 1.35;
	color: #fff;
	font-weight: 400;
}

.main_content {
	min-height: 100vh;
	background: linear-gradient(180deg, #268ba0 0%, #317685 100%);
	position: relative;
	max-height: fit-content;
}

header.header {
	padding-top: 25px;
	padding-bottom: 45px;
	width: 100%;
	max-width: 950px;
	margin: 0 auto;
}

.header_logo img {
	width: 100%;
}

.header_logo {
	max-width: 240px;
	position: absolute;
	top: 20px;
	left: 20px;
}

.header_content {
	width: 100%;
}

.header .back_button button {
	color: #fff;
	border: none;
	background-color: transparent;
	outline: none;
	cursor: pointer;
}

.header .back_button button img {
	width: 30px;
	height: 30px;
}

/* Progress bar */
.progressbar {
	margin: 23px 0 30px 0;
	counter-reset: step;
	display: flex;
	align-items: center;
}

.progressbar li {
	list-style-type: none;
	width: 25%;
	float: left;
	font-size: 12px;
	position: relative;
	text-align: center;
	text-transform: uppercase;
	color: #7d7d7d;
}

.progressbar li:before {
	width: 20px;
	height: 20px;
	content: "";
	line-height: 30px;
	border: 1px solid #91c3cd;
	background-color: #268ba0;
	display: block;
	text-align: center;
	margin: 0 auto 10px auto;
	border-radius: 50%;
	transition: all 0.8s;
	z-index: 3;
	position: relative;
	box-sizing: content-box;
}

.progressbar li:after {
	width: 100%;
	height: 4px;
	content: "";
	position: absolute;
	background-color: #91c3cd;
	top: 9px;
	left: -50%;
	z-index: -1;
	transition: all 0.8s;
	z-index: 1;
	box-sizing: content-box;
}

.progressbar li:first-child:after {
	content: none;
}

.progressbar li.active:before {
	border-color: #91e8b2;
	background-color: #91e8b2;
	background-image: url("../images/Vector.png");
	background-repeat: no-repeat;
	background-position: center;
	box-sizing: content-box;
}

.progressbar li.current:after {
	background-image: url("../images/progressbar_img.PNG");
	background-size: 50% 100%;
	background-repeat: no-repeat;
	box-sizing: content-box;
}

.progressbar li.active:after {
	background-color: #91e8b2;
	transition: all 0.8s;
	box-sizing: content-box;
}

.progressbar li.current1:before,
.progressbar li.active.current1:before {
	background-color: #fff;
	background-image: none;
	box-sizing: content-box;
}

.btn {
	background-color: #91e8b2;
	margin: 5px;
	width: 75px;
	color: white;
}

.btn:hover {
	color: white;
}

.btn:focus {
	color: white;
}

.btn-container {
	display: flex;
	justify-content: center;
	width: 100%;
	position: absolute;
	bottom: 0;
}

.header_container {
	padding: 15px 15px;
	width: 85%;
	margin: 0 auto;
}

.container {
	width: 100%;
	/* max-width: 850px;
    margin: 0 auto;
    padding: 10px 15px; */
}

.form_field .input {
	min-height: 60px;
	padding: 5px 10px;
	width: 100%;
	outline: none;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.6);
	border-radius: 10px;
	font-weight: 400;
	font-size: 22px;
	line-height: 30px;
	color: #fff;
}

.input::-webkit-input-placeholder {
	color: rgba(255, 255, 255, 0.6);
}

.header .head_title {
	display: flex;
	align-items: center;
	text-align: center;
	justify-content: center;
	width: 100%;
	position: relative;
}

.header .head_title h2 {
	font-family: "Montserrat";
	font-weight: 600;
	font-size: 24px;
	line-height: 1.25;
	text-align: center;
	color: rgba(255, 255, 255, 0.8);
	text-transform: uppercase;
	margin-bottom: 0;
}

.header .head_title .back_button {
	position: absolute;
	left: 52px;
}

.main_content .inner_title {
	padding: 10px 0 30px;
}

.main_content .inner_title h3 span {
	color: #ff6c58;
}

.error_msg {
	color: #ff6c58;
	font-size: 18px;
	line-height: 1.33;
	margin-top: 15px;
	display: inline-block;
}

.error_msg p {
	background-color: aliceblue;
	font-weight: 600;
	padding: 2px;
}

.button {
	border: 0;
	outline: none;
	padding: 15px 30px;
	cursor: pointer;
	width: 100%;
	background: #fffda9;
	border-radius: 40px;
	color: #317685;
	font-family: "Montserrat";
	font-style: normal;
	font-weight: 600;
	font-size: 24px;
	line-height: 29px;
	min-height: 60px;
	box-shadow: 0 4px 16px 0 rgb(0 0 0 / 50%);
	text-transform: uppercase;
	transition: all 0.3s ease;
	user-select: none; /* Prevent text selection */
	-webkit-user-select: none; /* Prevent text selection on mobile Safari */
	-webkit-touch-callout: none; /* Disable long-press menu on mobile */
}

.button:hover {
	background-color: #fffed4;
}

.form_field {
	margin: 10px 0;
}

.form_field .radio,
.form_field .checkbox {
	display: none;
}

.form_field label.radio_btn {
	width: 100%;
	display: inline-block;
	padding: 11.5px 25px;
	text-align: center;
	min-height: 50px;
	transition: all 0.3s linear;
	background: rgba(255, 255, 255, 0.05);
	border: 2px solid rgba(255, 255, 255, 0.6);
	border-radius: 35px;
	font-size: 24px;
	line-height: 1.375;
	color: #fff;
}

.form_field label.radio_btn:hover {
	background: #6aa7b4;
}

input.radio[type="radio"]:checked ~ label.radio_btn,
input.checkbox[type="checkbox"]:checked ~ label.checkbox_btn {
	background: #fff;
	color: #317685;
	font-weight: 600;
}

.form_field label.checkbox_btn {
	background: rgba(255, 255, 255, 0.05);
	border: 2px solid rgba(255, 255, 255, 0.6);
	border-radius: 10px;
	width: 100%;
	text-align: center;
	font-style: normal;
	font-weight: 400;
	font-size: 24px;
	line-height: 33px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 11.5px 15px;
	color: #ffffff;
	transition: all 0.3s linear;
}

.form_field label.checkbox_btn:hover {
	background: rgba(255, 255, 255, 0.3);
}

.form_field.button_wrap {
	margin-top: 55px;
}

.content_wrapper {
	margin: 0 auto;
	width: 100%;
	max-width: 800px;
	padding-bottom: 200px;
	overflow-y: auto;
}

.content_wrapper.radio_wrapper {
	height: auto;
}

.cstm_content_height {
	height: calc(100vh - 240px);
}

.content_wrapper::-webkit-scrollbar {
	width: 5px;
	border-radius: 10px;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	margin: 0;
}

/* Statics pages */

.static_page .header_wrap {
	background: linear-gradient(180deg, #268ba0 0%, #317685 100%);
}

.static_page .header_wrap .header {
	padding-bottom: 1px;
}

.static_page .header_wrap .progressbar {
	margin-bottom: 22px;
}

.static_page .content_wrapper {
	color: #081f32;
	padding-top: 45px;
	padding-bottom: 0px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: calc(100vh - 240px);
}

.static_page .content_wrapper .button_wrap {
	padding-top: 120px;
}

.static_page .page_title h3 {
	font-weight: 600;
	font-size: 28px;
	line-height: 38px;
}

.static_page .page_title {
	padding: 10px 0;
}

.static_page .content_wrapper h4 {
	font-weight: 400;
	font-size: 22px;
	line-height: 30px;
	margin: 2px 0 16px;
}

.static_page .content_wrapper p {
	font-weight: 400;
	font-size: 20px;
	line-height: 1.37;
	color: #081f32;
	margin-bottom: 16px;
}

.static_page .content_wrapper p em.bold {
	font-weight: bold;
	color: #000;
}

.static_page .content_wrapper p .bg_yellow {
	background-color: #fffda9;
}

.static_page .content_wrapper .red_color {
	color: #ff4b55;
}

.static_page .content_wrapper em.blue,
.static_page .content_wrapper .blue {
	color: #268ba0;
	font-weight: bold;
}

.static_page .content_wrapper .light_red {
	color: #e89191;
}

.static_page .content_wrapper .light_orange {
	color: #ff9f58;
}

.static_page .content_wrapper .light_primary {
	color: #268ba0;
}

.static_page .content_wrapper p .small_font {
	font-size: 16px;
}

.static_page .content_wrapper p.bg_orange {
	background-color: #fde5d3;
}

.static_page .content_wrapper p.border_radius {
	border-radius: 10px;
	padding: 5px 10px;
}

.static_page .content_wrapper h5.img_title {
	font-weight: 400;
	font-size: 22px;
	line-height: 30px;
}

.static_page .content_wrapper .image_wrap {
	padding: 20px 0;
	width: 100%;
	max-width: 400px;
}
.static_page .content_wrapper .image_wrap_v2 {
	padding: 0 0 10px 0;
	width: 100%;
	max-width: 400px;
}

.static_page .content_wrapper .image_wrap img {
	width: 100%;
	box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
}

.static_page .content_wrapper .image_wrap_v2 img {
	width: 100%;
	/* box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05); */
	border-radius: 10px;
}

.static_page .button {
	background: #317685;
	font-size: 18px;
	color: #fff;
}

.static_page .button:hover {
	background-color: #6397a2;
}

.static_page .button_wrap {
	padding-top: 30px;
	margin-top: 30px;
	z-index: 1;
}

.form_field.form_field2 {
	display: flex;
	align-items: center;
}

.form_field.form_field2 .input {
	text-align: center;
	max-width: 80px;
}

.form_field.form_field2 label {
	font-size: 22px;
	line-height: 30px;
	margin: 0 24px;
}

.devider {
	border: 1px solid rgba(255, 255, 255, 0.3);
	margin: 50px 0 40px;
}

.form_field.form_field2 .select {
	background: rgba(255, 255, 255, 0.3);
	border: 1px solid rgba(255, 255, 255, 0.6);
	border-radius: 10px;
	height: 60px;
	width: 100%;
	max-width: 120px;
	outline: none;
	font-style: normal;
	font-weight: 400;
	font-size: 22px;
	color: #fff;
	padding: 5px 10px;
	background-image: url("../images/downarrow.png");
	background-repeat: no-repeat;
	background-position: right 7px center;
	-webkit-appearance: none;
	-moz-appearance: value;
	background-size: 18px;
	padding-right: 25px;
	margin-right: 15px;
}

.form_field.form_field2 .select option {
	color: #000;
	background: #ffffff4d;
}

.form_field.form_field2.form_fiel3 .label_btn {
	background: rgba(255, 255, 255, 0.3);
	border: 1px solid rgba(255, 255, 255, 0.6);
	border-radius: 10px;
	min-height: 60px;
	width: 100%;
	max-width: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 400;
	font-size: 22px;
	line-height: 30px;
	padding: 0;
}

.form_field.form_field2.form_fiel3 .input {
	max-width: 120px;
}

.form_field.form_field2.form_fiel3 {
	padding-bottom: 20px;
	flex-wrap: wrap;
}
.form_field.form_field2.form_fiel3.form_field_japnese {
	flex-wrap: unset;
}

.form_field.form_field2.form_fiel3 label {
	margin-left: 0;
	width: 100%;
	padding-bottom: 24px;
}
.form_field.form_field2.form_fiel3.form_field_japnese label {
	padding: unset;
	padding-left: 10px;
	margin: 0;
}

.form_field.form_field2 .select.long_select {
	max-width: 200px;
}

.image_slider {
	display: flex;
}

.image_slider img {
	width: 100%;
	height: auto;
}

.image_slider .owl-dots {
	display: flex;
	justify-content: center;
	padding: 10px 0;
}

.image_slider .owl-dots .owl-dot {
	background: #317685;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	margin: 5px;
	opacity: 0.4;
}

.image_slider .owl-dots .owl-dot.active {
	opacity: 1;
}

.slider_wrap {
	padding: 10px 0 10px;
}

/*-----------------comment this css to remove style 08-01-2024 ----------------*/

.slider_wrap .item {
	padding: 5px;
	margin: 5px;
}

.slider_wrap .item img {
	background: #ffffff;
	border: 1px solid #317685;
	box-shadow: 0px 4px 20px rgb(0 0 0 / 5%);
	border-radius: 8px;
}

.cstm_slider_overwrite .image_slider .item {
	padding: unset;
	margin: unset;
}
.cstm_slider_overwrite.cstm_padding_add .image_slider .item {
	padding: 5px;
}

.cstm_slider_overwrite .image_slider .item img {
	background: unset;
	border: unset;
	box-shadow: unset;
	border-radius: unset;
}

/* ------------------comment this css to remove style 08-01-2024 end------------- */

/* page 404 css */
.main_div_not_found_data {
	text-align: center;
	padding: 60px 0;
	padding-bottom: 120px;
	width: 95%;
	margin: 0 auto;
	background: #fff;
	min-height: 100vh;
}

.not_found_text_one {
	font-size: 48px;
	color: #268ba0;
	font-weight: 600;
}

.not_found_text_two {
	font-size: 28px;
	color: #268ba0;
	font-weight: 400;
	margin-bottom: 45px;
	margin-top: 0;
}

.not_found_text_three {
	font-size: 20px;
	color: #317685;
	font-weight: 400;
	line-height: 27px;
	width: 660px;
	margin: 0 auto;
}

.btn.btn-default.back_button_not_found {
	color: #fffda9;
	font-size: 28px;
	font-weight: 500;
	border: none;
	font-family: "Montserrat";
	text-transform: uppercase;
	background-color: #268ba0;
	padding: 8px 115px;
	margin: 0 auto;
	justify-content: center;
	display: flex;
	border-radius: 127px;
	cursor: pointer;
	margin-bottom: 40px;
}

.text_div_not_found {
	margin-top: 20px;
	position: relative;
}

.text_div_not_found::before {
	content: "";
	background-image: url("../../assets/images/404/404-weed-left.png");
	position: absolute;
	display: block;
	width: 202px;
	height: 148px;
	left: 0px;
	background-size: 200px;
	background-repeat: no-repeat;
	top: 11px;
}

.text_div_not_found::after {
	content: "";
	background-image: url("../../assets/images/404/404-weed-right.png");
	position: absolute;
	display: block;
	width: 202px;
	height: 170px;
	right: 0px;
	background-size: 170px;
	background-repeat: no-repeat;
	bottom: -75px;
}

.anchor_mail {
	text-decoration: underline;
	font-weight: 600;
	color: #317685;
}

/************************************* Bottom button **********************************/

section.static_page {
	position: relative;
	min-height: 100vh;
	background: #f7f9fc;
}

.static_page .content_wrapper .button_wrap,
.content_wrapper .button_wrap {
	padding-top: 30px;
	position: fixed;
	width: 100%;
	bottom: 30px;
	left: 0;
	max-width: 800px;
	margin: 0 auto;
	right: 0;
	z-index: 3;
}

.bottom_text {
	padding-top: 18px;
	z-index: 2;
	position: relative;
	background: #007d8d;
	text-align: center;
	color: #6beab6;
	font-size: 19px;
}

small {
	font-size: 14px;
}

label {
	cursor: inherit;
}

em {
	font-style: italic;
}

strong {
	font-weight: bold;
}

button {
	appearance: auto;
	writing-mode: horizontal-tb !important;
	text-rendering: auto;
	letter-spacing: normal;
	word-spacing: normal;
	text-transform: none;
	text-indent: 0px;
	text-shadow: none;
	display: inline-block;
	text-align: center;
	align-items: flex-start;
}

/* resubsribe and resubsribed css */
.main_div {
	background: linear-gradient(180deg, #268ba0 0%, #317685 100%);
	box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15);
	border-radius: 10px;
	padding: 30px;
	width: 90%;
	max-width: 810px;
	margin: 0 auto;
	margin-top: 30px;
}

.subs_text_one {
	margin: 30px 0px 0px 0px;
	font-weight: 400;
	font-size: 24px;
	line-height: 1.35;
	color: #fff;
}

.subs_text_two {
	font-weight: 400;
	font-size: 14px;
	color: #ffffff;
	line-height: 1.4;
	margin: 20px 0 0 0;
}

.subs_text_three {
	font-weight: 600;
	font-size: 18px;
	line-height: 33px;
	margin: 30px 0 0 0;
	color: #ffffff;
}

.btn.btn-default.resub_button {
	font-family: "Montserrat";
	font-weight: 600;
	font-size: 20px;
	line-height: 29px;
	background: #fffda9;
	border-radius: 40px;
	padding: 15px 52px;
	color: #317685;
	width: 250px;
	display: inline-block;
	text-decoration: none;
	box-shadow: 0 4px 16px 0 rgb(0 0 0 / 15%);
	transition: all 0.3s ease;
	margin: 10px 0 0 0;
}

img.img-fluid.logo_quit_sure {
	width: 150px;
}

/* writing all internal css to common css file */

.progressbar li.current.page1:after {
	background-size: 25% 100%;
}

.progressbar li.current.page2:after {
	background-size: 50% 100%;
}

.progressbar li.current.page3:after {
	background-size: 75% 100%;
}

.progressbar li.current.page4:after {
	background-size: 14.25% 100%;
}

.progressbar li.current.page5:after {
	background-size: 28.5% 100%;
}

.progressbar li.current.page6:after {
	background-size: 42.75% 100%;
}

.progressbar li.current.page7:after {
	background-size: 57% 100%;
}

.progressbar li.current.page8:after {
	background-size: 71.25% 100%;
}

.progressbar li.current.page9:after {
	background-size: 85.5% 100%;
}

.progressbar li.current.page10:after {
	background-size: 14.25% 100%;
}

.progressbar li.current.page11:after {
	background-size: 28.5% 100%;
}

.progressbar li.current.page12:after {
	background-size: 42.75% 100%;
}

.progressbar li.current.page13:after {
	background-size: 57% 100%;
}

.progressbar li.current.page14:after {
	background-size: 71.25% 100%;
}

.progressbar li.current.page15:after {
	background-size: 85.5% 100%;
}

.progressbar li.current.page16:after {
	background-size: 20% 100%;
}

.progressbar li.current.page17:after {
	background-size: 40% 100%;
}

.progressbar li.current.page18:after {
	background-size: 60% 100%;
}

.progressbar li.current.page19:after {
	background-size: 80% 100%;
}

.progressbar li.current.page20:after {
	background-size: 17% 100%;
}

.progressbar li.current.page21:after {
	background-size: 34% 100%;
}

.progressbar li.current.page22:after {
	background-size: 51% 100%;
}

.progressbar li.current.page23:after {
	background-size: 68% 100%;
}

.progressbar li.current.page24:after {
	background-size: 85% 100%;
}

.progressbar li.current.page25:after {
	background-size: 14% 100%;
}

.progressbar li.current.page26:after {
	background-size: 28% 100%;
}

.progressbar li.current.page27:after {
	background-size: 42% 100%;
}

.progressbar li.current.page28:after {
	background-size: 56% 100%;
}

.progressbar li.current.page29:after {
	background-size: 84% 100%;
}

.progressbar li.current.page31:after {
	background-size: 70% 100%;
}

/*Progress bar for web quiz */

/* Progress bar */
.progressbar1 {
	margin: 23px 0 30px 0;
	counter-reset: step;
	display: flex;
	align-items: center;
}

.progressbar1 li {
	list-style-type: none;
	width: 25%;
	float: left;
	font-size: 12px;
	position: relative;
	text-align: center;
	text-transform: uppercase;
	color: #7d7d7d;
}

.progressbar1 li:before {
	width: 20px;
	height: 20px;
	content: "";
	line-height: 30px;
	border: 1px solid #91c3cd;
	background-color: #268ba0;
	display: block;
	text-align: center;
	margin: 0 auto 10px auto;
	border-radius: 50%;
	transition: all 0.8s;
	z-index: 3;
	position: relative;
}

.progressbar1 li:after {
	width: 100%;
	height: 4px;
	content: "";
	position: absolute;
	background-color: #91c3cd;
	top: 9px;
	left: -50%;
	z-index: -1;
	transition: all 0.8s;
	z-index: 1;
}

.progressbar1 li:first-child:after {
	content: none;
}

.progressbar1 li.active:before {
	border-color: #91e8b2;
	background-color: #91e8b2;
	transition: all 0.8s;
	background-image: url("../images/Vector.png");
	background-repeat: no-repeat;
	background-position: center;
}

.progressbar1 li.current:after {
	background-image: url("../images/progressbar_img.PNG");
	background-size: 50% 100%;
	background-repeat: no-repeat;
}

.progressbar1 li.active:after {
	background-color: #91e8b2;
	transition: all 0.8s;
}

.progressbar1 li.current1:before,
.progressbar1 li.active.current1:before {
	background-color: #fff;
	background-image: none;
}

.progressbar1 li.current.page1:after {
	background-size: 25% 100%;
}

.progressbar1 li.current.page2:after {
	background-size: 50% 100%;
}

.progressbar1 li.current.page3:after {
	background-size: 75% 100%;
}

.progressbar1 li.current.page4:after {
	background-size: 14.25% 100%;
}

.progressbar1 li.current.page5:after {
	background-size: 28.5% 100%;
}

.progressbar1 li.current.page6:after {
	background-size: 42.75% 100%;
}

.progressbar1 li.current.page7:after {
	background-size: 57% 100%;
}

.progressbar1 li.current.page8:after {
	background-size: 71.25% 100%;
}

.progressbar1 li.current.page9:after {
	background-size: 85.5% 100%;
}

.progressbar1 li.current.page10:after {
	background-size: 10% 100%;
}

.progressbar1 li.current.page11:after {
	background-size: 20% 100%;
}

.progressbar1 li.current.page12:after {
	background-size: 30% 100%;
}

.progressbar1 li.current.page13:after {
	background-size: 40% 100%;
}

.progressbar1 li.current.page14:after {
	background-size: 50% 100%;
}

.progressbar1 li.current.page15:after {
	background-size: 60% 100%;
}

.progressbar1 li.current.page16:after {
	background-size: 70% 100%;
}

.progressbar1 li.current.page17:after {
	background-size: 80% 100%;
}

.progressbar1 li.current.page18:after {
	background-size: 90% 100%;
}

.progressbar1 li.current.page19:after {
	background-size: 20% 100%;
}

.progressbar1 li.current.page20:after {
	background-size: 40% 100%;
}

.progressbar1 li.current.page21:after {
	background-size: 60% 100%;
}

.progressbar1 li.current.page22:after {
	background-size: 80% 100%;
}

.progressbar1 li.current.page23:after {
	background-size: 80% 100%;
}

.progressbar1 li.current.page24:after {
	background-size: 15% 100%;
}

.progressbar1 li.current.page25:after {
	background-size: 40% 100%;
}

.progressbar1 li.current.page26:after {
	background-size: 65% 100%;
}

.progressbar1 li.current.page27:after {
	background-size: 90% 100%;
}

.progressbar1 li.current.page28:after {
	background-size: 56% 100%;
}

.progressbar1 li.current.page29:after {
	background-size: 84% 100%;
}

.overflow_arrow_div img {
	transform: rotate(-90deg);
}

/*-----------------------------likert css-------------------------------------- */

form .likert {
	list-style: none;
	width: 100%;
	margin: 0;
	padding: 0 0 35px;
	display: flex;
	justify-content: space-between;
	position: relative;
}

form .likert:last-of-type {
	border-bottom: 0;
}

form .likert li {
	display: inline-block;
	width: 30%;
	vertical-align: top;
}

form .likert li:last-child {
	text-align: right;
}

.radio-list {
	padding: 20px 0px 15px 0px;
	display: flex;
	justify-content: space-between;
}

.radio_number {
	display: inline-block;
}

.radio_number span {
	display: inline-block;
	width: 60px;
	height: 60px;
	line-height: 60px;
	cursor: pointer;
	text-align: center;
	font-size: 24px;
	border-radius: 100%;
	border: 1px solid rgba(255, 255, 255, 0.6);
	font-family: "Open Sans", sans-serif;
}

.radio_number input:checked + span {
	color: #2c8091;
	background: #ffffff;
}

._wrapper_label_text {
	width: 50%;
}

.cstm_main_cntnt .whatsapp-hide {
	display: none;
}

.cstm_main_cntnt #whatsappContent {
	margin-top: 50px;
}

.cstm_main_cntnt .container .content_wrapper .cstm_ul_whatsup {
	list-style-type: disc !important;
	padding-left: 30px;
}

.cstm_main_cntnt .container .content_wrapper .cstm_ul_whatsup li {
	padding: 10px 0px;
	font-size: 18px;
}

.cstm_main_cntnt .container .content_wrapper .cstm_ul_whatsup li::marker {
	font-size: 20px;
}

.cstm_main_cntnt .container .radio_wrapper #whatsappContent .overlap_css_tele {
	flex-wrap: unset;
}

.cstm_main_cntnt #whatsappContent .overlap_css_tele .cstm_tele_select {
	max-width: 355px;
}

.cstm_main_cntnt #whatsappContent .overlap_css_tele .cstm_input_tele {
	max-width: calc(100% - 355px);
}

/*------------------------------16-01-2024------------------------------*/
.overwrite_content_wrapper ._wrapper .form_field.form_field2.form_fiel3 {
	flex-wrap: unset;
}

.overwrite_content_wrapper ._wrapper .form_field.form_field2.form_fiel3 label {
	width: unset;
	padding-bottom: unset;
}

/*------------------------------16-01-2024 End------------------------------*/
.cstm_btn_german {
	text-transform: unset !important;
}

/*----------------onboarding 2.3 page scrolling ul li ui css 29-01-2024--------------------*/

.picker-window {
	position: absolute;
	border-top: 1px solid #d4d9d9;
	border-bottom: 1px solid #d4d9d9;
	height: 1.4em;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	pointer-events: none;
	background-color: #fff;
	border-radius: 10px;
	min-height: 40px;
}

.picker_window_cover {
	position: absolute;
	border-top: 1px solid #d4d9d9;
	border-bottom: 1px solid #d4d9d9;
	height: 1.4em;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	pointer-events: none;
	background-color: #fff;
	border-radius: 10px;
	min-height: 40px;
}

.wrap_picker {
	display: inline-grid;
	position: relative;
	padding-left: 1rem;
	padding-right: 1rem;
	grid-template-columns: repeat(4, fit-content(500px));
	font-size: calc(0.5rem + 2.4vw);
	font-weight: 400;
	width: 100%;
	display: flex;
	justify-content: center;
}

.wrap_picker:before,
.wrap_picker:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 2.2em;
	pointer-events: none;
}

.wrap_picker:before {
	top: -0.2em;
}

.wrap_picker:after {
	bottom: -0.2em;
	height: 2.4em;
}

.wrap_picker ul {
	-ms-overflow-style: none;
	max-height: 5em;
	overflow-y: scroll;
	-ms-scroll-snap-type: y mandatory;
	scroll-snap-type: y mandatory;
	padding-bottom: 5em;
	padding-top: 5em;
	z-index: 1;
	max-width: 140px;
	width: 100%;
}

.wrap_picker ul::-webkit-scrollbar {
	display: none;
}

.wrap_picker li {
	scroll-snap-align: center;
	height: 1.6em;
	text-align: center;
	word-spacing: 0.2em;
	color: #fff9;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 600;
	font-size: 23px;
}

.wrap_picker li.active {
	color: #268698;
}

.picker-day {
	padding-right: 0.5em;
}

.picker-day span {
	padding-left: 0.56em;
}

.cstm_scrollable_wrap .form_field {
	justify-content: center;
}

.cstm_scrollable_wrap .form_field .wrap_picker {
	max-width: 100px;
	width: 100%;
}

.cstm_scrollable_wrap .form_field .picker_year {
	margin-left: 40px;
	list-style: none;
}

.cstm_scrollable_wrap .form_field .picker_year li {
	font-size: 23px;
}

.cstm_scrollable_wrap .form_field .wrap_picker .picker_window_cover {
	max-width: 100px;
	width: 100%;
}

.with_scroll_form {
	display: none;
}

.refund_link {
	color: #317685;
}

/*----------------onboarding 2.3 page scrolling ul li ui css 29-01-2024 end--------------------*/

/*-----------------------onboardng v2 button restyling css 27nov 2024 ---------------------*/

.static_page .overwrite_cnt_wrapper .button_wrap {
	bottom: 10px;
	text-align: center;
}
.static_page .overwrite_cnt_wrapper .button_wrap .button {
	width: 150px;
	height: 150px;
}

.static_page .overwrite_cnt_wrapper .button_wrap .button.portugusbtn {
	width: 200px;
	height: 150px;
}

.static_page .overwrite_cnt_wrapper .button_wrap .button.germanbtn {
	width: 200px;
	height: 150px;
}

.verification-code_interim {
	max-width: 480px;
	margin: 10px 0px 10px 0px;
}

.verification-code_interim .verification-code--inputs {
	display: flex;
	gap: 15px;
}

.verification-code_interim .verification-code--inputs input[type="tel"] {
	/* border: 1px solid #fff; */
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.6);
	border-radius: 10px;
	outline: unset;
	width: 60px;
	height: 70px;
	text-align: center;
	color: #fff;
	font-weight: 600;
	display: inline-block;
	box-sizing: border-box;
}

/* modal css interim modal */

.cstm_interim_modal
	.modal-dialog
	.modal-content-cstm
	.modal-header
	.modal-title {
	font-size: 34px;
	line-height: 1.5;
	color: #268ba0;
	font-weight: 700;
	margin-bottom: 0;
}
.cstm_interim_modal
	.modal-dialog
	.modal-content-cstm
	.modal-body
	.my_error_boday {
	color: #000;
	font-size: 18px;
	margin-bottom: 0;
}

.resend_code_interim {
	display: block;
	background-color: transparent;
	border: unset;
	color: #fff;
	font-weight: 700;
	font-size: 16px;
	margin-top: 20px;
}
.content_wrapper_interim .inner_title {
	padding-bottom: 0;
}

/* loading page */
.main_content.wrap_main_content_slide {
	background: unset;
	background-color: #e4edef;
}

.main_content.wrap_main_content_slide .wrap_progress_input {
	max-width: 555px;
	width: 100%;
	margin: 0 auto;
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.main_content.wrap_main_content_slide .wrap_progress_input h2 {
	color: #081f32;
	margin-bottom: 40px;
	font-weight: 600;
	font-size: 28px;
}

.main_content.wrap_main_content_slide .wrap_progress_input .item {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.6s ease, transform 0.6s ease;
	padding: 16px;
	border-radius: 50px;
	background-color: #ffffff;
	color: #081f32;
	display: flex;
	align-items: center;
	margin: 10px 0px 15px 0px;
	font-weight: 500;
}

.main_content.wrap_main_content_slide .wrap_progress_input .item img {
	max-width: 33px;
	width: 100%;
	height: 33px;
	margin-right: 10px;
}

.main_content.wrap_main_content_slide .wrap_progress_input .progress-bar {
	width: 100%;
	height: 12px;
	background: #b0c4de;
	border-radius: 8px;
	margin-top: 40px;
}

.main_content.wrap_main_content_slide
	.wrap_progress_input
	.progress-bar
	.progress {
	height: 12px;
	background: #3caea2;
	width: 0;
	border-radius: 8px;
	transition: width 1s ease;
}

.static_page.cstm_static_page
	.content_wrapper
	.text_wrapper
	.carousel-container {
	flex: 1;
	overflow: hidden;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 45px 0px 40px 0px;
	z-index: 0;
	max-width: 470px;
	width: 100%;
	margin: 0 auto;
}

.static_page.cstm_static_page
	.content_wrapper
	.text_wrapper
	.carousel-container.disabled {
    pointer-events: none;
}


.static_page.cstm_static_page
	.content_wrapper
	.text_wrapper
	.carousel-container
	.carousel {
	position: relative;
	height: 440px;
	width: 100%;
}

.static_page.cstm_static_page
	.content_wrapper
	.text_wrapper
	.carousel-container
	.carousel
	.image_wrap_v2 {
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 85%;
	background: transparent;
	/* border-radius: 15px; */
	/* padding: 15px; */
	/* box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1); */
	display: flex;
	align-items: center;
	/* border: 1px solid #f0f0f0; */
	transition: all 0.5s ease-in-out;
	opacity: 0.5;
	transform: scale(0.8);
	z-index: 1;
}

.static_page.cstm_static_page
	.content_wrapper
	.text_wrapper
	.carousel-container
	.carousel
	.image_wrap_v2.active {
	opacity: 1;
	transform: scale(1);
	z-index: 5;
	/* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15); */
}

/*-----------------------onboardng v2 button restyling css 27nov 2024 end ---------------------*/

@media (max-width: 1300px) {
	.header_logo {
		max-width: 150px;
	}
}

@media (max-width: 1200px) {
	.text_div_not_found::before {
		background-size: 160px;
		top: 105px;
		width: 161px;
		height: 118px;
	}

	.text_div_not_found::after {
		background-size: 140px;
		bottom: -175px;
		width: 143px;
		height: 120px;
	}
}

@media (max-width: 1100px) {
	.header_logo {
		display: none;
	}
}

@media (max-width: 991px) {
	.static_page .content_wrapper .button_wrap,
	.content_wrapper .button_wrap {
		padding-right: 10px;
		padding-left: 10px;
	}

	._wrapper_label_text {
		width: 50%;
	}
}

@media only screen and (min-device-width: 769px) and (max-device-width: 935px) {
	.content_wrapper {
		max-width: 700px;
	}

	._wrapper_label_text {
		width: 60%;
	}
}

@media (max-width: 768px) {
	.not_found_text_three {
		width: 90%;
	}

	.progressbar li:before {
		width: 16px;
		height: 16px;
	}

	.progressbar li:after {
		top: 8px;
	}

	.progressbar {
		margin-bottom: 0;
		margin-top: 15px;
	}

	.progressbar1 li:before {
		width: 16px;
		height: 16px;
	}

	.progressbar1 li:after {
		top: 8px;
	}

	.progressbar1 {
		margin-bottom: 0;
		margin-top: 15px;
	}

	header.header {
		padding-bottom: 15px;
	}

	.content_wrapper {
		padding-left: 0;
		max-width: 85%;
		padding-bottom: 15px;
		height: calc(100vh - 190px);
	}

	.content_wrapper.radio-wrapper_cstm {
		height: calc(100vh - 190px);
	}

	.header .head_title .back_button {
		left: 39px;
	}

	.form_field label.checkbox_btn {
		border: 1px solid rgba(255, 255, 255, 0.6);
		font-size: 22px;
		line-height: 1.36;
		min-height: 60px;
	}

	.button {
		border-radius: 38px;
		font-size: 18px;
		line-height: 1.22;
		min-height: 60px;
	}

	.progressbar li:after {
		height: 2px;
	}

	.progressbar li.active:before {
		background-size: 9px;
	}

	.static_page .content_wrapper {
		padding-top: 25px;
		padding-bottom: 20px;
		padding-right: 0;
		height: calc(100vh - 190px);
	}

	.static_page .content_wrapper h4 {
		margin: 0px 0 8px;
	}

	.devider {
		margin: 40px 0 20px;
	}

	.main_content ._wrapper .inner_title {
		padding: 10px 0;
	}

	.static_page .content_wrapper p {
		font-size: 20px;
	}

	.image_slider .owl-dots .owl-dot {
		width: 10px;
		height: 10px;
	}

	.main_content .inner_title {
		padding-bottom: 15px;
	}

	.static_page .content_wrapper .button_wrap,
	.content_wrapper .button_wrap {
		max-width: 85%;
		padding-left: 0;
		padding-right: 0;
	}

	._wrapper_label_text {
		width: 61%;
	}

	.main_content.wrap_main_content_slide .wrap_progress_input h2 {
		text-align: center;
	}
}

@media only screen and (max-width: 676px) {
	._wrapper_label_text {
		width: 71%;
	}

	.main_content.wrap_main_content_slide .wrap_progress_input .item {
		display: unset;
		text-align: center;
		padding: 10px 10px;
		font-size: 14px;
		margin: 10px 0px 10px 0px;
	}
	.main_content.wrap_main_content_slide .wrap_progress_input .item img {
		max-width: 25px;
		height: 25px;
		margin-right: 5px;
	}
	.main_content.wrap_main_content_slide .wrap_progress_input h2 {
		font-size: 18px;
	}
}

@media only screen and (max-width: 640px) {
	._wrapper_label_text {
		width: 75%;
	}
	.static_page .content_wrapper .image_wrap_v2 {
		max-width: 320px;
	}

	.static_page.cstm_static_page
		.content_wrapper
		.text_wrapper
		.carousel-container
		.carousel {
		height: 310px;
	}
}

@media (max-width: 575px) {
	.header .head_title h2 {
		font-size: 16px;
		line-height: 1.25;
	}

	.text_div_not_found::before {
		content: "";
		background-image: url("../../assets/images/404/404-weed-cut-left.png");
		position: absolute;
		display: block;
		width: 202px;
		height: 148px;
		left: -10px;
		background-size: 81px;
		background-repeat: no-repeat;
		top: 50px;
	}

	.text_div_not_found::after {
		content: "";
		background-image: url("../../assets/images/404/404-weed-cut-right.png");
		position: absolute;
		display: block;
		width: 81px;
		height: 170px;
		right: -11px;
		background-size: 79px;
		background-repeat: no-repeat;
		bottom: -140px;
	}

	.not_found_text_one {
		font-size: 32px;
	}

	.not_found_text_two {
		font-size: 20px;
		margin-bottom: 40px;
	}

	.not_found_text_three {
		font-size: 14px;
	}

	.btn.btn-default.back_button_not_found {
		font-size: 15px;
		padding: 8px 65px;
		margin-bottom: 30px;
	}

	img.img-fluid.not_found_img {
		width: 60%;
	}

	.main_div {
		margin-top: 20px !important;
	}

	.header .back_button button img {
		height: 24px;
		width: 24px;
	}

	.main_content .inner_title h3 {
		font-size: 28px;
		word-break: break-word;
	}

	.main_content .inner_title .error_msg {
		font-size: 16px;
	}

	.form_field label.radio_btn {
		border: 1px solid rgba(255, 255, 255, 0.6);
		border-radius: 30px;
		font-size: 20px;
	}

	.header .head_title .back_button {
		left: 18px;
	}

	.form_field.form_field2 .select.long_select[name="vPayCurrency"] {
		max-width: 130px;
	}

	.main_content .inner_title h3 span {
		font-size: 23px;
	}

	.radio_number span {
		width: 50px;
		height: 50px;
		line-height: 50px;
	}

	.content_wrapper {
		padding-bottom: 120px;
	}

	.static_page .content_wrapper {
		height: auto;
		padding-bottom: 120px;
	}

	.content_wrapper.radio-wrapper_cstm {
		height: auto;
	}

	.cstm_main_cntnt
		.container
		.radio_wrapper
		#whatsappContent
		.overlap_css_tele {
		flex-wrap: wrap !important;
	}

	.cstm_main_cntnt #whatsappContent .overlap_css_tele .cstm_tele_select {
		max-width: 100% !important;
		margin-right: 0;
		margin-bottom: 10px;
	}

	.cstm_main_cntnt #whatsappContent .overlap_css_tele .cstm_input_tele {
		max-width: 100% !important;
	}

	.with_scroll_form {
		display: block;
	}

	.without_scroll_form {
		display: none;
	}

	.form_field.form_field2.wrap_cstm_field {
		display: block;
	}
	.form_field.form_field2.wrap_cstm_field .wrap_flex_field {
		display: flex;
		align-items: center;
	}

	.form_field.form_field2.wrap_cstm_field .input {
		min-width: 80px;
	}

	.form_field.form_field2.wrap_cstm_field .select {
		margin-top: 15px;
		max-width: 120px;
		margin-right: 0;
	}

	.static_page .content_wrapper.overwrite_cnt_wrapper {
		padding-bottom: 210px;
	}

	.verification-code_interim .verification-code--inputs {
		gap: 5px;
	}

	.verification-code_interim .verification-code--inputs input[type="tel"] {
		width: 45px;
		height: 55px;
	}

	.content_wrapper_interim .inner_title {
		padding-bottom: 0;
	}
	.content_wrapper.content_wrapper_interim {
		max-width: 90%;
	}
	.main_content.removebootsrtap_padding .container {
		padding-left: 0;
		padding-right: 0;
	}

	/*------------------------------ 505 error css on date april 28 2025------------------------------- */

	.wrapper_500_error .not_found_text_one {
		font-weight: 700;
		margin-bottom: 20px;
	}

	.wrapper_500_error .btn.btn-default.back_button_not_found {
		margin-bottom: 25px;
	}

	/*------------------------------ 505 error css on date april 28 2025------------------------------- */
}

@media only screen and (max-width: 430px) {
	._wrapper_label_text {
		width: 100%;
	}

	.radio-list {
		text-align: center;
	}

	form .likert li {
		display: inline-block;
		width: 40%;
		vertical-align: top;
	}
}

@media only screen and (max-width: 414px) {
	.radio-list {
		text-align: unset;
		width: 100%;
	}
}

@media (max-width: 400px) {
	.form_field.form_field2 .select.long_select {
		max-width: 188px;
	}

	.form_field.form_field2.form_fiel3 .input {
		max-width: 83px;
		padding: 5px;
		text-align: center;
	}

	.form_field.form_field2 .select.long_select[name="iPayMode"] {
		max-width: 200px;
	}
}

@media only screen and (max-width: 393px) {
	.radio_number span {
		width: 45px;
		height: 45px;
		line-height: 42px;
	}

	.cstm_main_cntnt #whatsappContent .overlap_css_tele .cstm_tele_select {
		font-size: 18px;
	}
}

@media only screen and (max-width: 360px) {
	.radio_wrapper .radio-list label:not(:last-child) {
		margin: 0px 20px 0px 0px;
	}
}

@media only screen and (max-width: 350px) {
	.radio_wrapper .radio-list label:not(:last-child) {
		margin: 0px 18px 0px 0px;
	}
}

@media only screen and (max-width: 339px) {
	.radio_wrapper .radio-list label:not(:last-child) {
		margin: 0px 10px 0px 0px;
	}

	form .likert li {
		width: 45%;
	}
}

@media (max-width: 335px) {
	.form_field.form_field2 .select.long_select {
		max-width: 180px;
		margin-right: 5px;
	}
}

/* Start New Onboarding V2 22-nov-2024 */

.static_page .container .content_wrapper .text_wrapper .cstm_bluep {
	color: #268ba0 !important;
}

.static_page .container .content_wrapper .text_wrapper .light_orange_para {
	color: #ff9f58;
}

.static_page
	.container
	.content_wrapper
	.text_wrapper
	.inner_title
	.cstm_header_blue {
	color: #268ba0 !important;
}

#display-container {
	height: 40px;
	overflow: hidden;
	position: relative;
	display: flex;
	justify-content: center;
}

#slideText {
	position: absolute;
	width: fit-content;
	border-radius: 4px;
	font-size: 22px;
	color: #317685;
	background-color: #fff;
	padding: 2px 10px;
}

.static_page .container .content_wrapper .text_wrapper .cstm_grey_para {
	font-size: 16px;
	color: #80858a;
}
.break_word_cstm {
	word-break: break-all;
}

/* .cstm_common_22 {
	font-size: 22px !important;
} */

/* .cstm_common_28 {
	font-size: 28px !important;
} */

.vertical-slider {
	width: 300px;
	margin: 0 auto;
}

.vertical-slider img {
	width: 100%;
	height: auto;
}

.vertical-slider .slick-list {
	position: relative;
}

.vertical-slider .slick-list::after {
	content: "";
	position: absolute;
	top: -2px;
	width: 100%;
	height: 50px;
	background-color: #f7f9fc;
	z-index: 1;
}

.vertical-slider .slick-list::before {
	content: "";
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 50px;
	background-color: #f7f9fc;
	z-index: 1;
}

.vertical-slider .slick-list .slick-track .slick-slide {
	opacity: 1;
	transform: scale(0.8) !important;
}

.vertical-slider
	.slick-list
	.slick-track
	.slick-slide.slick-cloned.slick-active {
	transform: scale(0.8) !important;
	transition: all 0.5s ease-in-out;
	opacity: 0.7 !important;
}

.vertical-slider .slick-list .slick-track .slick-slide.slick-active {
	opacity: 1;
	transform: scale(0.8) !important;
}

.vertical-slider .slick-list .slick-track .slick-slide.slick-center {
	transform: scale(1) !important;
	transition: all 0.5s ease-in-out;
	opacity: 1;
}

/* End New Onboarding V2 22-nov-2024 */
.cstm_margin_add {
	margin-bottom: 15px;
}

.cstm_margin_add a {
	color: #fff;
	font-weight: 700;
	text-decoration: underline;
}
