:root {
    --green-color: #076936;
    --yellow-color: #FFF8E8;
}

.green {
    color: #076936;
}
.red {
    color: #A80003;
}

.hidden {
      display: none;
    }

.hd1,
.hd2 {
    font-size: 42px;
    font-weight: 700;
}

.hd2 {
    font-size: 28px;
}

.hd3 {
    font-size: 18px;
    font-weight: 600;
}

.hd20 {
    font-size: 20px;
    font-weight: 700;
}

.hd24 {
    font-size: 24px;
    font-weight: 700;
}

.hd32 {
    font-size: 32px;
    font-weight: 700;
}

.f12 {
    font-size: 12px;
}

.f14 {
    font-size: 14px;
}

.f16 {
    font-size: 16px;
}

.f18 {
    font-size: 18px;
}

.f20 {
    font-size: 20px;
}

.quiz-main {
    padding-bottom: 60px;
}

.quiz-intro {
    background-color: var(--yellow-color);
    padding: 55px 0 80px;
}

.quiz-banner {
    background: var(--green-color) url(../images/banner-bg.svg) no-repeat;
    min-height: 275px;
    border-radius: 32px;
    display: flex;
    padding: 0 30px;
}

.quiz-banner figure {
    margin-bottom: 0;
    margin-top: -40px;
    margin-right: 30px;
}

.quiz-banner .banner-info .hd1 {
    color: #FFF;
    margin: 28px 0 12px;
}

.quiz-banner .banner-info .desc {
    color: #FFF;
    font-size: 18px;
}

.start-journey {
    padding: 0 24px;
    display: flex;
    align-items:flex-end;
    margin-top: -50px;
}

.start-journey .hd2 {
    color: var(--green-color);
    flex: 0 0 32%;
    margin: 20px 0 0;
}
.journey-ctnt{
    flex: 1;
}
.start-journey .f16{
    line-height: 1.2;
    font-weight: 500;
    margin: 15px 0 20px;
}

.card-box {
    display: flex;
    flex: 0 0 68%;
    gap: 24px;
    justify-content: space-between;
    margin-top: 24px;
}

.jcard {
    cursor: pointer; 
    position: relative;
    width: 214px;
    height: 274px;
    flex-shrink: 0;
    text-align: center;
    padding: 98px 16px 0;
    border-radius: 24px;
    background: #FEF5C9;
    border: 1px solid transparent;
    box-shadow: 2px 6px 4.5px 0 rgba(255, 255, 255, 0.62) inset, 4px 6px 10.3px 0 rgba(206, 175, 104, 0.25);
    transition: all 0.3s ease;
}
.jcard:hover {
    border: 1px solid #FFD700;
    box-shadow: 2px 6px 4.5px 0 rgba(255, 255, 255, 0.62) inset;
}

.jcard img {
    transform: scale(1);
    transition: all 0.3s ease;
}
.jcard:hover img {
    transform: scale(1.25);
}

.jcard .hd3 {
    color: var(--green-color);
    margin-bottom: 24px;
}

.jcard .f14 {
    line-height: 1.2;
    margin-bottom: 0;
}

.jcard figure {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 99px;
    height: 99px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.jcard figure::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotate(0deg);
    width: 99px;
    height: 99px;
    background: url(../images/polygon1.svg) no-repeat center;
    background-size: 99px;
    z-index: -1;
    transform-origin: center center;
    will-change: transform;
    transition: all 0.3s ease;
}
.jcard:hover figure::before{
    width: 104px;
    height: 104px;
    background: url(../images/polygon1-hover.svg) no-repeat center;
    background-size: 94px;
    transform: translateX(-50%) rotate(105deg);
}

.jcard figure::after {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 110px;
    background: url(../images/polygon2.svg) no-repeat center;
    background-size: 110px;
    z-index: -1;
}

#progress-container {
    display: flex;
    width: 80%;
    margin: 40px auto;
    height: 40px;
}

.bar-hd {
    flex: 0 0 33%;
    position: relative;
}

.bar-hd::after {
    content: '';
    background: url(../images/progress1.svg) no-repeat center center;
    width: 27px;
    height: 27px;
    position: absolute;
    top: -11px;
    left: -11px;
}

.bar-hd.active::after, .bar-hd.active.lact::before {
    background: url(../images/progress2.svg) no-repeat center center;
}

.bar-hd.active .bar-txt {
    color: var(--green-color);
    font-weight: 700;
    font-size: 18px;
}
.bar-hd.active .bar-txt.last {
    color: #545454;
    font-weight: 400;
    font-size: 16px;
}
.bar-hd.active.lact .bar-txt.last {
    color: var(--green-color);
    font-weight: 700;
    font-size: 18px;
}

.bar-hd.last::before {
    content: '';
    background: url(../images/progress1.svg) no-repeat center center;
    width: 27px;
    height: 27px;
    position: absolute;
    top: -11px;
    right: -11px;
}

.bar {
    height: 2px;
    background-color: #ccc;
    margin-top: 2px;
}

.bar-fill {
    height: 6px;
    background-color: var(--green-color);
    position: absolute;
    left: 0;
    top: 0px;
}

.bar-txt {
    position: absolute;
    font-size: 16px;
    color: #545454;
    left: 0;
    transform: translateX(-50%);
    top: 20px;
}

.bar-txt.last {
    left: auto;
    right: 0;
    transform: translateX(50%);
}

.quiz-box {
    border-radius: 32px;
    background: #FFF8E8;
    padding: 24px 110px 60px;
    text-align: center;
}

/* Progress indicator */
.progress-indicator {
    display: flex;
    width: 590px;
    max-width: 100%;
    gap: 7px;
    color: black;
    font-weight: 600;
    text-align: center;
    flex-wrap: wrap;
    margin: 0 auto;
}

.progress-line {
    background-color: rgba(11, 103, 53, 1);
    display: flex;
    width: 216px;
    flex-shrink: 0;
    height: 1px;
    margin-top: 13px;
}

.progress-text {
    align-self: stretch;
    flex-grow: 1;
    flex-shrink: 1;
    width: 140px;
    font-size: 18px;
}

#question-text {
    color: rgba(9, 104, 54, 1);
    font-size: 28px;
    font-weight: 600;
    line-height: 32px;
    text-align: center;
    width: 827px;
    max-width: 100%;
    margin: 20px auto 30px;
}

.answer-option {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap; 
}

.answer-label {
    cursor: pointer;
    flex: 0 0 48%;
}

.answer-input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.answer-box {
    background-color: white;
    border: 1px solid white;
    box-shadow: 0px 4px 4px rgba(202, 159, 60, 0.21);
    padding: 15px 31px;
    border-radius: 18px;
    max-width: 100%;
    font-size: 18px;
    font-weight: 500;
    color: #000000;
    text-align: left;
    transition: background-color 0.2s ease;
    background-position: 95% center;
}

.answer-box:hover {
    border: 1px solid #096836;
    background: #C5E5D4;
    box-shadow: 0 4px 7px 0 rgba(74, 166, 117, 0.34);
}

.answer-input:checked+.answer-box {
    border: 1px solid #096836;
    background: #096836 url(../images/tick.svg) no-repeat 95% 18px;
    box-shadow: 0 4px 4px 0 rgba(74, 166, 117, 0.58);
    color: #FFF;
    font-weight: 600;
}

.answer-text {
    color: rgba(84, 84, 84, 1);
    font-weight: 500;
}

.btn-box {
    margin-top: 32px;
}

.nav-btn {
    border-radius: 30px;
    border: 1px solid #096836;
    background: #FFF8E8;
    color: #545454;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    padding: 20px 60px;
    line-height: 1;
    display: inline-block;
}

.nav-btn.op1 {
    background: #FFD700;
    color: #096836;
    border-color: #FFD700;
}
.nav-btn:hover {
    border: 1px solid #FFD700;
    background: #FFF8E8;
    color: #096836;
    box-shadow: 0 4px 4px 0 #FFE4A6;
}

.fun-fact {
    border-radius: 32px;
    background: #FDFDFD;
    display: flex;
    align-items: center;
    margin-top: -32px;
}

.fun-fact-label {
    background: #FEF5C9;
    padding: 16px 32px;
    border-radius: 32px;
    font-size: 18px;
    font-weight: 700;
    color: #096836;
}

.fun-fact-label .icn {
    vertical-align: middle;
    margin-right: 10px;
}

.fun-fact-text {
    padding: 16px 32px;
    flex: 1;
}
/* For Chrome, Safari, Edge */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* For Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.error-msg, .success-msg {
  color: #A80003;
  font-size: 13px;
  margin-top: 4px;
}
.success-msg {
    color: #096836;
}

/* Report Page CSS */

.your-report {
    padding: 20px 0 50px;
}

.report-box {
    border-radius: 16px;
    border: 1px solid #FFD601;
    background: #FFF;
}

.report-banner {
    border-radius: 16px;
    background: conic-gradient(from -43deg at 75.48% 56.42%, #FFF8E8 0deg, #FEF5C9 360deg);
    padding: 10px 10%;
}

.report-banner .row {
    align-items: center;
}

.report-banner .hd1 {
    color: var(--green-color);
    margin-bottom: 15px;
}
.report-banner .hd1.red {
    color: #A80003;
}

.report-banner .f20 {
    font-weight: 700;
    margin-bottom: 10px;
}

.report-banner .f18 {
    margin-bottom: 0;
    line-height: 1.2;
}

.score-box {
    width: 240px;
    height: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.score-box.op1 {
    background: url(../images/scoreBg-red.svg) no-repeat center;
    background-size: 100%;
}
.score-box.op2 {
    background: url(../images/scoreBg-ylw.svg) no-repeat center;
    background-size: 100%;
}
.score-box.op3 {
    background: url(../images/scoreBg-grn.svg) no-repeat center;
    background-size: 100%;
}

.score-box span{
    font-size: 16px;
    font-weight: bold;
    color: #FFD700;
}
.score-box span#result-score{
color: #FFF8E8;
font-size: 84px;
font-weight: 700;
line-height: 84px; /* 100% */
}
.score-box.op2 span, .score-box.op2 span#result-score{
    color: #000000;
}
.report-data {
    position: relative;
    padding: 20px 40px 40px 70px;
}

.report-info {
    border-radius: 32px;
    background: #FFF8E8;
    padding: 30px 40px 150px;
}

.report-info .hd32 {
    color: #000000;
    font-weight: 600;
    margin-bottom: 15px;
}

.report-info .hd24 {
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--green-color);
}

.report-info .f14 {
    line-height: 1.5;
}

.recommended {
    position: absolute;
    left: 70px;
    bottom: 0;
    border-radius: 32px;
    background: conic-gradient(from 77deg at 4.27% 53.44%, #FDCB0A 0deg, #FFD700 360deg);
    padding: 18px;
    height: 180px;
    width: 85%;
    display: flex;
    justify-content: end;
}

.prodImg {
    position: absolute;
    left: 120px;
    bottom: -60px;
    z-index: 1;
}

.dosage-card {
    width: 70%;
    border-radius: 32px;
    background: conic-gradient(from 80deg at 11.8% 70.6%, #096836 0deg, #20562C 360deg);
    padding: 20px 25px;
    color: #FFF;
    font-size: 16px;
}

.dosage-card .hd20 {
    color: #FFF;
}

.dosage-item .icnBx {
    display: inline-block;
    width: 40px;
    vertical-align: middle;
}

.free-sample {
    padding: 40px 80px 50px;
    display: flex;
    align-items: center;
}

.free-sample .nav-btn.op1 {
    display: block;
    margin-left: 0;
    margin-right: 18px;
    padding: 20px 50px;
}

.invite-friends {
    border-radius: 16px;
    background: #FFF8E8;
    padding: 15px 20px;
    line-height: 29px;
    font-size: 16px;
    color: #000000;
    flex: 1;
    text-align: center;
}

.invite-friends a {
    color: #000000;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.invite-friends .sep {
    margin: 0 12px;
    font-size: 24px;
    font-weight: 100;
    vertical-align: middle;
}

.lifestyle-recomdn {
    margin: 32px 12px 12px;
    border-radius: 32px;
    padding: 28px;
    background: conic-gradient(from 79deg at 7.73% 65.75%, #FFF19F 0deg, #FFE765 360deg);
}

.lrBox {
    display: flex;
    gap: 24px;
}

.lrcard {
    border-radius: 32px;
    background: #FFF8E8;
    padding: 24px;
}

.lrcard .icnBg {
    width: 96px;
    height: 96px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 16px;
    background: url(../images/icnBg.svg) no-repeat center / contain;
}

.lrcard .d-flex {
    align-items: center;
    margin-bottom: 5px;
}

.lrcard .f18 {
    color: var(--green-color);
    line-height: 1.5;
    font-weight: 600;
    flex: 1;
}

.lrcard .f12 {
    line-height: 20px;
    margin-bottom: 0;
}

.quiz-popup {
    max-height: 540px;
    height: 80vh;
    border: 0;
    border-radius: 32px;
    background: conic-gradient(from 245deg at 50% 50%, #FFF8E8 0deg, #FEF5C9 360deg);
}

.modal .close {
    position: absolute;
    top: 15px;
    right: 20px;
    opacity: 1;
    z-index: 1;
}

.quiz-popup .row,
.almost-there,
.mobile-verify-box {
    height: 100%;
}

.quiz-popup .f18 {
    color: #000000;
}

.form-row {
    margin: 35px 0 25px;
}

.form-input {
    width: 100%;
    padding: 20px;
    font-size: 18px;
    border-radius: 16px;
    border: 1px solid #FFD700;
    background: #FFF;
}

.mob-verify .custom-control-label {
    font-size: 14px;
    line-height: 1.6;
    color: #000000;
}

.mob-verify .custom-control-label::before {
    border-color: #096836;
}

.mob-verify .custom-control-label a {
    font-weight: 500;
    color: #000000;
    text-decoration: underline;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

#otp-box .f16 a, #resendBtn {
    color: #096836;
    border: 0;
    text-decoration: underline;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

#otp-box .form-row {
    margin-top: 24px;
}

.nav-btn:disabled {
    cursor: not-allowed;
    background: #D1D1D1;
    border-color: #D1D1D1;
    color: #545454;
}

.almost-there .f18 {
    margin-bottom: 40px;
}

.personal-info {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.form-row.form-group{
    width: 100%;
    margin: 35px 0 25px;
}

.form-group {
    position: relative;
    margin: 0;
    flex-grow: 1;
    width: 30%;
}

.floating-textbox {
    width: 100%;
    padding: 18px 24px;
    font-size: 16px;
    border: none;
    background: #FFF;
    outline: none;
    border: 1px solid #FFD700;
    border-radius: 16px;
}

.form-group label {
    position: absolute;
    top: 18px;
    left: 24px;
    color: #999;
    font-size: 16px;
    pointer-events: none;
    transition: 0.2s ease all;
}

.floating-textbox:focus~label,
.floating-textbox:not(:placeholder-shown)~label {
    top: -6px;
    font-size: 12px;
    background: #FFF8E8;
    line-height: 1;
}

select.floating-select {
    width: 100%;
    padding: 18px 24px;
    border: 1px solid #FFD700;
    border-radius: 16px;
    background: #FFF;
    font-size: 16px;
    outline: none;
    appearance: none;
}

/* float on focus */
select.floating-select:focus ~ label, select.floating-select:valid+label {
  top: -6px;
  font-size: 12px;
  background: #FFF8E8;
  line-height: 1;
}

/* float when JS-adds has-value on .form-group */
.form-group.has-value label {
  top: -6px;
  font-size: 12px;
  background: #FFF8E8;
  line-height: 1;
}

.select-box::after {
    content: " ";
    width: 14px;
    height: 9px;
    background: url(../images/arrow_down.svg) no-repeat center;
    position: absolute;
    top: 30px;
    right: 20px;
    pointer-events: none;
}

.yay-popup {
    background: url(../images/yay-bg.svg) no-repeat center;
    height: 90vh;
    max-height: 460px;
    text-align: center;
    border-radius: 32px;
    background: #096836;
    border: 0;
}

.yay-popup .d-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
}

.yay-popup .hd1 {
    color: #FFD700;
    margin: 20px 0 25px;
}

.yay-popup .hd32 {
    color: #FFF;
}
.btn-box .nav-btn:first-child{
    margin-right: 30px;
}
.share-popup, .tandc-popup{
    border: 0;
    border-radius: 16px;
    background: conic-gradient(from -43deg at 75.48% 56.42%, #FFF8E8 0deg, #FEF5C9 360deg);
    padding: 58px 36px 78px;

}
.share-popup .modal-body{
    padding: 0;
}
.share-popup .f18{
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
    margin-top: 32px;
}
.copy-box{
    position: relative;
}
.copy-box input{
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
    border-radius: 12px;
    background: #FFF;
    border: 0;
    line-height: 1;
}
.copy-btn{
    position: absolute;
    width: 24px;
    height: 24px;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    background:url(../images/copy.svg) no-repeat center;
    border: 0;
    cursor: pointer;
}
#copyTxt{
    position: absolute;
    top: 50%;
    right: 45px;
    transform: translateY(-50%);
    font-size: 16px;
    color: #000000;
}
.share-links{
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 24px;
}
.share-links li{
    list-style: none;
}
.share-links a{
    display: inline-block;
    width: 84px;
    height: 72px;
    border-radius: 12px;
    background: #FFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.share-links a img{
    width: 32px;
    height: 32px;
}
.share-links a span{
    display: block;
    margin-top: 8px;
    font-size: 12px;
    line-height: 1;
    color: #000000;
    font-weight: 500;
}
.tandc-popup{
    padding: 58px 10% 78px;
}
.tandc-popup .modal-body{
    padding: 0;
}
.tandc-popup .f16{
    margin-top: 20px;
    color: #000000;
    margin-bottom: 0;
}

@media (min-width: 576px) {
    .modal-md1 {
        max-width: 540px;
    }
}

@media (max-width: 992px) {
    .hd1 {
        font-size: 28px;
    }
    .hd32{
        font-size: 20px;
    }
    .hd20{
        font-size: 16px;
    }
    .quiz-main{
        padding-bottom: 40px;
    }
    .quiz-banner .banner-info .desc {
        font-size: 14px;
        line-height: 1.2;
        width: 70%;
    }
    .quiz-intro {
        padding: 30px 0 40px;
        overflow-x: hidden;
    }

    .start-journey {
        flex-direction: column;
        align-items: start;
        padding: 0;
        position: relative;
        margin-top: -120px;
    }

    .banner-info .hd2 {
        color: #FFF;
        font-size: 22px;
        /* padding-left: 20px; */
        margin: 0 0 20px;
        line-height: 1.2;
    }

    .start-journey .hd2 {
        display: none;
    }
    .start-journey .f16{
        font-size: 14px;
        margin: 0 0 12px;
    }
    .start-journey .f16 br{
        display: none;
    }
    .journey-ctnt{
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 1;
        width: 100%;
        text-align: center;
        padding: 16px;
        border-radius: 24px 24px 0 0;
        background: #FCFCFC;
        box-shadow: 0 -2px 10.1px 0 rgba(183, 139, 39, 0.17);
    }

    .quiz-banner {
        position: relative;
        min-height: 420px;
        padding: 0 20px;
    }

    .quiz-banner figure {
        position: absolute;
        margin: 0;
        bottom: 0;
        left: 40%;
    }

    .card-box {
        flex-wrap: wrap;
        justify-content: center;
        gap: 32px 12px;
    }

    .jcard {
        width: 48%;
        height: 180px;
        padding-top: 75px;
    }
    .jcard .hd3{
        font-size: 14px;
        margin-bottom: 16px;
    }
    .jcard .f14{
        font-size: 10px;
    }
    .jcard figure{
        transform: translateX(-50%) scale(0.8);
        top: -32px;
    }
    .quiz-box{
        padding: 24px 16px 60px;
        border-radius: 24px;
        box-shadow: 0 5px 19.1px 0 rgba(189, 141, 32, 0.39);
    }
    .answer-label{
        flex: 0 0 100%;
    }
    #question-text{
        font-size: 20px;
        line-height: 1.3;
        text-align: left;
    }
    .answer-option{
        gap: 10px;
    }
    .answer-box{
        font-size: 14px;
        padding: 10px 20px;
        line-height: 1.2;
        border-radius: 12px;
    }
    .answer-input:checked+.answer-box{
        background-size: 24px 24px;
        background-position: 95% 10px;
    }
    .nav-btn{
        font-size: 16px;
        padding: 15px 50px;
    }
    .progress-line{
        width: 28%;
    }
    .progress-text{
        font-size: 14px;
        width: auto;
    }
    .bar-txt{
        font-size: 12px;
        text-align: center;
        line-height: 1.2;
        width: 90px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .bar-hd.active .bar-txt, .bar-hd.active.lact .bar-txt.last{
        font-size: 13px;
    }
    .fun-fact{
        flex-direction: column;
        text-align: center;
        border-radius: 32px;
        box-shadow: 0 5px 19.1px 0 rgba(189, 141, 32, 0.39);
    }
    .fun-fact-label{
        background: url(../images/fun-fact-mob.svg) no-repeat  -6px -16px;
        background-size: 104%;
        width: 100%;
        padding: 28px 32px;
    }
    .fun-fact-text{
        font-size: 14px;
        padding: 16px 24px 20px;
        line-height: 1.5;
        color: #545454;
    }
    .btn-box .nav-btn:first-child{
        margin-right: 12px;
    }
    .report-banner{
        padding: 10px 10% 24px;
    }
    .report-banner .row{
        flex-direction: column-reverse;
        text-align: center;
    }
    .score-box{
        margin: 0 auto 12px;
    }
    .report-banner .f20{
        font-size: 16px;
    }
    .report-banner .f18{
        font-size: 12px;
    }
    .lifestyle-recomdn .f18{
        font-size: 14px;
        line-height: 1.3;
    } 
    .lifestyle-recomdn{
        padding: 24px 12px;
    }  
    .lrBox{
        flex-direction: column;
        gap: 16px;
    }
    .lrcard{
        padding: 16px;
        border-radius: 24px;
    }
    .lrcard .icnBg{
        transform: scale(0.9);
        height: 80px;
        width: 80px;
        margin-right: 5px;
    }
    .lrcard .d-flex{
        margin-bottom: 0;
    }
    .report-data{
        padding: 30px 16px 0;
    }
    .report-info{
        padding: 20px 16px;
        text-align: center;
    }
    .report-info .hd32{
        font-size: 24px;
    }
    .report-info .hd24{
        font-size: 18px;
        text-decoration: underline;
        text-underline-offset: auto;
        text-underline-position: from-font;
    }

    .recommended{
        position: static;
        width: 100%;
        margin-top: 100px;
        padding: 150px 12px 12px;
        height: auto;
    }
    .dosage-card{
        width: 100%;
        font-size: 12px;
        border-radius: 16px;
        padding: 15px 10px;
    }
    .prodImg{
        width: 110px;
        bottom: auto;
        margin-top: 12px;
    }
    .prodImg img{
        width: 100%;
    }
    .dosage-item{
        display: flex;
        align-items: center;
        line-height: 1.2;
    }
    .dosage-item .icnBx{
        flex: 0 0 36px;
    }
    .icnBx svg{
        height: 24px;
        width: 24px;
    }
    .free-sample{
        flex-direction: column;
        text-align: center;
        padding: 20px 16px 30px;
    }
    .invite-friends{
        display: flex;
        flex-direction: column;
        padding: 0;
        background: none;
        font-weight: 600;
        line-height: 1.2;
    }
    .invite-friends .mr-4{
        margin-left: 1.5em;
    }
    .invite-friends .mr-4 + span{
        font-size: 14px;
        margin-top: 12px;
    }
    .fixed-btm-top {
        bottom: 20px;
        right: 10px;
    }
    .get-btn{
        position: fixed;
        z-index: 1;
        bottom: 15px;
        left: 0;
        width: 100%;
    }
    .free-sample .nav-btn.op1{
        margin-right: 0;
        display: inline-block;
    }
    .share-links{
        flex-direction: column;
    }
    .share-links a{
        flex-direction: row;
        width: 100%;
        height: auto;
        justify-content: start;
        padding: 8px 24px;
    }
    .share-links a img{
        width: 26px;
        height: 26px;
        margin-right: 12px;
    }
    .share-links a span{
        margin-top: 0;
    }
    .tandc-popup{
        padding: 48px 28px 28px;
    }
    .tandc-popup .f16{
        font-size: 14px;
        height: 60vh;
        overflow-x: auto;
    }
    .personal-info{
        gap: 12px;
    }
    .personal-info .form-group{
        width: 100%;
    }
    .floating-textbox, select.floating-select{
        padding: 12px 24px;
        font-size: 14px;
        line-height: 1;
    }
    .form-group label{
        top: 8px;
        font-size: 14px;
    }
    .almost-there .f18{
        margin-bottom: 20px;
    }
    #userForm .mt-5 {
        margin-top: 1.25rem !important;
    }
    .quiz-popup{
        max-height: 560px;
        overflow-y: auto;
    }
    .select-box::after{
        top: 16px;
    }
}