/* loader  */

.submitBtn .loader {
  /* shrink from 100px to 1em (font-relative) */
  width: 2em;
  height: 2em;
  position: relative;
  margin: 0 auto;
	opacity: 1!important;
}

/* 2) Scope the pseudo-elements and reposition them */
.submitBtn #loader-1:before,
.submitBtn #loader-1:after {
  content: "";
  opacity: 1!important;
  position: absolute;
  /* instead of -10px offsets (for 100px box), zero them for a 1em box */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  /* thinner border, and transparent base */
  border: 0.125em solid transparent;
}

/* 3) Static track (make it a faint white ring) */
.submitBtn #loader-1:after {
  border-color: rgba(255,255,255,0.3);
}

/* 4) Spinning arc in pure white */
.submitBtn #loader-1:before {
  border-top-color: #fff;
  animation: spin 1s infinite linear;
  z-index: 1;
}

@keyframes spin{
  0%{
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100%{
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.submitBtn .ajaxLoader {
  display: none;
  margin: 0 auto;
}

.submitBtn.loading span,
.submitBtn.loading img {
  display: none;
}

.submitBtn.loading .ajaxLoader {
  display: block;
}

/* end of loader  */


/* modal  */

.insurance-overlay {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    height: 100%;
    width: 100%;
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.insurance-overlay.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

}

.insurance-modal {
    background: rgb(239, 239, 239);
    padding: 20px;
    width: 95%;
    max-width: 1400px;
    max-height: 95%;
    overflow: auto;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    position: relative;
}

/* close button */
.modal-close {
    position: absolute;
    top: -10px;
    right: -10px;
    display: flex;
    z-index: 999;
    align-items: center;
    justify-content: center;
    inline-size: 40px;
    block-size: 40px;
    border-radius: 999px;
    border: none;
    background: #00B1E7;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    line-height: 40px;
    transition: background .25s ease;
}

@media (max-width: 767px) {
    .modal-close {
        inline-size: 24px;
        block-size: 24px;
        font-size: 14px;
    }
}

.modal-close:hover {
    background: #008bb5;
}

body.modal-open {
    overflow: hidden;
}

.progressBar {
    display: flex;
    width: 100%;
    height: 10px;
    border-radius: 100px;
}

.progressBarFill {
    background-color: #00B1E7;
    border-radius: 100px;
    width: 100%;
    height: 100%;
    transition: 0.3s ease-in-out;
}

/* end of modal  */

.life-insurance-section {
    font-family: "quicksand", sans-serif !important;
}

.life-insurance-intro {
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.intro-title h3 {
    font-family: "Quicksand", sans-serif !important;
    margin-top: 0 !important;
    text-align: center;
}

.intro-content {
    text-align: center;
}

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

    .intro-content p {
        font-size: clamp(14px, calc(14px + ((100vw - 320px) * 0.0078125)), 16px);
    }
}

.london-area-one {
    display: block !important;
    font-family: "quicksand", sans-serif;
}

.your-info-stage-text {
    display: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "quicksand", sans-serif !important;
}

/* next steps  */

.stepsWrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.nextSteps {
    display: flex;
    justify-content: space-between;
    max-width: 600px;
    width: 100%;
    margin-top: 24px;
}

.nextSteps.submit {
    justify-content: center;
}

.submitBtn {
    display: flex !important;
    background-color: rgb(0, 177, 231) !important;
    border-radius: 100px !important;
    padding: 24px 0 !important;
    border: none !important;
    min-width: 400px;
    justify-content: center !important;
    font-weight: bold !important;
    color: white !important;
    gap: 12px !important;
    align-items: center !important;
    transition: 0.3s ease-in-out;
}

.submitBtn:hover {
    background-color: #004766 !important;
}

@media (max-width: 576px) {
    .submitBtn {
        min-width: 100%;
    }

    .submitBtn span {
        font-size: clamp(14px, 5vw, 18px) !important;
    }
}

.submitBtn span {
    text-transform: uppercase;
    font-size: 20px;
}

.submitBtn img {
    width: 24px;
    height: 24px;
}

.nextStepBtn {
    background-color: #118910 !important;
    padding: 12px 32px !important;
    color: #fff !important;
    border-radius: 50px !important;
    border: none !important;
    box-shadow: rgba(0, 0, 0, 0.1) 0px -3px 0px 0px inset;
    transition: 0.3s ease-in-out;

}

.nextStepBtn:hover {
    background-color: #0f7a0e !important;
    /* a slightly darker green */

}

.backStepBtn {
    background-color: #fff !important;
    padding: 12px 32px !important;
    color: #000 !important;
    border-radius: 50px !important;
    border: 1px solid grey !important;
    box-shadow: rgba(0, 0, 0, 0.1) 0px -3px 0px 0px inset;
    transition: 0.3s ease-in-out;
}

.backStepBtn:hover {
    background-color: #f0f0f0 !important;
    /* a light grey background */
}

/* end of next steps  */

/* lottie  */

.lottieAnimation {
    /*     display: flex; */
    display: none!important;
    width: 100%;
    justify-content: center;
}

.question-step.active-step .lottieAnimation {
    display: flex;
}

.helpfulStats {
    display: none !important;
    justify-content: center;
}

.helpfulStats p {
    max-width: 80%;
}

@media (max-width: 767px) {
    .helpfulStats p {
        max-width: 95% !important;
        font-size: 14px !important;
    }
}

/* end of lottie  */



#installation-container {
    position: relative;
    background-color: rgb(255, 255, 255);
    border-radius: 0.75rem;
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
    padding-bottom: 2rem;
}

#installation-wrapper {
    width: 100%;
    position: relative;
}

.question-step {
    padding: 0 8px;
    /* display: none; */
}

.question-step.active-step {
    display: block;
}

.questionTitleWrapper {
    text-align: center;
}

.questionTitle {
    text-align: center;
    padding-top: 3rem;
    margin-bottom: 2rem;

}

.titleExtraInfo {
    margin-bottom: 2rem;
}

.questionTitle h3 {
    font-size: 32px !important;
    font-weight: bold;
    font-family: "quicksand", sans-serif !important;
    color: black !important;
}

@media (min-width: 578px) and (max-width: 767px) {
    .questionTitle h3 {
        font-size: 24px !important;
    }
}

@media (max-width: 576px) {
    .questionTitle h3 {
        font-size: 20px !important;
    }
}

.question-highlight-coloured {
    color: rgb(0, 177, 231) !important;
}

.questionChoicesWrapper {
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    margin-left: 1rem;
    margin-right: 1rem;
    position: relative;
}



@media (max-width: 992px) {
    .questionChoicesWrapper {
        flex-direction: column;
        align-items: center;
    }

    .questionChoiceCard.wide {
        width: 100% !important;
        min-height: 0 !important;
        max-height: 72px;


    }

    .questionChoiceCard {
        width: 100% !important;
        min-height: 0 !important;
        max-height: 72px;
    }

    .questionChoiceCard .questionChoiceButton {
        border-right: none !important;
    }

    .questionChoiceInner {
        flex-direction: row !important;
    }

    .questionChoiceInner span.w-100 {
        display: flex;
        flex-direction: row;
    }

    .questionChoiceButton {
        flex-direction: row !important;
        border-right: 1px solid #e2e0e0 !important;
        gap: 8px;
    }


    .questionChoiceImg {
        display: flex;
        width: auto !important;
        height: 48px !important;
        max-width: 100%;
        padding: 0 !important;
    }

    .infoIconWrapper {
        position: static !important;
        transform: none !important;
        width: auto !important;
        margin-left: 16px;
    }

    .questionSVGWrapper {
        width: 48px !important;
        height: 48px !important;
        display: inline-flex !important;
        padding: 0 !important;
        align-items: center;
    }

    /* Hide the extra info by default */
    .questionChoiceCard.wide .questionExtraInfo {
        /* display: none; */
        opacity: 0;
        text-align: left;
        padding: 0px 8px;
        transition: opacity 0.3s ease-in-out, max-height 0.3s ease-in-out;
    }

    /* Expanded state: card height auto and show extra info */
    .questionChoiceCard.wide.expanded {
        /* height: auto; */
        max-height: 1000px;

    }

    .questionExtraInfo {
        display: flex !important;
        max-height: 0;

    }

    .questionChoiceCard.wide.expanded .questionExtraInfo {
        max-height: 500px;
        opacity: 1;
        padding: 4px 8px;
    }

    /* Optionally disable the hover rule on mobile */
    .questionChoiceCard.wide:hover .questionExtraInfo {
        display: none;
    }

    .selectChoice {
        display: none;
    }
}

@media (max-width: 479px) {
    .questionChoiceQuestion {
        font-size: 14px !important;
    }
}

@media (max-width: 576px) {
    .questionChoicesWrapper {
        margin: 0 !important;
        padding: 0 12px;
    }

    .questionChoiceQuestion {
        font-size: 14px !important;
    }

    .infoIconWrapper {
        margin-left: 4px;
    }

    .questionExtraInfo {
        font-size: 14px;
    }

    #installation-container {
        margin-top: 1rem;
    }

    .questionTitle {
        padding-top: 1rem;
    }

    .london-area-one {
        font-size: 20px;
    }

    .stage-text {
        padding-left: 4px;
        padding-right: 4px;
    }

    .navbar-brand img {
        width: 100%;
        height: auto !important;
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .callButton {
        padding: 8px 4px !important;
    }
}

.questionChoicesWrapper.invalid::before {
    content: "";
    width: 6px;
    background-color: red;
    height: 100%;
    position: absolute;
    left: 0;
}

.consentError {
    display: none;
}

.consentError p {
    font-size: 12px;
    color: red;
}

.consentError.show {
    display: block;
}

.nameError {
    font-size: 12px;
    color: red;
    width: 100%;
    display: none;
}

.dobError {
    font-size: 12px;
    color: red;
    width: 100%;
    display: none;
}

#emailError {
    font-size: 12px;
    color: red;
    width: 100%;
    display: none;
    margin-top: 1rem;
}

.questionChoiceCard {
    width: 16.875rem;
    min-height: 21.25rem;
    position: relative;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.125rem;
}

.questionChoiceCard.wide {
    width: 20rem;
    min-height: 25rem;
    transition: max-height 0.3s ease-in-out;

}

.questionChoiceInner {
    overflow: hidden;
    transition: outline 0.3s, border 0.3s;
    display: flex;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    position: relative;
    outline: rgba(157, 176, 197, 0.25) solid 2px;
    background: rgb(255, 255, 255);
    cursor: pointer;
    height: 100%;
    width: 100%;
    text-align: left;
    border-radius: 6px;
    padding: 8px 8px;
}

.questionChoiceInner:hover {
    outline: rgb(0, 177, 231) solid 2px;
}

.questionChoiceCard input[type="radio"]:checked+.questionChoiceInner {
    outline: 2px solid #007BFF !important;
}

.visually-hidden {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.questionChoiceButton {
    height: 100%;
    width: 100% !important;
    flex-direction: column;
    padding-left: 0px !important;
    background: none;
    cursor: pointer !important;
    display: flex !important;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center !important;
    position: relative;
    flex: 1 1 0% !important;
    z-index: 1;
    border: 0px !important;
    color: black !important;
    padding: 0px 0px 0px 0px !important;
    white-space: normal !important;
    pointer-events: none;
}

.questionChoiceQuestion {
    font-size: 24px;
    font-weight: bold;
    transition: color 0.3s;
}

.questionChoiceImg {
    width: 100%;
    height: 11rem;
    padding: 1rem 0rem;
    transition: height 0.3s;
}

.questionSVGWrapper {
    height: 100%;
    display: flex;
    justify-content: center;
    padding: 16px;
}

.questionSVGWrapper img {
    max-width: 100%;
    width: auto;
    height: 100%;
    display: block;
}

.selectChoice {
    opacity: 0;
    position: absolute;
    bottom: 0px;
    right: 0px;
    left: 0px;
    text-align: center;
    height: 2.75rem;
    font-size: 1rem;
    font-weight: 600;
    line-height: 2.75rem;
    background: rgb(0, 177, 231);
    color: rgb(255, 255, 255);
    transition: opacity 0.3s;
}

.priceTag {
    position: absolute;
    right: 0px;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    min-width: 4.1875rem;
    -webkit-box-align: center;
    align-items: center;
    z-index: 1;
    height: auto;
    top: 8px;
    border: unset;
    cursor: pointer;
    padding: 0.375rem;
    background-color: rgb(0, 177, 231);
    border-radius: 0.375rem 0px 0px 0.375rem;
    color: #fff;
    font-weight: 600;
}

.questionChoiceInner:hover .selectChoice {
    opacity: 1;
}

.questionExtraInfo {
    display: none;
}

.questionChoiceInner:hover .questionExtraInfo {
    display: block;
}

.questionChoiceInner:hover .questionChoiceImg {
    height: 9rem;
}

.questionChoiceInner:hover .questionChoiceQuestion {
    color: rgb(0, 177, 231);
}

.infoIconWrapper {
    padding: 0px;
    background: none;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    height: 3rem;
    display: block;
    flex-shrink: 0;
    border: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0px;
    display: flex;
    width: 100%;

    pointer-events: all;
}

.infoIcon {
    pointer-events: none;
    display: block;
    width: 32px;

}

.infoIcon.mobileClose {
    display: none;
}

.questionChoiceCard.wide.expanded .infoIcon:not(.mobileClose) {
    display: none;
}

.questionChoiceCard.wide.expanded .infoIcon.mobileClose {
    display: block;
}

/* Flash background animation */
@keyframes flashBackground {
    0% {
        background-color: #f7f7f7;
    }

    50% {
        background-color: #d0ebff;
    }

    100% {
        background-color: transparent;
    }
}

.flash {
    animation: flashBackground 0.5s ease-out;
}

/* input styles  */

#firstNameInput {
    height: 55px;
    width: 100%;
    font-size: 18px;
    padding-left: 1rem;
    line-height: 115%;
    border-radius: 5px;
    border: 3px solid #007BFF;
    font-weight: bold;

}

#lastNameInput {
    height: 55px;
    width: 100%;
    font-size: 18px;
    padding-left: 1rem;
    line-height: 115%;
    border-radius: 5px;
    border: 3px solid #007BFF;
    font-weight: bold;

}

#titleInput {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 55px;
    width: 100%;
    font-size: 18px;
    font-weight: bold;
    padding-left: 1rem;
    line-height: 115%;
    border-radius: 5px;
    border: 3px solid #007BFF;
    background-position: right 20px;
    background: url(https://coverme123.com/wp-content/uploads/2023/09/arrowDown.svg) no-repeat right 15px center;
    background-size: 15px 23px;

}

.aboutYou {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    max-width: 600px;
}

@media (max-width: 767px) {
    .aboutYou {}
}

.aboutYou span {
    font-size: 1.2rem;

}

.aboutYou .yourTitle,
.aboutYou .firstName,
.aboutYou .lastName {
    width: 100%;
}

.select-box {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 55px;
    width: 100%;
    font-size: 18px;
    font-weight: bold;
    padding-left: 1rem;
    line-height: 115%;
    border-radius: 5px;
    border: 3px solid #007BFF;
    background-position: right 20px;
    background: url(https://coverme123.com/wp-content/uploads/2023/09/arrowDown.svg) no-repeat right 15px center;
    background-size: 15px 23px;
    margin-bottom: 8px;

    background-color: #FFF;
}

.dateOfBirth {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    max-width: 600px;
    width: 100%;
}

.dateofBirthInputs {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    width: 100%;
}

@media (max-width: 576px) {
    .dateofBirthInputs {
        flex-wrap: wrap;
    }
}

.emailAddress {
    width: 100%;
    max-width: 600px;
}

.emailAddressInput {
    height: 55px;
    width: 100% !important;
    font-size: 18px;
    padding-left: 1rem;
    line-height: 115%;
    border-radius: 5px;
    border: 3px solid #007BFF !important;
    font-weight: bold;
}

.phoneNumberInput {
    height: 54px;
    width: 340px !important;
    font-size: 18px;
    padding-left: 1rem;
    line-height: 115%;
    border-radius: 5px;
    border: 3px solid #007BFF !important;
    font-weight: bold;
}

@media (max-width: 576px) {
    .phoneNumberInput {
        width: 100% !important;
    }
}

.phoneNumber {
    width: 100%;
    max-width: 600px;
}

#get-code {
    position: relative;
	display: none;
    height: 55px;
    background-color: #D8F0F8;
    font-family: 'neue-haas-grotesk-text', 'sans-serif' !important;
    border: 1px solid #D8F0F8;
    border-radius: 8px;
    color: black !important;
}

#customerPhone {
    height: 51px;
}

#verifyCodeButton {
    display: none;
}

#enterVerificationDiv {
    display: none;
    font-family: 'neue-haas-grotesk-text', 'sans-serif' !important;
}

.otpInputWrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;

}

.successMessageWrapper {
    display: flex;
    flex-direction: column;
}

.mobileVerifiedMessageSuccess {
    margin-bottom: 6px;
    color: #1fad1f;
    font-weight: 600;
}

.mobileVerifiedMessage {
    font-size: 12px;
    color: #178217;
}

.errorMessageWrapper {
    display: flex;
    flex-direction: column;
}

.mobileVerifiedMessageError {
    margin-bottom: 6px;
    color: #ec2513;
    font-weight: 600;
}

.mobileVerifiedMessageRed {
    font-size: 12px;
    color: #8e160b;
}

.otpConfirmed {
    display: flex;
}

#successMessageOTP {
    display: none;
}

.otpConfirmedWrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #e9fbe9;
    padding: 8px;
    padding-right: 16px;
    box-shadow: 0px 2px 0 #1fad1f;
    border-radius: 5px;
    margin-top: 6px;
}

#failureMessageOTP {
    display: none;
    align-items: center;
    gap: 8px;
    background-color: #fde9e7;
    padding: 8px;
    padding-right: 16px;
    box-shadow: 0px 2px 0 #ec2513;
    border-radius: 5px;
}

.greenCheck {
    height: 24px;
    width: 24px;
}

.redCross {
    height: 24px;
    width: 24px;
}

.oneTimePassInputs {
    outline: 3px solid transparent !important;
    outline-offset: 3px !important;
    border-radius: 4px !important;
    border-width: 3px !important;
    border-color: #007BFF !important;
    width: 3.5rem !important;
    height: 3.5rem !important;
    padding: 1rem !important;
    max-width: 80px !important;
    max-height: 70px !important;
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    font-family: 'neue-haas-grotesk-text', 'sans-serif' !important;
    text-align: center !important;
}

.shadow {
    --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.noReceive {
    margin-top: 12px;
}

.disabled {
    color: grey !important;
    /* Example style: make the link grey to indicate it is disabled */
    cursor: not-allowed;
    /* Show a not-allowed cursor on hover */
}



/* loader css  */
@-moz-keyframes rotator {
    0% {
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -moz-transform: rotate(270deg);
        -ms-transform: rotate(270deg);
        -o-transform: rotate(270deg);
        -webkit-transform: rotate(270deg);
        transform: rotate(270deg);
    }
}

@-webkit-keyframes rotator {
    0% {
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -moz-transform: rotate(270deg);
        -ms-transform: rotate(270deg);
        -o-transform: rotate(270deg);
        -webkit-transform: rotate(270deg);
        transform: rotate(270deg);
    }
}

@keyframes rotator {
    0% {
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -moz-transform: rotate(270deg);
        -ms-transform: rotate(270deg);
        -o-transform: rotate(270deg);
        -webkit-transform: rotate(270deg);
        transform: rotate(270deg);
    }
}

@keyframes dash {
    0% {
        stroke-dashoffset: 124;
    }

    50% {
        stroke-dashoffset: 30;
        -moz-transform: rotate(135deg);
        -ms-transform: rotate(135deg);
        -o-transform: rotate(135deg);
        -webkit-transform: rotate(135deg);
        transform: rotate(135deg);
    }

    100% {
        stroke-dashoffset: 124;
        -moz-transform: rotate(450deg);
        -ms-transform: rotate(450deg);
        -o-transform: rotate(450deg);
        -webkit-transform: rotate(450deg);
        transform: rotate(450deg);
    }
}

.path {
    stroke-dasharray: 124;
    stroke-dashoffset: 0;
    -moz-transform-origin: center;
    -ms-transform-origin: center;
    -o-transform-origin: center;
    -webkit-transform-origin: center;
    transform-origin: center;
    stroke: #0060CE;
    fill: transparent;
    -moz-transition: fill 1s ease-in-out, stroke-width 0.5s ease-in-out;
    -o-transition: fill 1s ease-in-out, stroke-width 0.5s ease-in-out;
    -webkit-transition: fill 1s ease-in-out, stroke-width 0.5s ease-in-out;
    transition: fill 1s ease-in-out, stroke-width 0.5s ease-in-out;
}

.loader {

    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    -moz-transition: 0.5s opacity ease-in-out;
    -o-transition: 0.5s opacity ease-in-out;
    -webkit-transition: 0.5s opacity ease-in-out;
    transition: 0.5s opacity ease-in-out;

}

.loader::before {
    font-family: FontAwesome;
    content: '\f00c';
    color: white;
    font-size: 20px;
    position: relative;
    left: 29px;
    top: 0;
    opacity: 0;
    -moz-transition: opacity 1s ease-in-out;
    -o-transition: opacity 1s ease-in-out;
    -webkit-transition: opacity 1s ease-in-out;
    transition: opacity 1s ease-in-out;
}

.loader::after {
    font-family: FontAwesome;
    content: '\f00d';
    color: white;
    font-size: 20px;
    position: relative;
    right: 25px;
    top: 0;
    opacity: 0;
    -moz-transition: opacity 1s ease-in-out;
    -o-transition: opacity 1s ease-in-out;
    -webkit-transition: opacity 1s ease-in-out;
    transition: opacity 1s ease-in-out;
}

.loader.loading {
    opacity: 1;
}

.loader.loading .path {
    -moz-animation: dash 1.4s ease-in-out infinite;
    -o-animation: dash 1.4s ease-in-out infinite;
    -webkit-animation: dash 1.4s ease-in-out infinite;
    animation: dash 1.4s ease-in-out infinite;
}

.loader.loading .spinner {
    -moz-animation: rotator 1.4s linear infinite;
    -o-animation: rotator 1.4s linear infinite;
    -webkit-animation: rotator 1.4s linear infinite;
    animation: rotator 1.4s linear infinite;
}

.loader.success {
    opacity: 1;
}

.loader.success .path {
    fill: rgb(92, 184, 92);
    stroke-width: 0;
}

.success.loader::before {
    opacity: 1;
}

.loader.error {
    opacity: 1;
}

.loader.error .path {
    fill: rgb(217, 83, 79);
    stroke-width: 0;
}

.error.loader::after {
    opacity: 1;
}


/* loader2 css  */

.loader2Wrapper {
    position: relative;
    width: 5rem;
    height: 3.5rem;
}

.loader2 {

    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    -moz-transition: 0.5s opacity ease-in-out;
    -o-transition: 0.5s opacity ease-in-out;
    -webkit-transition: 0.5s opacity ease-in-out;
    transition: 0.5s opacity ease-in-out;

}

.loader2::before {
    font-family: FontAwesome;
    content: '\f00c';
    color: white;
    font-size: 20px;
    position: relative;
    left: 29px;
    top: 0;
    opacity: 0;
    -moz-transition: opacity 1s ease-in-out;
    -o-transition: opacity 1s ease-in-out;
    -webkit-transition: opacity 1s ease-in-out;
    transition: opacity 1s ease-in-out;
}

.loader2::after {
    font-family: FontAwesome;
    content: '\f00d';
    color: white;
    font-size: 20px;
    position: relative;
    right: 28px;
    top: 0;
    opacity: 0;
    -moz-transition: opacity 1s ease-in-out;
    -o-transition: opacity 1s ease-in-out;
    -webkit-transition: opacity 1s ease-in-out;
    transition: opacity 1s ease-in-out;
}

.loader2.loading {
    opacity: 1;
}

.loader2.loading .path {
    -moz-animation: dash 1.4s ease-in-out infinite;
    -o-animation: dash 1.4s ease-in-out infinite;
    -webkit-animation: dash 1.4s ease-in-out infinite;
    animation: dash 1.4s ease-in-out infinite;
}

.loader2.loading .spinner {
    -moz-animation: rotator 1.4s linear infinite;
    -o-animation: rotator 1.4s linear infinite;
    -webkit-animation: rotator 1.4s linear infinite;
    animation: rotator 1.4s linear infinite;
}

.loader2.success {
    opacity: 1;
}

.loader2.success .path {
    fill: rgb(92, 184, 92);
    stroke-width: 0;
}

.success.loader2::before {
    opacity: 1;
}

.loader2.error {
    opacity: 1;
}

.loader2.error .path {
    fill: rgb(217, 83, 79);
    stroke-width: 0;
}

.error.loader2::after {
    opacity: 1;
}

.enter-verification-prompt {
    margin-top: 8px;
}


@media (max-width: 576px) {
    .oneTimePassInputs {
        padding: 6px !important;
    }

    .otpInputWrapper {
        flex-wrap: wrap;
    }

    #get-code {
        margin-top: 12px;
    }
}

.consentWrapper {
    width: 100%;
    max-width: 600px;
}

.consentCheckbox {
    display: block;
    margin: 24px 0;
    font-size: 16px;
    color: #333;
}

.consentCheckbox input[type="checkbox"] {
    margin-right: 10px;
    accent-color: blue;
}

.consentText {
    margin-top: 24px;
    font-size: 14px;
    color: #666;
}

/* end of input styles  */