@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

.lx-d-flex {
    display: flex;
}

.lx-justify-content-between {
    justify-content: space-between;
}

/* scope everything to #lx-ddw */
:root {
    --lx-font-family: "Noto Sans";
    --lx-primary-color: #B98D00;
    --lx-dark-primary-color: #9B7B26;
    --lx-text-color: #1A1A1A;
}

#lx-ddw {
    font-family: var(--lx-font-family);
    color: var(--lx-text-color);
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

#lx-ddw * {
    box-sizing: border-box;
}

#lx-ddw .lx-wrap {
    position: relative;
}

#lx-ddw .lx-material-content {
    width: 100%;
    background-color: #FAFAFA;
    padding: 40px 0 20px;
}

#lx-ddw .lx-material-wrap {
    max-width: 1200px;
    margin: 0 auto;
}

#lx-ddw .lx-header {
    display: flex;
    flex-direction: column;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    /* gap: 1rem;
    margin: 0 0 12px; */
}

#lx-ddw .lx-header-desktop {
    display: flex;
    flex-direction: column;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    /* gap: 1rem;
    margin: 0 0 12px; */
}

#lx-ddw .lx-title {
    font-family: var(--lx-font-family);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 150%;
    letter-spacing: 0;
    text-transform: capitalize;
    color: var(--lx-text-color);
}

#lx-ddw .lx-header-desktop .lx-subtitle,
#lx-ddw .lx-header .lx-subtitle {
    font-family: var(--lx-font-family);
    font-weight: 600;
    font-size: 22px;
    line-height: 30px;
    letter-spacing: 0;
    margin-bottom: 10px;
    color: var(--lx-text-color);
}

#lx-ddw .lx-header-desktop p,
#lx-ddw .lx-header p {
    font-family: var(--lx-font-family);
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0.15px;
    margin-bottom: 10px;
    color: var(--lx-text-color);
}

#lx-ddw .lx-counter {
    font-size: 12px;
    color: #444;
}

#lx-ddw .lx-counter strong {
    margin: 0 1px;
}

#lx-ddw .lx-zones {
    display: flex;
    gap: 20px;
    margin: 0 0 20px;
    position: sticky;
    top: 0;
    z-index: 2;
    border-bottom: 2px solid var(--lx-primary-color);
    border-radius: 0;
    position: relative;
}

#lx-ddw .lx-zone {
    padding: 16px 30px;
    background: #F4F3F1;
    color: #8A8B8B;
    border-radius: 0px;
    cursor: pointer;
    width: 33.33%;
    font-family: var(--lx-font-family);
    font-weight: 600;
    font-size: 30px;
    letter-spacing: 0.3px;
    text-align: start;
}

#lx-ddw .lx-zone.active {
    background: var(--lx-primary-color);
    color: #fff;
}

#lx-ddw .lx-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(214px, 1fr));
    /* grid-template-columns: repeat(auto-fill, minmax(calc(20% - 24px), 1fr)); */
    column-gap: 24px;
    row-gap: 15px;
}

@media screen and (max-width:768px) {
    #lx-ddw .lx-grid {
        grid-template-columns: repeat(auto-fill, minmax(calc(50% - 10px), 1fr));
        gap: 10px;
    }
}

#lx-ddw .lx-card {
    border: 1px solid #eee;
    border-radius: 0px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .04);
    cursor: pointer;
    outline: none;
    position: relative;
}

#lx-ddw .lx-imgwrap {
    width: 100%;
    height: 100%;
    aspect-ratio: 4/4;
    background: #f4f4f4;
}

#lx-ddw .lx-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#lx-ddw .lx-card-body {
    padding: 7px 0;
    position: absolute;
    z-index: 10;
    bottom: 0;
    text-align: center;
    background: #3E3E3EB2;
    color: white;
    width: 100%;
}

#lx-ddw .lx-card-title {
    margin: 0;
    color: #fff;
    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.07px;
}

#lx-ddw .lx-card-desc {
    margin: 0;
    color: #555;
    font-size: 13px;
}

#lx-ddw .lx-tick {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 33px;
    height: 33px;
    border-radius: 999px;
    background: #43A047;
    color: #fff;
    display: none;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

#lx-ddw .lx-tick.on {
    display: flex;
}

#lx-ddw .lx-toolbar {
    display: flex;
    flex-direction: column;
    /* gap: 10px; */
    margin: 30px 0 0;
}

#lx-ddw .lx-toolbar .lx-pledge {
    background: var(--lx-primary-color);
    color: #fff;
    border: none;
    padding: 10px 14px;
    border-radius: 0px;
    cursor: pointer;
    font-family: var(--lx-font-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

#lx-ddw .lx-toolbar .lx-pledge[disabled] {
    opacity: .5;
    cursor: not-allowed;
}

#lx-ddw .lx-toolbar .lx-reset {
    background: #fff;
    color: #838383;
    border: 1px solid var(--lx-primary-color);
    padding: 10px 14px;
    border-radius: 0px;
    cursor: pointer;
    text-transform: uppercase;

    font-family: var(--lx-font-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.5px;

}

#lx-ddw .lx-pager {
    display: flex;
    align-items: center;
    gap: .75rem;
    justify-content: center;
    padding: 1rem 0;
}

#lx-ddw .lx-pager button[disabled] {
    opacity: .5;
    cursor: not-allowed;
}

#lx-ddw .lx-modal-b {
    position: fixed;
    inset: 0;
    /* background:rgba(0,0,0,.5); */
    transition: opacity .2s;
    z-index: 9998;
}

#lx-ddw .backdrop-hidden {
    opacity: 0;
    pointer-events: none;
}

/* =============== lx-certificate-popup ===================== */

#lx-ddw .lx-modal.lx-certificate-popup {
    max-width: 100vw;
    width: 100vw;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
}

#lx-ddw .lx-modal.lx-certificate-popup .lx-modal-inner {
    padding: 32px;

}

#lx-ddw .lx-modal.lx-certificate-popup .lx-modal-close {
    position: absolute;
    right: 20px;
    top: 24px;
}

/* =============== lx-certificate-popup ===================== */

#lx-ddw .lx-modal {
    position: absolute;
    right: 0px;
    top: -20px;
    /* height: 100%; */
    width: 100%;
    max-width: 459px;
    background: #fff;
    box-shadow: -6px 0 16px rgba(0, 0, 0, .1);
    transform: translateX(100%);
    transition: transform .2s;
    z-index: 9999;
    overflow: auto;
}

#lx-ddw .lx-modal.modal-hidden {
    transform: translateX(100%);
    right: -100%;
}

#lx-ddw .lx-modal:not(.modal-hidden) {
    transform: translateX(0);
}

@media screen and (max-width:556px) {
    #lx-ddw .lx-modal {
        max-width: 311px;
    }
}

#lx-ddw .lx-modal .lx-modal-inner {
    padding: 30px 20px;
    outline: none;
}

#lx-ddw .lx-modal.lx-material-popup .lx-modal-inner {
    padding: 30px 5px 30px 35px;
}

#lx-ddw .lx-modal .lx-modal-close {
    position: absolute;
    float: right;
    right: 30px;
    top: 30px;
    background: #fff;
    /* border: 1px solid #ddd; */
    border-radius: 999px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    color: #000;
    font-size: 12px;
}

#lx-ddw .lx-modal.lx-auth-popup .lx-modal-close {
    right: 20px;
    top: 20px;
}

#lx-ddw .lx-modal img {
    width: 100%;
    /* height: auto; */
    border-radius: 0px;
    /* margin: .5rem 0 1rem; */
    object-fit: cover;
}

#lx-ddw .lx-modal .product-description-img.info-img {
    width: 100px !important;
    height: 35px;
    object-fit: contain;
    text-align: start;
}

#lx-ddw .lx-modal .product-description-img.material {
    width: 100% !important;
    height: 61px;
    object-fit: cover;
}

#lx-ddw #lx-modal-title {
    font-family: var(--lx-font-family);
    font-weight: 700;
    font-size: 26px;
    line-height: 150%;
    letter-spacing: 0;
    margin: 0;
    padding-bottom: 10px;
    color: var(--lx-text-color);
    border-bottom: 1px solid var(--lx-primary-color);
}

#lx-ddw .lx-auth-popup #lx-modal-title {
    font-family: var(--lx-font-family);
    font-weight: 700;
    font-size: 60px;
    line-height: 1.25;
    letter-spacing: 0;
    text-align: center;
    padding-bottom: 25px;
    color: var(--lx-text-color);
    border: none;
    max-width: 457px;
    margin: 0 auto;
}

.lx-welcome-modal-text {
    font-family: var(--lx-font-family);
    font-weight: 400;
    font-size: 30px;
    line-height: 1.2;
    letter-spacing: 0.08px;
    color: #6F6F6F;
    margin-bottom: 50px;
}

#lx-ddw .product-popup {
    margin: 35px 0 0 0;
    padding: 5px 5px 0px 10px;
}

#lx-ddw .product-popup-box.last {
    border: none;
}

#lx-ddw .product-popup-box {
    border-bottom: 1px solid #4D4D4D80;
    padding: 15px 0;
}

#lx-ddw .lx-impact {
    display: flex;
    gap: 1rem;
    padding: .5rem 0;
    color: #333;
}

#lx-ddw .lx-sticky-tabs {
    position: sticky;
    top: 0;
    background: #fff;
    padding-bottom: 8px;
    z-index: 2;
}



#lx-ddw .lx-gate label {
    display: block;
    margin: 8px 0;
}

#lx-ddw .lx-gate input[type="text"],
#lx-ddw .lx-gate input[type="email"] {
    font-family: 'Montserrat';
    width: 100%;
    padding: 20px 30px;
    border: 1px solid #E0E0E0;
    border-radius: 0px;
}

#lx-ddw .lx-gate input[type="text"]::placeholder,
#lx-ddw .lx-gate input[type="email"]::placeholder {
    color: #1A1A1A85;
}

#lx-ddw .lx-gate button {
    margin-top: 10px;
    background: #b8974f;
    color: #fff;
    border: none;
    padding: 13px 14px;
    border-radius: 0px;
    cursor: pointer;
    width: 100%;
    text-transform: uppercase;
}

#lx-ddw .lx-consent {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #444;
}

#lx-ddw .lx-cert img {
    width: 100%;
    height: auto;
    border: 1px solid #eee;
    border-radius: 12px;
}

#lx-ddw .lx-share {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

#lx-ddw .lx-btn {
    /* display: inline-block; */
    padding: 10px 14px;
    /* border-radius: 8px; */
    /* border: 1px solid #ddd; */
    text-decoration: none;
    /* color: #111; */
    /* background: #fff; */
    cursor: pointer;
}

.lx-divider {
    border-bottom: 1px solid #4D4D4D80;
    width: 100%;
}

#lx-ddw #lx-modal.lx-auth-popup {
    position: fixed;
    width: 100%;
    max-width: 100%;
    top: 5%;
    left: 0;
}

#lx-ddw #lx-modal.lx-auth-popup .lx-welcome-text {
    font-family: var(--lx-font-family);
    font-weight: 400;
    font-size: 30px;
    line-height: 100%;
    letter-spacing: 0.15px;
    text-align: center;
    color: #6F6F6F;
    margin-bottom: 10px;
}

#lx-ddw .welcome-note {
    font-family: 'Montserrat';
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0;
    color: #6F6F6FB2;
}

.share_buttons {
    border: 1px solid var(--lx-primary-color);
    width: 100%;
    text-decoration: none;
    color: #181918;
    text-align: center;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding-left: 40px;
    font-family: 'Noto Sans';
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: 0.05em;
    text-transform: capitalize;

}

#lx-ddw .lx-category-block {
    position: relative;
}

#lx-ddw .lx-category-heading {
    font-family: var(--lx-font-family);
    font-weight: 700;
    font-size: 32px;
    line-height: 150%;
    letter-spacing: 0;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--lx-text-color);
}

#lx-ddw .lx-category {
    border-bottom: 1px solid #4D4D4D80;
}

#lx-ddw .lx-category-text {
    font-family: var(--lx-font-family);
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0.15px;
    color: var(--lx-text-color);
    margin: 10px 0 40px;
}

@media screen and (min-width:768px) {

    #lx-ddw .lx-desktop-hide {
        display: none;
    }
}

#lx-ddw .lx-cricle {
    display: none;
}



#lx-ddw .lx-modal.lx-certificate-popup h2.title {
    font-family: var(--lx-font-family);
    font-weight: 700;
    font-size: 20px;
    line-height: 25px;
    letter-spacing: 0;
    text-align: center;
    margin: 0 auto 2px;
    max-width: 290px;
}

#lx-ddw .lx-modal.lx-certificate-popup .thanks-text {
    font-family: var(--lx-font-family);
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0.15px;
    max-width: 315px;
    margin-top: 0;
    margin-bottom: 15px;
}


/* ==================== Support =================== */
#lx-ddw .lx-support {}

#lx-ddw .lx-support-wrap {
    border-top: 1px solid #4D4D4D80;
    max-width: 1200px;
    padding-top: 20px;
    margin: 20px auto;
}

#lx-ddw .lx-support .lx-d-flex {
    gap: 20px;
    flex-wrap: nowrap;
}

#lx-ddw .lx-support h2 {
    font-family: var(--lx-font-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 0.07px;
    margin: 0 0 5px 0;
}

#lx-ddw .lx-support img {
    width: 80px;
    height: 50px;
    max-width: 100%;
    object-fit: contain;
}


.col-1,
.col-2 {
    width: 50%;
}

.d-flex {
    display: flex;
}

.fs-20 {
    font-size: 20px !important;
}

.fw-600 {
    font-weight: 600 !important;
}

.prdouct-info.fw-600 {
    color: #5E5E5E;
}

.product-label {
    font-family: 'Poppins';
    font-weight: 500;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0;
    vertical-align: middle;
    text-transform: capitalize;
    color: #B98D00;
    margin-bottom: 10px !important;
}

.product-info {
    font-family: 'Poppins';
    font-weight: 500;
    font-size: 18px;
    line-height: 1.3;
    letter-spacing: 0;
    vertical-align: middle;
    text-transform: capitalize;
    margin-top: 0px !important;
    margin-bottom: 0px !important;
    color: #727272;
}

.product-info.material-name {
    font-family: 'Poppins';
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0;
    color: #5E5E5E;
}

.recycle-img {
    max-width: 100px !important;
}

.bio-based-img {
    max-width: 100px !important;
}

/* .product-popup img.product-description-img {
    width: 100% !important;
    max-width: 100% !important;
} */

/* .product-popup img {
    max-width: 100px !important;
    height: 50px !important;
} */

.lx-download-btn {
    font-size: 14px;
    text-align: center;
    color: var(--lx-text-color);
    text-decoration: none;
}

/* ================= Responsive ================= */

@media screen and (max-width:768px) {

    #lx-ddw .lx-support-wrap {
        text-align: center;
    }


    #lx-ddw .lx-modal.lx-certificate-popup {
        top: 20%;
    }

    .product-info.material-name {
        font-size: 14px;
    }


    /* ==================== Support =================== */
    #lx-ddw .lx-support .lx-d-flex {
        gap: 0px;
    }

    #lx-ddw .lx-support img {
        width: 65px;
    }

    /* ==================== Support =================== */

    /* #lx-ddw .lx-modal.lx-material-popup {
        position: fixed;
        top: 50% !important;
        right: 0 !important;
        transform: translate(100%, -50%) !important;
        max-height: 80vh;
        height: 100%;
    } */

    #lx-ddw .lx-modal.lx-material-popup {
        position: fixed;
        top: 60% !important;
        right: 0 !important;
        transform: translate(100%, -50%) !important;
        max-height: 100vh;
        height: 100%;
    }

    #lx-ddw .lx-modal.lx-material-popup:not(.modal-hidden) {
        transform: translate(0, -50%) !important;
    }

    #lx-ddw .lx-modal.lx-auth-popup .lx-modal-inner {
        padding: 30px 26px;
    }

    #lx-ddw #lx-modal.lx-auth-popup {
        top: 16%;
    }

    #lx-ddw .lx-modal.lx-auth-popup .lx-modal-close svg {
        width: 15px;
        height: 15px;
    }

    #lx-ddw .lx-material-content {
        background-color: #ffffff;
    }

    #lx-ddw .lx-header .lx-title {
        font-size: 20px;
        line-height: 150%;
        margin-bottom: 10px;
    }

    #lx-ddw .lx-header .lx-subtitle {
        font-size: 12px;
        line-height: 100%;
        margin-bottom: 10px;
        font-weight: 700;
    }

    #lx-ddw .lx-header p {
        font-weight: 400;
        font-size: 12px;
        line-height: 20px;
    }

    #lx-ddw .lx-header h2 {
        font-family: var(--lx-font-family);
        font-weight: 700;
        font-size: 16px;
        line-height: 150%;
        letter-spacing: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 5px 0;
    }

    #lx-ddw .lx-header h2 span {
        font-family: var(--lx-font-family);
        font-weight: 700;
        font-size: 20px;
        line-height: 150%;
        letter-spacing: 0;
    }

    #lx-ddw .lx-category {
        border: none;
    }

    #lx-ddw .lx-material-content {
        padding: 20px 0;
    }

    #lx-ddw .lx-zones {
        gap: 10px;
    }

    #lx-ddw .lx-zone {
        font-family: var(--lx-font-family);
        font-weight: 600;
        font-size: 16px;
        line-height: 100%;
        letter-spacing: 0.15px;
        padding: 12px 16px;
    }

    #lx-ddw .lx-cricle {
        display: block;
        border: 4px solid #B3B2B0;
        width: 15px;
        height: 15px;
        border-radius: 50px;
        margin-bottom: 10px;
    }

    #lx-ddw .lx-zone.active .lx-cricle {
        border: 4px solid #fff;
    }

    #lx-ddw .lx-category-heading {
        font-family: var(--lx-font-family);
        font-weight: 700;
        font-size: 22px;
        line-height: 100%;
        letter-spacing: 0;
        margin-bottom: 10px;
        color: var(--lx-text-color);
    }

    #lx-ddw .lx-counter {
        font-family: var(--lx-font-family);
        font-weight: 700;
        font-size: 14px;
        line-height: 150%;
        letter-spacing: 0;
        color: var(--lx-text-color);
    }

    #lx-ddw .lx-category-text {
        font-size: 12px;
        line-height: 20px;
        margin: 10px 0 20px;
    }

    #lx-ddw .lx-end-of-journey-text {
        font-family: var(--lx-font-family);
        font-weight: 700;
        font-size: 14px;
        line-height: 100%;
        letter-spacing: 0;
        margin-bottom: 16px;
        margin-top: 15px;
        color: var(--lx-text-color);
    }

    #lx-ddw .lx-card-body {
        padding: 1.5px 0;
    }




    /* ================== welcome popup ===================== */

    #lx-ddw #lx-modal.lx-auth-popup .lx-welcome-text {
        font-size: 18px;
        line-height: 100%;
        margin-bottom: 8px;
    }

    #lx-ddw .lx-auth-popup #lx-modal-title {
        font-size: 30px;
        line-height: 40px;
        padding-bottom: 20px;
        margin: 0 auto;
        max-width: 230px;
    }

    .lx-welcome-modal-text {
        font-size: 16px;
        line-height: 25px;
        margin-bottom: 30px;
    }

    #lx-ddw .lx-gate input[type="text"],
    #lx-ddw .lx-gate input[type="email"] {
        padding: 10px 15px;
        font-size: 14px;
        line-height: 100%;
    }

    #lx-ddw .lx-gate button {
        font-weight: 500;
        font-size: 18px;
        line-height: 150%;
        letter-spacing: 1px;

    }

    #lx-ddw .welcome-note {
        font-size: 10px;
        line-height: 15px;
        letter-spacing: 0;
        margin: 0;
    }

    /* ================== welcome popup ===================== */

    /* ============= material info popup ============ */
    #lx-ddw .lx-modal.lx-material-popup #lx-modal-title {
        font-size: 18px;
        line-height: 150%;
        letter-spacing: 0;
        margin-bottom: 0;
        padding-bottom: 5px;
    }

    #lx-ddw .lx-modal.lx-material-popup .lx-modal-inner {
        padding: 20px 16px;
    }

    #lx-ddw .product-popup {
        margin: 20px 0;
        padding: 0 10px;
    }

    #lx-ddw .product-popup-box {
        padding: 9px 0;
    }

    #lx-ddw .lx-modal.lx-material-popup .lx-modal-close svg {
        width: 12px;
        height: 12px;
    }

    #lx-ddw .lx-modal.lx-material-popup .lx-modal-close {
        top: 20px;
        right: 20px;
    }

    #lx-ddw .lx-modal .product-description-img.material {
        height: 46px;
    }

    /* ============= material info popup ============ */

    #lx-ddw .lx-modal {
        top: -85px;
        right: -30px;
    }

    body:has(#lx-ddw .lx-modal:not(.modal-hidden))::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 111;
    }

    .product-label {
        font-size: 12px;
        margin-bottom: 6px !important;
    }

    .product-info {
        font-size: 14px;
        margin-bottom: 0 !important;
    }

    .product-popup-box.last {
        padding-bottom: 40px !important;
    }

    #lx-ddw .lx-card-title {
        font-size: 10px;
    }

    #lx-ddw .lx-card {
        max-height: 107px;
    }
}

@media screen and (max-width:700px) {
    #lx-ddw .lx-modal {
        right: -20px;
    }
}