

/* Registration Form Submit Button */
/* Container Styles */

:root {
    --veoneo-display-hide: block;
}
/**
 * Utilities
 */
.quiz-section  button.transparent-btn {
    background: transparent!important;
    color: #fff!important;
    border: 2px solid #fff!important;
 }

.register-section .container {
    max-width: 768px !important;
    margin: 0 auto;
    margin-bottom: 100px;
    padding: 0 25px;
    width: 100%;
    height: 100%;

}

.btn-cust {
    font-family: "Velo WWangle", sans-serif;
    display: flex;
    justify-content: center;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.375rem;
    background: #fff;
    border: none;
    outline: none;
    width: 100%;
    padding: 1.36rem 0;
    border-radius: 0.75rem;
    color: var(--btn-color,#8B0D3E);
    filter: drop-shadow(0px 2px 5px rgba(0,0,0,0.16));
    cursor: pointer;
    margin: 10px 0;
    text-transform: uppercase;
}
.btn-cust a,
.btn-trans a {
    display: block;
    width: 100%;
    padding: 1.36rem 0;
}
.btn-cust:has(>a),
.btn-trans:has(>a) {
    padding:0!important;
}

input::-webkit-contacts-auto-fill-button,
input::-webkit-credentials-auto-fill-button {
    display: none !important;
}

.template-zero .btn-cust, .template-one .btn-cust{
    background-color: #ffff !important;
    color: #8B0D3E !important;
}

.btn-trans {
    font-family: "Velo WWangle", sans-serif;
    display: flex;
    justify-content: center;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.375rem;
    background: transparent;
    border: none;
    outline: none;
    width: 100%;
    padding: 1.36rem 0;
    border-radius: 0.75rem;
    color: var(--btn-color,#8B0D3E);
    filter: drop-shadow(0px 2px 5px rgba(0,0,0,0.16));
    cursor: pointer;
    margin: 10px 0;
    text-transform: uppercase
}


 .btn-submit {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.375rem;
    background: #fff;
    border: none;
    outline: none;
    width: 100%;
    padding: 1.36rem 0;
    border-radius: 0.75rem;
    color: var(--btn-color,#8B0D3E);
    filter: drop-shadow(0px 2px 5px rgba(0,0,0,0.16));
    cursor: pointer;
    margin: 10px 0;
     text-transform: uppercase;
}
.btn-submit.bat-color-theme,
.btn-return.bat-color-theme {
    color: #fff;
    background: #7eade5;
}
.template-one .btn-transparent {
    background-color: transparent!important;
}
/**
make footer in bottom always
*/ 
.template-quiz {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.template-quiz main, .quiz-page-wrapper {
  flex: 1 0 auto; /* grow to fill available height */
}
/**
Exceptional no margin for main for quiz pages
*/
main.quiz-page-wrapper {
    margin-top: 0;
}
/* Centered Text */
 .text-center {
    text-align: center;
}

/* Circle Styles */
 .circle {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 1px solid #fff;
}
 .circle-tiny {
    width: 0.94rem;
    height: 0.94rem;
}
 /* Page Title */
 .page-title {
    color: #fff;
    font-size: 2.125rem;
    font-weight: 700;
    margin-bottom: 1.7rem;
 }

.page-title {
    line-height: 37px;
}

.page-title span {
    display: block;
}

/* Form Layout */
 .quiz-registration-wrapper form {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: unset;
}

/* Form Inputs */
 .input-wrapper label {
    display: flex;
    margin-bottom: 0.7rem;
    margin-top: 1.4rem;
    font-size: 1rem;
    line-height: 1.375rem;
    color: #fff;
}
 .input-field-wrapper {
    position: relative;
    z-index: 6;
}
 .input-error .input-field-wrapper img {
    opacity: 1;
}
 .input-field-wrapper img {
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 1.25rem;
    right: 1.25rem;
}
 .input-error  .input-field-wrapper .input {
    background: #ffd1d1 !important;
    color: #f00 !important;
    transition: none !important; 
    border: none;
    -webkit-box-shadow: 0 0 2000px #e38f98 inset!important;
}
.input-wrapper .input {
    width: 100%;
    color: #fff;
    background: #e38f98;
    background: #7d839f;
    border: 2px solid white;
    font-size: 1rem;
    padding: 1.3rem 1.4rem;
    border-radius: 0.75rem;
    line-height: 22px;
    /* transition: background-color 5000s ease-in-out 0s; */
}
.input-wrapper .input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px #e38f98 inset;
    box-shadow: 0 0 2000px #e38f98 inset;
    background-color: #e38f98;
    -webkit-box-shadow: 0 0 0 30px #7d839f inset;
    box-shadow: 0 0 2000px #7d839f inset;
    background-color: #7d839f;
    color: #fff;
    -webkit-text-fill-color: #fff;
}
.input-wrapper .input:focus-visible {
    outline: none;
}
 .input-wrapper select {
    -moz-appearance: none; /* Firefox */
    -webkit-appearance: none; /* Safari and Chrome */
    appearance: none;
}
 .input-wrapper {
    position: relative;
}
 .input-wrapper span {
    position: absolute;
    top: 50%;
    right: 1.25rem;
    transform: translateY(-50%);
}

/* Form Input - Remove Spinner on Number Inputs */
 input[type=number]::-webkit-outer-spin-button,
 input[type=number]::-webkit-inner-spin-button,
 input[type=number] {
    -webkit-appearance: none;
    margin: 0;
    -moz-appearance: textfield;
}

/* Terms and Conditions */
 .terms-and-conditions-wrapper {
    padding: 2.18rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
 
}

/* Custom Checkbox Styles */
 .single-tac-wrapper {
    position: relative;
}
 .single-tac-wrapper span {
    position: absolute;
    height: 26px;
    width: 26px;
    background: #fff;
    top: 0;
    left: 0;
    border-radius: 5px;
}
 .single-tac-wrapper span::after {
    content: '';
    height: 12px;
    width: 12px;
    border-radius: 3px;
    background: #6fb7cd;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    scale: 0;
}
 .single-tac-wrapper input:checked ~ span::after {
    scale: 1;
}
 .single-tac-wrapper label {
    margin-left: calc(26px + 0.8rem);
    margin-top: 0.1rem;
    display: block;
    cursor: pointer;
    color: #fff;
}

.single-tac-wrapper label a{
    text-decoration: underline;
    margin-top: 0.1rem;
    display: block;
    cursor: pointer;
    color: #fff;
}
 .single-tac-wrapper input {
    font-size: 1rem;
    line-height: 1.375rem;
    font-weight: 400;
    position: absolute;
    z-index: 2;
    opacity: 0;
    width: 26px;
    height: 26px;
    cursor: pointer;
}

/* Error Box for Invalid Input */
 .input-wrapper .error-box {
    transform: scaleY(0);
    pointer-events: none;
    opacity: 0;
    position: absolute;
}
 .input-error .error-box {
    transform: unset;
    position: relative;
    opacity: 0;

}
 .quiz-registration-wrapper .error-box {
    display: flex;
    background: #801313;
    padding: 2.3rem 1.4rem;
    border-radius: 12px;
    flex-direction: column;
    row-gap: 0.5rem;
    margin-top: -20px; 
    z-index: 1;
}
 .quiz-registration-wrapper .error-box h3 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.375rem;
    position: relative;
     margin:0;
}
 .quiz-registration-wrapper .error-box::before,
 .quiz-registration-wrapper .error-box::after {
    content: '';
    width: 30px;
    height: 30px;
    /* background: #ffd1d159; */
    position: absolute;
    bottom: calc(100% - 15px);
    left: 0;
    z-index: -2;
}
 .quiz-registration-wrapper .error-box::after {
    right: 0;
    left: unset;
}
 .quiz-registration-wrapper .error-box p {
    font-size: 1rem;
    color: #fff;
    font-weight: 400;
    line-height: 1.375rem;
    position: relative;
    display: block;
    width: 50%;
     margin:0;
}
 .quiz-registration-wrapper .error-box.show {
    opacity: 1; /* Visible when class 'show' is added */
}

 .quiz-registration-wrapper .text-danger {
    color: red;
}


/* Full Width */
.verify-otp-section {
    width: 100%;
    min-height: 100vh;
    padding-bottom: 75px;
}

/* Center Alignment */
.verify-otp-section .align-center {
    align-items: center;
}

/* Container Styles */
.verify-otp-section .container {
    max-width:  768px !important;
    margin: 0 auto;
    padding: 0 25px;
    width: 100%;
}
/* Quiz Login */
.verify-otp-section .quiz-otp-verify-wrapper {
    margin: auto;
    width: 100%;
}
.verify-otp-section .quiz-otp-verify-wrapper .page-title{
  
    width: 60%;
}

.verify-otp-section .quiz-otp-verify-wrapper form {
    display: flex;
    flex-direction: column;
    row-gap: 0.7rem;
}
.verify-otp-section .return-to-form .btn {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.375rem;
    background: #fff;
    border: none;
    outline: none;
    width: 100%;
    padding: 1.36rem 0;
    border-radius: 0.75rem;
    color: var(--btn-color,#8B0D3E);
    filter: drop-shadow(0px 2px 5px rgba(0,0,0,0.16 ));
    cursor: pointer;
    margin-bottom: 1rem;
    text-transform: uppercase;
}
.verify-otp-section .return-to-form .btn.bat-color-theme {
    color: #fff;
    background: #7eade5;
}
.verify-otp-section .return-to-form p {
    color: #fff;
    font-size: 1rem;
    line-height: 1.375rem;
    font-weight: 400;
}
.main-quiz-wrapper{
    height:  100%;
    min-height: 768px;
    max-width:  768px !important;
    margin-inline: auto;
    /* margin: 50px auto; */
    padding: 0 25px 20px 25px;
    color:#fff;
    
}
/**
    common styles for all single quiz templates
*/
.single-quiz-template .bat-quiz-video {
    width: 100%;
}
.single-quiz-template .quiz-guide-video {
    margin-top: 20px;
}
.single-quiz-template .quiz-guide-video video {
    border-radius: 12px;
}
.single-quiz-template .btn-start-guide {
	background-color: #ffff !important;
	color: #8B0D3E !important;
}

.single-quiz-template .quiz-guide-video .video-js {
    border-radius: 20px;
}
.single-quiz-template .quiz-guide-video .video-js .vjs-control-bar {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}
.quiz-guide-video .quiz-video-wrapper .btn-start-guide {
    margin-block: 27px 30px;
}

.template-one h2 {
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.375rem;
}
.template-one .quiz-intro .body-text h2 {
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.375rem;
    font-size: 34px;
    font-weight: 700;
    line-height: 37px;
}
.template-two h2,
.template-zero h2
{
    font-size: 34px;
    line-height: 37px;
    margin-bottom: 0.56rem;
    margin-top: 2.125rem;
}
.quiz-guide{
    width: 100%;
    margin: 20px 0;
}
.quiz-intro .body-image img {
    display: block;
    /* margin: auto; */
    margin: auto auto 2.125rem auto;

    width: 100%;
    max-width: 300px;
    height: auto;
}
/* velo quiz 1 intro */
.template-one .quiz-guide-meta-wrapper{
    color: #fff;
    margin: 0 auto;
    margin-top: 0.56rem;
}
.template-one .quiz-guide-meta-wrapper .header-text p , .template-two .quiz-guide-meta-wrapper .header-text p {
    font-size: 0.875rem;
    color: #fff;
    font-weight: 700;
    line-height: 1.125rem;
}
 .template-one .quiz-guide-meta-wrapper .image-container .veo-product-1{
    width: 100%;
    margin-top: 20px;
    /* height: 170px; */
    margin-right: 0px;
}
.all-quiz-wrapper p.quiz-index {
    color: #fff;
    font-family:"Velo WWangle", sans-serif;
    font-size:14px;
    font-weight:700;
    line-height:18px;
}
.template-one .quiz-guide-meta-wrapper .image-container .veo-product-2{
        /* aspect-ratio: 1; */
        width: 58%;
        height: 35%;
        margin-right: -25px;
        
}
.template-one .quiz-guide-meta-wrapper .image-container , .template-two .quiz-guide-meta-wrapper .image-container {
    margin-top: 1.0625rem;
    margin-bottom: 0.25rem;
}
.template-zero .quiz-guide-meta-wrapper .quiz-intro, .template-two .quiz-guide-meta-wrapper .quiz-intro{
    width: 83%;
  }
.template-zero .quiz-guide-meta-wrapper p {
    margin-block: 0;
}
.template-zero .quiz-guide-meta-wrapper .introduction {
    margin-top: 32px;
}
.template-zero .quiz-guide-meta-wrapper .introduction  {
    margin-bottom: 24px;
}
.template-one .quiz-guide-meta-wrapper .quiz-intro, .template-two .quiz-guide-meta-wrapper .quiz-intro{
  width: 83%;
}
.template-one .quiz-guide-meta-wrapper .quiz-intro p, .template-two .quiz-guide-meta-wrapper .quiz-intro p{
    font-size:1rem;
    font-size: 16px;
    line-height: 22px;
    gap:1.625rem;
}
.template-one .quiz-guide-meta-wrapper .btn, .template-two .quiz-guide-meta-wrapper .btn{
    margin-top:0.8125rem;
    margin-bottom:0.625rem;
}
.template-two .quiz-guide-meta-wrapper .image-container::before {
    transform: translateX(-50%) rotate(15deg);
    top: 20%;
}
.template-one .quiz-guide-meta-wrapper .image-container , .template-two .quiz-guide-meta-wrapper .image-container {
    position: relative;
}
.template-one .quiz-guide-meta-wrapper .image-container img , .template-two .quiz-guide-meta-wrapper .image-container img {
    position: relative;
    max-width: 172px;
    z-index: 3;
}
/* velo quiz 2 intro */
.template-two .quiz-guide-meta-wrapper .intensity-group, .before-test2-start .circle-group{
    column-gap: 0.1875rem;
}
.template-two .quiz-guide-meta-wrapper{
    margin: auto;
    color: #fff;
}
.template-one .quiz-guide-meta-wrapper .header-text{
    color: #fff;
    font-size: 34px;
    font-weight: 700;
    margin: 40px 0;
    line-height: 37px;
}
.template-two .quiz-guide-meta-wrapper h1{
    width: 70%;
    color: #fff;
}
/* veo quiz 3 intro */
.before-template0-start .guide-text{
    width: 80%;
    margin: auto auto 4.7rem auto;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
}
.template-zero .quiz-guide-meta-wrapper .image-container .velo-device-1{
    aspect-ratio: 1;
    width: 100%;
    height: 100%;
    margin-right: 25px;
    position: relative;
}
.template-zero .quiz-guide-meta-wrapper .image-container img{
    max-width: 300px;
    position: absolute;
}
.template-zero .quiz-guide-meta-wrapper .image-container .velo-device-1 {
    left: -45%;
    transform: translateY(30%);
    width: 80%;
    width: 200px;
}

.template-zero .quiz-guide-meta-wrapper .image-container .velo-device-3 {
    right: -15%;
    width: 245px;
}

.template-zero .quiz-guide-meta-wrapper .image-container .velo-device-2 {
    left: 50%;
    transform: translate(-85%,0);
    width: 200px;
}
.template-one .intensity-group svg{
    display: block;
    width: 20px;
    height: 20px;
}
.template-two .quiz-guide-meta-wrapper .intensity-group{
    padding:15px 18px 15px 53px;
    border-radius:12px;
    background:rgba(255,255,255,0.14);
    width: max-content;
}
.template-two .intensity-group.circle-group-flip.circle-group-flip {
    transform: scaleX(-1);
}
.template-two .quiz-guide .image-container {
    position: relative;
    flex-direction:column;
    row-gap:30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 120px;
}
.template-two .quiz-guide-meta-wrapper .image-container img.test-3-intro{
    position: absolute;
}
.template-two .quiz-guide-meta-wrapper .image-container .intensity-group:nth-of-type(1) {
    align-self: self-start;
}

.template-two .quiz-guide-meta-wrapper .intensity-group {
    align-self: self-end;
}
.test-3-intro-image-container:nth-of-type(1) {
    position: absolute;top: 0;left: 20px;
}
.test-3-intro-image-container:nth-of-type(2) {
    position: absolute;
    bottom: 0;
    right: 20px;
}
.template-two .quiz-guide-meta-wrapper .image-container  .test-3-intro-image-container:nth-of-type(1) img {
    left: -48%;top: -65%;
}

.template-two .quiz-guide-meta-wrapper .image-container .test-3-intro-image-container:nth-of-type(2) img {
    left: 35%;
    top: -340%;
}
.test-3-intro-image-container .leaf-group.intensity-group {
    display: none!important;
}
.template-two .quiz-guide-meta-wrapper .image-container,
.template-three .quiz-guide-meta-wrapper .image-container {
    display: block!important;
    max-height: revert!important;
}
.test-3-intro-image-container {
    position: static!important;
}
.test-3-intro-image-container img {
    position: static!important;
    max-width: revert!important;
    width: 100%;
}
.quiz-guide-meta-wrapper .header-text {
    font-size: 34px;
    line-height: 37px;
}
.template-one .quiz-guide .image-container img {
    max-width: revert;
}
.single-quiz-template.template-one .quiz-intro .body-image {
    display: block;
    width: 100%;
}
.single-quiz-template.template-one .quiz-intro .body-image img {
    margin: 35px auto!important;
}
/* Before Test A Start Page */
.before-template1-start, .before-test2-start{
    color: #fff;
    margin: auto;
}
.before-template1-start span,
.before-test2-start span{
    display:block;
}
.before-template1-start .guide-text {
    width: 80%;
    margin: auto;
    margin-bottom:2rem;
    font-size: 16px;
    line-height: 22px;
}

.before-template1-start p,
.before-test2-start p{
    text-align:center;
}
.before-template1-start .body-image{
    text-align:center;
}
.template-one .quiz-intro .body-image {
    position: relative;
}
.template-one .quiz-intro .body-image img:first-child {
    /* position: relative; */
    z-index: 1;
    left: 20px;
}
.template-one .quiz-intro .body-image img:not(:first-child) {
    position: absolute;
    width: 88px;
    top: 8px;
    left: -15px;
    z-index: 0;
}
.quiz-intro .intensity-group-wrapper {
    display: none;
}
/* Before Test B Start Page */
/* .before-test2-start .circle-group{
} */
/* Before Test 3 Start */
.before-test2-start .body-image{
    display: grid;
    grid-template-columns: repeat(3,1fr);
}
.template-two .before-test2-start .intensity-group svg{
    display: block;
    width: 20px;
    height: 20px;
}
.template-two .quiz-intro .body-image img{
    width: 100%;
    grid-column: 1 / 4;
    max-width: revert;
    transform: rotate(9deg);
}
.template-two .before-test2-start .intensity-group-wrapper{
    position: relative;
}
.template-two .before-test2-start .intensity-group-wrapper .intensity-group{
    position: absolute;
}
.template-two .intensity-group-wrapper.leaf-group-wrapper {
    grid-column: 3 / 4;
    bottom: 75px;
    right: -5px;
}
.template-two .intensity-group-wrapper:nth-of-type(1) {
    top: 45px;
    right: -150px;
}
/* Test 1 Page */
.velo-quiz1-wrapper{
    margin: auto;
}
.template-zero .velo-quiz-wrapper img {
    scale: 1;
}
.template-one .velo-quiz-wrapper img {
    /* scale: 1.5; */
    scale: 1;
    rotate: 7deg;
}
.all-quiz-wrapper .quiz-intro .body-image img {
    width: 288px;
    margin-block: 35px;
}
.template-one:not(.template-three) .quiz-intro .body-image {
    display: grid;
    place-content: center;
}
.template-one:not(.template-three) .quiz-intro .body-image img:last-child{
    grid-column: 1/ 2;
    grid-row: 1/2;
    width: 50%;
    min-width: 88px;
}
.template-one:not(.template-three) .quiz-intro .body-image img:first-child{
    grid-column: 1 / 2;
    grid-row: 1/2;
    margin-left: 20%;
    min-width: 108px;
    width: 100%;
}
.template-two .velo-quiz-wrapper img {
    rotate: 7deg;
}
.template-one.template-three .velo-quiz-wrapper img {
    rotate: 7deg;
    scale: 1;
}
.velo-test0-wrapper .body-image, 
.velo-test1-wrapper .body-image, 
.velo-test2-wrapper .body-image,
.velo-test3-wrapper .body-image{
    margin-top: 3.7rem;
    margin-bottom: 0.4rem;
}
.template-zero .quiz-section img {
    max-width: 200px;
}
.quiz-section img{
    max-width: 270px;
}
.select-answer{
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 40px;
}
.select-answer .waiting {
    pointer-events: none;
    opacity: 0.9;
}

/* .select-answer button.selected,*/
.select-answer button.correct-answer{

    background: #91fa37 !important;
    color: var(--btn-color,#8B0D3E) !important;
    border: none !important;
}
.select-answer button.wrong-answer{
    background: #bf0000 !important;
    color: #fff !important;
    border: none !important;
}
.select-answer .btn{
    background: transparent;
    font-size: 14px;
    color: #fff;
    border: 2px solid #ffffff;
    border-radius: 0.75rem;
}
.template-one div[class^="answer"] {
    position: relative;
    z-index: 0;
}
.template-one div[class^="answer"] .answer-inner {
    position: relative;
}

.template-one div[class^="answer"] .answer-inner button {
    position: relative;
    z-index: 2;
}

.template-one div[class^="answer"] .answer-inner span {
    z-index: 1;
    background: var(--edge-color);
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    left: -12px;
    border-radius: 12px;
}
.template-one .btn-colors span {
    opacity: 0;
    pointer-events: none;
    font-size: 14px;
    line-height: 1.375rem;
}
.template-three .select-answer .btn img {
    width: 45px;
    transform:rotate(9deg);
    margin-bottom: -28px;
}
.template-three .btn-image {
    position:absolute;
    z-index:2;
    bottom:-10px;
    left:38px;
}

.template-one.template-three .velo-quiz-wrapper p {
    margin: 0;
}

.template-one.template-three .velo-quiz-wrapper .answer-img button {
    padding: 0px;
    display: flex;
    align-items: center;
    overflow: hidden;
    justify-content: space-between;
    padding-inline: 2rem;
    padding-block: 6px;
}

.template-zero .quiz-guide-meta-wrapper{
    color:#fff;
    position: relative;
}
.template-zero .quiz-guide-meta-wrapper .quiz-guide h2, .template-zero .quiz-guide-meta-wrapper .quiz-intro h2 {
    font-size: 2.1rem;
    font-weight: 700;
    line-height: 37px;
}
.template-zero .ms-footer-text {
    margin: 0;
    font-size: 10px;
    line-height: 14px;
    opacity: 0.42;
    margin-top: 1.5rem;
    text-transform: uppercase;
}
/* Test 2 Page */
.velo-test2-wrapper{
    max-width: 500px;
    margin: auto;
}
.velo-test1-wrapper .circle-group{
    column-gap: 0.125rem;
}
.velo-test1-wrapper .leaf-group{
    column-gap: 0.25rem;
}
.velo-test2-wrapper .btn-text{
    font-size: 1rem;
    line-height: 1.375rem;
    color: #fff;
}
.velo-test2-wrapper .btn{
    column-gap: 1rem;
}
.velo-test2-wrapper .correct-answer .btn{
    background: #91fa37;
    color: var(--btn-color,#8B0D3E);
    border: none;
}
.velo-test2-wrapper .correct-answer .btn-text{
    color: var(--btn-color,#8B0D3E);
}
.velo-test2-wrapper .correct-answer .circle{
    background: var(--btn-color,#8B0D3E);
    border-color: var(--btn-color,#8B0D3E);
}
/* Test 3 Page */
.template-one .header-text {
    letter-spacing: 2px;
    margin:1rem 0;
    color: #fff;
    font-size: 34px;
    font-weight: 700;
    line-height: 37px;
    margin-top: 64px;
}
.template-two .quiz-intro{
    margin-top: 4.375rem;
}
.template-two .select-answer svg{
    width: 20px;
    height: 20px;
}
/* Quiz Ending Page */
.quiz_end_result_section{
    max-width:  768px !important;
    margin: 0 auto;
    padding: 0 8px;
    padding-top: 20px;
}

.quiz-ending-page-wrapper{
    color: #fff;
    position: relative;
}
.quiz-ending-page-wrapper .floating-image{
    position: absolute;
}
.quiz-end-action .btn{
    background: transparent;
    border: 2px solid #fff;
    transition: 200ms;
}
/** first button for velo refference will come with velo theme colors **/
.quiz-end-action[level="2"] button:first-child {
    background: #7cc3d6;
    border-color: transparent;
}
.quiz-end-action[level="2"] button:first-child a {
    color: #faec37;
}
/** velo refference button (first button in level 2) end **/
.quiz-end-action .btn {
    background: #fff;
    border-color: transparent; 
}
.quiz-end-action .btn a{
    color: #8B0D3E!important;
}
.quiz-end-action a{
    color: #fff;
    text-decoration: none;
}
.quiz-ending-page-wrapper h1 {
    margin-bottom:0.625rem;
    font-weight: 700;
    font-size: 34px;
    line-height: 37px;
}
.quiz-ending-page-wrapper .body-text p{
    margin-bottom:1.875rem;
}
.quiz-ending-page-wrapper .body-text .thank-you-line{
    margin:0 auto 2.6rem auto;
    width: 80%;
}
.quiz-ending-page-wrapper .quiz-result {
    display: flex;
    flex-direction: column;
    row-gap: 2px;
}
.quiz-ending-page-wrapper .quiz-result h3 {
    font-size: 34px;
    font-weight: 700;
    margin: 0;
    line-height: 37px;
}
.quiz-ending-page-wrapper .quiz-result p {
    margin: 0;
}
.body-text {
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
}
/* Handling Floating Images */
.quiz-ending-page-wrapper {
    max-width: 900px;
    margin: auto;
}
.floating-image{
    /* z-index: -1; */
    position:absolute;
}
.quiz-ending-page-wrapper .floating-image-1 {
    transform: rotate(174deg) scaleX(1); 
    left: -130px;
    width: 184px;
}
.floating-image-2{
    transform: rotate(-59deg) scaleX(-1);
    right:-140px;
    top: -10px;
    width: 184px;
}
.quiz-ending-page-wrapper .floating-image-3{
  
    width: 88px;
    bottom: 10%;
    right: 100%;

}
.quiz-ending-page-wrapper   .floating-image-4{
    width: 62px;
    top: 40%;
    left: 100%;
   
}
.quiz-ending-page-wrapper .floating-image-5 {
    bottom: -8%;
    right: -20%;
    width: 120px;
}

.quiz-ending-page-wrapper{
    /* This Line Must Be Removed Later */
    padding-bottom: 8rem;
}

/**
quiz ending velo reference button
*/
.quiz-end-action .velo-quiz-button {
    --glo-maroon: #7b202e;
    position: relative;
    background: #fff;
    color: var(--glo-maroon);
}
.quiz-end-action .has-icon .velo-quiz-button {
    position: relative;
}
.quiz-end-action .velo-quiz-button img {
    position: absolute;
    width: 100px;
    height: 100px;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}
.quiz-end-action .velo-quiz-button.has-icon span {
    position: relative;
    left: 40px;
}



/* stepper  */


.stepper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%; 
    /* max-width: 430px; */
    margin: auto;
  }
  
  .step {
    position: relative;
    width: 40px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 50%;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
      line-height:18px;
      font-weight:500;
    font-weight: bold;
    opacity: 0.5;
    transition: opacity 0.3s;
  }
  
  .step.active {
    opacity: 1;
  }
  
  .digit {
    z-index: 1;
  }
  
  .line {
    flex-grow: 1; /* Ensures the line stretches to fill available space */
    height: 2px;
    background: transparent;
    position: relative;
  }
  
  .line:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    border-top: 1px dashed #fff;
    width: 100%;
    opacity: 0.5;
    transition: opacity 0.3s;
  }
  
  /* Active state line style */
  .step.active + .line:before {
    opacity: 1;
  }
  
  .step:last-child .line {
    display: none;
  }


/* Spinner Before The Result Load */
span.velo-before-result-spinner {
    position: fixed;
    width: 50px;
    height: 50px;
    z-index:10;
    border: 3px solid transparent;
    border-top-color: #FAED36;
    border-radius: 50%;
    top: 50%;
    left: 45%;
    animation:velo-before-result-spinner 650ms linear infinite;
    display: none;
}

@keyframes velo-before-result-spinner{
    0%{
        transform:rotate(0deg);
    }
    100%{
        transform:rotate(360deg);
    }
}

@media (max-width: 500px) {
    .template-zero .quiz-guide-meta-wrapper .image-container .velo-device-3 {
        right: -35%;
    }
    .template-zero .quiz-guide-meta-wrapper .image-container .velo-device-2 {
        transform: translate(-60%,0);
    }
}