@import url("https://fonts.googleapis.com/css2?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 0.6s;
    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%;
    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: 15px;
    height: 24px;
}

.header .back_button button i {
    font-size: 35px;
}

/* Progress bar */
.progressbar {
    margin: 12px 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("/resources/images/Vector.png");
    background-repeat: no-repeat;
    background-position: center;
    box-sizing: content-box;
}

.progressbar li.current:after {
    background-image: url("/resources/images/progressbar_img-v3.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(0, 0, 0, 0.6);
    border-radius: 10px;
    font-weight: 400;
    font-size: 22px;
    line-height: 30px;
    color: #fff;
}

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

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

.header .head_title h2 {
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    font-size: 14px;
    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;
}

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

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

.error_msg:empty {
    display: none;
}

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

.error_msg p {
    font-weight: 600;
    padding: 2px;
    color: #FF6C58 !important;
}

.error_msg2 p {
    color: #FF6C58;
    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: "Open Sans", sans-serif;
    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: 600px;
    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("/resources/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: "Open Sans", sans-serif;
    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("/resources/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("/resources/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: 600px;
    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: "Open Sans", sans-serif;
    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%;
}

/*Progressbar with percent */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.progressbar li.current.page6-2:after {
    background-size: 50% 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("/resources/images/Vector.png");
    background-repeat: no-repeat;
    background-position: center;
}

.progressbar1 li.current:after {
    background-image: url("/resources/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 #80858A !important;
    border-radius: 10px;
    outline: unset;
    width: 60px;
    height: 70px;
    text-align: center;
    color: #081f32 !important;
    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: #268ba0;
    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%;
    }

    .new_onboarding_main_content .container .header_wrap .header {
        max-width: 700px !important;
    }
}

@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: 10px;
    }

    .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 - 145px);
    }

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

    .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;
    }

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

    ._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) {

    .text_div_not_found::before {
        content: "";
        background-image: url("/resources/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("/resources/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 i {
        font-size: 28px !important;
    }

    .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;
    }

    .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: #317685;
    font-weight: 700;
    text-decoration: underline;
}

.button[disabled] {
    opacity: 0.9;
    cursor: not-allowed;
}

.button.animation_btn[disabled]:hover {
    background-color: #317685;
}

.button_wrap .button.animation_btn {
    transition: background-color 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background-color: #3176854a;
}

.button_wrap .button.animation_btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #317685;
    z-index: -1;
    transition: width 5s ease-in-out;
    animation: fill 5s ease-in-out 0s 1 forwards;
}

@keyframes fill {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }

}

/* v3 onboarding css by anas start */

.new_onboarding_main_content {
    background: #fff;
}

.new_onboarding_main_content p,
h1,
h2,
h3 {
    color: #081F32;
}

.new_onboarding_main_content .container .header_wrap .header {
    max-width: 600px;
}

.new_onboarding_main_content .progressbar li:first-child:after {
    content: "";
    width: 100%;
    left: 0;
}

.new_onboarding_main_content .progressbar li::before {
    margin: unset;
    position: absolute;
    right: 0;
    background-color: #FFFFFF;
    border-color: #D3D5D6;
}

.new_onboarding_main_content .progressbar li::after {
    left: 0;
    background-color: #D3D5D6;
}

.new_onboarding_main_content .progressbar li.active:after {
    background-color: #268BA0;
}

.new_onboarding_main_content .progressbar li.active:before {
    background-color: #268BA0;
    border-color: #317685;
    background-image: url("/resources/images/check-progress-v3.png");
}

.new_onboarding_main_content .progressbar li:last-child::before {
    display: none;
}

.new_onboarding_main_content .form_field label.checkbox_btn {
    background-color: #f6f4ee;
    border-color: #f6f4ee;
    color: #000;
    border-radius: 6px;
    padding: 16px 15px;
    cursor: pointer;
    justify-content: left;
}

.new_onboarding_main_content .form_field label.checkbox_btn img {
    width: 24px;
    margin-right: 10px;
}

.new_onboarding_main_content input.radio[type="radio"]:checked~label.radio_btn,
input.checkbox[type="checkbox"]:checked~label.checkbox_btn {
    background-color: #05727a;
    color: #f6f4ee;
}

.new_onboarding_main_content .back_button {
    left: 0 !important;
}

/* v3 onboarding css by anas over*/

/* ====================================
   OnboardingV3 - Shared Base Styles
   ==================================== */

/* Header Styling */
.new_onboarding_main_content .header_wrap {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
}

.new_onboarding_main_content .header_wrap header.header {
    padding-top: 20px;
    padding-bottom: 15px !important;
    width: 100%;
    margin: 0 auto;
}

.new_onboarding_main_content .header .head_title h2 {
    color: #268BA0 !important;
    font-weight: 400;
}

.new_onboarding_main_content .light_primary {
    color: #268ba0 !important;
}

.new_onboarding_main_content .text-mute {
    color: #80858A !important;
}

/* ====================================
   OnboardingV3 - Base Container
   ==================================== */
.new_onboarding_main_content .form_field .input {
    color: #081F32 !important;
    border: 1px solid #80858A !important;
}

.new_onboarding_main_content .form_field .input:focus {
    border: 1px solid #268BA0 !important;
}

/* Shared Title Styles */
.new_onboarding_main_content .inner_title h3,
.new_onboarding_main_content .inner_title h3 {
    font-size: 21px;
    font-weight: 600;
    color: #081F32;
    line-height: 1.5;
}

/* Shared Wrap Layout */
.onboardingv3-multiselect .wrap,
.onboardingv3-radio .wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Shared Form Field Reset */
.onboardingv3-multiselect .form_field,
.onboardingv3-radio .form_field {
    width: 100%;
    margin-bottom: 0;
}

/* Checkbox Input (Hidden) */
.onboardingv3-multiselect .checkbox {
    display: none;
}

/* Checkbox Button Styling */
.new_onboarding_main_content .onboardingv3-multiselect .form_field label.checkbox_btn.onboardingv3-checkbox {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: left !important;
    background-color: #F0F0F0 !important;
    border: 2px solid #F0F0F0 !important;
    border-radius: 6px;
    padding: 16px 20px;
    min-height: 60px;
    font-size: 16px;
    font-weight: 400;
    color: #000 !important;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.new_onboarding_main_content .onboardingv3-multiselect .form_field label.checkbox_btn.onboardingv3-checkbox .checkbox-text {
    text-align: left !important;
    flex: 1;
}

/* Circular Checkbox Icon (Always visible) */
.onboardingv3-multiselect .checkbox-icon {
    width: 26px;
    height: 26px;
    min-width: 26px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    background: #ffffff;
    margin-right: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    color: transparent;
    transition: all 0.3s ease;
}

.onboardingv3-multiselect .checkbox-icon i {
    font-size: 14px;
    font-weight: 700;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.onboardingv3-multiselect .checkbox-text {
    flex: 1;
}



@media (hover: hover) {
    /* Hover State */
    .new_onboarding_main_content .onboardingv3-multiselect .form_field label.checkbox_btn.onboardingv3-checkbox:hover {
        background-color: #BFDCE2 !important;
        border-color: #BFDCE2 !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

    /* Show checkmark icon on hover */
    .new_onboarding_main_content .onboardingv3-multiselect .form_field label.checkbox_btn.onboardingv3-checkbox:hover .checkbox-icon i {
        color: #FFFFFF;
        opacity: 1;
        font-weight: 900;
    }

    /* Circle background on hover */
    .new_onboarding_main_content .onboardingv3-multiselect .form_field label.checkbox_btn.onboardingv3-checkbox:hover .checkbox-icon {
        background-color: #BFDCE2;
        border-color: #FFFFFF;
    }
}

/* Selected State - Dark Teal (for :nth-child pattern) */
.new_onboarding_main_content .onboardingv3-multiselect input.checkbox[type="checkbox"]:checked~label.checkbox_btn.onboardingv3-checkbox {
    background-color: #268BA0 !important;
    border-color: #268BA0 !important;
    color: #fff !important;
}

/* Show filled circular checkmark when selected - Light */
.new_onboarding_main_content .onboardingv3-multiselect input.checkbox[type="checkbox"]:checked~label.checkbox_btn.onboardingv3-checkbox .checkbox-icon i {
    color: #FFFFFF;
    opacity: 1;
    font-weight: 900;
}

/* Dark teal selected - white checkmark */
.new_onboarding_main_content .onboardingv3-multiselect input.checkbox[type="checkbox"]:checked~label.checkbox_btn.onboardingv3-checkbox .checkbox-icon {
    background-color: #268BA0;
    border-color: #fff;
}

/* Hover on selected items */
.new_onboarding_main_content .onboardingv3-multiselect input.checkbox[type="checkbox"]:checked~label.checkbox_btn.onboardingv3-checkbox:hover {
    box-shadow: 0 2px 12px rgba(5, 114, 122, 0.25);
}

/* Button Wrap */
.new_onboarding_main_content .button_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 0 20px 0;
    z-index: 100;
    background: #fff;
}

/* Info Link */
.onboardingv3-info-link {
    color: #317685;
    font-size: 16px;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.3s ease;
    font-weight: 700;
}

/* Modal Styling */
.onboardingv3-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.onboardingv3-modal-dialog {
    max-width: 400px;
    width: 90%;
    margin: 0 auto;
}

.onboardingv3-modal-content {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.onboardingv3-modal-header {
    background-color: #268BA0;
    color: #fff;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.onboardingv3-modal-title {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    color: #fff !important;

}

.onboardingv3-modal-close {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.onboardingv3-modal-close:hover {
    opacity: 1;
}

.onboardingv3-modal-body {
    padding: 24px;
    text-align: center;
}

.onboardingv3-modal-body p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    color: #333 !important;
}

.onboardingv3-modal-footer {
    padding: 0 24px 24px;
    display: flex;
    justify-content: center;
}

.onboardingv3-modal-btn {
    background-color: #268BA0;
    border: none;
    border-radius: 6px;
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.onboardingv3-modal-btn:hover {
    background-color: #04606b;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(5, 114, 122, 0.3);
}

.onboardingv3-modal-overlay .popup-options {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}

.onboardingv3-modal-overlay .popup-radio-field {
    flex: 1;
    margin: 0 6px;
}

.onboardingv3-modal-overlay .popup-radio-field input[type="radio"] {
    display: none;
}

.onboardingv3-modal-overlay .popup-radio-field .popup-radio-btn {
    display: block;
    width: 100%;
    padding: 8px 15px;
    text-align: center;
    background-color: #F0F0F0;
    border: 2px solid #F0F0F0;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: #081f32;
    transition: all 0.3s ease;
}

.onboardingv3-modal-overlay .popup-radio-field .popup-radio-btn:hover {
    background-color: #BFDCE2;
    border-color: #BFDCE2;
}

.onboardingv3-modal-overlay .popup-radio-field input[type="radio"]:checked ~ .popup-radio-btn {
    background-color: #268BA0;
    border-color: #268BA0;
    color: #fff;
}

/* ====================================
   End OnboardingV3 Multiselect
   (Responsive styles in consolidated section below)
   ==================================== */

/* ====================================
   OnboardingV3 Radio Button Component
   (Container, title, wrap, form_field use shared styles above)
   ==================================== */

/* Radio Input (Hidden) */
.onboardingv3-radio .radio {
    display: none;
}

/* Radio Button Styling */
.new_onboarding_main_content .onboardingv3-radio .form_field label.radio_btn.onboardingv3-radio-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: left !important;
    background-color: #F0F0F0 !important;
    border: 2px solid #F0F0F0 !important;
    border-radius: 6px;
    padding: 15px 20px;
    min-height: 60px;
    font-size: 16px;
    font-weight: 400;
    color: #081F32 !important;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.new_onboarding_main_content .onboardingv3-radio .form_field label.radio_btn.onboardingv3-radio-btn .radio-text {
    text-align: left !important;
    flex: 1;
}

@media (hover: hover) {
    /* Hover State */
    .new_onboarding_main_content .onboardingv3-radio .form_field label.radio_btn.onboardingv3-radio-btn:hover {
        background-color: #BFDCE2 !important;
        border-color: #BFDCE2 !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }
}

/* Selected State - Dark Teal */
.new_onboarding_main_content .onboardingv3-radio input.radio[type="radio"]:checked~label.radio_btn.onboardingv3-radio-btn {
    background-color: #268BA0 !important;
    border-color: #268BA0 !important;
    color: #fff !important;
}

/* Hover on selected items */
.new_onboarding_main_content .onboardingv3-radio input.radio[type="radio"]:checked~label.radio_btn.onboardingv3-radio-btn:hover {
    box-shadow: 0 2px 12px rgba(5, 114, 122, 0.25);
}


/* ====================================
   End OnboardingV3 Radio Button
   (Responsive styles in consolidated section below)
   ==================================== */

/* ====================================
   OnboardingV3 Static Page Component
   ==================================== */

/* Static Page Container */

.onboardingv3-static-content {
    flex: 1;
}

/* Back Button */
.onboardingv3-static-header {
    padding: 15px 0;
}

.onboardingv3-back-btn {
    background: transparent;
    border: none;
    color: #333;
    font-size: 18px;
    cursor: pointer;
    padding: 8px 12px;
    margin-left: -12px;
    transition: color 0.3s ease;
}

.onboardingv3-back-btn:hover {
    color: #268BA0;
}

/* Static Page Body */
.onboardingv3-static-body {
    padding: 10px 0;
}

/* Title */
.onboardingv3-static-title {
    font-size: 20px;
    font-weight: 700;
    color: #081F32 !important;
    margin-bottom: 20px;
    line-height: 1.3;
}

/* Main Text */
.onboardingv3-static-text {
    font-size: 18px;
    font-weight: 400;
    color: #081F32 !important;
    line-height: 1.5;
    margin-bottom: 12px;
}

/* Subtext (lighter color) */
.onboardingv3-static-subtext {
    font-size: 14px;
    font-weight: 400;
    color: #575E64 !important;
    line-height: 1.5;
    margin-bottom: 30px;
}

/* Image Container */
.onboardingv3-static-image {
    width: 100%;
    max-width: 400px;
    margin: 20px auto;
    overflow: hidden;
    border-radius: 8px;
}

.onboardingv3-static-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Footer with Button --------------- */
.onboardingv3-static-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    z-index: 100;
    display: flex;
    justify-content: center;
}

/* Submit Button */
.new_onboarding_main_content .button.onboardingv3-btn {
    width: 100%;
    background-color: #317685 !important;
    color: #fff !important;
    border: none;
    border-radius: 35px;
    padding: 15px 30px;
    min-height: 60px;
    font-size: 18px;
    font-weight: 600;
    text-transform: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.15);
}

.new_onboarding_main_content .button.onboardingv3-btn:hover {
    background-color: #1e7a8d !important;
}

.new_onboarding_main_content .button.onboardingv3-btn:active {
    transform: translateY(1px);
}

.new_onboarding_main_content .button.onboardingv3-btn:disabled,
.new_onboarding_main_content .button.onboardingv3-btn[disabled] {
    background-color: #B8BABB !important;
    opacity: 1 !important;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* ====================================
   End OnboardingV3 Static Page
   ==================================== */

/* ====================================
   OnboardingV3 - Consolidated Responsive
   All breakpoints for multiselect, radio,
   and static components in one section
   ==================================== */

/* Tablet (max-width: 768px) */
@media (max-width: 768px) {

    .new_onboarding_main_content .button.onboardingv3-btn {
        max-width: 85%;
    }

    .new_onboarding_main_content .container .header_wrap .header {
        max-width: 85%;
    }

    .new_onboarding_main_content .onboardingv3-multiselect .wrap {
        gap: 8px !important;
    }

    .new_onboarding_main_content .onboardingv3-multiselect .checkbox-icon {
        width: 22px !important;
        height: 22px !important;
        min-width: 22px !important;
        margin-right: 12px !important;
        border-width: 1.5px !important;
    }

    .new_onboarding_main_content .onboardingv3-multiselect .checkbox-icon i {
        font-size: 11px !important;
    }

    /* Radio - 768px */
    .new_onboarding_main_content .onboardingv3-radio {
        max-width: 85%;
    }



    .new_onboarding_main_content .onboardingv3-radio .wrap {
        gap: 8px !important;
    }

    .onboardingv3-static-text {
        font-size: 16px !important;
    }

    .onboardingv3-static-image {
        max-width: 100%;
    }

    .onboardingv3-static-footer {
        padding: 15px;
    }

    /* Shared - 768px */
    .onboardingv3-info-link {
        font-size: 14px !important;
    }

    .new_onboarding_main_content .header .head_title h2 {
        font-size: 14px !important;
    }

    /* Modal - 768px */
    .onboardingv3-modal-dialog {
        max-width: 90% !important;
        width: 90% !important;
    }

    .onboardingv3-modal-header {
        padding: 15px 18px !important;
    }

    .onboardingv3-modal-title {
        font-size: 18px !important;
    }

    .onboardingv3-modal-body {
        padding: 18px !important;
    }

    .onboardingv3-modal-body p {
        font-size: 14px !important;
    }

    .onboardingv3-modal-footer {
        padding: 0 18px 18px !important;
    }

    .onboardingv3-modal-btn {
        padding: 10px 30px !important;
        font-size: 14px !important;
    }
}

/* Mobile (max-width: 575px) */
@media (max-width: 575px) {

    /* Static - 575px */
    .onboardingv3-static {
        max-width: 85%;
    }

    .onboardingv3-static-header {
        padding: 10px 0;
    }

    .onboardingv3-back-btn {
        font-size: 16px;
        padding: 6px 10px;
    }

    .onboardingv3-static-text {
        font-size: 15px !important;
        margin-bottom: 10px;
    }

    .onboardingv3-static-image {
        margin: 15px auto;
    }
}

/* Small Mobile (max-width: 414px) */
@media (max-width: 414px) {

    .new_onboarding_main_content .onboardingv3-multiselect .checkbox-icon {
        width: 20px !important;
        height: 20px !important;
        min-width: 20px !important;
        margin-right: 10px !important;
    }

    .new_onboarding_main_content .onboardingv3-multiselect .checkbox-icon i {
        font-size: 10px !important;
    }

    /* Static - 414px */
    .onboardingv3-static-title {
        font-size: 20px !important;
    }

    .onboardingv3-static-text {
        font-size: 14px !important;
    }
}

/* ====================================
   End OnboardingV3 Responsive
   ==================================== */

/* ========================================
   Smoke Count Screen - onboardingv3-smoke-count
   ======================================== */

/* Main container - white background */

/* Cigarettes row with toggle */
.onboardingv3-consumption-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 10px 0 10px;
}

.onboardingv3-consumption-label {
    font-size: 16px;
    color: #081F32;
    font-weight: 400;
}

/* Toggle button group */
.onboardingv3-toggle-group {
    display: flex;
    gap: 8px;
}

.onboardingv3-toggle-group input[type="radio"] {
    display: none;
}

.onboardingv3-toggle-btn {
    padding: 8px 15px;
    border-radius: 5px;
    background: #F0F0F0;
    color: #081F32;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.onboardingv3-toggle-btn:hover {
    background: #E5E5E5;
}

.onboardingv3-toggle-group input:checked+.onboardingv3-toggle-btn {
    background: #268BA0;
    color: #ffffff;
}

/* Large count display */
.onboardingv3-count-display {
    font-size: 24px;
    font-weight: 700;
    color: #081F32;
    margin: 10px 0 10px 30px;
    line-height: 1.2;
}

/* Range slider container */
.onboardingv3-slider-container {
    padding: 15px;
    background: #F7F9FC;
    border-radius: 5px;
    display: flex;
}

/* Range slider styling */
.onboardingv3-range-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 20px;
    border-radius: 3px;
    background: #D3D5D6;
    outline: none;
    margin: 0;
}

.onboardingv3-range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #317685;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(38, 139, 160, 0.3);
    transition: all 0.2s ease;
}

.onboardingv3-range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 12px rgba(38, 139, 160, 0.4);
}

.onboardingv3-range-slider::-moz-range-thumb {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #268BA0;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 8px rgba(38, 139, 160, 0.3);
}

.onboardingv3-range-slider::-moz-range-track {
    height: 6px;
    border-radius: 3px;
    background: #E0E0E0;
}

/* Cost section */
.onboardingv3-cost-section {
    margin: 25px 0;
}

.onboardingv3-cost-label {
    font-size: 16px;
    color: #081F32;
    margin-bottom: 12px;
    font-weight: 400;
}

.onboardingv3-cost-label span {
    color: #575E64;
}

.onboardingv3-cost-inputs {
    display: flex;
    gap: 12px;
}

.onboardingv3-currency-select {
    padding: 14px 16px;
    border: 1px solid #80858A;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    background: #F7F9FC;
    color: #081F32;
    outline: none;
    transition: border-color 0.2s ease;
}

.onboardingv3-cost-input {
    padding: 14px 16px;
    border: 1px solid #80858A;
    border-radius: 10px;
    font-size: 22px;
    font-weight: 500;
    background: #FFFFFF;
    color: #081F32;
    outline: none;
    transition: border-color 0.2s ease;
}

.onboardingv3-currency-select:focus,
.onboardingv3-cost-input:focus {
    border: 1px solid #268BA0;
    background: #FFFFFF !important;
}

.onboardingv3-currency-select {
    min-width: 110px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 35px;
    cursor: pointer;
}

.onboardingv3-cost-input {
    flex: 1;
    max-width: 140px;
}

/* Total spending section */
.onboardingv3-spending-section {
    margin: 30px 0 40px;
}

.onboardingv3-spending-title {
    font-size: 18px;
    font-weight: 600;
    color: #081F32;
    margin-bottom: 15px;
}

.onboardingv3-spending-values {
    display: flex;
    justify-content: space-between;
}

.onboardingv3-spending-amount {
    font-size: 24px;
    font-weight: 700;
    color: #268BA0;
    line-height: 1.2;
    margin-bottom: 4px;
}

.onboardingv3-spending-period {
    font-size: 14px;
    color: #575E64;
    font-weight: 400;

}

/* Next button override for smoke count screen */

.onboardingv3-smoke-count .onboardingv3-info-link {
    display: block;
    margin-top: 15px;
    color: #317685;
    font-size: 16px;
    text-decoration: underline;
    font-weight: 700;
}

.onboardingv3-smoke-count .onboardingv3-info-link:hover {
    color: #317685;
}

/* Analysis-container start */
.onboardingv3-analysis .analysis-container {
    margin: 20px auto;
    background: #fff;
    padding: 24px 0;
    border-radius: 12px;
}

.content_wrapper.onboardingv3-analysis {
    box-sizing: content-box !important;
}

.onboardingv3-analysis .progress-block {
    margin-bottom: 28px;
}

.onboardingv3-analysis .title {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    margin-bottom: 6px;
    color: #317685;
}

.onboardingv3-analysis .bar {
    height: 12px;
    background: #eee;
    border-radius: 10px;
    overflow: hidden;
}

.onboardingv3-analysis .fill {
    height: 100%;
    width: 0%;
    background: #317685;
    transition: width 0.1s linear;
}

.onboardingv3-analysis .desc {
    margin-top: 8px;
    font-size: 14px;
    color: #555;
    min-height: 36px;
}

/* Modal */
.onboardingv3-analysis .modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    display: none;
    align-items: center;
    justify-content: center;
}

.onboardingv3-analysis .modal {
    background: #fff;
    padding: 20px;
    border-radius: 14px;
    width: 90%;
    max-width: 360px;
    text-align: center;
}

.onboardingv3-analysis .modal-title {
    margin-bottom: 16px;
}

.onboardingv3-analysis .modal-actions {
    display: flex;
    gap: 12px;
}

.onboardingv3-analysis .modal-actions button {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: #f9f9f9;
    cursor: pointer;
}

/* Analysis-container end */


/* ====================================
   Smoke Count Responsive Styles
   ==================================== */

/* Mobile (max-width: 575px) */
@media (max-width: 575px) {
    .onboardingv3-smoke-count {
        padding: 0px;
        padding-bottom: 180px;
    }

    .onboardingv3-currency-select,
    .onboardingv3-cost-input {
        padding: 12px 14px;
    }

    .onboardingv3-currency-select {
        min-width: 100px;
    }

    .onboardingv3-cost-input {
        max-width: 120px;
    }

    .onboardingv3-smoke-count .onboardingv3-info-link {
        font-size: 14px;
        margin-top: 12px;
    }
}

/* Small Mobile (max-width: 414px) */
@media (max-width: 414px) {

    .onboardingv3-consumption-row {
        gap: 10px;
    }

    .onboardingv3-spending-values {
        gap: 15px;
    }
}

/* ====================================
   End Smoke Count Screen
   ==================================== */

.turbo-progress-bar {
    visibility: hidden !important;
}

.new_onboarding_main_content .future-savings-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
    margin-top: 35px;
}

.new_onboarding_main_content .future-savings-info h1 {
    font-size: 40px;
}

.new_onboarding_main_content .info-card {
    background: #C7EEF7;
    border-radius: 16px;
    padding: 20px 22px;
    font-family: "Open Sans", sans-serif;
    color: #081F32;
}

.new_onboarding_main_content .info-card h3 {
    margin: 0 0 14px;
    font-size: 16px;
    font-weight: 600;
    color: #081F32;
}

.new_onboarding_main_content .check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.new_onboarding_main_content .check-list li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.4;
}

.new_onboarding_main_content .check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #081F32;
    font-weight: 700;
}

.new_onboarding_main_content .pill-wrapper {
    max-width: 420px;
}

.new_onboarding_main_content .pill {
    background: #C7EEF7;
    border-radius: 16px;
    padding: 12px 16px;
    margin-bottom: 12px;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: #081F32;
}

.new_onboarding_main_content .money-back-title {
    font-size: 16px;
    font-weight: 700;
    color: #268ba0 !important;
    margin: 30px 5px;
    text-align: center;
}

.new_onboarding_main_content .rating-box {
    text-align: center;
    margin-top: 50px;
}

.new_onboarding_main_content .stars {
    margin-bottom: 6px;
}

.new_onboarding_main_content .stars i {
    color: #268ba0;
    /* blue stars */
    font-size: 20px;
    margin: 0 5px;
}

.new_onboarding_main_content .rating-text {
    font-size: 24px;
    font-weight: 600;
}

.new_onboarding_main_content .text_wrapper {
    margin-top: 10px;
}

.new_onboarding_main_content .text_wrapper p {
    margin: 10px 0;
}
.new_onboarding_main_content .content_wrapper p.bg_orange {
    background-color: #fde5d3;
}

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

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

.new_onboarding_main_content .content_wrapper .blue {
    color: #268ba0;
    font-weight: bold;
}

.new_onboarding_main_content .plan-image-container {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    margin-top: 20px;
}
.new_onboarding_main_content .plan-image-container img, .new_onboarding_main_content .plan-rating-image-container img {
    max-width: 100%;
    height: auto;
    display: block;
}

.new_onboarding_main_content .plan-rating-image-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}


/*toast message css [START]*/
.toast_wrap {
    background-color: #25d366;
    padding: 25px;
    display: none;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.toast_wrap.loading_wrap_error {
    background-color: #d3d5d6;
    box-shadow: 2px 2px 4px 0px #00000026;
}

.toast_wrap.info_message {
    background-color: #D3D5D6;
}

.toast_wrap .wrap_toast_success {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 30px;
}

.toast_wrap .wrap_toast_success .oops_text {
    color: #081F32;
    width: calc(100% - 30px);
}

.toast_wrap.loading_wrap_error .wrap_toast_success .oops_text {
    color: #081f32 !important;
    font-weight: 500;
}

.toast_wrap.loading_wrap_error .wrap_toast_success .error__btn_cancel figure img {
    filter: invert(1);
}

.toast_wrap .wrap_toast_success .error__btn_cancel {
    width: 30px;
    text-align: start;
}

.toast_wrap .wrap_toast_success .error__btn_cancel:hover {
    cursor: pointer;
}

.toast_wrap .wrap_toast_success .error__btn_cancel figure {
    max-width: 30px;
    width: 100%;
}

.toast_wrap .wrap_toast_success .oops_text p {
    font-weight: 600;
}

.error__btn_cancel {
    border: unset;
    background-color: unset;
    width: 25px;
    height: 25px;
    display: inline-block;
}

@media only screen and (max-width: 575px) {
    .toast_wrap {
        padding: 20px 10px;
    }

    .toast_wrap .wrap_toast_success {
        padding: 0px 5px;
    }
    .toast_wrap .wrap_toast_success .error__btn_cancel figure {
        max-width: 25px;
    }
}

/*toast message css [END]*/
