﻿
.text-underline {
    text-decoration: underline;
}

.bg-gradient-blue {
    background: linear-gradient(to right, var(--bs-secondary-color), #4282b8);
}



.strikethrough-heading {
    width: 100%;
    text-align: center;
    border-bottom: 2px solid #cdcdcd;
    line-height: 0.1em;
    margin: 10px 0 20px;
}

    .strikethrough-heading span {
        background: #fff;
        padding: 0 10px;
    }

.text-muted {
    color: gray !important;
}

.img-round {
    border-radius: 10px;
}

.border-top {
    border-top: 1px solid var(--bs-gray);
}

.text-red {
    color: red;
}

.li-yellow::marker {
    color: var(--bs-primary-color);
    font-size: 1.5rem;
}

.li-green::marker {
    color: #0d5568;
    font-size: 1.5rem;
}

.line-height-30 {
    line-height: 30px;
}

.btn-sm {
    padding: 8px 25px;
    font-size: 0.9rem;
    font-weight: 500;
}

.min-height-auto {
    min-height: auto !important;
}

.receipt-box {
    border: 1px solid #ccc;
    border-radius: 10px;
}

.receipt-button {
    border: 1px solid rgba(15, 145, 210, 0.70);
    color: #0F91D2;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 4px;
    background-color: white;
}

.receipt-upload-box {
    border: 1px dashed #ccc;
    border-radius: 10px;
}

.profile-button {
    background-color: white;
    border: 1px solid gray;
    padding: 15px 20px;
    font-size: 0.9rem;
    border-radius: 65px;
    text-transform: uppercase;
    font-weight: 500;
    margin-top: 1rem !important;
    float: left;
}

@media screen and (min-width: 992px) {
    .language-ddl {
        margin-left: 1rem !important;
    }
}

.font-weight-bold.text-dark {
    /*font-weight: 400;*/
    /*font-family: 'Poppins', sans-serif;*/
    color: #282b2d;
    font-size: 1rem;
    margin-top: 1rem !important;
}

#portalRegistrationForm #l_copyAddress, #portalRegistrationForm #l_certifiedMasterProYes,
#portalRegistrationForm #l_certifiedMasterProNo, #portalRegistrationForm #l_trainingOptionYes, #portalRegistrationForm #l_trainingOptionNo {
    margin: 0 0 0 5px !important;
}

.modal-header {
    display: block !important;
    text-align: right !important;
}

    .modal-header .close {
        background-color: transparent;
        border: none !important;
    }

#alertMessageBox {
    padding-top: 0 !important;
    text-align: left;
}

#closealertMessageBox {
    background-color: transparent;
    border: none;
    float: right;
}

.PortalRegistration, #exampleModalLongTitle {
    text-align: left;
}

#receipt-table th, #transactionInfoList-table th {
    font-size: 14px !important;
}

#transactionDetailInfoList-table_filter {
    display: none !important;
}

.custom-fade-in {
    animation: fadein 2s;
    -moz-animation: fadein 2s; /* Firefox */
    -webkit-animation: fadein 2s; /* Safari and Chrome */
    -o-animation: fadein 2s; /* Opera */
}

.width-100 {
    width: 100% !important;
}

.text-left {
    text-align: left !important;
}


.profile-pic-wrapper {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.pic-holder {
    text-align: center;
    position: relative;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

    .pic-holder .pic {
        height: 100%;
        width: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: center;
        object-position: center;
    }

    .pic-holder .upload-file-block,
    .pic-holder .upload-loader {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background-color: rgba(90, 92, 105, 0.7);
        color: #f8f9fc;
        font-size: 5px;
        font-weight: 600;
        opacity: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s;
    }

    .pic-holder .upload-file-block {
        cursor: pointer;
    }

    .pic-holder:hover .upload-file-block,
    .uploadProfileInput:focus ~ .upload-file-block {
        opacity: 1;
    }

    .pic-holder.uploadInProgress .upload-file-block {
        display: none;
    }

    .pic-holder.uploadInProgress .upload-loader {
        opacity: 1;
    }

/* Snackbar css */
.snackbar {
    visibility: hidden;
    min-width: 250px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
    font-size: 14px;
    transform: translateX(-50%);
}

    .snackbar.show {
        visibility: visible;
        -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
        animation: fadein 0.5s, fadeout 0.5s 2.5s;
    }

@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

.close {
    float: right;
    background-color: transparent;
    border: none;
    margin: -10px -5px 0 0px;
}


/*CUSTOM MODAL STARTED*/
.custom-modal {
    position: fixed;
    overflow: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgb(0 0 0 / 60%);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.custom-modal-dialog {
    max-width: 620px;
    width: 100%;
    border-radius: 0px;
    position: relative;
}

.custom-modal-content {
    background: #ffffff;
    padding: 15px 15px;
    border-radius: 5px;
}

.close-modal {
    position: absolute;
    top: 0;
    right: 0;
    width: 25px;
    height: 25px;
    background: white;
    color: black;
    text-align: center;
    margin-top: 5px;
    margin-right: 3px;
    cursor: pointer;
}

.custom-modal {
    opacity: 0;
    visibility: hidden;
}

body.modal-open .custom-modal {
    opacity: 1;
    visibility: visible;
}

.custom-modal .custom-modal-dialog {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}

body.modal-open .custom-modal .custom-modal-dialog {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.custom-modal, body .custom-modal, body.modal-open .custom-modal .custom-modal-dialog, body .custom-modal .custom-modal-dialog {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.cp {
    cursor: pointer !important;
}
/*CUSTOM MODAL ENDED*/
#popupModalViewReceipt {
    top: 20% !important;
}

    #popupModalViewReceipt div.modal-body {
        max-height: 400px !important;
        overflow-y: auto !important;
    }

#primaryContactHeader, #contactDetailsHeader, #locationAddressHeader, #mailingAddressHeader, #contractDetailsHeader {
    font-weight: bold !important;
}

.prorewards-tableheader-td h6 {
    padding-bottom: 0 !important;
    margin-top: 13px !important;
}

.header-logo {
    max-height: 45px !important;
}

.blog-image {
    margin-bottom: 0px !important;
    /*height: 250px !important;*/
    display: flex;
    justify-content: center;
    flex-direction: column;
}

    .blog-image img {
        margin-top: 35px;
        /*max-height: 200px;*/
    }

.product h4.title {
    min-height: 50px;
    overflow-y: auto;
}

.product p.description {
    min-height: 115px;
    max-height: 115px;
    overflow-y: auto;
}

.prodct-button, .prodct-button i:before {
    color: var(--bs-secondary-color);
    border: 0;
    background: transparent;
}

.reward-details {
    padding: 0rem 1rem;
}

.dialog-bg {
    max-width: 1000px !important;
}


/*WIZARD CONTROL CSS START*/
.wizard,
.wizard .nav-tabs,
.wizard .nav-tabs .nav-item {
    position: relative;
}

    .wizard .nav-tabs:after {
        content: "";
        width: 80%;
        border-bottom: solid 2px #ccc;
        position: absolute;
        margin-left: auto;
        margin-right: auto;
        top: 38%;
        z-index: -1;
    }

    .wizard .nav-tabs .nav-item .nav-link {
        background: white;
        border: 2px solid #ccc;
        color: #ccc;
        z-index: 10;
        display: flex;
        flex-direction: column;
    }


        .wizard .nav-tabs .nav-item .nav-link:hover {
            color: #333;
            border: 2px solid #333;
        }

        .wizard .nav-tabs .nav-item .nav-link.active {
            background: #fff;
            border: 2px solid var(--bs-primary-color);
            color: var(--bs-primary-color);
            /*display: flex !important;
            flex-direction: column !important;*/
        }

        .wizard .nav-tabs .nav-item .nav-link:after {
            content: " ";
            position: absolute;
            left: 50%;
            transform: translate(-50%);
            opacity: 0;
            margin: 0 auto;
            bottom: 0px;
            border: 5px solid transparent;
            border-bottom-color: var(--bs-primary-color);
            transition: 0.1s ease-in-out;
        }

.nav-tabs .nav-item .nav-link.active:after {
    content: " ";
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    opacity: 1;
    margin: 0 auto;
    bottom: 0px;
    border: 10px solid transparent;
    border-bottom-color: var(--bs-primary-color);
}

.wizard .nav-tabs .nav-item .nav-link svg {
    font-size: 25px;
}

.btn-wizard {
    padding: .75rem;
}

.fs-14 {
    font-size: 14px;
}

.receipt-form label {
    float: left !important;
    text-align: left !important;
}

.form-select-heigt {
    min-height: 48px !important;
}


/*WIZARD CONTROL CSS END*/
/* smartphones, portrait iPhone, portrait 480x320 phones (Android) */
@media only screen and (min-width:320px) {
    .wizard .nav-tabs .nav-item .nav-link {
        width: 95%;
        height: 70px;
        margin-bottom: 15%;
        padding: 0 !important;
    }

    .wizard-step-font {
        font-size: 12px;
    }
}
/* smartphones, Android phones, landscape iPhone */
@media only screen and (min-width:480px) {
    .wizard .nav-tabs .nav-item .nav-link {
        width: 95%;
        height: 70px;
        margin-bottom: 15%;
        padding: 0 !important;
    }

    .wizard-step-font {
        font-size: 12px;
    }
}
/* portrait tablets, portrait iPad, e-readers (Nook/Kindle), landscape 800x480 phones (Android) */
@media only screen and (min-width:600px) {
    .wizard .nav-tabs .nav-item .nav-link {
        width: 95%;
        height: 70px;
        margin-bottom: 15%;
        padding: 0 !important;
    }

    .wizard-step-font {
        font-size: 12px;
    }
}
/* tablet, landscape iPad, lo-res laptops ands desktops */
@media only screen and (min-width:801px) {
    .wizard .nav-tabs .nav-item .nav-link {
        width: 95%;
        height: 70px;
        margin-bottom: 6%;
        padding: 0.5rem 1.5rem !important;
    }

    .wizard-step-font {
        font-size: 14px;
    }
}
/* big landscape tablets, laptops, and desktops */
@media only screen and (min-width:1025px) {
    .wizard .nav-tabs .nav-item .nav-link {
        width: 95%;
        height: 70px;
        margin-bottom: 6%;
        padding: 0.5rem 1.5rem !important;
    }

    .wizard-step-font {
        font-size: 14px;
    }
}
/* hi-res laptops and desktops */
@media only screen and (min-width:1281px) {
    .wizard .nav-tabs .nav-item .nav-link {
        width: 95%;
        height: 70px;
        margin-bottom: 4%;
        padding: 0.5rem 1.5rem !important;
    }

    .wizard-step-font {
        font-size: 14px;
    }
}
/* hi-res laptops and desktops */
@media only screen and (min-width:1600px) {
    .wizard .nav-tabs .nav-item .nav-link {
        width: 95%;
        height: 70px;
        margin-bottom: 4%;
        padding: 0.5rem 1.5rem !important;
    }

    .wizard-step-font {
        font-size: 14px;
    }
}

.color-blue {
    color: #0F91D2 !important;
}

.modal-dialog-lg {
    max-width: 1000px !important;
}

    .modal-dialog-lg .col-lg-4 {
        margin-bottom: 1rem !important;
    }

    .modal-dialog-lg .modal-title {
        float: left !important;
    }


input[type=file] {
    display: none !important;
}

.custom-file-upload {
    border: 1px solid #ccc;
    display: inline-block;
    padding: 6px 12px;
    cursor: pointer;
    position: relative;
    z-index: 999;
}

.ru-close-alert {
    float: right;
    background-color: transparent;
    border: none;
}

.fuImage img {
    width: 300px;
}

/*.fuImage span {
    position: absolute;
    right: 0;
    left: 0;
    cursor: pointer;
}*/

.widgit-div span.required {
    float: left;
    color: #dc3545;
    margin-left: 2px;
}

.invalid-feedback {
    text-align: left !important;
}

.address {
    max-height: 115px !important;
    overflow: auto !important;
}

.product-image {
    height: auto !important;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background-color: white;
}

    .product-image img {
        width: 100%;
        /*max-height: 250px;*/
        max-height: auto;
    }

.product-title {
    height: 90px;
    overflow-y: auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
}


.product-p p {
    height: 75px;
    overflow-y: auto;
    display: flex;
    justify-content: center;
}

#span_productDescription {
    max-height: 400px;
    display: block;
    overflow-y: auto;
    height: auto;
}

.iti--separate-dial-code .iti__selected-flag {
    border-radius: 0px !important;
}

.footer-list-style1 .text-muted {
    color: black !important;
}

.receipt-button {
    border-radius: 0px !important;
}

.alert-success {
    background-color: #008244 !important;
    color: white !important;
}

.alert-danger {
    background-color: #B2101A !important;
    color: white !important;
}

#closealertMessageBox {
    color: white !important;
}

#redeemModal .btn-sm {
    padding: 8px 25px !important;
}

.js-reward-description {
    max-height: 400px;
    overflow-y: auto;
}

.color-blue {
    color: blue !important;
}

.how-it-works-icon {
    width: 80px;
    margin-bottom: 1rem;
}

.image-custom {
    /*max-height: 235px !important;*/
}

.currency-content::before, .js-reward-points::before, .js-reward-memberAccBalance::before, .js-remaining-accbalance::before {
    content: '';
    margin-right: 5px;
}


footer .img-round {
    border-radius: 0 !important;
}


.disabledLink {
    pointer-events: none !important;
    opacity: 0.5 !important;
}

.is-dragover {
    /*background-color: grey;
    z-index: 99999999999999999999 !important;
    position: relative !important;*/
}

.js-span-removeFile {
    cursor: pointer !important;
}


/*Custom scrollbar css*/

/* width */
::-webkit-scrollbar {
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
}

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

.header-image-new {
    width: 35px;
    border-radius: 60px;
    float: left;
    height: 35px;
}

.balance-denomination {
    display: none
}

span.js-header-PointBalance:not(:empty):before {
    content: "";
}

.tooltiptext {
    display: none !important;
}

td.Value:not(:empty):before, td.AccountPointsBalance:not(:empty):before, td.AnalysisCode14:not(:empty):before, td.AnalysisCode15:not(:empty):before {
    /*content: "$";*/
    text-align: left !important;
}

td.Value:not(:empty):before, td.AccountPointsBalance:not(:empty):before, td.AnalysisCode14:not(:empty):before, td.AnalysisCode15:not(:empty):before {
    /*content: "$";*/
    text-align: left !important;
}

td.Value, td.AccountPointsBalance, td.AnalysisCode14, td.AnalysisCode15 {
    text-align: left !important;
}



#transactionDetailInfoList-table td:nth-child(4):before, #transactionDetailInfoList-table td:nth-child(5):before {
    /*content: "$";*/
}


#transactionDetailInfoList-table td:nth-child(6):after {
    /*content: "$";*/
}

div.tooltip-inner {
    background-color: black !important;
}

.tooltip-arrow {
    visibility: visible !important;
}

.tooltip .arrow:before {
    border-bottom-color: #444 !important;
    border-top-color: #444 !important;
}

td.Value, td.Points, td.AccountPointsBalance, td.AnalysisCode14, td.AnalysisCode15 {
    text-align: left !important;
}

div.tooltip-inner {
    max-width: 350px;
    background-color: black !important;
}

.view-profile-button {
    width: 126px;
    height: 37px;
    border-radius: 30px;
    border: 1px solid #0071ad;
    background-color: #ffffff;
    box-sizing: border-box;
    font-family: "Roboto-Regular", "Roboto", sans-serif;
    color: #0071ad;
    text-align: center;
    line-height: normal;
}

    .view-profile-button:hover {
        background-color: #036092;
        box-sizing: border-box;
        color: #ffffff;
    }

.refer-new-modal .heading-modal {
    font-family: "Roboto-Medium", "Roboto Medium", "Roboto", sans-serif;
    font-weight: 600;
    color: #000000;
    text-align: center;
    line-height: normal;
    margin-bottom: 1rem;
    font-size: 20px;
}

.refer-new-modal .paragrah-modal {
    font-family: "Roboto-Regular", "Roboto", sans-serif;
    color: #333333;
    text-align: center;
    line-height: 24px;
    padding: 0rem 5rem 2rem 5rem;
}

.refer-new-modal .box {
    border: 1px solid #d7d7d7;
    border-radius: 3px;
    text-align: center;
    padding: 3rem 1rem;
    /*margin: 1rem 4rem 1rem 4rem;*/
    margin: 1rem;
}

/*   .refer-new-modal .box .subheadingmodal {
        
        text-align: center;
        line-height: normal;
        margin-bottom: 1rem;
        font-size: 14px;
        text-transform: uppercase;
    }*/

.refer-new-modal .uniquelink {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    font-family: "Roboto-Medium", "Roboto Medium", "Roboto", sans-serif;
    color: #000000;
}

.refer-new-modal .btn-padding {
    padding: 7px 10px;
    font-size: 12px;
    text-transform: uppercase;
    cursor: pointer;
    width: auto !important;
    height: 30px !important;
    display: flex;
    justify-content: center;
}

    .refer-new-modal .btn-padding img {
        width: 14px;
        margin: 0px 4px 2px 0;
    }

    .refer-new-modal .btn-padding span {
        text-align: left;
    }

#modalPopupImg {
    position: relative !important;
    top: -20px !important;
    width: 50px !important;
}

.result-modal-heading, .result-modal-content {
    text-align: center;
}

#PortalProfileAddress #d_country, PortalProfileAddress #d_mailingAddressCountry {
    display: none;
}

#pShareToEarnDesc {
    display: none !important;
}


.button-glow {
    background-color: #0071AD;
    -webkit-border-radius: 60px;
    border-radius: 60px;
    border: none;
    color: white;
    cursor: pointer;
    display: inline-block;
    font-family: sans-serif;
    font-size: 20px;
    padding: 5px 15px;
    text-align: center;
    text-decoration: none;
}

@keyframes glowing {
    0% {
        background-color: #000000;
        box-shadow: 0 0 5px #000000;
        color: white;
    }

    50% {
        background-color: #0071AD;
        box-shadow: 0 0 20px #0071AD;
        color: white;
    }

    100% {
        background-color: #000000;
        box-shadow: 0 0 5px #000000;
        color: white;
    }
}

.button-glow {
    animation: glowing 1300ms infinite;
}

.leaders-board {
    background-color: #0171ad;
    border-radius: 3px;
    margin-top: 25px;
}

    .leaders-board h4 {
        text-align: center !important;
        color: white !important;
        padding: 15px 0 15px 0 !important;
        border-radius: 2px !important;
        font-size: 2rem !important;
        margin-bottom: 0;
    }

    .leaders-board .accordion-button {
        font-weight: bold;
        color: white;
        background: transparent;
        text-align: center;
        font-size: 2rem;
    }

    .leaders-board .active-leader {
        background-color: #008244 !important;
        color: white !important;
    }

.action-icon {
    padding-top: .3rem !important;
}


.step-box {
    text-align: left !important;
    max-width: 250px !important;
    margin: auto !important;
}

.step-number {
    display: block !important;
    background-image: linear-gradient(140deg, #fed16d, #febe3a, #ffaa04) !important;
    width: 20px !important;
    height: 20px !important;
    line-height: 20px !important;
    border-radius: 50% !important;
    font-size: 10px !important;
    font-weight: bold !important;
    text-align: center !important;
    margin-left: 20px !important;
}

.step-icon {
    margin-bottom: 15px !important;
    max-width: 80% !important;
}

.nom-image {
    width: 300px;
    padding-top: 4rem;
    padding-left: 1rem;
}

#l_termsConditions, #l_contactByEmail {
    color: #666666 !important;
}

    #l_termsConditions a, #l_contactByEmail a, .js-register-actions a {
        color: #666666 !important;
        text-decoration: underline !important;
    }

        #l_termsConditions a:hover, #l_contactByEmail a:hover, .js-register-actions a:hover {
            color: var(--bs-primary-color) !important;
            text-decoration: underline !important;
        }

.js-show-password {
    display: none !important;
}

#RegisterSubmit {
    color: var(--bs-white) !important;
    text-decoration: none !important;
}

.registration-subheading {
    text-align: center !important;
}

.registration #alertMessageBox {
    margin-top: 0px !important;
}

.js-forgot-password {
    color: white !important;
    text-decoration: underline !important;
}

#alertMessageBox.alert-success .btn-sm.btn-link.alert-link {
    padding: 0 !important;
    color: white !important;
    text-decoration: underline !important;
    font-size: 0.9rem !important;
    font-weight: bold !important;
}

.btn-sm.btn-link.alert-link {
    padding: 0 0 0 10px !important;
    text-decoration: underline !important;
    font-size: 0.9rem !important;
    font-weight: bold !important;
}

    .btn-sm.btn-link.alert-link.js-send-request {
        padding: 0 !important;
        text-decoration: underline !important;
        font-size: 0.9rem !important;
        font-weight: bold !important;
    }

.profile-pic-element {
    display: none !important;
}



.profile-pic-element-main {
    margin-bottom: 0 !important;
}

.how-it-works-steps .row.justify-content-center.mt-4 {
    background-color: #fdb62a !important;
    padding: 25px 0 !important;
}

.how-it-works-steps .step-box {
    text-align: center !important;
    color: white !important;
}

    .how-it-works-steps .step-box .head {
        margin-top: 10px !important;
        color: white !important;
    }

.dashboard-profile-pic, .header-image-new, .container.my-profile .testimonial-avatar {
    display: none !important;
}

.my-profile-name {
    margin-left: 0 !important;
}

.dashboard-reward-image {
    min-height: 200px;
    height: auto;
    display: flex;
}

.qualifying-products-div {
    margin-top: 3rem !important;
}
/* Tooltip container */
.tooltip_custom {
    position: relative;
    display: inline-block;
    border-bottom: 0; /* If you want dots under the hoverable text */
    cursor: pointer;
}

    .tooltip_custom i {
        padding-right: 5px !important;
    }

    /* Tooltip text */
    .tooltip_custom .tooltiptext {
        visibility: hidden;
        width: 215px;
        background-color: rgba(0, 0, 0, 0.8);
        color: #fff;
        text-align: center;
        padding: 1px 0;
        border-radius: 2px;
        /* Position the tooltip text - see examples below! */
        position: absolute;
        z-index: 1;
        left: 20px;
        top: 0px;
    }

    /* Show the tooltip text when you mouse over the tooltip container */
    .tooltip_custom:hover .tooltiptext {
        visibility: visible;
    }

.how-it-works-wrapper {
    display: flex;
    justify-content: center;
}

.how-it-works {
    margin-top: -185px; /* adjust this value until spacing looks perfect */
    padding: 0px !important;
}

.how-it-works-bg {
    background: linear-gradient(0deg, rgba(73, 157, 213, 1) 0%, rgba(29, 106, 183, 1) 100%);
    position: relative;
    overflow: hidden;
    width: 100%; /* narrower width instead of full screen */
    /*max-width: 1400px; */ /* cap width */
    padding-bottom: 50px;
    margin: 0 auto;
}

    /*.how-it-works h2 {
    padding-top: 205px !important;
}*/
    /* Smaller, denser zigzag edge */
    .how-it-works-bg::after {
        content: "";
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 100%;
        height: 8px; /* fine zigzag height */
        background: white;
        clip-path: polygon( 0% 100%, 0.5% 0%, 1% 100%, 1.5% 0%, 2% 100%, 2.5% 0%, 3% 100%, 3.5% 0%, 4% 100%, 4.5% 0%, 5% 100%, 5.5% 0%, 6% 100%, 6.5% 0%, 7% 100%, 7.5% 0%, 8% 100%, 8.5% 0%, 9% 100%, 9.5% 0%, 10% 100%, 10.5% 0%, 11% 100%, 11.5% 0%, 12% 100%, 12.5% 0%, 13% 100%, 13.5% 0%, 14% 100%, 14.5% 0%, 15% 100%, 15.5% 0%, 16% 100%, 16.5% 0%, 17% 100%, 17.5% 0%, 18% 100%, 18.5% 0%, 19% 100%, 19.5% 0%, 20% 100%, 20.5% 0%, 21% 100%, 21.5% 0%, 22% 100%, 22.5% 0%, 23% 100%, 23.5% 0%, 24% 100%, 24.5% 0%, 25% 100%, 25.5% 0%, 26% 100%, 26.5% 0%, 27% 100%, 27.5% 0%, 28% 100%, 28.5% 0%, 29% 100%, 29.5% 0%, 30% 100%, 30.5% 0%, 31% 100%, 31.5% 0%, 32% 100%, 32.5% 0%, 33% 100%, 33.5% 0%, 34% 100%, 34.5% 0%, 35% 100%, 35.5% 0%, 36% 100%, 36.5% 0%, 37% 100%, 37.5% 0%, 38% 100%, 38.5% 0%, 39% 100%, 39.5% 0%, 40% 100%, 40.5% 0%, 41% 100%, 41.5% 0%, 42% 100%, 42.5% 0%, 43% 100%, 43.5% 0%, 44% 100%, 44.5% 0%, 45% 100%, 45.5% 0%, 46% 100%, 46.5% 0%, 47% 100%, 47.5% 0%, 48% 100%, 48.5% 0%, 49% 100%, 49.5% 0%, 50% 100%, 50.5% 0%, 51% 100%, 51.5% 0%, 52% 100%, 52.5% 0%, 53% 100%, 53.5% 0%, 54% 100%, 54.5% 0%, 55% 100%, 55.5% 0%, 56% 100%, 56.5% 0%, 57% 100%, 57.5% 0%, 58% 100%, 58.5% 0%, 59% 100%, 59.5% 0%, 60% 100%, 60.5% 0%, 61% 100%, 61.5% 0%, 62% 100%, 62.5% 0%, 63% 100%, 63.5% 0%, 64% 100%, 64.5% 0%, 65% 100%, 65.5% 0%, 66% 100%, 66.5% 0%, 67% 100%, 67.5% 0%, 68% 100%, 68.5% 0%, 69% 100%, 69.5% 0%, 70% 100%, 70.5% 0%, 71% 100%, 71.5% 0%, 72% 100%, 72.5% 0%, 73% 100%, 73.5% 0%, 74% 100%, 74.5% 0%, 75% 100%, 75.5% 0%, 76% 100%, 76.5% 0%, 77% 100%, 77.5% 0%, 78% 100%, 78.5% 0%, 79% 100%, 79.5% 0%, 80% 100%, 80.5% 0%, 81% 100%, 81.5% 0%, 82% 100%, 82.5% 0%, 83% 100%, 83.5% 0%, 84% 100%, 84.5% 0%, 85% 100%, 85.5% 0%, 86% 100%, 86.5% 0%, 87% 100%, 87.5% 0%, 88% 100%, 88.5% 0%, 89% 100%, 89.5% 0%, 90% 100%, 90.5% 0%, 91% 100%, 91.5% 0%, 92% 100%, 92.5% 0%, 93% 100%, 93.5% 0%, 94% 100%, 94.5% 0%, 95% 100%, 95.5% 0%, 96% 100%, 96.5% 0%, 97% 100%, 97.5% 0%, 98% 100%, 98.5% 0%, 99% 100%, 99.5% 0%, 100% 100% );
    }

.home-rewards {
    text-align: center;
    font-weight: 900;
    background: #ffb902;
    position: relative;
    overflow: hidden;
    padding: 35px 0;
    /* margin-top: -5px !important;*/
    max-width: 100% !important;
    margin-bottom: 5px !important;
}

    /* Top zigzag */
    .home-rewards::before,
    .home-rewards::after {
        content: "";
        position: absolute;
        left: 0;
        width: 100%;
        height: 8px; /* fine zigzag height */
        background: white;
        z-index: 1;
        clip-path: polygon( 0% 100%, 0.5% 0%, 1% 100%, 1.5% 0%, 2% 100%, 2.5% 0%, 3% 100%, 3.5% 0%, 4% 100%, 4.5% 0%, 5% 100%, 5.5% 0%, 6% 100%, 6.5% 0%, 7% 100%, 7.5% 0%, 8% 100%, 8.5% 0%, 9% 100%, 9.5% 0%, 10% 100%, 10.5% 0%, 11% 100%, 11.5% 0%, 12% 100%, 12.5% 0%, 13% 100%, 13.5% 0%, 14% 100%, 14.5% 0%, 15% 100%, 15.5% 0%, 16% 100%, 16.5% 0%, 17% 100%, 17.5% 0%, 18% 100%, 18.5% 0%, 19% 100%, 19.5% 0%, 20% 100%, 20.5% 0%, 21% 100%, 21.5% 0%, 22% 100%, 22.5% 0%, 23% 100%, 23.5% 0%, 24% 100%, 24.5% 0%, 25% 100%, 25.5% 0%, 26% 100%, 26.5% 0%, 27% 100%, 27.5% 0%, 28% 100%, 28.5% 0%, 29% 100%, 29.5% 0%, 30% 100%, 30.5% 0%, 31% 100%, 31.5% 0%, 32% 100%, 32.5% 0%, 33% 100%, 33.5% 0%, 34% 100%, 34.5% 0%, 35% 100%, 35.5% 0%, 36% 100%, 36.5% 0%, 37% 100%, 37.5% 0%, 38% 100%, 38.5% 0%, 39% 100%, 39.5% 0%, 40% 100%, 40.5% 0%, 41% 100%, 41.5% 0%, 42% 100%, 42.5% 0%, 43% 100%, 43.5% 0%, 44% 100%, 44.5% 0%, 45% 100%, 45.5% 0%, 46% 100%, 46.5% 0%, 47% 100%, 47.5% 0%, 48% 100%, 48.5% 0%, 49% 100%, 49.5% 0%, 50% 100%, 50.5% 0%, 51% 100%, 51.5% 0%, 52% 100%, 52.5% 0%, 53% 100%, 53.5% 0%, 54% 100%, 54.5% 0%, 55% 100%, 55.5% 0%, 56% 100%, 56.5% 0%, 57% 100%, 57.5% 0%, 58% 100%, 58.5% 0%, 59% 100%, 59.5% 0%, 60% 100%, 60.5% 0%, 61% 100%, 61.5% 0%, 62% 100%, 62.5% 0%, 63% 100%, 63.5% 0%, 64% 100%, 64.5% 0%, 65% 100%, 65.5% 0%, 66% 100%, 66.5% 0%, 67% 100%, 67.5% 0%, 68% 100%, 68.5% 0%, 69% 100%, 69.5% 0%, 70% 100%, 70.5% 0%, 71% 100%, 71.5% 0%, 72% 100%, 72.5% 0%, 73% 100%, 73.5% 0%, 74% 100%, 74.5% 0%, 75% 100%, 75.5% 0%, 76% 100%, 76.5% 0%, 77% 100%, 77.5% 0%, 78% 100%, 78.5% 0%, 79% 100%, 79.5% 0%, 80% 100%, 80.5% 0%, 81% 100%, 81.5% 0%, 82% 100%, 82.5% 0%, 83% 100%, 83.5% 0%, 84% 100%, 84.5% 0%, 85% 100%, 85.5% 0%, 86% 100%, 86.5% 0%, 87% 100%, 87.5% 0%, 88% 100%, 88.5% 0%, 89% 100%, 89.5% 0%, 90% 100%, 90.5% 0%, 91% 100%, 91.5% 0%, 92% 100%, 92.5% 0%, 93% 100%, 93.5% 0%, 94% 100%, 94.5% 0%, 95% 100%, 95.5% 0%, 96% 100%, 96.5% 0%, 97% 100%, 97.5% 0%, 98% 100%, 98.5% 0%, 99% 100%, 99.5% 0%, 100% 100% );
    }

    /* top edge */
    .home-rewards::before {
        top: -1px; /* remove any visible line */
        transform: rotate(180deg); /* flips zigzag to point downward */
    }

    /* bottom edge */
    .home-rewards::after {
        bottom: -1px; /* remove bottom line */
    }

}
/* Keep carousel centered while preserving original layout */
.home-rewards .owl-carousel {
    display: block !important;
    margin: 0 auto;
}

/* Let Owl control the flex layout, but center its stage inside container */
.home-rewards .owl-stage-outer {
    display: flex;
    justify-content: center;
}

.home-rewards .owl-stage {
    margin: 0 auto !important;
}

/* Preserve ticket alignment & look */
.home-rewards .owl-item {
    float: none !important;
    display: inline-block !important;
    text-align: center;
}

.home-rewards h2 {
    font-size: 2.8rem; /* Larger for visual impact */
    font-weight: 900; /* Super bold */
    color: #C30000;
    text-transform: uppercase;
    letter-spacing: 1px; /* Slight spacing for readability */
    margin-bottom: 10px;
    line-height: 1.1; /* Tight vertical alignment */
}

.home-rewards h5 {
    font-size: 16px !important;
    font-weight: 100;
}

.shortdesc {
    display: none !important;
}

.home-rewards h6 {
    display: none !important;
}

.redeemBtn {
    padding: 5px 50px !important;
    font-size: 14px;
    letter-spacing: 0.5px
}

.display-17.dashboard-username {
    color: #000 !important;
}

.dashboard-points-balance {
    color: var(--bs-black);
}

.strikethrough-heading.h4 {
    color: #000 !important;
}

.Reg {
    margin-top: -10px;
    margin-bottom: 10px;
}

#owl-rewards .owl-wrapper,
#owl-rewards .owl-stage {
    width: 100% !important;
}

.card-rewards-dashboard {
    justify-content: center;
}

.dashboard-rewards {
    padding: 8px 25px !important;
}

.dashboard {
    padding: 5px 0;
    background: #FFFDF8;
}

.home-header {
    background: #1E6CB8;
}

.earnpoint-bg {
    background: #FFFFFF;
    padding: 35px 0 0 0 !important;
}

.js-button-close {
    width: 85px;
    padding: 3px;
}

.change-password {
    padding: 12px 25px !important;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.cancelBtn {
    padding: 10px 48px !important;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    margin-left: -7px !important;
}

.bg {
    background: #FFFDF8;
}

.mt-custom {
    margin-top: 0 !important;
}

.earnpoint-bg .container {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.mb-custom {
    margin-bottom: 2rem !important;
}


@media screen and (max-width: 575px) {
    .loginbtn {
        padding: 12px 6px;
        font-size: 11px;
        margin-left: -7px !important
    }
}

@media screen and (max-width: 575px) {
    .Savebtn {
        padding: 12px 30px;
        font-size: 0.9rem;
        border-radius: 65px;
        text-transform: uppercase;
        font-weight: 500;
    }
}

@media screen and (max-width: 360px) {
    .profile-button,
    .cancelBtn,
    .Savebtn {
        padding: 12px 30px !important;
        margin-right: 0 !important;
        display: block;
        text-align: center;
        font-size: 0.9rem;
        border-radius: 65px;
        text-transform: uppercase;
        font-weight: 500;
    }
}

.logon-box-margin {
    margin: -45px auto 0 !important;
}

#d_termsConditions, #d_contactByEmail {
    display: flex !important;
}
