﻿
.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: 7px 40px;
    font-size: 0.9rem;
    border-radius: 0px;
    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: black !important;
    text-decoration: none !important;
}

.registration-subheading {
    text-align: center !important;
}

.registration #alertMessageBox {
    margin-top: -7px !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;
}

.owl-carousel img {
    min-height: 180px !important;
    height: auto !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;
}
