* {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
    box-sizing: border-box;
}

button {
    cursor: pointer;
}


body.no-scroll {
	overflow: hidden;
}

/* 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(244, 37, 37, 0.25);
}

/* 4) Spinning arc in pure white */
.submitBtn #loader-1:before {
  border-top-color: #f42525;
  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  */


/* progress bar  */

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

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


/* end of progress bar  */




/* progress bar  */

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

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


/* end of progress bar  */


/* overlay + modal  */

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999; /* Ensures the overlay appears on top */
    pointer-events: all;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .overlay.closed {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  /* Modal Wrapper: centered, with 95% width */
  .duerden-modal-wrapper {
    width: 95%;
    max-width: 1400px; /* Optional: limits size on very wide screens */
    background-color: rgb(239, 239, 239);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    overflow-y: auto;
    max-height: 95%; /* Ensures it doesn't exceed the viewport height */
    position: relative;
  }


  @media (max-width: 767px) {
    .duerden-modal-wrapper {
        padding: 0;
        width: 100%;
    }
  }

/* end of overlay + modal   */

.duerden-section {
    
}

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

.intro-title h3 {
	
	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;
  
}

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

h1, h2, h3, h4, h5, h6 {
	
}

/* 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;
    background-color: #f42525;
    box-shadow: rgba(0, 0, 0, 0.1) 0px -3px 0px 0px inset;
    border-radius: 100px;
    padding: 24px 0;
    border: 2px solid transparent;
    min-width: 400px;
    justify-content: center;
    font-weight: bold;
    color: white;
    gap: 12px;
    align-items: center;
    
}

.submitBtn:hover {
    background-color: transparent;
    border: 2px solid #f42525;
    color: black;
}

@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;
    display: none;
}

.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;
    width: 100%;
    justify-content: center;
}

.helpfulStats {
    display: flex;
    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  */

.duerden-section {
    min-height: 100vh;
  	width: 100%;
    background-color: #efefef;
}

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

.closeBtnWrapper {
    position: absolute;
    right: 0;
    top: -10px;

}

.closeBtn {
    background-color: #f42525;
    border: 2px solid transparent;
    border-radius: 1000px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.closeBtn i {
	color: black;
}

.closeBtn:hover {
    background-color: transparent;
    border: 2px solid #f42525;
}

#installation-wrapper {
    width: 100%;
}

.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;
  	
  	color: black!important;
}

.question-highlight-coloured {
    color: #f42525!important;
}

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

.questionChoicesWrapper.address {
	flex-direction: column;
	align-items: center;
}



@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;
        margin-left: 0!important;
        margin-right: 0!important;
        margin-bottom: 0!important;
    }
    .questionChoiceQuestion {
        display: flex;
        align-items: center;
        gap: 12px;
    }
    .questionChoiceQuestion p {
        margin-bottom: 0;
    }
	 .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;
        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: 0px;
    }
    .questionChoiceQuestion {
        font-size: clamp(13px, calc(9.25px + 1.171875vw), 16px) !important;
        flex-direction: column;
        align-items: start;
        gap: 6px;
    }
	.questionChoiceCard {
		margin-left: 0!important;
		margin-right: 0!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: #f42525 solid 2px;
}

.questionChoiceCard input[type="radio"]:checked + .questionChoiceInner {
    outline: 2px solid #f42525 !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;
}

.questionChoiceQuestion p {
    font-size: 12px;
    margin-top: 0;
}

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

.questionSVGWrapper svg {
	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: #f42525 ;
    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: #f46a00;
   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: #f42525;
}

.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: rgba(157, 176, 197, 0.25) solid 2px;
    font-weight: bold;
    
}

#lastNameInput {
    height: 55px;
    width:  100%;
    font-size: 18px;
    padding-left: 1rem;
    line-height: 115%;
    border-radius: 5px;
    border: rgba(157, 176, 197, 0.25) solid 2px;
    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: rgba(157, 176, 197, 0.25) solid 2px;
    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 {

    }
	.questionChoicesWrapper.invalid::before {
		left: -12px;
	}
}

.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!important;
    line-height: 115%;
    border-radius: 5px;
    border: rgba(157, 176, 197, 0.25) solid 2px !important;
    font-weight: bold;
}

.phoneNumberInput {
    height: 54px;
    width: 100%!important;
    font-size: 18px;
    padding-left: 1rem!important;
    line-height: 115%;
    border-radius: 5px;
    border: rgba(157, 176, 197, 0.25) solid 2px !important;
    font-weight: bold;
}

.postcodeWrapper, .addressLineWrapper {
	width: 100%;
	max-width: 600px;
}

.addressLineWrapper {
	margin-top: 1rem;
}

#customerPostcode, #customerAddressLine {
	height: 54px;
    width: 100%!important;
    font-size: 18px;
    padding-left: 1rem!important;
    line-height: 115%;
    border-radius: 5px;
    border: rgba(157, 176, 197, 0.25) solid 2px !important;
    font-weight: bold;
}

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

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

#get-code {
    position: relative;
    height: 55px;
    background-color: #D8F0F8;
    
    border: 1px solid #D8F0F8;
    border-radius: 8px;
	color: black!important;
}

#customerPhone {
    height: 51px;
}

#verifyCodeButton {
    display: none;
}

#enterVerificationDiv {
    display: none;
    
}

.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;
    
    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  */
