/* =======================================
   📋 Multi-Step Flow Form Styles
   Add these to your styles.css file
========================================== */

/* Form Container */
.outer_elementWrap .elementWrap input {
    width: 100%;
}

.buttonWrapper button {
    width: 100%;
}

#help-info {
    margin-top: 24px;
    padding: 0px 10px 0px 10px;
    width: 100%;
}

/* Progress Indicator */
.form-indicator.mx-auto {
    max-width: 650px;
    margin: auto;
    width: 100%;
    padding: 20px 0px 0px;
}

.form-indicator .bar-frame {
    border-radius: 12px;
    background-color: #e5e7eb;
    font-size: 15px;
    line-height: 18px;
    height: 26px;
    color: transparent;
    padding-right: 0;
    overflow: hidden;
    position: relative;
}

.form-indicator .form-responses {
    font-size: 16px;
    line-height: 1;
    color: #687280;
    margin: 10px 0 0;
    padding-right: 12px;
    height: 18px;
}

.form-indicator .bar-frame .progress-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    z-index: 0;
    width: 100%;
}

.form-indicator .bar-frame .progress {
    height: 25px;
    background-color: var(--primary) !important;
    border-radius: 12px;
    transition: width 0.3s ease-in-out;
}

.form-indicator .bar-frame .checked-question {
    position: relative;
    display: inline-block;
    transition: all 0.5s ease-in-out;
    color: #ffffff;
    cursor: pointer;
}

/* Progress Step Widths */
.form-indicator .bar-frame .zip_new,
.form-indicator .form-responses .response-zip_new {
    min-width: 20%;
}

.form-indicator .bar-frame .gender_new,
.form-indicator .form-responses .response-gender_new {
    min-width: 20%;
}

.form-indicator .bar-frame .age_new,
.form-indicator .form-responses .response-age_new {
    min-width: 20%;
}

.form-indicator .bar-frame .coverage_new,
.form-indicator .form-responses .response-coverage_new {
    min-width: 40%;
}

.form-indicator .bar-frame .items-wrapper > div {
    padding: 3px 2px;
    text-align: center;
}

.form-indicator .bar-frame .checked-question.zip_new {
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

.form-indicator .bar-frame .items-wrapper > div.not-mac-os {
    padding: 3px 2px;
}

.form-indicator .bar-frame .checked-question.noAnimation {
    transition: all 0s ease-in !important;
}

.form-indicator .form-responses {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: center;
    padding-right: 0;
}

.items-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    text-transform: uppercase;
}

/* Step Animations */
@keyframes rightToCenter {
    0% {
        transform: translateX(1500px);
    }
    100% {
        transform: translateX(0px);
    }
}

@keyframes leftToCenter {
    0% {
        transform: translateX(-1500px);
    }
    100% {
        transform: translateX(0px);
    }
}

.slideLeft {
    transform: translateX(-1500px);
    transition: all 0.5s ease-in-out;
}

.slideNextQAppearence {
    animation: rightToCenter ease-in-out 0.5s;
}

.slidePrevQAppearence {
    animation: leftToCenter ease-in-out 0.5s;
}

.slideRight {
    transform: translateX(1500px);
    transition: all 0.5s ease-in-out;
}

/* Title Styling */
.flow_calc_title {
    font-size: 19px;
    line-height: 34px;
    color: var(--primary);
    font-weight: 500;
    padding-top: 40px;
    text-align: center;
}

.flow_calc_mobi {
    font-size: 18px;
    line-height: 22px;
    color: var(--primary);
    font-weight: 700;
    padding-top: 18px;
    text-align: center;
}

/* Vehicle/Gender Options */
.vehicle-options {
    display: grid;
    text-align: center;
    gap: 15px;
    margin: 20px 0;
    min-height: 65px;
    height: 65px;
}

.vehicle-options .vehicle-option:checked + label,
.vehicle-options label {
    min-height: 75px;
    height: 85px;
}

.innerWrapper.ageQuestion,
.innerWrapper.coverageQuestion {
    margin-bottom: 40px;
}

.marginTop {
    margin-top: 10px;
}

/* Form Element Wrapper */
.outer_elementWrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
}

.outer_elementWrap .elementWrap {
    width: 100%;
    max-width: 425px;
    padding: 0px;
    margin: 0 auto;
}

/* Input Styling */
.innerWrapper input[type="text"],
.innerWrapper input[type="email"],
.innerWrapper input[type="tel"] {
    font-size: 22px;
    font-weight: 500;
    color: var(--primary);
    width: 100%;
    padding: 10px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    height: 75px;
    background-color: #f3f4f6;
    box-sizing: border-box;
    transition: border-color 0.3s, box-shadow 0.3s;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.innerWrapper input[type="text"]:hover,
.innerWrapper input[type="text"]:focus,
.innerWrapper input[type="email"]:hover,
.innerWrapper input[type="email"]:focus,
.innerWrapper input[type="tel"]:hover,
.innerWrapper input[type="tel"]:focus {
    border-color: var(--accent);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Button Wrapper */
.customer-info .buttonWrapper {
    max-width: 500px;
    width: 100%;
    margin: -100px auto 60px auto;
    padding: 0px;
    text-align: center;
}

.customer-info #continue_btn {
    display: inline-block;
    width: 100%;
    max-width: 100%;
}

/* Continue Button */
#continue_btn {
    height: 68px;
    background-color: var(--cta-primary);
    color: var(--text-primary);
    font-size: 20px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: none;
}

#continue_btn:hover {
    background-color: var(--cta-hover);
}

/* Dropdown Styling */
.flow-dropdown {
    font-size: 24px;
    line-height: 1.5;
    height: 45px;
    padding: 0.375rem 1.875rem 0.375rem 12px;
    font-size: 18px;
    margin: 0;
    font-weight: 400;
    transition: all 0.4s;
}

.flow-dropdown:hover,
.flow-dropdown:focus {
    border-color: var(--accent);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Checkmark Positioning */
.zip-checkmark {
    top: 46%;
}

.age-checkmark,
.coverage-checkmark {
    transform: translateY(90%);
    top: 4px;
}

.selct_drop {
    position: relative;
}

.select_check {
    transform: none;
    top: 12px;
    justify-content: center;
    align-items: center;
}

.outer_elementWrap .elementWrap .frm_checkmark {
    top: 36px;
    transform: none;
    position: absolute;
    right: 14px;
    font-size: 22px;
    color: var(--success);
    pointer-events: none;
}

/* Final Step Styling */
.finalStep {
    font-size: 20px;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    height: auto;
    margin: 0;
    margin-bottom: 5px;
}

.finalStep .final-step-username {
    margin: 0 !important;
}

.final-sub {
    font-size: 19px;
    text-align: center;
    font-weight: 600;
    padding: 0;
    text-transform: none;
    width: 100%;
    margin: 0 auto;
    line-height: 1.2;
    max-width: 350px;
    margin-bottom: 20px;
}

.outer_elementWrap .elementWrap input {
    margin: 0;
}

.wrapper.page.customer-info .error_message {
    font-size: 13px;
    margin: 11px 0 0px 0;
}

.outer_elementWrap .elementWrap {
    margin-bottom: 25px;
    position: relative;
}

.outer_elementWrap .elementWrap .frm_checkmark {
    top: 9px;
}

.nws_letter_ar {
    margin-top: 0;
}

.customer-info #continue_btn {
    margin-top: 0;
}

div.helpText,
label.helpText {
    line-height: 16px;
    margin-bottom: 0;
}

.flow_calc_title {
    font-weight: 700;
}

#rubkapp {
    min-height: auto !important;
}

/* Step Buttons */
.steps_btn .prev_ottr img {
    margin-left: 0;
}

.prev_ottr:hover img {
    margin-left: 0;
    margin-right: 5px;
}

.steps_btn .next_otter img {
    margin-right: 0;
}

.next_otter:hover img {
    margin-right: 0;
    margin-left: 5px;
}

.steps_btn .prev_ottr.disabled img {
    margin-left: 0px !important;
}

.steps_btn .next_otter.disabled img {
    margin-right: 0px !important;
}

.cPointer {
    transition: all 0.5s;
}

.prev_ottr:hover .cPointer,
.next_otter:hover .cPointer {
    color: var(--accent) !important;
}

/* Form Wrapper */
#formWrap {
    height: auto;
    min-height: auto;
    max-width: 650px;
    padding: 0px 20px;
}

.form-indicator.mx-auto {
    padding: 20px 20px 0px;
}

#slide-wrapper {
    height: auto;
}

#formWrap .main_steps {
    min-height: auto !important;
    max-height: none;
    height: auto !important;
    margin-top: 28px;
    margin-bottom: 0;
    padding: 40px 20px;
    background-color: var(--white);
    box-shadow: 0 2px 20px -5px rgba(0, 0, 0, 0.3);
}

.vehicle-options {
    min-height: auto;
    height: auto;
    margin: 0;
}

.innerWrapper {
    margin-top: 0;
}

.zip-check-wrapper {
    margin-top: 0;
    margin-bottom: 0;
}

.zip-check-wrapper input {
    margin-top: 0;
    margin-bottom: 0;
}

.flow-title,
.zipQuestion label,
.ageQuestion label,
.coverageQuestion label,
.final-step-username {
    font-size: 32px;
    font-weight: 800;
    margin: 0;
    padding: 0;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--primary);
}

.age-check-wrapper,
.coverage-check-wrapper {
    margin-top: 0;
    margin-bottom: 0;
}

.age-check-wrapper {
    position: relative;
}
ssss .steps_btn {
    padding: 30px 0 20px 0;
}

.innerWrapper input[type="text"],
.innerWrapper input[type="email"],
.innerWrapper input[type="tel"] {
    height: 40px;
    padding: 0.375rem 1.875rem 0.375rem 12px;
    font-size: 18px;
}

.zip-checkmark {
    top: 40%;
}

/* Icon Wrapper */
.icon-soft-skeuo-wrapper {
    width: 45px;
    height: 45px;
}

.icon-soft-skeuo-wrapper svg {
    width: 24px;
    height: 24px;
}

.vehicle-options label {
    font-size: 14px;
    padding: 10px 20px;
    min-height: 100px !important;
}

.vehicle-options label:hover {
    transform: none;
}

/* Response Transitions */
.form-responses > div {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.form-responses > div.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Step Visibility */
.customer-info.current_visiblediv .flow_calc_title {
    display: none;
}

/* Responsive Design */
@media (min-width: 799px) {
    .final-sub {
        font-size: 22px;
        text-align: center;
        font-weight: 600;
        padding: 0;
        text-transform: none;
        width: 100%;
        margin: 0 auto;
        line-height: 1.3;
        max-width: 400px;
    }

    .customer-info .input {
        clear: both;
        border: 1px solid var(--accent);
        font-size: 22px;
        background: #fafafa;
        margin-bottom: 20px;
        padding: 10px;
        height: 60px;
        font-weight: 500;
        background: #fafafa;
        text-align: left;
        width: 300px;
    }

    .form-indicator.mx-auto {
        padding: 20px 20px 0px;
    }
}

@media (max-width: 798.98px) {
    .label-mobi {
        color: var(--primary);
        text-align: center;
        display: inline-block;
        font-size: 1.6rem;
        font-weight: 800;
        margin: 30px 0px 10px 0px;
        padding-top: 3px;
    }

    .label-mobi-2 {
        color: var(--primary);
        text-align: center;
        display: inline-block;
        font-size: 1.6rem;
        font-weight: 800;
        margin: 30px 0px 20px 0px;
        padding-top: 3px;
    }

    .label-mobi-3 {
        color: var(--primary);
        text-align: center;
        display: inline-block;
        font-size: 1.6rem;
        font-weight: 800;
        margin: 30px 0px 10px 0px;
        padding-top: 3px;
    }

    .innerWrapper {
        background-color: transparent;
        border: 1px solid transparent;
        border-radius: 3px;
        display: inline-block;
        max-width: 480px;
        padding: 5px;
        width: 100%;
    }

    #rubkapp {
        display: flex;
        flex-direction: column;
        position: relative;
        min-height: 55vh;
    }

    .outer_elementWrap .elementWrap .frm_checkmark {
        top: 37px;
    }
}

@media screen and (max-width: 767px) {
    .form-indicator.mx-auto {
        padding: 10px 10px 0px;
    }

    #formWrap {
        padding: 0px 10px;
    }

    #formWrap .main_steps {
        margin-top: 20px;
        padding: 30px 10px;
    }
}

@media (max-width: 575px) {
    .items-wrapper div {
        font-size: 13px;
    }

    .form-indicator.mx-auto {
        padding: 0px 0px 0px;
    }

    #formWrap {
        padding: 0px 0px;
    }
}
/*Style1 present on flow page*/
.customer-info .buttonWrapper {
    margin-top: 0 !important;
    margin-bottom: 30px !important;
}

.main_steps {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Space between content and button */
    min-height: 48vh;
    max-height: 52vh;
    border-bottom: 0px solid #eaecec;
    padding-bottom: 1rem;
    overflow: hidden;
}

/*@media (min-width: 768px) {*/
/*  .main_steps {*/
/*    min-height: 40vh;*/
/*    max-height: 80vh; */
/*  }*/
/*}*/

#slide-wrapper {
    height: 100%;
}

#formWrap {
    width: 100%;
}

.steps_btn {
    margin-top: auto;
    /* Pushes it to the bottom */
    padding-top: 1rem;
}

.steps_btn img {
    width: 14px;
    height: 14px;
}

.steps_btn {
    display: flex;
    align-items: center;
    justify-content: end;
    width: 100%;
    padding: 40px 0 20px 0;
}

.steps_btn > div {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.5s;
    display: none;
    font-size: 17px;
}

.steps_btn > div.vibible_button {
    display: flex;
}

.steps_btn .next_otter img {
    margin-left: 5px;
    margin-right: 10px;
    position: relative;
    transition: all 0.5s;
}

.steps_btn .prev_ottr img {
    margin-right: 5px;
    position: relative;
    transition: all 0.5s;
    margin-left: 10px;
}

.steps_btn > div.disabled {
    opacity: 0.4;
    cursor: default;
}

.steps_btn .next_otter.disabled img {
    margin-left: 5px !important;
    margin-right: 10px !important;
}

.steps_btn .prev_ottr.disabled img {
    margin-left: 10px !important;
    margin-right: 5px !important;
}

@media screen and (min-width: 1024px) {
    .prev_ottr:hover img {
        margin-left: 0;
        margin-right: 15px;
    }

    .next_otter:hover img {
        margin-right: 0;
        margin-left: 15px;
    }
}

@media screen and (max-width: 767px) {
    .steps_btn > div {
        font-size: 15px;
    }
}

@media (max-width: 767.98px) {
    .modal-title-ldr {
        margin: 0px 0px 40px 0px !important;
        /* Add or override any styles for small screens here */
    }
}
/* end*/
/*Style2 present on flow page*/
/* From Uiverse.io by abrahamcalsin */
/*  .dot-spinner {
--uib-size: 2.8rem;
--uib-speed: .9s;
--uib-color: #183153;
position: relative;
display: flex;
align-items: center;
justify-content: flex-start;
height: var(--uib-size);
width: var(--uib-size);
}

.dot-spinner__dot {
position: absolute;
top: 0;
left: 0;
display: flex;
align-items: center;
justify-content: flex-start;
height: 100%;
width: 100%;
}

.dot-spinner__dot::before {
content: '';
height: 20%;
width: 20%;
border-radius: 50%;
background-color: var(--uib-color);
transform: scale(0);
opacity: 0.5;
animation: pulse0112 calc(var(--uib-speed) * 1.111) ease-in-out infinite;
box-shadow: 0 0 20px rgba(18, 31, 53, 0.3);
}

.dot-spinner__dot:nth-child(2) {
transform: rotate(45deg);
}

.dot-spinner__dot:nth-child(2)::before {
animation-delay: calc(var(--uib-speed) * -0.875);
}

.dot-spinner__dot:nth-child(3) {
transform: rotate(90deg);
}

.dot-spinner__dot:nth-child(3)::before {
animation-delay: calc(var(--uib-speed) * -0.75);
}

.dot-spinner__dot:nth-child(4) {
transform: rotate(135deg);
}

.dot-spinner__dot:nth-child(4)::before {
animation-delay: calc(var(--uib-speed) * -0.625);
}

.dot-spinner__dot:nth-child(5) {
transform: rotate(180deg);
}

.dot-spinner__dot:nth-child(5)::before {
animation-delay: calc(var(--uib-speed) * -0.5);
}

.dot-spinner__dot:nth-child(6) {
transform: rotate(225deg);
}

.dot-spinner__dot:nth-child(6)::before {
animation-delay: calc(var(--uib-speed) * -0.375);
}

.dot-spinner__dot:nth-child(7) {
transform: rotate(270deg);
}

.dot-spinner__dot:nth-child(7)::before {
animation-delay: calc(var(--uib-speed) * -0.25);
}

.dot-spinner__dot:nth-child(8) {
transform: rotate(315deg);
}

.dot-spinner__dot:nth-child(8)::before {
animation-delay: calc(var(--uib-speed) * -0.125);
} */

/* Keating */
/* Blinking + filled progress dots */
.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(0, 109, 111, 0.4);
    /* soft teal */
    display: inline-block;
    flex-shrink: 0;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.status-dot.loading {
    animation: blink 1s infinite;
}

.status-dot.complete {
    background-color: #006d6f;
    /* your solid teal */
    animation: none;
}

@keyframes blink {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.9);
    }
}

/* Final step is always visible; only contents fade in */
.final-dot {
    width: 16px;
    height: 16px;
    background-color: rgba(0, 179, 109, 0.1);
    border: 2px solid rgba(0, 179, 109, 0.3);
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
    transition: background-color 0.4s ease, border-color 0.4s ease,
        transform 0.3s ease;
    opacity: 0.3;
}

.final-check-text {
    font-weight: 400;
    color: #666;
    opacity: 0.3;
    transition: color 0.4s ease, font-weight 0.4s ease, opacity 0.5s ease;
}

.final-step.complete .final-dot {
    background-color: #0db36d;
    border-color: #0db36d;
    opacity: 1;
    transform: scale(1.2);
}

.final-step.complete .final-check-text {
    color: #0db36d;
    font-weight: 600;
    opacity: 1;
}

#final-step.visible {
    opacity: 1;
}

.final-step {
    opacity: 0;
    transition: opacity 0.4s ease;
}

.status-text {
    opacity: 0.3;
    color: #214c4b;
    font-weight: 500;
    line-height: 1.5;
    text-align: left;
    transition: opacity 0.4s ease;
}

#pop_name,
#pop_age,
#pop_zip,
#pop_coverage {
    font-weight: 800;
}

li.complete .status-text {
    opacity: 1;
}

.final-check-wrapper {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.final-check-icon {
    width: 28px;
    height: 28px;
    filter: grayscale(100%) brightness(0.5);
    transition: filter 0.5s ease, transform 0.3s ease;
}

.final-step.complete .final-check-icon {
    filter: none;
    transform: scale(1.1);
}

/* Larger green dot for final step */
.final-dot {
    width: 16px;
    height: 16px;
    background-color: rgba(0, 179, 109, 0.2);
    border: 2px solid #0db36d;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.final-step.complete .final-dot {
    background-color: #0db36d;
    transform: scale(1.2);
}

/* Blink animation */
@keyframes blink {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.9);
    }
}

.secure-message i {
    color: #006d6f;
    /* your custom teal */
}

#custom-loading-overlay {
    z-index: 9999;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    display: none;
    display: flex;
}

.custom-progress-bar {
    background-color: rgba(235, 176, 40, 1) !important;
}

#custom-loading-overlay .fa-shield-heart {
    animation: pulse 1.5s infinite;
}

#custom-loading-overlay ul {
    padding-left: 0;
}

/*
#custom-loading-overlay li {
display: flex;
align-items: center;
max-width: 300px;
width: 100%;
font-size: 1.2rem;
color: #333;
padding: 10px 0px 10px 0px;
text-align: left;
width: auto;
}
*/

#custom-loading-overlay .secure-list {
    padding-left: 0;
    margin-bottom: 1rem;
}

/*
#custom-loading-overlay .secure-list li i {
color: #198754;
font-size: 1.1rem;
background-color: color: #006d6f;
background-color: rgba(0, 109, 111, 0.1);
border-radius: 50%;
padding: 0.4rem;
margin-right: 0.75rem;
flex-shrink: 0;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
}
*/

#custom-loading-overlay .secure-list li i {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#custom-loading-overlay .secure-list li:hover i {
    transform: scale(1.1);
    box-shadow: 0 0 0 2px rgba(0, 109, 111, 0.2);
}

#custom-loading-overlay .secure-list li {
    display: flex;
    align-items: center;
    text-align: left;
    width: 100%;
    padding: 2px 0px;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: #2b3534;
}

/* Optional: pulse animation for the main icon */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

#custom-loading-overlay .secure-message {
    font-size: 0.85rem;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
}

.logo-modal {
    float: none;
    margin-top: 15px;
    width: 150px;
}

.more-pd {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
}

.medium-pd {
    max-width: 540px;
    width: 100%;
    margin: -20px auto 10px auto;
}

.modal-title-ldr {
    font-weight: 500 !important;
    color: #154140;
    text-align: center;
    line-height: 1.3;
    display: inline-block;
    font-size: 1.3rem;
    margin: 10px 0;
    max-width: 480px;
    width: 100%;
    padding-top: 3px;
    text-transform: none;
}

#custom-loading-overlay .secure-message span {
    font-weight: 600;
    padding: 0px 3px;
}

#custom-loading-overlay .secure-message i {
    color: #006d6f;
    font-size: 0.9rem;
    margin-right: 0.5rem;
}

#custom-loading-overlay .secure-list {
    padding-left: 0;
    margin-bottom: 1rem;
}

/*
#custom-loading-overlay .secure-list li {
display: flex;
align-items: center;
width: 100%;
margin-bottom: 0.75rem;
font-size: 0.95rem;
color: #333;
}
*/

#custom-loading-overlay .check-icon-wrapper {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(0, 109, 111, 0.1);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 1rem !important;
    position: relative;
    overflow: visible;
}

#custom-loading-overlay .check-icon-img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

/* Wrapper for the check icon */
.final-check-wrapper {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Check icon initially gray */
.final-check-icon {
    width: 28px;
    height: 28px;
    filter: grayscale(100%) brightness(0.5);
    transition: filter 0.5s ease;
}

/* Text style */
.final-check-text {
    font-weight: 400;
    color: #333;
    transition: font-weight 0.5s ease, color 0.5s ease;
}

/* Reveal container */
.final-step.visible {
    opacity: 1;
    transition: opacity 0.4s ease;
}

/* Activate success state */
.final-step.complete .final-check-icon {
    filter: none;
    /* restores original green check */
}

.final-step.complete .final-check-text {
    font-weight: 600;
    color: #0db36d;
}

/* End Keating */

.full-loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    height: 100vh;
    width: 100vw;
    background-color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes pulse0112 {
    0%,
    100% {
        transform: scale(0);
        opacity: 0.5;
    }

    50% {
        transform: scale(1);
        opacity: 1;
    }
}

/*26-06-25*/
@media (max-width: 799px) {
    #custom-loading-overlay .secure-list li .status-text,
    #custom-loading-overlay .secure-list li .final-check-text,
    #custom-loading-overlay .secure-list li {
        text-align: left;
    }
}

#custom-loading-overlay {
    max-width: calc(100% - 15px);
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
}

@media (max-width: 575px) {
    #custom-loading-overlay .secure-message {
        font-size: 0.7rem;
    }

    #custom-loading-overlay .secure-list li {
        font-size: 0.9rem;
    }
}

@media (max-width: 450px) {
    .form-responses div {
        font-size: 13px;
    }
}

.zip-checkmark {
    top: 46%;
}

.age-checkmark,
.coverage-checkmark {
    transform: translateY(90%);
}

.outer_elementWrap .elementWrap .frm_checkmark {
    top: 36px;
}

@media (max-width: 799px) {
    .outer_elementWrap .elementWrap .frm_checkmark {
        top: 37px;
    }
}

/* #zip-question-indicator.current-question {
    color: #214c4b;
    } */
.newsletter-box {
    /*background: #f5f5f5;*/
    padding: 10px;
    border-radius: 10px;
    /*box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);*/
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.newsletter-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.newsletter-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 12px;
}

.newsletter-body-ottr img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 12px;
}

.newsletter-body {
    font-size: 13px;
    line-height: 1.5;
    color: #1f3733;
    /*width: calc(100% - 50px);*/
    /*width: calc(100% - 25px);*/
}

.newsletter-body strong {
    font-weight: 600;
}

.newsletter-body span {
    font-size: 12px;
}

.newsletter-check {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #4caf50;
    border-radius: 50%;
    padding: 6px;
}

.newsletter-check img {
    width: 20px;
    height: 20px;
    display: block;
}

.newsletter-footer {
    margin-top: 24px;
    font-size: 12px;
    padding-left: 2px;
    color: #777;
}

.newsletter-header strong {
    width: calc(100% - 25px);
    /*width: calc(100% - 62px);
            font-size: 14px;*/
    font-weight: 400;
    font-size: 13px;
    line-height: 1;
    color: #000;
}

.checkbox-container {
    width: 20px;
    height: 16px;
    /*width: 30px;
            height: 30px;*/
    padding: 0;
    margin: 0 !important;
}

/* checkbox */
.checkbox-container {
    display: block;
    position: relative;
    padding-left: 0px;
    margin-bottom: 0;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 100% !important;
    width: 100% !important;
    padding: 0;
    margin: 0;
}

.checkbox-container .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    /*height: 30px;
            width: 30px;*/
    height: 14px;
    width: 14px;
    border: none;
    background-color: transparent;
    border-radius: 2px;
    border: 1px solid #666;
}

.newsletter-header b {
    font-weight: 600;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: #666 !important;
}

.checkbox-container .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark::after {
    /*left: 10px;
            top: 2px;
            width: 9px;
            height: 19px;*/
    left: 3px;
    top: -2px;
    width: 6px;
    height: 12px;
    border: solid rgba(255, 255, 255, 1);
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.newsletter-body-ottr {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nws_letter_ar {
    margin-top: 15px;
}

.newsletter-box {
    display: flex;
    flex-direction: column;
}

@media screen and (max-width: 575px) {
    .newsletter-header strong {
        font-size: 12px;
    }

    .newsletter-body {
        font-size: 13px;
        line-height: 1.4;
        width: calc(100% - 41px);
    }

    .newsletter-footer {
        font-size: 11px;
    }
}
/* end*/
/*Style3 present on flow page*/
.vehicle-options label:hover {
    transform: none;
}

#formWrap {
    width: 100%;
}

.flow_calc_title {
    color: #204c4b;
    margin-bottom: 0px;
    font-size: 19px;
    line-height: 130%;
}

.form-indicator.mx-auto {
    padding-top: 28px !important;
}

.form-indicator .bar-frame {
    background-color: #def1f1;
}

#body.qw {
    background: #f8f8f8;
}

#formWrap {
    height: auto;
    min-height: auto;
    max-width: 650px;
    padding: 0px 20px;
}

.form-indicator.mx-auto {
    padding: 20px 20px 0px;
}

#slide-wrapper {
    height: auto;
}

#formWrap .main_steps {
    min-height: auto !important;
    max-height: none;

    height: auto !important;
}

.vehicle-options {
    min-height: auto;
    height: auto;
    margin: 0;
}

.innerWrapper {
    margin-top: 0;
}

.zip-check-wrapper {
    margin-top: 0;
    margin-bottom: 0;
}

.zip-check-wrapper input {
    margin-top: 0;
    margin-bottom: 0;
}

/* .flow-title, .zipQuestion label, .ageQuestion label, .coverageQuestion label, .final-step-username {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    padding: 0;
    margin-bottom: 20px;
} */
.flow-title,
.zipQuestion label,
.ageQuestion label,
.coverageQuestion label,
.final-step-username {
    font-size: 32px;
    font-weight: 800;
    margin: 0;
    padding: 0;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #204c4b;
}

.age-check-wrapper,
.coverage-check-wrapper {
    margin-top: 0;
    margin-bottom: 0;
}

#formWrap .main_steps {
    margin-top: 28px;
    margin-bottom: 0;
    padding: 40px 20px;
    background-color: #fff;
    box-shadow: 0 2px 20px -5px rgba(0, 0, 0, 0.3);
}

.steps_btn {
    padding: 30px 0 20px 0;
}

.innerWrapper input[type="text"],
.innerWrapper input[type="email"],
.innerWrapper input[type="tel"] {
    height: 40px;
    padding: 0.375rem 1.875rem 0.375rem 12px;
    font-size: 18px;
}

.zip-checkmark {
    top: 40%;
}

.innerWrapper input[type="text"]:hover,
.innerWrapper input[type="text"]:focus,
.innerWrapper input[type="email"]:hover,
.innerWrapper input[type="email"]:focus,
.innerWrapper input[type="tel"]:hover,
.innerWrapper input[type="tel"]:focus {
    border-color: #8fbc8f;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.icon-soft-skeuo-wrapper {
    width: 45px;
    height: 45px;
}

.icon-soft-skeuo-wrapper svg {
    width: 24px;
    height: 24px;
}

.vehicle-options label {
    font-size: 14px;
    padding: 10px 20px;
    min-height: 100px !important;
}

.flow-dropdown {
    height: 45px;
    padding: 0.375rem 1.875rem 0.375rem 12px;
    font-size: 18px;
    margin: 0;
    font-weight: 400;
    transition: all 0.4s;
}

.flow-dropdown:hover,
.flow-dropdown:focus {
    border-color: #8fbc8f;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.age-checkmark,
.coverage-checkmark {
    transform: none;
    top: 4px;
}

.finalStep {
    font-size: 20px;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    height: auto;
    margin: 0;
    margin-bottom: 5px;
}

.finalStep .final-step-username {
    margin: 0 !important;
}

.final-sub {
    font-size: 19px;
    text-align: center;
    font-weight: 600;
    padding: 0;
    text-transform: none;
    width: 100%;
    margin: 0 auto;
    line-height: 1.2;
    max-width: 350px;
    margin-bottom: 20px;
}

.outer_elementWrap .elementWrap input {
    margin: 0;
}

.wrapper.page.customer-info .error_message {
    font-size: 13px;
    margin: 11px 0 0px 0;
}

.outer_elementWrap .elementWrap {
    margin-bottom: 25px;
}

.outer_elementWrap .elementWrap .frm_checkmark {
    top: 9px;
}

.nws_letter_ar {
    margin-top: 0;
}

.customer-info #continue_btn {
    margin-top: 000;
}

div.helpText,
label.helpText {
    line-height: 16px;
    margin-bottom: 0;
}

.flow_calc_title {
    font-weight: 700;
}

#rubkapp {
    min-height: auto !important;
}

.steps_btn .prev_ottr img {
    margin-left: 0;
}

.prev_ottr:hover img {
    margin-left: 0;
    margin-right: 5px;
}

.steps_btn .next_otter img {
    margin-right: 0;
}

.next_otter:hover img {
    margin-right: 0;
    margin-left: 5px;
}

.steps_btn .prev_ottr.disabled img {
    margin-left: 0px !important;
}

.steps_btn .next_otter.disabled img {
    margin-right: 0px !important;
}

.cPointer {
    transition: all 0.5s;
}

.prev_ottr:hover .cPointer,
.next_otter:hover .cPointer {
    color: #8fbc8f !important;
}

@media screen and (max-width: 767px) {
    .form-indicator.mx-auto {
        padding: 10px 10px 0px;
    }

    #formWrap {
        padding: 0px 10px;
    }

    #formWrap .main_steps {
        margin-top: 20px;
        padding: 30px 10px;
    }
}

@media (max-width: 575px) {
    .items-wrapper div {
        font-size: 13px;
    }

    .form-indicator.mx-auto {
        padding: 0px 0px 0px;
    }

    #formWrap {
        padding: 0px 0px;
    }
}

@media (min-width: 799px) {
    form {
        width: auto;
    }
}

#form-container {
    flex: 1 0 auto;
}
/* end*/
