* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
  }
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.col-auto {
    padding: 0 10px;
    flex: 0 0 auto;
    width: auto;
}

.col {
    padding: 0 10px;
    flex: 1 0 0%;
}
.col-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -moz-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 10px;
}

.main-wrapper {
    font-family: sans-serif;
}

/* Hide radio buttons */
.tabs .tab-toggle {
    display: none;
}

/* Tab labels */
.tabs label.tab-label {
    padding: 14px 16px;
    cursor: pointer;
    display: inline-block;
    color: #4D4D4F;
    font-size: 16px;
    line-height: 1.5;
}

/* Active tab label */
.tabs input.tab-toggle:checked+label.tab-label {
    background: #fff;
    border-bottom: 2px solid #EA0028;
    font-weight: 700;
    color: #EA0028;
}
#dd-toggle:checked ~.drop-down-btn::before {
    transform: translateY(-50%) rotate(180deg) !important;
}
/* Tab content */
.tab-content {
    display: none;
    padding: 32px 0;
    border-top: 1px solid #ddd;
    background: #fff;
}

/* Show active content */
#tab1:checked~#content1,
#tab2:checked~#content2 {
    display: block;
}

/* Remove default arrow */
.custom-select select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #fff;
    font-size: 16px;
    cursor: pointer;
}

/* Hover effect */
.custom-select select:hover {
    border-color: #888;
}

/* Focus effect */
.custom-select select:focus {
    border-color: #007bff;
    outline: none;
}

.checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #4D4D4F;
    gap: 8px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.checkbox input {
    display: none;
}

/* Custom box */
.checkbox .checkmark {
    width: 14px;
    height: 14px;
    border: 1px solid #ddd;
    position: relative;
    transition: all 0.2s ease;
}

/* Checkmark (hidden by default) */
.checkbox .checkmark::after {
    content: "";
    position: absolute;
    width: 3px;
    height: 8px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
    top: 1px;
    left: 5px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

/* When checked */
.checkbox input:checked+.checkmark {
    background-color: #EA0028;
    border-color: #EA0028;
}

.checkbox input:checked+.checkmark::after {
    opacity: 1;
}

/* Hide checkbox */
#dd-toggle {
    display: none;
}

/* Button */
.drop-down-btn {
    display: inline-block;
    padding: 11px 0 15px;
    font-weight: 700;
    cursor: pointer;
    user-select: none;
    color: #4D4D4F;
    font-size: 14px;
    position: relative;
    width: 100%;
    border-bottom: 1px solid #ddd;
    margin-bottom: 8px;
    line-height: 1;
}

.drop-down-btn::before {
    content: "";
    background-image: url('../images/arrow-down.svg');
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    transition: 0.3s;
    height: 7px;
    width: 11px;
    background-repeat: none;
}

.side-bar a {
    color: #EA0028;
    font-size: 14px;
    font-weight: 700;
}

.side-bar a:hover,
.side-bar a:focus {
    text-decoration: none;
}

#select-toggle:checked+.select-btn::after {
    transform: translateY(-50%) rotate(180deg);
}

.drop-down-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-top: 20px;
}

.drop-down-menu .checkbox:last-child {
    border-bottom: 1px solid #ddd;
    padding-bottom: 18px;
}

#dd-toggle:checked~.drop-down-menu {
    max-height: 200px;
}

#toggle {
    display: none;
}

.dropdown-btn {
    display: block;
    padding: 10px 14px;
    background: #333;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
}


.dropdown-menu {
    max-height: 0;
    overflow: hidden;
    background: #f5f5f5;
    border-radius: 6px;
    transition: max-height 0.3s ease;
    margin-top: 6px;
}


.dropdown-menu .item {
    padding: 10px 14px;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
}

.dropdown-menu .item:hover {
    background: #e0e0e0;
}

.dropdown-menu .item:last-child {
    border-bottom: none;
}

/* Open dropdown */
#toggle:checked~.dropdown-menu {
    max-height: 200px;
}

.custom-select {
    position: relative;
    width: 220px;
    font-family: sans-serif;
}

/* Hide the checkbox */
#select-toggle {
    display: none;
}

.tab-content .title-col {
    font-size: 16px;
    margin: 20px 0 16px;
    color: #4D4D4F;
    font-weight: 700;
    line-height: 1.5;
}

/* Select button */
.select-btn {
    display: block;
    background: #fff;
    padding: 14px 35px 14px 20px;
    border: 1px solid #ddd;
    line-height: 1.5;
    cursor: pointer;
    user-select: none;
    position: relative;
    color: #404040;
}

/* Arrow icon */
.select-btn::after {
    content: "";
    background-image: url('../images/arrow-down.svg');
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    transition: 0.3s;
    height: 7px;
    width: 11px;
    background-repeat: none;
}

/* Rotate arrow when open */
#select-toggle:checked+.select-btn::after {
    transform: translateY(-50%) rotate(180deg);
}

/* Dropdown menu */
.select-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    margin-top: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: 0.25s ease;
    z-index: 10;
}

/* Show menu when checkbox is checked */
#select-toggle:checked~.select-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Options */
.option {
    padding: 12px 15px;
    cursor: pointer;
    transition: background 0.2s;
    color: #4D4D4F;
}

.option:hover {
    background: #f2f2f2;
}
.offers {
    padding-left: 20px;
}
.offers h2 {
    margin: 0;
    font-size: 24px;
    line-height: 1;
    color: #404040;
    font-weight: 600;
    margin-bottom: 20px;
}

.offers p {
    margin: 0;
    color: #4D4D4F;
}
.side-bar .title-col:first-child {
    margin-top: 0;
}
/*** slider css ***/
.slider-col {
    border-radius: 12px;
    max-width: 276px;
    border: 1px solid #9C42FF;
    margin-top: 30px;
}

.slider-card-top {
    background: #333;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    font-size: 14px;
    line-height: 1.42;
    font-weight: 700;
    border-radius: 11px 11px 0 0;
}

.slider-card-top .offer-col {
    background-color: #FFBB01;
    color: #333;
    padding: 0 6px;
    border-radius: 5px 0 5px 0;
    margin-left: 4px;
    margin-right: 8px;
}

.scene-icon img {
    display: block;
}

.info-col {
    position: absolute;
    right: 9px;
    top: 12px;
    border: 1px solid #ddd;
    border-radius: 100%;
    height: 40px;
    width: 40px;
}

.img-sec {
    position: relative;
    padding: 6px 8px 8px;
}
.img-sec .img-col {
    text-align: center;
}

.text-col span.check-icon {
    display: block;
    margin-right: 5px;
}

.info-col img {
    top: 50%;
    display: block;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
}

.text-col span.check-icon img {
    display: block;
}

.img-sec .text-col {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: 12px;
    line-height: 1.5;
    color: #404040;
}

.slider-content-col {
    background: rgba(156, 66, 255, 0.1);
    padding: 8px 16px 16px;
}

span.expiry-date {
    color: #4D4D4F;
    font-size: 12px;
    line-height: 1.5;
}

.slider-content-col p {
    color: #4D4D4F;
    font-size: 12px;
    border-bottom: 1px solid #ddd;
    padding: 4px 0 8px;
    margin: 0;
}

.link-col {
    padding: 16px 16px 0;
    text-align: center;
    font-size: 12px;
    line-height: 1.5;
}

.link-col a {
    color: #EA0028;
    text-decoration: underline;
    font-weight: 700;
}

.link-col a:hover,
.link-col a:focus {
    text-decoration: none;
}

.slider-content-col .text-col {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    color: #333;
}

.purple_color {
    color: #9C42FF;
}

.wrapper {
    max-width: 1720px;
    margin: 0 auto;
}

.slick-initialized .slick-slide {
    margin: 0 15px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    float: left;
}

/*** slider css ***/
.slider-col {
    border-radius: 12px;
    max-width: 276px;
    border: 1px solid #9C42FF;
    margin-top: 30px;
    background-color: #fff;
}

.slider-card-top {
    background: #333;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    font-size: 14px;
    line-height: 1.42;
    font-weight: 700;
    border-radius: 11px 11px 0 0;
}

.slider-card-top .offer-col {
    background-color: #FFBB01;
    color: #333;
    padding: 0 6px;
    border-radius: 5px 0 5px 0;
    margin-left: 4px;
    margin-right: 8px;
}

.scene-icon img {
    display: block;
}

.info-col {
    position: absolute;
    right: 9px;
    top: 12px;
    border: 1px solid #ddd;
    border-radius: 100%;
    height: 40px;
    width: 40px;
}

.img-sec {
    position: relative;
    padding: 6px 8px 8px;
}

.img-sec .img-col {
    text-align: center;
}

.text-col span.check-icon {
    display: block;
    margin-right: 5px;
}

.info-col img {
    top: 50%;
    display: block;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
}

.text-col span.check-icon img {
    display: block;
}

.img-sec .text-col {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: 12px;
    line-height: 1.5;
    color: #404040;
}

.slider-content-col {
    background: rgba(156, 66, 255, 0.1);
    padding: 8px 16px 16px;
}

span.expiry-date {
    color: #4D4D4F;
    font-size: 12px;
    line-height: 1.5;
}

.slider-content-col p {
    color: #4D4D4F;
    font-size: 12px;
    border-bottom: 1px solid #ddd;
    padding: 4px 0 8px;
    margin: 0;
    line-height: 1.42;
}

.link-col {
    padding: 16px 16px 0;
    text-align: center;
    font-size: 12px;
    line-height: 1.5;
}

.link-col a {
    color: #EA0028;
    text-decoration: underline;
    font-weight: 700;
}

.link-col a:hover,
.link-col a:focus {
    text-decoration: none;
}

.slider-content-col .text-col {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    color: #333;
}

.purple_color {
    color: #9C42FF;
}

.my-slider.slick-slider {
    position: relative;
}

.my-slider .slick-list {
    /* padding: 0 30px; */
    overflow-x: hidden;
}

.my-slider button.slick-arrow {
    background: #fff;
    height: 48px;
    width: 48px;
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
    padding: 0;
    border-radius: 100%;
    border: 1px solid #ddd;
    z-index: 5;
    cursor: pointer;
}

button.slick-prev {
    left: -24px;
    font-size: 0;
}

button.slick-next {
    right: -14px;
    font-size: 0;
}

.slick-next:before,
.slick-prev:before {
    height: 20px;
    width: 11px;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    content: '';
    left: 50%;
    top: 50%;
    z-index: 9;
    transform: translate(-50%, -50%);
}

.slick-next:before {
    background-image: url('../images/arrow-right.svg');
}

.slick-prev:before {
    background-image: url('../images/arrow-left.svg');
}

ul.slick-dots {
    text-align: center;
    margin-top: 20px;
}

ul.slick-dots li {
    display: inline-block;
    padding: 0 4px;
    cursor: pointer;
}

ul {
    margin: 0;
    padding: 0;
}

ul.slick-dots li button {
    border: none;
    font-size: 0;
    width: 50px;
    height: 5px;
    background-color: #ddd;
    border-radius: 20px;
    cursor: pointer;
}

ul.slick-dots li.slick-active button {
    background-color: #EA0028;
}

.btn-col {
    text-align: center;
    margin-top: 40px;
}
.btn-outline {
    background-color: #fff;
    border: 2px solid #ea0028;
    border-radius: 50px;
    color: #ea0028;
    line-height: normal;
    overflow: hidden;
    position: relative;
    transition: transform 1s cubic-bezier(0.07, 0.51, 0.12, 1);
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4;
    padding: 15px 40px;
    text-decoration: none;
    display: inline-block;
}
.btn-outline::before {
    background: #ea0028;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transform: translateX(-100%) skew(-45deg);
    transform-origin: 0 0;
    transition: transform 1s cubic-bezier(0.07, 0.51, 0.12, 1);
    width: 150%;
    z-index: 1;
}
.btn-outline:hover, .btn-outline:focus {
    color: #fff;
}

.btn-outline:hover:before, .btn-outline:focus:before {
    transform: translateX(0) skew(-45deg);
}

.btn-outline:hover span, .btn-outline:focus span {
    color: #fff;
    z-index: 1;
    position: relative;
}
.btn-col a, .btn {
    background-color: #ea0028;
    border: 2px solid #ea0028;
    border-radius: 50px;
    color: #fff;
    line-height: normal;
    overflow: hidden;
    position: relative;
    transition: transform 1s cubic-bezier(0.07, 0.51, 0.12, 1);
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4;
    padding: 15px 40px;
    text-decoration: none !important;
    display: inline-block;
}

.btn-col a::before, .btn::before {
    background: #fff;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transform: translateX(-100%) skew(-45deg);
    transform-origin: 0 0;
    transition: transform 1s cubic-bezier(0.07, 0.51, 0.12, 1);
    width: 150%;
    z-index: 1;
}

.btn-col a:hover,
.btn-col a:focus,
.btn:hover, .btn:focus {
    color: #ea0028;
}

.btn-col a:hover::before,
.btn-col a:focus::before,
.btn:hover:before, .btn:focus:before {
    transform: translateX(0) skew(-45deg);
}

.btn-col a:hover span,
.btn-col a:focus span,
.btn:hover span, .btn:focus span {
    color: #ea0028;
    z-index: 1;
    position: relative;
}

/*** sign in popup *****/
.sign-in-popup {
    max-width: 414px;
    background: #fff;
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
}
.common-popup {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 30px;
    text-align: center;
}
.popup-title {
    font-size: 24px;
    font-family: 'Palanquin Dark SemiBold';
    line-height: 1.41;
    color: #4D4D4F;
    margin: 0 0 10px;
}
.popups_sec p {
    font-size: 16px;
    line-height: 1.5;
    color: #4D4D4F;
    font-family: 'Roboto';
    margin: 0;
}
.popups_sec.disabled-offers {
    height: 373px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left top;
    background-image: url('../images/cards.jpg');
    position: relative;
}
.popups_sec.disabled-offers:before {
    content: '';
    background: linear-gradient(rgba(255, 255, 255, 0) -50%, rgb(255, 255, 255) 90%);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 400px;
}
.login-pop-sec.popups_sec.disabled-offers::before {
    background: linear-gradient(rgba(255, 255, 255, 0) -50%, rgb(255, 255, 255) 40%);
}
.justify-content-center {
    justify-content: center;
}
.common-popup .btn-col {
    margin-top: 30px;
}
.sign-in-popup .btn-col button {
    min-width: 135px;
}
.sign-in-popup .popup-title {
    max-width: 354px;
}
.common-popup .icon-col {
    display: inline-block;
    background: #fff;
    height: 100px;
    width: 100px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-radius: 100%;
    position: relative;
    margin-bottom: 30px;
}
.common-popup .icon-col img {
    height: 52px;
    width: 52px;
    top: 50%;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
}
/** disabled css **/
.disabled {
    filter: grayscale(1);
    position: relative;
    padding: 0 30px;
}
.disabled:before {
    background: linear-gradient(rgba(255, 255, 255, 0) -50%, rgb(255, 255, 255) 70%);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 500px;
    z-index: 9;
    content: '';
}
.section-space {
    margin: 100px;
}
.popup-section {
    position: relative;
}
.offers.loaded-offers {
    margin-top: 32px;
}
.offers.loaded-offers h2 {
    margin-bottom: 8px;
}
.offers.loaded-offers .btn-col {
    text-align: left;
    margin-top: 32px;
}
.container {
    max-width: 1720px;
    padding: 0 45px;
    margin: 0 auto;
}
.main-title h2 {
    margin: 0 0 20px;
} 
.h2 {
    font-size: 36px;
    line-height: 1.33;
    font-family: 'Palanquin Dark Bold' !important;
    color: #333;
}
.h3 {
    font-size: 30px;
    line-height: 1.33;
    font-family: 'Palanquin Dark Bold' !important;
    color: #333;
}
.thankyou-sec {
    text-align: center;
}
.thankyou-sec .card {
    border: 1px solid #DDD;
    padding: 40px;
}
.thankyou-cards {
    max-width: 1390px;
    margin: 0 auto;
    padding-top: 40px;
}
.thankyou-sec .card .icon-col img {
    height: 64px;
    width: 64px;
    object-fit: contain;
}
.thankyou-sec .card .icon-col {
    padding-bottom: 34px;
}
.thankyou-sec h2 {
    margin-bottom: 10px;
}

/**** OTP screen ****/

.otp-inputs input {
    width: 60px;
    height: 50px;
    text-align: center;
    font-size: 14px;
    border-radius: 5px;
    border: 1px solid #ddd;
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
    color: #4D4D4F;
}
.otp-inputs {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 40px;
}
.otp-container {
    border-radius: 12px;
    max-width: 442px;
    width: 100%;
    text-align: center;
    margin: 0 auto;
}
.otp-inputs input {
    width: 60px;
    height: 50px;
    text-align: center;
    font-size: 14px;
    border-radius: 5px;
    border: 1px solid #ddd;
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
}
a {
    color: #EA0028;
    text-decoration: underline !important;
    transition: all 300ms ease-in-out 0s;
}
a:hover, a:focus {
    text-decoration: none !important;
}
.otp-inputs input:focus {
    border-color: #eb0028;
    box-shadow: 0 0 0 1px rgba(235, 0, 40, 0.2);
}
.otp-title {
    border-bottom: 5px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 40px;
}
.otp-subtitle {
    font-size: 16px;
    color: #4D4D4F;
    margin-bottom: 40px;
    line-height: 1.5;
    font-family: 'Roboto';
}
.otp-actions #verify-btn {
    display: block;
    margin: 0 auto;
}
.otp-actions .timing {
    background: rgba(122, 122, 122, 0.12);
    display: inline-block;
    font-size: 16px;
    line-height: 1.5;
    padding: 4px 8px;
    border-radius: 4px;
    font-family: 'Roboto';
    margin: 10px 0 40px;
}
.otp-actions .info {
    padding: 20px 0 0;
    font-size: 16px;
    line-height: 1.5;
    font-family: 'Roboto';
}
button {
    cursor: pointer;
}
.d-inline-block {
    display: inline-block;
}

/* Container for the progress bar */
.progress-container {
    width: 100%;
    background-color: #f3f3f3;
    border-radius: 25px;
    padding: 20px;
    margin: 20px 0;
    position: relative;
}

/* The progress bar itself */
.progress-bar {
    display: flex;
    align-items: center;
    position: relative;
    height: 10px;
    background-color: #e0e0e0;
    border-radius: 10px;
}

/* The filled part of the progress bar */
.progress {
    height: 100%;
    background-color: #ff0000; /* Red */
    border-radius: 10px;
    position: absolute;
}

/* Milestones */
.start-point, .midpoint, .end-point {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    font-weight: bold;
    color: #666;
}

.start-point {
    left: 0%;
}

.midpoint {
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.end-point {
    right: 0%;
    transform: translateY(-50%);
}

/* Circular markers */
.start-point, .midpoint, .end-point {
    width: 20px;
    height: 20px;
    background-color: white;
    border-radius: 50%;
    border: 2px solid #ff0000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff0000;
}

/* Point info text */
.point-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

#view-activity {
    color: red;
    text-decoration: none;
    font-weight: bold;
}

/* Styling for current and remaining points */
#current-points {
    font-size: 16px;
    font-weight: bold;
}

#remaining-points {
    font-size: 14px;
}

/**** media ****/

@media screen and (max-width: 767px) {
    .common-popup {
        left: 0;
        right: 0;
        transform: none;
        top: 65px;
        max-width: 100%;
    }
    .sign-in-popup .popup-title {
        max-width: 100%;
    }
    .thankyou-sec .card {
        margin-bottom: 20px;
    }
    .popups_sec.disabled-offers { 
        background-image: url('../images/cards-mob.jpg');
    }
    .container {
        padding: 0 25px;
    }
    .offers {
        padding-left: 0;
    }
}
@media(min-width: 768px) {
    .col-md-4 {
        -webkit-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
        padding: 0 10px;
    }
}