.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;
    margin: 0;
}
.tabs.perso-offers-main-tab {
    border-bottom: 1px solid #ddd;
    margin-bottom: 40px;
    position: relative;
    top: -45px;
}
/* Active tab label */
.tabs input.tab-toggle:checked+label.tab-label {
    background: #fff;
    border-bottom: 2px solid #EA0028;
    font-weight: 700;
    color: #EA0028;
    margin: 0;
}
#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;
}
.slick-initialized .slick-slide .slider-col .img-col img {
    width: 100%;
}
/*** 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.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: 30px;
}
.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;
}
.sign-in-popup.home_signup .justify-content-center button {
    font-weight: 400;
}
.common-popup .btn-col {
    margin-top: 30px;
}
.sign-in-popup .btn-col button {
    min-width: 135px;
}
.sign-in-popup .popup-title {
    max-width: 334px;
    margin: 0 auto;
    margin-bottom: 20px;
}
.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;
} 

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

.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;
}
.points_cta span.glyphicon.glyphicon-menu-down {
    margin-left: 8px;
    line-height: normal;
    vertical-align: middle;
    display: inline-block;
    height: 14px;
    text-align: center;
    width: 5px;
    position: relative;
}
li.menu-item.nav-item.points_cta.focus a.nav-link.my-offers-nav-link {
    border-right: 1px solid #ddd;
    padding: 1px 27px 1px 8px;
    margin-right: -10px;
}

.points_cta.cta_rotate span.glyphicon.glyphicon-menu-down::after {
    content: "";
    display: inline-block;
    border-style: solid;
    border-width: 0 2px 2px 0;
    padding: 3px;
    position: absolute;
    transform: rotate(224deg);
    border-color: #ed1c2b;
    bottom: 4px;
}
.points_cta span.glyphicon.glyphicon-menu-down::after {
    content: "";
    display: inline-block;
    border-style: solid;
    border-width: 0 2px 2px 0;
    padding: 3px;
    position: absolute;
    transform: rotate(45deg);
    border-color: #ed1c2b;
    bottom: 7px;
}

.points_cta a img {
    padding-right: 10px;
}

header .header-top .fl-menu .menu .points_cta a.nav-link.my-offers-nav-link {
    padding-right: 20px;
    padding-left: 10px;
}

.points_cta .dropdownPopup {
    background-color: #fff;
    box-shadow: 0 20px 30px 3px rgba(0, 0, 0, .08);
    max-width: 320px;
    min-width: 320px;
    padding: 18px;
    position: absolute;
    left: 0;
    top: 37px;
    z-index: 999;
    text-align: left;
}

.points_cta .progress-content {
    position: relative;
    padding: 0 36px 0 18px;
    top: -10px;
}

.points_cta .dropdownPopup::before {
    content: "";
    position: absolute;
    left: 14%;
    top: -6px;
    border: solid #fff;
    border-width: 0px 11px 11px 0px;
    display: inline-block;
    transform: rotate(45deg);
}

.points_cta .dropdownPopup h4 {
    color: #404040;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

.points_cta .dropdownPopup p {
    color: #404040;
    font-size: 14px;
    line-height: 1.9;
    margin: 0;
    text-align: left;
    display: inline-block;

}

body .fl-menu .menu li.menu-item.nav-item.points_cta .dropdownPopup p a.simple-link{
    font-size: 14px;
    margin: 0;
    text-align: left;
    color: #ed1c2b;
    text-decoration: underline;
    padding-left: 6px !important;
    display: inline-block !important;
}

.points_cta .progress-bar {
    width: 100%;
    height: 4px;
    background-color: #cccccc;
    position: relative;
    margin: 40px 0 24px;
}

.points_cta .progress {
    height: 100%;
    background-color: #ed1c2b;
    transition: width 0.3s ease;
}

.points_cta .progress::before,
.points_cta .progress::after {
    content: "";
    height: 4px;
    width: 16px;
    background: #ed1c2b;
    position: absolute;
}


.points_cta .progress::before {
    left: -15px;
    border-radius: 50px 0 0 50px;

}

.points_cta .progress::after {
    right: -32px;
    width: 32px;
    background: #cccccc;
    border-radius: 0 50px 50px 0;
}

.points_cta .progress-bar .start-point,
.points_cta .progress-bar .end-point,
.points_cta .progress-bar .midpoint {
    position: absolute;
}

.points_cta .point-text {
    position: absolute;
    z-index: 1;
    top: 20px;
    font-family: GT-Eesti-Pro-Display-medium !important;
    margin-left: 15px;
    transform: translate(-50%, 0);
}
.points_cta .point-text sup {
    top: -3px;
}

.points_cta .progress-bar .start-point {
    left: 0;
}

.points_cta .progress-bar .end-point {
    right: 0;
}

.points_cta .progress-bar .midpoint {
    left: 50%;
    right: 0;
    transform: translate(0px, -50%);
}

.points_cta .progress-bar .start-point .start-point-icon,
.points_cta .progress-bar .midpoint .mid-point-icon,
.points_cta .progress-bar .end-point .end-point-icon {
    content: " ";
    position: absolute;
    top: 50%;
    height: 16px;
    width: 16px;
    background-color: #cccccc;
    border-radius: 50%;
    z-index: 1;
    top: 0;
}

.points_cta .progress-bar .start-point.cross-start .start-point-icon .start-point-dot,
.points_cta .progress-bar .midpoint.cross-midpoint .mid-point-icon .mid-point-dot,
.points_cta .progress-bar .end-point.cross-end .end-point-icon .end-point-dot {
    height: 6px;
    width: 6px;
    background-color: #fff;
    top: 5px;
    left: 5px;
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    transition: width 0.3s ease;
}

.points_cta .progress-bar .start-point.cross-start .start-point-icon,
.points_cta .progress-bar .end-point.cross-end .end-point-icon,
.points_cta .progress-bar .cross-midpoint .mid-point-icon {
    background-color: #ed1c2b;
    top: 0;
    transition: width 0.3s ease;
}

.points_cta .progress-bar .tooltip {
    position: absolute;
    top: -27px;
    background-color: #000;
    color: #fff !important;
    padding: 1px 6px;
    border-radius: 100px;
    transition: opacity 0.2s;
    margin-left: 5px;
    font-size: 11px;
    z-index: 2;
    transform: translate(-50%, 0);
}
.points_cta .progress-bar #tooltip::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    border: solid #000;
    border-width: 0px 3px 3px 0;
    display: inline-block;
    padding: 3px;
    z-index: -1;
    transform: translate(-50%, 0) rotate(45deg);
}

.points_cta .progress-bar .progress-point {
    position: absolute;
    height: 12px;
    width: 12px;
    background-color: #ed1c2b;
    border-radius: 50%;
    top: -4px;
    z-index: 2;
}

.points_cta .progress-bar .progress-point.leftdec {
    margin-left: 0px;
}

.points_cta .progress-bar .progress-point-dot {
    position: absolute;
    height: 6px;
    width: 6px;
    background-color: #fff;
    border-radius: 50%;
    z-index: 1;
    top: 3px;
    left: 3px;
}

body .MassOffersBoxButton .button {
    background-color: #006241;
    border: 0.1875rem solid #006241;
    border-radius: 50px;
    color: #fff;
    line-height: normal;
    overflow: hidden;
    position: relative;
    transition: transform 1s cubic-bezier(0.07, 0.51, 0.12, 1);
    z-index: 1;
    font-size: 1rem;
    padding: 0.875rem 1.875rem;
}

body .MassOffersBoxButton .button::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;
}
.scenecard-lists-custom-FR ul li span:before {
    content: "";
    position: absolute;
    bottom: 7px;
    left: 8px;
    width: 5px;
    height: 8px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

body .MassOffersBoxButton .button:hover {
    color: #006241 !important;
    border-color: #006241;
    background-color: #006241;
}
.scenecard-lists-custom-FR ul {
    list-style: none;
    padding: 0;
}
.scenecard-lists-custom-FR ul li {
    padding-left: 26px;
    position: relative;
    margin-bottom: 8px;
}
.scenecard-lists-custom-FR ul li span {
    background-color: #24B573;
    top: auto;
    width: 20px;
    height: 20px;
    display: block;
    position: absolute;
    left: 0;
    border-radius: 50px;
}
body .MassOffersBoxButton .button:hover::before {
    transform: translateX(0) skew(-45deg);
}
div#perso-offers-wrapper-verify .verify_loader {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
div#perso-offers-wrapper-verify img#perso-offers-loader-verify {
    width: 80px;
    height: 80px;
}
/*Verify Screen*/
 .verify-container {
        font-family: "Inter", sans-serif;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-top: 40px;
        position: relative;
        z-index: 999;
    }

    .verify-container .verify-box {
        text-align: center;
        width: 800px;
    }

    .verify-container .verify-box h2 {
        margin: 0 0 10px;
        font-size: 36px;
        font-weight: 600;
        line-height: 48px;
        color: #4D4D4F;
    }

    .verify-container .verify-box p {
        margin: 0 0 40px;
        font-size: 16px;
        color: #4b5563;
        line-height: 24px;
    }

    .verify-container .divider {
        height: 5px;
        background-color: #DDD;
        width: 100%;
        margin: 15px 0 40px 0;
    }

    .verify-container .code-inputs {
        display: flex;
        gap: 10px;
        margin-bottom: 10px;
        justify-content: center;
    }

    .verify-container .code-inputs input {
        width: 60px;
        height: 50px;
        border-radius: 5px;
        border: 1px solid #DDD;
        text-align: center;
        font-size: 16px;
        font-weight: 400;
        outline: none;
        transition: border-color 0.15s ease, box-shadow 0.15s ease;
        color: #4D4D4F;
    }

    .verify-container .code-inputs input:focus {
        border-color: #EA0028;
        box-shadow: 0 0 0 1px #fecaca;
    }

    .verify-container .submit-btn {
        padding: 15px 40px;
        background: #EA0028;
        color: #fff;
        border: none;
        border-radius: 999px;
        font-size: 16px;
        font-weight: 400;
        cursor: pointer;
        transition: background 0.15s ease;
        display: block;
        margin: 0 auto;
        margin-top: 40px;
        float: none;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .verify-container .submit-btn .btnloader {
    width: 100%;
    position: absolute;
    background-color: #EA0028;
    height: 100%;
    border-radius: 50px;
    }
    .verify-container .submit-btn .btnloader::after {
        content: "";
        width: 30px;
        height: 30px;
        border: 5px solid #ffffffa8;
        border-top-color: #fff;
        border-radius: 50%;
        display: inline-block;
        animation: spin 0.6s linear infinite;
        margin-left: 10px;
        position: relative;
        top: 13px;
    }
    .verify-container .verify-box .Sceneffers button.cta-btn {
        float: inherit;
    }
    div#verify_scenecard_modal .VerifySceneCard {
        width: 510px;
        text-align: center;
    }
    div#verify_scenecard_modal .VerifySceneCard .scenecard_verify {
        width: 50%;
    }
    div#verify_scenecard_modal .VerifySceneCard .scenecard_remind {
        width: 50%;
        padding: 0;
    }
    div#verify_scenecard_modal .VerifySceneCard .scenecard_remind input#closeModal_remindMe {
        max-width: 100%;
    }
    div#verify_scenecard_modal .VerifySceneCard .scenecard_verify a.btn-verify.verify_card {
        max-width: 100%;
    }
    div#verify_scenecard_modal .VerifySceneCard .scenecard_popbox_verify_btns {
        gap: 20px;
    }
    /* Rotation Animation */
    @keyframes spin {
        to {
            transform: rotate(360deg);
        }
    }
    .verify-container .submit-btn:hover {
        background: #EA0028;
    }

    .verify-container .timer {
        text-align: center;
        margin-top: 12px;
        font-size: 14px;
        font-weight: 500;
        background: #7a7a7a1f;
        width: max-content;
        padding: 4px 8px;
        margin: 10px auto 0 auto;
        letter-spacing: 1px;
        color: #4D4D4F;
        border-radius: 4px;
    }

    .verify-container .linksBtn a {
        margin-top: 54px;
        padding: 15px 40px;
        color: #EA0028;
        text-decoration: none;
        border: 2px solid #EA0028;
        border-radius: 50px;
        display: block;
        width: max-content;
        margin: 54px auto 20px auto;
    }
    .verify-container .linksBtn a.disabled::before{
        background: #ffffffd1;
        position: absolute;
        left: 0;
        right: 0;
        top: 0px;
        height: auto;
        z-index: 9;
        content: '';
        padding: 27px 40px;
        text-decoration: none;
        border-radius: 50px;
    }
    .verify-container .verify-box div#ajax-error-msg {
        color: #ffffff;
        background-color: #ea0028a8;
        padding: 1px 40px;
        margin: 0 auto;
        font-size: 14px;
        width: fit-content;
        margin-bottom: 10px;
        font-weight: 600;
    }
    .verify-container .verify-box div#ajax-sucess-msg {
        color: #ffffff;
        background-color: #48a548e0;
        padding: 1px 40px;
        margin: 0 auto;
        font-size: 14px;
        width: fit-content;
        margin-bottom: 10px;
        font-weight: 600;
    }
    .verify-container .links {
        text-align: center;
        font-size: 16px;
        color: #6b7280;
    }

    .verify-container .links a {
        color: #EA0028;
        text-decoration: none;
        font-weight: 500;
    }
    .Sceneffers {
        box-sizing: border-box;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
        max-width: 800px;
        margin: 0 auto;
    }
    .Sceneffers img{
        width: 120px
    }
    .Sceneffers h3 {
        margin: 10px 0 20px;
        font-size: 24px;
        color: #4D4D4F;
    }
    .Sceneffers-icon {
        font-size: 22px;
        color: #dc2626;
        flex-shrink: 0;
    }

    .Sceneffers-text {
        font-size: 16px;
        color: #4D4D4F;
        line-height: 1.4;
        margin-bottom: 30px;
    }
    .scene-offers {
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
    padding: 40px 0;
}

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

.scene-offers .container {
    width: 90%;
    margin: 0 auto;
}

/* Title */
.scene-offers .title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #555;
}

/* Tabs */
.scene-offers .tabs {
    display: flex;
    border-bottom: 1px solid #ddd;
    margin-bottom: 40px;
    position: relative;
}

.scene-offers .tab {
    padding: 12px 20px;
    font-size: 16px;
    cursor: pointer;
    color: #666;
    position: relative;
    transition: color 0.3s ease;
}

.scene-offers .tab.active {
    color: #d71920;
    font-weight: 600;
}

/* Sliding underline */
.scene-offers .tab-indicator {
    position: absolute;
    bottom: -1px;
    height: 3px;
    background-color: #d71920;
    transition: transform 0.3s ease, width 0.3s ease;
}

/* Simple Tab Content (NO animation) */
.scene-offers .tab-content {
    display: none;
}

.scene-offers .tab-content.active {
    display: block;
}

/* Card UI */
.scene-offers .card-wrapper {
    background-color: #eaeaea;
    padding: 60px 20px;
    text-align: center;
    border-radius: 4px;
    position: relative;
    z-index: 9999;
}

.scene-offers .message-title h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #4D4D4F;
    margin-top: 30px;
}

.scene-offers .message-text {
    font-size: 16px;
    color: #666;
}

.scene-offers .message-text a {
    color: #EA0028;
    text-decoration: underline;
}
.homeLoader div#perso-offers-wrapper .perso-offers-main .text-col span.check-icon img {
    width: 14px;
    height: 14px;
}
.homeLoader div#perso-offers-wrapper .perso-offers-main .scene-icon img {
    width: 16px;
    height: auto;
}
.homeLoader div#perso-offers-wrapper .perso-offers-main .info-col img {
    width: auto;
    height: auto;
}
.homeLoader div#perso-offers-wrapper .perso-offers-main .img-col img {
    width: auto;
    height: auto;
}
.homeLoader div#perso-offers-wrapper .perso-offers-main .text-col {
    text-align: left;
}
.homeLoader div#perso-offers-wrapper .perso-offers-main span.expiry-date {
    float: left;
}
.homeLoader div#perso-offers-wrapper .perso-offers-main .slider-content-col {
    text-align: left;
}
.verify-container .verify-box .Sceneffers button.gmo-popup.card {
    float: inherit;
    margin: 0 auto;
    background: #dc2626;
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: background 0.2s ease;
}
div#add_scenecard_modal .list-wrapper .list_content li span {
    background-color: #24B573;
    top: auto;
}
div#add_scenecard_modal .list-wrapper .list_content li {
    font-size: 16px;
    padding-left: 31px;
    line-height: 24px;
    display: block;
    padding: 10px 0px 10px 30px;
}
div#add_scenecard_modal .gigya-layout-row a#create-from-here-lp-URL-add-card,
div#add_scenecard_modal .gigya-layout-row a#contact-support-lp-URL {
    color: #EA0028 !important;
    font-weight: 400 !important;
}
div#add_scenecard_modal .fl-col-group.fl-col-group-nested.fl-col-group-equal-height.fl-col-group-align-center {
    max-width: 930px;
}
div#add_scenecard_modal h2.fl-heading span.fl-heading-text {
    display: block;
}
.verify-container .cta-btn:hover {
    background: #fff;
    color: #b91c1c;
    border: 1px solid #b91c1c;
}
.PointProgress {
    height: 100%;
    margin-top: 60px;
}
.PointProgress .archive-verify-scene {
    width: 100%;
    flex: auto;
}
.scenecard-lists-Img img.fl-photo-img {
    width: 100%;
}
.PointProgress .col .main-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
}
.PointProgress .col .main-title h2 {
    margin: 0;
    position: relative;
    bottom: -10px;
}
.PointProgress .col .main-title .scenecard_verify a.btn-verify.verify_card{
    background: #ea0028;
    border: .125rem solid #ea0028;
    -webkit-border-radius: 1.875rem;
    -moz-border-radius: 1.875rem;
    border-radius: 1.875rem;
    color: #fff;
    float: left;
    font-weight: 700;
    margin-right: .9375rem;
    width: auto;
    padding: .875rem 1.875rem;
    font-size: 1rem;
    line-height: normal;
    text-decoration: none !important;
}
.PointProgress img#perso-offers-loader-archive {
    width: 90px;
    height: 90px;
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    margin-top: 250px;
}
.PointProgress .dropdownPopup.filter_progress {
    max-width: 280px;
    float: right;
    text-align: center;
}
.PointProgress .dropdownPopup.filter_progress p {
    font-size: 12px;
    margin-top: 40px;
}
.PointProgress .dropdownPopup.filter_progress p a.simple-link {
    color: #EA0028;
    font-weight: bold;
    text-decoration: underline;
}
.PointProgress .dropdownPopup.filter_progress h4 {
    margin-bottom: 14px;
}
.PointProgress .dropdownPopup.filter_progress .start-point,
.PointProgress .dropdownPopup.filter_progress .midpoint,
.PointProgress .dropdownPopup.filter_progress .end-point {
    border: 4px solid #ff0000;
    width: 25px;
    height: 25px;
}
.PointProgress .dropdownPopup.filter_progress .midpoint .mid-point-icon,
.PointProgress .dropdownPopup.filter_progress .end-point .end-point-icon {
    content: " ";
    position: absolute;
    top: 50%;
    height: 26px;
    width: 26px;
    background-color: #cccccc;
    border-radius: 50%;
    z-index: 1;
    top: -5px;
}
.PointProgress .dropdownPopup.filter_progress .progress-bar .point-text,
.PointProgress .dropdownPopup.filter_progress .progress-bar .midpoint .point-text,
.PointProgress .dropdownPopup.filter_progress .progress-bar .end-point .point-text {
    position: absolute;
    top: 24px;
    color: #4D4D4F;
    font-size: 14px;
}
.tabs.perso-offers-main-tab .row {
    flex-wrap: inherit;
}
.sign-in-popup.home_signup {
    margin: 0 auto;
    padding: 30px;
    max-width: 414px;
    position: relative;
    top: 50px;
    text-align: center;
}
div#perso-offers-wrapper img#perso-offers-loader {
    margin: 0 auto;
    display: block;
    margin-top: 70px;
    min-width: 80px;
    min-height: 80px;
}
div#perso-offers-wrapper .perso-offers-title h1 {
    text-align: center;
    padding: 80px 0 40px;
}
.scenecard_verify.archive_btn {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 20px;
}
.tabs.perso-offers-main-tab .row .col {
    width: 85%;
}
.tabs.perso-offers-main-tab .row .col-auto{
    width: 15%;
}
.ajax-error-toast {
    z-index: 9999;
    position: fixed;
    top: 120px;
    right: 70px;
    left: 0;
    max-width: 700px;
    background-color: #F6E9EA;
    color: #000;
    padding: 10px 15px;
    border-radius: 5px;
    opacity: 1;
    margin: 0 auto;
    text-align: center;
}
.features {
    display: flex;
    gap: 18px;
    margin: 40px 0;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 34px;
    border: 1px solid #DDD;
    padding: 40px;
    width: 33.33%;
    box-sizing: border-box;
}

.feature-icon {
    font-size: 22px;
    color: #dc2626;
    flex-shrink: 0;
}

.feature-text {
    font-size: 16px;
    color: #4D4D4F;
    line-height: 1.4;
}
.verify-container .verify-box.verify_thanku {
    width: 1390px;
}
.cta-btn {
    background: #dc2626;
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: background 0.2s ease;
    border: 1px solid #dc2626;
}
.scenecard_popbox {
    background-color: #00000080;
}
.scenecard_popbox:before {
    background-color: #00000080;
}
.scenecard_popbox h2.fl-heading {
    font-size: 25px !important;
    line-height: 30px;
}
.scenecard_popbox .scenecard_popbox_closeWrap a {
    text-decoration: none !important;
}
/**** media ****/

@media screen and (max-width: 767px) {
    .scenecard_popbox h2.fl-heading {
       line-height: 30px;
    }
    div#add_scenecard_modal .list-wrapper .list_content li {
        padding: 10px 0px 0px 30px;
        margin: 0;
    }
    .common-popup {
        left: 0;
        right: 0;
        transform: none;
        top: 65px;
        max-width: 100%;
    }
    .features{
        flex-direction: column;
    }
    .features .feature{
        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;
    }
   .verify-container {
        padding: 100px 15px;
    }
    .scene-offers .title { font-size: 28px; }
    .scene-offers .card-wrapper { padding: 50px 15px; }
}
@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;
    }
}

@media screen and (max-width: 1600px) {
    header .header-top .fl-menu .menu .points_cta a.nav-link.my-offers-nav-link {
        padding-right: 15px !important;
        padding-left: 10px;
    }
}

@media screen and (max-width: 1439px) {
    header .header-top .fl-menu .menu .points_cta a.nav-link.my-offers-nav-link {
        padding-right: 10px !important;
        padding-left: 10px;
    }

    .points_cta a img {
        padding-right: 6px;
        width: 20px;
    }

    body .header-top .scene_menu_notification_icon img {
        width: 14px;
    }

    .points_cta a img {
        padding-right: 6px;
        width: 19px;
    }

    img.icon_myoffer {
        width: 14px !important;
        margin-right: 6px !important;
    }
}
@media (min-width: 768px) and (max-width: 991.98px){
    .points_cta .dropdownPopup{
        left: -30px;
    }
}
@media screen and (max-width: 767px) {
    #tru_mass_offers_outer {
        display: flex;
        flex-direction: column;
    }

    body .header-top.scene-header-wrapper .loyality-points-mobile #store-header {
        padding-right: 100px;
    }

    .header-top.scene-header-wrapper .loyality-points-mobile .points_cta {
        max-width: 100%;
        border-radius: 0;
        width: 100%;
        position: absolute;
        list-style: none;
        height: 100%;
        display: flex;
        align-items: center;
        max-height: 100%;
        top: 50%;
        transform: translate(0px, -40px);
        right: 35px;
    }

    .header-top.scene-header-wrapper .loyality-points-mobile .points_cta .my-offers-nav-link {
        position: absolute;
        right: -9px;
        left: auto;
        top: 24px;
    }
    .loyality-points-mobile .points_cta span.glyphicon.glyphicon-menu-down::after{
        bottom: 14px;
    }
    .loyality-points-mobile .points_cta.cta_rotate span.glyphicon.glyphicon-menu-down::after{
        bottom: 11px;
    }
   .points_cta .dropdownPopup::before{
        right:15%;
        left:auto;
    }
    .header-top.scene-header-wrapper .loyality-points-mobile .dropdownPopup p a.simple-link {
        color: #ed1c2b;
        text-decoration: underline;
    }
    .header-top.scene-header-wrapper .loyality-points-mobile .dropdownPopup {
        max-width: calc(100% + 50px);
        padding: 25px;
        left: 4%;
        min-width: 100%;
        top: 60px;
        margin-left: -25px;
        margin-right: -25px;
        width: calc(100% + 50px);
        padding-left: 27px;

    }
    .component_breadcrumbs .breadcrumb .breadcrumb-item .separator {
        margin-left: 4px !important;
        margin-right: 0 !important;
        display: inline-block !important;
    }
    .breadcrumb {
    display: inline-block !important ;
    width: 100% !important;
    }
    .component_breadcrumbs .breadcrumb .breadcrumb-item{
        display: inline !important;
        
    }
  

}
@media screen and (max-width: 480px) {
    .header-top.scene-header-wrapper .loyality-points-mobile .dropdownPopup {
        left: 35px !important;
    }
}
@media screen and (max-width:414px) {
.header-top.scene-header-wrapper .loyality-points-mobile .dropdownPopup {
        left: 9.6% !important;
        top:  60px;
        padding: 15px;
    }
.points_cta .dropdownPopup::before{
    right:19%;
    left:auto;
}
.points_cta .progress-bar .tooltip {
    top: -27px;
    margin-left: 6px;
}
body .header-top.scene-header-wrapper .loyality-points-mobile #store-header {
    padding-right: 125px;
}
}
@media screen and (max-width: 391px) {
    .header-top.scene-header-wrapper .loyality-points-mobile .dropdownPopup {
        left: 10.3% !important;
    }
}
@media screen and (max-width: 375px) {
    .header-top.scene-header-wrapper .loyality-points-mobile .dropdownPopup {
        left: 30px !important;
        top:  65px;
    }
    .header-top.scene-header-wrapper .loyality-points-mobile .points_cta .my-offers-nav-link {
        padding-right: 10px;
        padding-left: 10px;
    }
    .header-top.scene-header-wrapper .loyality-points-mobile .dropdownPopup{
        margin-left: -20px;
        margin-right: -20px;
    }
}