/* Common styling */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

input[type="date"],  input[type="time"]{
    border: none;
    outline: none;
    background-color: transparent; /* Ensure no background color if needed */
    width: 100%;
    color: #001489;
}

input[type="date"]:focus {
    border-bottom-color: #66afe9; /* Change the border color on focus */
    box-shadow: none; /* Remove any default shadow */
}

/* Change placeholder color */
input#dateInput::placeholder {
    color: #001489 /* Your desired color */
  }
  /* For different browsers */
  input#dateInput::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #001489
  }
  input#dateInput::-moz-placeholder { /* Firefox 19+ */
    color: #001489
  }
  input#dateInput:-ms-input-placeholder { /* IE 10+ */
    color: #001489
  }
  input#dateInput:-moz-placeholder { /* Firefox 18- */
    color: #001489
  }

  /* Remove the default arrow */
  .time-select {
    appearance: none;       /* Removes default arrow in most browsers */
    -webkit-appearance: none; /* Removes default arrow in Safari */
    -moz-appearance: none;    /* Removes default arrow in Firefox */
    background: transparent;
    width: 100%;
  }

  /* Add a custom arrow icon */
  .time-select-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 5px;
    width: 36px;
    height: 36px;
    background: url('https://image.myfreestyle.abbott.com.sg/lib/fe3611727664067c701172/m/1/b5b9a97f-c45b-4005-9dc8-f0450d559728.png') no-repeat center center;
    background-size: contain;
    pointer-events: none;
    transform: translateY(-50%);
  }

body{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
}

.header-container {
    max-width: 1360px;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
}

.section-heading {
    font-size: 32px;
    line-height: 37px;
    color: #001489;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    margin-bottom: 0;
    text-wrap: balance;
}
.congratulations-page .yellow-bg h2.section-heading {
    font: normal normal bold 32px/28px Arial;
}
.congratulations-page.confirm-page .yellow-bg{
    padding-top: 40px;
    padding-bottom: 50px;
    padding-left: 0;
    padding-right: 0;
}
.congratulations-page.confirm-page .yellow-bg .sub-heading{
    padding: 10px 0 0 0;
    font: normal normal normal 24px / 28px Arial;
}
.congratulations-page.confirm-page .step-graphic{
    padding-top: 40px;
    padding-bottom: 0;
}
.congratulations-page.confirm-page .confimation-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0 30px;
}
.congratulations-page.confirm-page .field {
    margin-bottom: 10px;
}
.congratulations-page.confirm-page .field.meeting-link-wrapper {
    margin-bottom: 0;
    text-align: center;
  }
  
  @media (max-width: 768px) {
    .congratulations-page.confirm-page .field.meeting-link-wrapper {
      text-align: left;
    }
  }
  
.congratulations-page.confirm-page .btn.register-btn{
    padding: 10px 0;
    margin: 0;
}

.congratulations-page .sub-heading{
    font-size: 24px;
    line-height: 28px;
    padding: 10px 30px 50px;
    margin: 0px;
}
.congratulations-page form {
    align-items: center;
    align-content: center;
    display: flex;
    flex-direction: column;
}
.congratulations-page .btn.register-btn{
    margin: 40px 0px;
    padding: 0px;
}
.custom-container{
    max-width: 1120px;
}

.txt-theme-color {
    color: #001489;
}
.note{
    font-size: 31px;
    margin-bottom: 30px;
    line-height: 120%;
}

.sorry-page .sub-heading, .sorry-page .sub-heading.sorry-msg{
    font-size: 24px;
    font-weight: bold;
    padding: 60px 0px;
    line-height: 28px;
    margin: 0px;
}

.sorry-page .pt-2{
    font-size: 18px;
    line-height: 21px;
    color: #001489;
}

.sorry-page .btn.register-btn {
    padding: 0px;
    display: flex;
    justify-content: space-evenly;
}
@media (max-width: 768px) {
    .sorry-page .btn.register-btn {
        margin-top: 0;
    }
}

.sorry-page .btn.register-btn p.sub-heading {
    padding: 60px 0px 20px;
}

img {
    width: 100%;
    height: auto;
}

.blue-bg {
    background-color: #001489;
    padding: 27px 0;
}

.yellow-bg {
    background-color: #FFD100;
    padding: 35px 0;
}

.congratulations-page .yellow-bg {
    padding: 40px 170px 15px;
}

.sorry-page .yellow-bg {
    padding: 60px 100px 70px;
}

.blue-bg .section-heading {
    color: #FFFFFF;
}

.blue-bg sup {
    font-weight: 700;
    font-size: 20px;
}

.btn {
    display: block;
    background-color: transparent;
    border: none;
}

.btn:hover {
    background-color: transparent;
}

.add-calendar{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.custom-btn{
    background: #001489;
    color: #FFFFFF;
    font-size: 24px;
    padding: 17px 19px;
    border: 0;
    width: 100%;
    outline: none;
}
.custom-btn > img{
    width: auto;
}

.btn button {
    font-size: 18px;
    line-height: 22px;
    padding: 11px 32px;
    border: none;
    border-radius: 50px;
    color: #ffffff;
    background-color: #001489;
    text-decoration: none;
    text-transform: uppercase;
    margin: 0 auto;
    display: inline-block;
}
.btn a {
    font-size: 18px;
    line-height: 22px;
    padding: 6px 32px;
    border: none;
    border-radius: 50px;
    color: #ffffff;
    background-color: #001489;
    text-decoration: none;
    text-transform: uppercase;
    margin: 0 auto;
    display: inline-block;
}
.reg-now{
    font-size: 20px;
    line-height: 23px;
    font-weight: bold;
    padding: 11px 37px;
    border: none;
    border-radius: 50px;
    color: #ffffff;
    background-color: #001489;
    text-decoration: none;
    text-transform: uppercase;
    margin: 0 auto;
    display: inline-block;
}


.btn-secondary a {
    background-color: #FFD100;
    color: #001489;
}

.source {
    font-size: 12px;
    line-height: 14px;
    color: #001489;
    text-align: center;
    padding-top: 64px;
}

.congratulations-page .source {
    padding-top: 0;
}

.btn.register-btn{
    padding: 10px 0;
    margin-top: 30px;
}
.cont-wrap .register-btn {
  text-align: left;
}

/* Center the button on mobile for this specific button */
@media (max-width: 768px) {
  .cont-wrap .register-btn {
    text-align: center;
  }
}

/* header logo  */

.logos-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 20px 0;
}

.logos-wrapper .frestyle-logo {
    max-width: 294px;
}

.logos-wrapper .abbott-logo {
    max-width: 145px;
}

.card-wrapper .card:not(:last-child) .card-body {
    border-right: 1px solid #001489;
}

sup{
    font-size: 12px;
}

/* Banner Section  */

.banner-section {
    background-color: #FFD100;
    padding: 48px 0;
    padding-left: calc(80px * (100vw / 1440));
    padding-right: calc(80px * (100vw / 1440));
    display: flex;
    align-items: center;
    gap: 32px;
}

.banner-section .img-wrap {
    width: 100%;
}

.banner-section .heading-wrap {
    width: 100%;
}

.banner-section img {
    width: 100%;
    height: auto;
}

.banner-section h1 {
    font-size: 54px;
    line-height: 62px;
    color: #001489;
    text-align: center;
    font-weight: 700;
    text-wrap: balance;
}

/* image content wrapper section  */

.img-cont-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    background-color: #E4E4E4;
}

.img-cont-wrap .card-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 0;
    padding-bottom: 0;
    width: 100%;
}

.img-cont-wrap .card-wrapper .card {
    border: 0;
    max-width: 370px;
    margin-bottom: 40px;
    background-color: #E4E4E4;
}

.img-cont-wrap .card-wrapper .card-head {
    margin: 0 auto;
    padding-bottom: 20px;
}

.img-cont-wrap .card-wrapper .card-body {
    padding-top: 0;
    text-align: center;
}

.img-cont-wrap .card-wrapper .card:not(:last-child) .card-body {
    border-right: 0;
}

.img-cont-wrap .card-wrapper .card-body h4,
.card-wrapper .card-body p {
    line-height: 21px;
    color: #001489;
}

.img-cont-wrap .card-wrapper .card-body h4,
.card-wrapper .card-body p span {
    font-weight: 700;
}

.img-cont-wrap .card-wrapper .card-body h4 {
    font-weight: 700;
}

.img-cont-wrap .card-wrapper .card-body p sup {
    font-size: 14px;
}
@media (max-width: 768px) {
    .img-cont-wrap .card-wrapper .card-body p sup {
        font-size: 12px;
    }
}

.img-cont-wrap .cont-wrap {
    padding: 50px 0;
    text-align: center;
    max-width: 728px;
    margin: 0 auto;
}

.img-cont-wrap .img-wrap img {
    width: 484px;
}

.img-cont-wrap .cont-wrap p {
    font-size: 18px;
    line-height: 21px;
    color: #001489;
}

/* Cards section  */

.card-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 68px;
    padding-bottom: 52px;
    width: 100%;
}

.card-wrapper .card {
    border: 0;
    max-width: 370px;
    margin-bottom: 40px;
}

.card-wrapper .card-head {
    margin: 0 auto;
    padding-bottom: 20px;
}

.card-wrapper .card-body {
    padding-top: 0;
    text-align: center;
}

/* .card-wrapper .card:not(:last-child) .card-body {
    border-right: 1px solid #001489;
} */

.card-wrapper .card-body h4,
.card-wrapper .card-body p {
    line-height: 21px;
    color: #001489;
}

.card-wrapper .card-body h4,
.card-wrapper .card-body p span {
    font-weight: 700;
}

.card-wrapper .card-body h4 {
    font-size: 24px;
    font-weight: 700;
}

.card-wrapper .card-body p {
    font-size: 18px;
    padding: 0 25px;
    padding-top: 8px;
}

.card-wrapper .card-body p sup {
    font-size: 12px;
}

.step-graphic {
    max-width: 1034px;
    padding-bottom: 40px;
    margin: 0 auto;
}

/* Infographic section  */
.infografic {
    display: flex;
    align-items: center;
    gap: 64px;
    /* display: grid; */
    /* grid-template-columns: 1fr 2fr; */
    padding: 40px 0;
    /* width: 59%; */
    /* margin: 0 auto; */
}

.infografic .img-wrap {
    width: 24%;
    height: auto;
    /* text-align: right; */
}

.infografic .img-wrap img {
    max-width: 100%;
    height: auto;
}

.infografic .text-wrap {
    width: 60%;
}

.infografic .text-wrap p {
    font-size: 26px;
    line-height: 32px;
    font-style: italic;
    color: #001489;
}

.infografic .text-wrap span {
    font-size: 12px;
    line-height: 14px;
    color: #001489;
    font-style: initial;
}

/* Mobile list wrapper */

.starter-kit{
    padding-top: 47px;
    padding-bottom: 33px;
}

.mob-list-wrap {
    display: flex;
    align-items: center;
    gap: 70px;
}

.mob-list-wrap .cont-wrap{
    max-width: 397px;
    padding-right: 0;
}

.mob-list-wrap .img-wrap,
.mob-list-wrap .cont-wrap {
    width: 50%;
}

.mob-list-wrap .cont-wrap p {
    font-size: 24px;
    line-height: 28px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 20px;
}

.mob-list-wrap .cont-wrap ul {
    padding-left: 24px;
    margin-bottom: 40px;
}

.mob-list-wrap .cont-wrap li {
    font-size: 18px;
    line-height: 21px;
    color: #fff;
    margin-bottom: 25px;
}

/* footer */

footer {
    padding: 0;
    background: #E4E4E4;
}

footer .container{
    max-width: 1024px;
    padding: 40px;
}

@media (max-width: 786px) {
    .index-page footer .container{
        padding: 0;

    }

}


footer p {
    font-size: 12px;
    line-height: 14px;
    color: #222731;
    margin-bottom: 5px;
}

footer p a {
    color: #222731;
    text-decoration: none;
}

footer p:last-child {
    margin-bottom: 0;
}

.sub-heading{
    font-size: 32px;
    text-align: center;
    color: #001489;
    line-height: 37px;
}
.confimation-container{
    display: grid;
}
.event-selection-page .confimation-container {
    display: block;
}
.confimation-details{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 30px;
}
.field{
    background: #ffffff;
    padding: 15px 10px;
    color: #001489;
    font-size: 18px;
    line-height: 21px;
}
.field.date-input-wrapper, .field.time-input-wrapper{
    padding: 0;
    width: 360px;
}
.field.date-input-wrapper .date-comfirm,
.field.time-input-wrapper .time-comfirm,
.field.time-input-wrapper select,
.field.date-input-wrapper input {
    padding: 15px 10px;
}
.field.meeting-link-wrapper{
    width: 750px;
    text-align: left;
    margin: 0 auto;
}
.field.meeting-link-wrapper p{
    font-weight: normal;
}
.field.meeting-link-wrapper p span{
    font: normal normal normal 18px/21px Arial;
    color: #FF00EB;
}
.field p{
    padding-bottom: 0;
    margin-bottom: 0;
}
.confirm-page .source {
    padding-top: 31px;
}
p.source.event-source {
    padding-top: 0;
    margin-bottom: 0;
}

.date-input-wrapper, .time-input-wrapper {
    position: relative;
    display: inline-block;
}

#dateInput,  #timeInput{
    border: none;
    outline: none;
    background-color: transparent;
    color: #001489;
    position: relative;
    z-index: 1;
    width: 100%;
    cursor: pointer;
}


#datePlaceholder, #timePlaceholder {
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    color: #001489;
    pointer-events: none; /* Makes the label non-interactive */
    transition: all 0.2s ease;
}

/* Move the placeholder label up when the input is focused or filled */
    #dateInput:not(:placeholder-shown) + #datePlaceholder,  
    #timeInput:not(:placeholder-shown) + #timePlaceholder {
    font-size: 20px;
    color: #001489; /* Optional focus color */
    background-color: #FFFFFF;
    display: block;
    width: 60%;
    pointer-events: none;
    z-index: 2;
    padding: 10px 5px;
}

#dateInput::-webkit-calendar-picker-indicator, #timeInput::-webkit-calendar-picker-indicator {
    opacity: 0; /* Hide the default icon */
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px; /* Adjust icon size */
    height: 20px;
    cursor: pointer; /* Ensure the cursor is a pointer for better UX */
}

.calendar-icon, .time-icon {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px; /* Adjust the size as needed */
    height: 39px;
    background: url('https://image.myfreestyle.abbott.com.sg/lib/fe3611727664067c701172/m/1/b90a978f-995f-40b3-894d-afaff5cd81cd.png') no-repeat center center;
    background-size: contain;
    pointer-events: none; /* Make sure the icon is not clickable */
}

.btn.register-btn a.big-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-weight: bold;
}

.btn.register-btn a.big-btn img{
    width: 32px;
}

/* Optional: Adjust input focus state */
#dateInput:focus, #timeInput:focus {
    box-shadow: none;
}
.warning{
    display: grid;
}
.warning-msg{
    display: flex;
    justify-self: center;
    align-items: center;
    gap: 20px;
    background: #E95526;
    color: #fff;
    width: 50%;
    max-width: 100%;
    padding: 20px;
    font-size: 20px;
    line-height: 32px;
    border-radius: 8px;
}
.warning-msg > img{
    width: 50px;
    height: 45px;
}
.warning-msg p{
    margin-bottom: 0;
    font-size: 20px;
    line-height: 25px;
}
.blue-line {
    width: 285px;
    height: 0px;
    border-top: 4px solid #011389;
    top: 510px;
    left: 579px;
    opacity: 1;
    margin: 0px auto;
}
.form-section{
    padding: 27px 30px 10px;
    width: auto;
    background: #E4E4E4;
    border-radius: 20px;
    margin-top: 30px;
}

.form-section.container{
    max-width: 900px;
}

.form-container .asterix-red{
    color: #E4002B
}

.form-section p.tnc{
    font-size: 14px;
    line-height: 18px;
    color: #222731;
}
.form-section p.tnc .telephone-link{
    text-decoration: none;
    color: #222731;
}
.form-section form{
    padding: 14px 0 10px;
}
.form-section .form-group{
    margin-bottom: 20px;
}
.form-section h1 {
    font: normal normal bold 22px/26px Arial;
    color: #222731;
    text-align: center;
    letter-spacing: 0px;
}
.form-section p.form-instruction{
    color: #222731;
    font-size: 22px;
    text-align: center;
    margin-bottom: 0;
    line-height: 26px;
    font-weight: 600;
    width: 70%;
}
.error-msg{
    color: #e4002b;
    font-size: 12px;
}
.form-group input{
    border: 1px solid #707070;
    padding: .9375rem 1rem .8125rem;
    border-radius: 0;
}
.form-group select{
    border: 1px solid #222731;
    padding: 12px 18px;
}
.form-group label{
    font-size: 16px;
    line-height: 20px;
    color: #222731;
}
.form-group input{
    font-size: 16px;
    line-height: 20px;
}
.form-group label{
    padding-bottom: 10px;
}
.form-check-input[type=radio]{
    width: 30px;
    height: 30px;
    border-radius: 50% !important;
    padding-top: 0;
    margin-top: 0;
}
.form-group input[type=checkbox]{
    width: 30px;
    height: 30px;
    padding: 0;
    margin-top: 0;
    margin-right: 10px;
    border-radius: 0;
}
.chk-box label{
    padding-bottom: 0;
}
.form-group.form-check{
    padding-top: 14px;
    padding-left: 13px;
    margin-bottom: 10px;
}
.form-check .form-check-input{
    margin-left: 0;
}
.type span{
    font-size: 16px;
    line-height: 20px;
    color: #222731;
    padding-left: 7px;
    display: inline-block;
}
.type-chk{
    margin-bottom: 20px;
}
.type-chk .type{
    padding: 5px 20px 5px 0;
    display: inline-flex;
    align-items: center;
    column-gap: 6px;
}
.type .form-check-input{
    padding-top: 3px;
    margin-top: 3px;
}
.radio-group{
    gap: 40px;
}
.form-check-input:checked{
    background-color: #FFD100;
}


/*   */

input.dot-checked {
    display: none;
}

.custom-radio {
    position: relative;
    padding-left: 30px;
    padding-bottom: 0;
}

.custom-radio i {
    position: absolute;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    left: 0;
    top: 0;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    border: 1px solid #707070;;
}

.custom-radio i::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 16px;
    width: 16px;
    background-color: #FFD100;
    border-radius: 50%;
    opacity: 0;
}

.custom-radio input:checked + i::after {
    opacity: 1;
}

/* Style for the label text */
.radio-label {
    font: normal normal normal 16px/18px Arial;
    color: #222731;
}


/*     */
.small-txt{
    font-size: 12px;
    line-height: 16px;
    color: #63666a;
}
.btn{
    padding: 12px 24px;
}
.btn.disabled{
    background-color: #63666a;
    cursor: not-allowed;
}
.mobile-otp-input{
    width: 285px;
}
.mobile-input{
    width: 260px;
}
.submit-btn{
    background-color: #001489;
    border-radius: 50px;
    font-family: Arial, Helvetica, sans-serif;
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
    padding: 6px 37px;
    margin-bottom: 25px;
}
.verify-btn{
    padding: 7px 12px;
    margin-bottom: 0;
    text-transform: none;
    width: 118px;
    position: relative;
}
.submit-btn:hover, .submit-btn:focus, .submit-btn:active{
    background-color: #0721b3;
}
.barcode-line{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}
.form-group .barcode-line label.form-check-label{
    background: #fff;
    margin-bottom: 0;
    padding-bottom: 0;
    display: inline-block;
    padding: 16px 19px;
    border-radius: 8px;
}
.form-group .barcode-line label.form-check-label a{
    color: #001489;
    text-decoration: underline;
}
.barcode-line img{
    width: 65px;
    border: 6px solid #ffffff;
    border-radius: 8px;
    box-sizing: content-box;
}
.reg-btn-section{
    margin-top: 20px;
}
.type-chk label{
    font-size: 16px;
    line-height: 18px;
    color: #222731;
    font-weight: 600;
    padding-bottom: 12px;
    display: block;
}
.type-chk label.custom-radio{
    line-height: 30px;
    padding-bottom: 0;
}
.terms-conditions{
    font-size: 14px;
    line-height: 16px;
    color: #222731;
    padding-top: 20px;
}
.terms-conditions p span{
    font-weight: bold;
}
.terms-conditions ul{
    padding-left: 20px;
}
.terms-conditions ul > li{
    padding-bottom: 14px;
}
.terms-conditions ul li .telephone-link{
    text-decoration: none;
    color: #222731;
}
.terms-conditions ul > li::marker{
    font-size: medium;
}
.reg-btn-section .small-txt{
    font-size: 12px;
    align-self: flex-end;
    color: #001489;
}
.chk-box{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.container{
    max-width: 1200px;
}
.form-check-input{
    border: 1px solid #707070;
}
.red-mark{
    color: #E4002B;
}
.form-check-input{
    width: 30px;
    height: 30px;
    border-radius: 0!important;
}
#MYcustomForm hr{
    width: 97%;
    color: #707070;
    margin: 10px auto;
    border-top: 1px solid #707070;
    opacity: 1;
}
#MYcustomForm hr:last-child{
    margin-bottom: 25px;
}
a{
    text-decoration: underline;
    color: #001489;
}
.terms-conditions h6{
    font-size: 16px;
    font-weight: bold;
}

.congratulations-page .loader{
    position: absolute;
}

/*jquery popup*/
button.ui-dialog-titlebar-close:after {
    content: "x";
    position: absolute;
    top: -2px;
    left: 5px;
}
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
    display: none;
}
.ui-dialog .ui-dialog-content {
    overflow: hidden !important;
}
@media (max-width: 1200px) {

    /* Cards section  */
    .card-wrapper .card:not(:last-child) .card-body {
        border-right: none;
    }

    .card-wrapper .card:first-child .card-body {
        border-right: 1px solid #001489;
    }

    .card-wrapper .card:last-child .card-body {
        border-right: 1px solid #001489;
        border-left: 1px solid #001489;
    }

    .card-wrapper {
        padding-bottom: 20px;
    }
    .confimation-details{
        width: 100%;
    }
}

@media (max-width: 992px) {

    /* Common styling */
    .section-heading,  .congratulations-page .section-heading {
        font-size: 32px;
        line-height: 28px;
    }

    .blue-bg sup {
        font-size: 20px;
    }

    .btn a {
        font-size: 20px;
        line-height: 24px;
    }
    
    .banner-section .img-wrap {
        width: 100%;
    }

    .banner-section .heading-wrap {
        width: 80%;
    }

    .banner-section h1 {
        font-size: 48px;
        line-height: 55px;
    }

    /* image content wrapper section  */
    .img-cont-wrap {
        flex-direction: column;
        padding: 40px 18px 24px;
    }

    /* Cards section  */
    .card-wrapper .card-body h4,
    .card-wrapper .card-body p, .sub-heading, .venue-details, .venue-details p, .venue-details span {
        font-size: 20px;
        line-height: 26px;
    }

    
    .card-wrapper .card-body p sup {
        font-size: 14px;
    }

    .card-wrapper .card:not(:last-child) .card-body {
        border-right: 0;
        border-bottom: 0;
    }

    .card-wrapper .card:last-child .card-body {
        border: 0;
    }

    .card-wrapper .card:not(:last-child) .card-body::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%; 
        transform: translateX(-52px);
        width: 104px;
        height: 2px; 
        background-color: #001489; 
    }
    
    /* Infographic section  */
    .infografic .text-wrap p {
        font-size: 16px;
        line-height: 22px;
    }

    /* Mobile list wrapper */
    .mob-list-wrap .cont-wrap p {
        font-size: 24px;
        line-height: 29px;
        margin-bottom: 20px;
    }

    .mob-list-wrap .cont-wrap ul {
        margin-bottom: 20px;
    }

    .mob-list-wrap .cont-wrap li {
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 20px;
    }
    
    .mobile-input {
        margin-bottom: 10px;
    }
    .chk-box{
        align-items: start;
    }
}
@media (min-width: 768px) {
    .step-graphic-index{
        padding-top: 62px;
        padding-bottom: 18px;
    }
}
@media (max-width: 768px) {
    /* Common styling */
    .step-graphic-index{
        padding-top: 30px;
        padding-bottom: 30px;
    }
    
    .reg-now-container{
        padding-left: 16px;
        padding-right: 16px;
    }
    .congratulations-page .container {
        padding: 0px;
    }
    .congratulations-page.confirm-page .yellow-bg{
        padding: 30px 18px 30px;
    }
    .congratulations-page.confirm-page .yellow-bg .container{
        padding: 0 15px;
    }
    .congratulations-page.confirm-page .confimation-container{
        padding-top: 28px;
        padding-bottom: 0;
    }
    .congratulations-page.event-selection-page .confimation-container {
        padding: 0;
    }
    .congratulations-page.event-selection-page .btn button {
        font-size: 16px;
        line-height: 20px;
        padding: 10px;
        width: 100%;
    }
    .congratulations-page.event-selection-page .btn.register-btn {
        width: 100%;
    }
    .congratulations-page.confirm-page .confimation-details{
        gap: 0;
    }
    .congratulations-page.confirm-page .field{
        margin-bottom: 10px;
    }
    .congratulations-page.confirm-page .btn.register-btn{
        padding: 10px 0;
        margin-top: 0;
    }
    .congratulations-page.confirm-page .btn.register-btn a.big-btn{
        font-size: 19px;
    }
    .congratulations-page footer,
    .index-page footer,
    .sorry-page footer {
        padding: 32px 20px;
    }

    .congratulations-page .sub-heading{
       padding: 10px 30px 49px;
    }
    .congratulations-page.event-selection-page .sub-heading {
        padding-bottom: 25px;
    }
    .congratulations-page.event-selection-page .step-graphic {
        padding-bottom: 20px;
    }
    .btn.btn-secondary.register-btn {
        margin-top: 0;
    }

    .blue-bg sup {
        font-size: 20px;
    }

    .btn a {
        font-size: 20px;
        line-height: 20px;
        padding: 10px 30px;
    }

    .register-btn.btn a.big-btn{
        line-height: 26px;
        font-size: 20px;
        width: 100%;
        padding: 10px 20px;
        font-weight: bold;
    }

    /* Banner Section  */
    .banner-section h1 {
        font-size: 48px;
        line-height: 55px;
    }

    .banner-section .img-wrap {
        padding-bottom: 36px;
    }

    /* image content wrapper section  */
    .img-cont-wrap .img-wrap img {
        width: 100%;
    }

    .img-cont-wrap .cont-wrap p {
        font-size: 20px;
        line-height: 26px;
    }

    .img-cont-wrap .cont-wrap {
        padding: 0;
        padding-bottom: 30px;
    }

    
    /* Infographic section  */
    .infografic {
        flex-direction: column;
        gap: 20px;
    }
    
    .infografic .img-wrap {
        width: 60%;
        text-align: center;
    }

    .infografic .img-wrap img {
        max-width: 140px;
    }

    .infografic .text-wrap {
        width: 80%;
    }
    
    /* Mobile list wrapper */
    .mob-list-wrap {
        flex-direction: column;
        gap: 15px;
    }

    .mob-list-wrap .img-wrap, 
    .mob-list-wrap .cont-wrap {
        width: 100%;
    }

    /* footer */
   
    .mob-list-wrap .cont-wrap{
        padding: 0 20px;
        display: flex;
        flex-direction: column;
    }
    /* .container{
        padding: 0 20px
    } */
    /* .btn.register-btn{
        float: initial;
    } */

    .congratulations-page .confimation-container {
        padding: 0px 24px;
    }
    .congratulations-page .confimation-details{
        flex-direction: column;
        gap: 10px;
        justify-content: center;
        width: 100%;
    }
    .sorry-page .sub-heading{
        font-size: 24px;
        padding: 30px 0 20px;
    }
    .note{
        font-size: 18px;
    }
    .warning-msg p{
        font-size: 20px;
        line-height: 130%;
        padding: 0 10px;
    }
    .custom-btn{
        font-size: 18px;
    }
    .logos-wrapper .frestyle-logo{
        width: 160px;
    }
    .logos-wrapper .abbott-logo{
        width: 81px;
    }
    .form-section{
        width: 100%;
        padding-top: 20px;
    }
    .congratulations-page .yellow-bg{
        padding: 40px 16px 20px;
    }
    .congratulations-page.event-selection-page .yellow-bg {
        padding: 10px 20px 15px;
    }
    .card-wrapper .card{
        margin-bottom: 20px;
    }
    .card-wrapper .card:last-child{
        margin-bottom: 0;
    }
    .card-wrapper .card:last-child .card-body{
        padding-bottom: 0;
    }
    .banner-section .heading-wrap{
        width: 100%;
    }
    .form-check-input[type=radio]{
        width: 20px;
        height: 20px;
        padding-top: 0;
        margin-top: 0;
    }
    .type-chk label{
        font-size: 16px;
        line-height: 18px;
    }
    .type span{
        font-size: 16px;
        line-height: 18px;
    }
    .form-section p{
        font-size: 16px;
    }
    .terms-conditions h6{
        font-size: 16px;
    }

    .sorry-page .pt-2{
        font-size: 16px;
        line-height: 19px;
    }
}
@media (max-width: 500px) {
    
    .blue-bg sup{
        font-size: 16px;
    }
    .banner-section{
        gap: 38px;
    }
    .blue-bg{
        padding: 24px 0;
    }
    
}


/*===========Font Size Mobile==========*/
@media (max-width: 768px) {
    .confirm-page .section-heading{
        font-size: 36px;
        line-height: 44px;
    }
    
    .banner-section {
        padding: 0 0 48px 0;
    }

    .section-heading, .congratulations-page .section-heading{
        padding: 5px !important;
        line-height: 36px !important;
    }
    
    .section-heading {
        font-size: 32px;
        line-height: 37px;
    }
    .mob-list-wrap .cont-wrap p{
        font-size: 24px;
        line-height: 30px;
    }
    .img-cont-wrap .cont-wrap p,  .card-wrapper .card-body h4, .card-wrapper .card-body p, .infografic .text-wrap p, .mob-list-wrap .cont-wrap li{
        font-size: 20px;
        line-height: 26px;
    }
    .confimation-container{
        padding-top: 0;
        padding-bottom: 30px;
    }
    .sorry-page .confimation-container{
        padding-bottom: 0;
    }
    footer p, .source{
        font-size: 12px;
        line-height: 14px;
    }
    .reg-now, .btn a{
        font-size: 22px;
        line-height: 28px;
    }
    .card-wrapper{
        padding-top: 20px;
    }
    .form-section.container{
        border-radius: 0;
        padding: 40px 30px 0;
    }
    .source{
        padding: 40px 30px 32px;
    }
    .index-source{
        padding: 32px 40px 18px;
    }
    .confirm-page p.source.event-source{
        padding: 10px 0;
    }
    .yellow-bg.reg-yellow-section{
        padding-top: 40px;
        padding-bottom: 0;
    }
    .header-container{
        padding-left: 15px;
        padding-right: 15px;
    }
    
    #dateInput, #timeInput{
        font-size: 16px;
    }
    .calendar-icon, .time-icon, .time-select-wrapper::after{
        width: 25px;
        height: 25px;
    }
    .congratulations-page .btn.register-btn{
        margin: 50px 0px 20px;
        text-align: center;
    }
    .congratulations-page.event-selection-page .btn.register-btn {
        margin-top: 30px;
    }
    
    .congratulations-page .source {
        padding-top: 0;
    }
    
    .congratulations-page.event-selection-page .source {
        padding: 0 0 16px;
    }
    .congratulations-page .field {
        width: 100%;
    }
    .confirm-page .field, .confirm-page .field p{ 
        font-size: 16px;
    }
    .confirm-page .custom-btn > img{
        width: 25px;
        height: 25px;
    }
    .confirm-page .custom-btn{
        font-size: 16px;
    }
    .confirm-page .source{
        padding-top: 10px;
        padding-bottom: 5px;
        margin-bottom: 10px;
    }
    .sorry-page .container{
        padding: 0px;
    }
    .sorry-page .yellow-bg{
        padding: 40px 30px 50px;
    }
    .sorry-page .btn.register-btn {
        flex-direction: column;
    }
    .sorry-page .btn.register-btn p.sub-heading {
        padding: 40px 0px 20px;
    }
    .warning-msg{
        margin-top: 10px;
        width: 100%;
    }
    .sorry-page .note{
        font-size: 16px;
        margin-bottom: 0;
    }
    .sorry-page .sub-heading{
        padding: 20px 0 10px;
    }
    .sorry-page .sub-heading.sorry-msg {
        padding: 33px 0px 39px;
    }
    sup{
        font-size: 12px;
    }
    .card-wrapper .card-body p sup{
        font-size: 12px;
    }
    .mob-list-wrap .cont-wrap p {
        padding-right: 0;
    }
    .mob-list-wrap .cont-wrap p{
        width: 100%;
    }
    .mob-list-wrap .cont-wrap p:last-of-type{
        text-align: center;
    }
    .form-section p.form-instruction{
        font-size: 16px;
        padding-bottom: 10px;
        line-height: 22px;
        width: 100%;
    }
    .form-section form{
        padding: 15px 0;
    }
    .form-group label{
        font-size: 16px;
        line-height: 18px;
    }
    .form-group .d-flex.align-items-center.gap-1{
        flex-direction: column;
        align-items: flex-start !important;
        gap: 10px !important;
    }
    .form-group .d-flex.align-items-center.gap-1 input{
        max-width: 100%;
    }
    .form-group .d-flex.align-items-start.gap-1{
        flex-direction: column;
        align-items: flex-start !important;
        gap: 10px !important;
    }
    .form-group .d-flex.align-items-start.gap-1 .mobile-otp-input{
        width: 100%;
    }
    .mobile-input,
    .mobile-otp-input{
        width: 100%;
    }
    .form-check-input, .form-group input[type=checkbox]{
        width: 30px;
        height: 30px;
    }
    .terms-conditions{
        font-size: 14px;
        line-height: 16px;
    }
    .submit-btn{
        margin-bottom: 10px;
    }
    .verify-btn{
        width: 138px;
    }
    .form-group.form-check{
        padding-top: 10px;
    }
    #MYcustomForm hr{
        width: 92%;
    }
    .form-group input{
        padding: 10px;
        max-width: 100%;
    }
    .form-group .barcode-line label.form-check-label{
        padding: 10px;
    }
    .form-section p.tnc{
        font-size: 14px;
    }
    .barcode-line{
        gap: 15px;
    }
    .congratulations-page .loader{
        position: relative;
    }
    .warning-msg{
        padding: 10px 15px;
        gap: 10px;
    }
    .confirm-page .section-heading{
     white-space: normal;
    }
    .warning-msg > img{
        width: 40px!important;
        height: 32px!important;
    }
}
@media (max-width: 420px) {
    .banner-section .row.row-gap-3.align-items-center {
        margin: 0;
    }
    .banner-section .row.row-gap-3.align-items-center  {
        margin: 0;
    }
    .confirm-page .section-heading{
        font-size: 48px;
        line-height: 55px;
    }
    .mob-list-wrap .cont-wrap p, .congratulations-page .sub-heading{
        font-size: 20px;
        line-height: 28px;
    }
    .img-cont-wrap .cont-wrap p,  .card-wrapper .card-body h4, .card-wrapper .card-body p, .infografic .text-wrap p, .mob-list-wrap .cont-wrap li{
        font-size: 16px;
        line-height: 20px;
    }
    .card-wrapper .card-body h4 {
        font-size: 24px;
    }
    /* .reg-now, .btn a, .sorry-page .sub-heading{
        font-size: 18px;
        line-height: 24px;
    } */
    .warning-msg p{
        font-size: 19px;
    }
    .sorry-page .yellow-bg{
        padding: 40px 20px 50px;
    }
  
}

@media (max-width: 379px) {
    .banner-section h1, .congratulations-page .section-heading, .confirm-page .section-heading{
        font-size: 48px;
        line-height: 55px;
    }

    .mob-list-wrap .cont-wrap p{
        font-size: 24px;
        line-height: 24px;
    }

    .confirm-page .sub-heading{
        font-size: 18px;
        padding-top: 5px;
    }
    
    .img-cont-wrap .cont-wrap p,  .card-wrapper .card-body h4, .card-wrapper .card-body p, .infografic .text-wrap p, .mob-list-wrap .cont-wrap li {
        font-size: 18px;
        line-height: 22px;
    }

    .card-wrapper .card-body {
        padding: 0 0 16px;
    }

    .card-wrapper .card-body h4 {
        font-size: 24px;
    }

    .card-wrapper .card-body p {
        padding: 5px 0;
    }

    footer p, .source{
        font-size: 10px;
        line-height: 14px;
    }
    .reg-now, .btn a{
        font-size: 20px;
        line-height: 22px;
        font-weight: bold;
    }
    .warning-msg{
        padding: 10px 10px;
    }
  
}
 .loader.anchor-loader{
    border: 4px solid #f3f3f3;
    border-top: 4px solid #001489;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    animation: spin 2s linear infinite;
    /* margin-left: 116px;
    position: relative;
    margin-top: 13px;
    margin-left: -70px; */
    position: absolute;
    top: 50%;
    left: 115%;
    margin: 0;

}

.loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #001489;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 2s linear infinite;
    /* margin-left: 116px;
    position: relative;
    margin-top: 13px;
    margin-left: -70px; */
    position: absolute;
    top: 50%;
    left: 50%;
    margin: 0;
}
.resend-otp{
    position: absolute;
}

@keyframes spin {
    0% { 
        transform: translate(-50%, -50%) rotate(0deg); 
    }
    100% { 
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.hide{
    display: none;
}
