@font-face {
    font-family: 'MagnoliaScript';
    src: url('../fonts/MagnoliaScript.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

:root {
    --nurito: "Nunito", sans-serif;
    --noto: "Noto Sans Khojki", sans-serif;
    --archivo: "Archivo Black", sans-serif;
    --merr: "Merriweather Sans", sans-serif;
    --Magnolia: 'MagnoliaScript', sans-serif;
}


/*mlMainPage.asp*/

.productOuter-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    /* flex-direction: column; */
    align-items: center;
    justify-content: center;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
}

.productOuter-container .product-container {
    display: flex;
    flex-direction: column;
    width: 40%;
    margin-bottom: 20px;
    align-items: center;
    max-width: 450px;
    /* margin-left: auto;
    margin-right: auto; */
}

.product-container.invisible {
    visibility: hidden;
}

.product-container .productLeft-container {
    width: 100%;
    min-width: 100%;
}

.productLeft-container {
    background: #ffe4c4;
    width: 300px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-container:nth-child(even) .productLeft-container {
    background: #708474;
}


.productLeft-container img {
    width: 250px;
    height: 250px;
}

.productRight-container {
    display: flex;
    align-items: center;
    background: #f1f1f1;
    width: 100%;
    min-height: 350px;
    max-height: fit-content !important;
}

.productRight-container .productRightInner-container{
    margin: 0 25px 0 35px;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.productRightInner-container .prodTitle{
    font-size: 16px;
    font-weight: bold;
    padding: 5px 0 5px 0;
    margin-bottom: 10px;
    font-family: "Nunito", sans-serif;
    width: 100% !important;
    color:#000000;
    overflow: hidden;
	text-overflow: ellipsis !important;	
    display:block;
    line-height: 25px;
}

.productRightInner-container .prodDesc {
    font-size: 14px;
    line-height: 17px;
    margin-bottom: 25px;
    font-family: "Nunito", sans-serif;
   /* overflow: hidden;*/
    /* white-space: nowrap; */
    text-overflow: ellipsis;
    max-height: 25px;
    /* width: 70%; */
}

.productRightInner-container .prodCode {
    font-size: 15px;
    color: #6b6b6b;
    margin-bottom: 15px;
}

.productRightInner-container .prodPrice {
    font-size: 18px;
    font-weight: 700;
    font-family: "Nunito", sans-serif;
    margin-bottom: 15px;
}

.productRightInner-container .prodRewardPt {
    font-size: 18px;
    font-weight: 700;
    font-family: "Nunito", sans-serif;
    margin-bottom: 15px;
    color: green;
}

.quantityOuter-container {
    display: flex;
    flex-direction: column;
}

.quantityOuter-container span {
    font-size: 12px;
}

.quantityOuter-container .quantity-container {
    display: flex;
    width: 100%;
} 

.quantity-container button {
    width: 30px;
    height: 30px;
    padding: 0;
    background: none;
    border:0.2px solid grey;
    color: #000;
    font-size:20px;
    font-family: 'Varela Round', sans-serif;
    min-width:30px;
	max-width: 30px;
}

.quantity-container .minusBtn {
    border-right: none;
}

.quantity-container .addBtn {
    border-left: none;
}

.quantity-container input {
    border: 0.2px solid grey;
    border-left: none;
    border-right: none;
    text-align: center;
    width: 25px;
    height: 30px;
    max-height: 30px;
    font-size: 17px;
    background: transparent !important;
}

.button-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.button-container .ATCBtn {
    font-size:15px;
    font-family: 'Varela Round', sans-serif;
    width: 120px;
    height: 40px;
    margin-top: 10px;
    border:0.2px solid grey;
    background: #cccccc;
    margin-left: 5px;
}

.button-container .ATCBtn:hover {
    background: #ffffff;
}


@media (max-width: 1100px) {
    .productOuter-container {
        gap: 5px;
    }
    .productOuter-container .product-container {
        width: 48%;
        /* min-width: 220px; */
    }

    .productOuter-container .product-container.newPkg, .productOuter-container .product-container.pwpPkg {
        width: 50%;
        min-width: 330px !important;
    }

    .product-container .productLeft-container {
        min-width: 100%;
    }
    .product-container .productRight-container {
        width: 100%;
    }

    .productLeft-container img {
        width: 250px;
        height: 250px;
    }

    .productRight-container .productRightInner-container {
        margin: 5px 0 0 5px;
    }
}

@media (max-width: 800px) {
    .quantity-container input {
        max-width: 25px !important;
    }

    .product-container.newPkg .productLeft-container, .product-container.newPkg .productRight-container {
        width: 85% !important;
    }
}

@media (max-width: 610px) {
    
    .product-container .productLeft-container {
        height: 200px;
    }
    .product-container .productRight-container {
        min-height: 320px;
        max-height: 320px;
    }

    .productLeft-container img {
        width: 145px;
        height: 145px;
    }
}

@media (max-width: 480px) {
    .productRightInner-container .prodTitle {
        font-size: 16px;
        padding: 0;
        line-height: 16px;
        height: 32px;
    }

    .productRightInner-container .prodDesc {
        font-size: 12px;
        margin-bottom: 0;
    }

    .productRightInner-container .prodCode {
        font-size: 13px;
        height: 20px;
        padding-bottom: 5px;
    }

    .productRightInner-container .prodPrice {
        font-size: 15px;
        margin-bottom: 10px;
    }

    

    .button-container {
        flex-direction: column;
        align-items: start;
    }
    .button-container .ATCBtn {
        margin: 0;
    }
}

/*mlRepurchaseOnline1.asp*/

.delivery-container {
    display: flex;
    flex-direction: row;
    width: 80%;
}

.delivery-container .deliverLeft-container {
    width: 50%;
    height: 100%;
    display:flex;
    flex-direction: column;
    /* border: 2px solid blue; */
}
    
.deliverLeft-container .companyIcon-container img{
    width: 180px;
    height: 180px;
}

.deliverLeft-container .process-container {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.process-container .processBar {
    font-size: 15px;
    margin-bottom: 25px;
}

.process-container div {
    display: flex;
    flex-direction: row;
}

.process-container div span {
    margin: 5px 10px 0 0;
    font-size: 15px;
    font-weight: 700;   
}

.process-container div select {
    height: 35px;
    text-align: center;
    font-size: 15px;
    font-family: 'Varela Round', sans-serif;
    max-width: 220px !important;
}

.deliverLeft-container .form-container {
    display: flex;
    flex-direction: column;
}

.form-container .deliveryLabel {
    padding-bottom: 20px;
    font-size: 15px;
    font-weight: 700;
}

.form-container .deliveryInput-container {
    display: flex;
    flex-direction: row;
    position: relative;
    align-items: center;
}

.deliveryInput-container div {
    width: 45%;
}

.deliveryInput-container input {
    width: 100% !important;
    height: 40px;
    outline: none;
    padding-top: 10px;
    border: 0.5px solid #000000;
    margin-bottom: 6px;
    max-width: 100% !important;
}

.deliveryInput-container select {
    height: 56px;   
    padding-top: 15px;
    width: 100%;
    margin-bottom: 6px;
    max-width: 100% !important;
}

.deliveryInput-container span {
    position: absolute;
    top: 0;
    padding: 10px;
    pointer-events: none;
    color: #a3a3a3;
    transition: 0.3s;
    margin-top: 7px;
}

.deliveryInput-container div:nth-child(1) span {
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px;
    pointer-events: none;
    color: #a3a3a3;
    transition: 0.3s;
    margin-top: 7px;
}



.deliveryInput-container input:focus ~ span,
.deliveryInput-container select ~ span,
.deliveryInput-container input:valid ~ span,
.deliveryInput-container div input:focus ~ span,
.deliveryInput-container div input:valid ~ span  {
    color: #494949;
    transform: translateY(-15px);
    font-size: 12px;
}

.deliverLeft-container .button-container {
    margin-top: auto;
    
}

.deliverLeft-container .button-container input {
    border: none;
    outline: none;
    font-size: 20px;
    text-align: left;
    height: 35px;
    background: #ffffff;
    font-family: "Nunito", sans-serif;
}

.deliverLeft-container .button-container input:hover {
    color: #ff0000;
}

.deliverLeft-container .button-container button {
    outline: none;
    font-size: 15px;
    text-align: center !important;
    text-align: left;
    width: 180px;
    height: 40px;
    background: #385454;
    color: #ffffff;
    border-radius: 5px !important;
    font-family: "Nunito", sans-serif;
}

.deliverLeft-container .button-container button:hover {
    background: #007932;
}

/*mlRepurcaseOnline1.asp Right*/
.deliverRight-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 50%;
    height: 100%;
}

.deliverRight-container .deliverRightInner-container {
    background: #f8f4f4;
    width: 90%;
    min-width: 340px;
    display: flex;
    flex-direction: column;
    padding: 50px 0 50px 0;
    align-items: center;
    /* height: 550px;*/
    margin-top: 100px;
}

.deliverRightInner-container .selectedProdList-container {
    display: flex;
    width: 90%;
    height: 250px;
    max-height: 250px;
    overflow-y: auto;
    flex-direction: column;
    margin-bottom: 15px;
}

.selectedProdList-container .selectedProd-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    align-items: end;
    margin-bottom: 15px;
} 

.selectedProdInner-container {
    display: flex;
    flex-direction: row;
    width: 65%;
}

.selectedProd-container .selectedProdPrice {
    font-family: "Nunito", sans-serif;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 5px;
}


.selectedProdInner-container img {
    width: 100px;
    height: 100px;
    min-width: 100px;
    min-height: 100px;
    border-radius: 5px !important;
}

.selectedProdDetails {
    position: relative;
    display: inline-block;
}

.selectedProdDetails div {
    background: #000000;
    width: 20px;
    height: 20px;
    color: #ffffff;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    font-family: "Nunito", sans-serif;
    font-weight: 700;
}

.selectedProdInner-container .selectedProdTitle {
    font-size: 20px;
    font-weight: 900;
    font-family: "Nunito", sans-serif;
    line-height: 100%;
    margin: 20px 0 0 20px;
    white-space: normal !important;
    overflow: hidden;
    word-wrap: break-word;
    width: 60%;
}

.deliverRightInner-container .promoCode-container {
    display: flex;
    justify-content: space-between;
    width: 90%;
    margin-bottom: 20px;
}

.promoCode-container input {
    height: 30px;
    width: 75%;
}

.promoCode-container button {
    height: 40px;
    width: 100px;
    outline: none;
    border: 1px solid black;
}

.deliverRightInner-container .totalPrice-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 85%;
    margin-bottom: 35px;
}

.deliverRightInner-container .totalPrice-container div {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    line-height: 35px;
}

.deliverRightInner-container .totalPrice-container div span {
    font-family: "Nunito", sans-serif;
    font-size: 15px;
    color: #000000;
}

.deliverRightInner-container .totalPrice-container div span:first-child {
    color: #797979;
}

.shippingCourier-container {
    background-color: #ffffff;
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 150px;
    height: 150px;
    border-radius: 10px !important;
}

.shippingCourier-container .shippingCourierInner-container {
    width: 90%;
}

.shippingCourier-container .shippingCourierInner-container span {
    font-family: "Nunito", sans-serif;
    color: #000000;
    font-size: 15px;
    font-weight: 700;
}

.shippingCourier-container .shippingCourierInner-container .courier-container {
    border: 1px solid grey;
    border-radius: 10px !important;
    display: flex;
    flex-direction: column;
    height: 80px;
    margin-top: 10px;
}

.shippingCourierInner-container .courier-container  div {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 50%;
}

.shippingCourierInner-container .courier-container div .circle {
    width: 15px;
    height: 15px;
    border-radius: 50% !important;
    background-color: #007932;
    margin: 0 10px 0 10px;
}

.shippingCourierInner-container .courier-container div span:nth-child(3) {
    margin-left: auto;
    margin-right: 15px;
}

.shippingCourierInner-container .courier-container  div:nth-child(2) {
    background: #f8f4f4;
    border-bottom-left-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
}

.shippingCourierInner-container .courier-container  div:nth-child(2) span {
    margin-left: 20px;
    font-weight: 0;
    color: #a3a3a3;
    font-size: 13px;
}

.deliverRight-container .button-container {
    margin-top: 10px;
    justify-content: space-between;
    display: none;
    width: 100%;
}

.deliverRight-container .button-container input {
    border: none;
    outline: none;
    font-size: 20px;
    text-align: left;
    height: 35px;
    background: #ffffff;
    font-family: "Nunito", sans-serif;
}

.deliverRight-container .button-container input:hover {
    color: #ff0000;
}

.deliverRight-container .button-container button {
    outline: none;
    font-size: 15px;
    text-align: center !important;
    text-align: left;
    width: 180px;
    height: 40px;
    background: #385454;
    color: #ffffff;
    border-radius: 5px !important;
    font-family: "Nunito", sans-serif;
}

.deliverRight-container .button-container button:hover {
    background: #007932;
}

@media (max-width: 1350px) {
    .delivery-container {
        flex-direction: column;
        width: 100%;
    }

    .delivery-container .deliverLeft-container {
        width: 100%;
    }

    .delivery-container .deliverRight-container {
        width: 100%;
        flex-direction: column;
    }

    .deliverRight-container .deliverRightInner-container {
        width: 100%;
    }

    .deliverLeft-container .button-container {
        display: none;
    }

    .deliverRight-container .button-container {
        margin-top: 20px;
        display: flex;
    }

    .deliverRight-container .button-container input {
        font-size: 18px;
    }

    .deliverRight-container .button-container button {
        font-size: 12px;
        width: 150px;
    }

    .selectedProdInner-container .selectedProdTitle {
        font-size: 15px;
    }

    .selectedProd-container .selectedProdPrice {
        font-size: 15px;
    }

    .selectedProdInner-container img {
        width: 80px;
        height: 80px;
        min-width: 80px;
        min-height: 80px;
    }
}

@media(max-width: 410px){
    .selectedProdInner-container .selectedProdTitle {
        width: 80px !important;
    }
}


/*mlRepurchaseOnline2.asp*/

.form-container .deliveryInput-container button {
    position:absolute; 
    right: 0;
    border: none;
    background-color: transparent;
    color: #0026ff;
    font-size: 18px;
    padding-right: 10px;
}

.form-container .deliveryInput-container button:hover {
    text-decoration: underline;
}

.paymentOption-container {
    margin-bottom: 20px;
}

.paymentOption-container label{
    display: flex;
    justify-content: space-between;
    margin-bottom: 0;
}

.paymentOption-container label div span{
    font-size: 15px;
    font-weight: 700;
    font-family: "Nunito", sans-serif;
}

.paymentOption-container .methodDesc {
    font-size: 10px;
    margin-left: 25px;
    line-height: 10px;
    display: block;
}

.paymentOption-container .wallet-container {
    display: flex;
    justify-content: space-between;
    margin: 10px 0 0 25px;  
}

/*mlRepurchaseOnline3.asp*/

.form-container div .addressDetails {
    display:flex; 
    justify-content:space-between;
    align-items: center;
    margin-bottom: 20px;
}

.form-container div .addressDetails span {
    font-size: 15px;
    font-family: "Nunito", sans-serif;
}

/*mlWelcome.asp*/

.welcome-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
}

.welcome-container .welcomeLeft-container {
    width: 40%;
    height: 100%;
    justify-content: center;
    align-items: end;
    display: flex;
    flex-direction: column;
    min-width: 460px;
    padding-right: 15px;
}


.welcomeLeft-container .profile {
    display: flex;
    border-radius: 20px !important;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 20px;
    width: 400px;
}
.profile-info , .sales-info {
    margin-left: 20px;
} 
.welcomeLeft-container .profile .profile-info {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.welcomeLeft-container .profile .profile-info img{
    width: 80px;
    height: 80px;
    margin-right: 20px;
    border-radius: 50% !important;
}

.welcomeLeft-container .profile .profile-info div {
    display: flex;
    flex-direction: column;
}

.profile .profile-info div span {
    color: #ffffff;
    font-size: 10px;
    line-height: 15px;
    font-family: var(--nurito);
}

.profile .profile-info div span:first-child {
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 5px;
    font-weight: 700;
}


.welcomeLeft-container .profile .sales-info { 
    border: 1px solid #ffffff;
    border-radius: 20px !important;
    margin-top: 30px;
    width: 90%;
    position: relative;
    background: transparent;
}

.welcomeLeft-container .profile .sales-info:before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    border-radius: 20px !important; 
    box-shadow: 0 0 20px 1px #ffffff; 
    animation: glow 1.5s infinite alternate;
    opacity: 0;
}

.sales-info .currentRank-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    /* justify-content: space-between; */
    padding: 0 20px 0 20px;
}

.sales-info .currentRank-info img {
    position: relative;
    top: -26px;
    width: 144px;
    height: 144px;
}

.sales-info .currentRank-info span {
    position: relative;
    font-size: 20px;
    top: -26px;
    left: 20px;
    color: #ffffff;
    font-family: var(--nurito);
    font-weight: 700;
} 

.sales-info .totalSales-info, .sales-info .totalSales-amount {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sales-info .totalSales-info {
    position: relative;
    top: -20px;
}


.sales-info .totalSales-info span{
    color: #ffffff;
    font-size: 15px;
    font-family: var(--noto);
    margin-bottom: 15px;
}

.sales-info .totalSales-info span:first-child{
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 10px;
}

.sales-info .totalSales-amount {
    background-color: rgba(0, 0, 0, 0.5);
    width: 80%;
    line-height: 45px;
    border-radius: 30px !important;
    margin: 0 auto 20px auto;
    padding: 5px 15px 5px 15px;
    font-size: 40px;
    color: #ffffff;
    font-style: italic;
    font-weight: 900;
}

.reward-info {
    margin: 20px 0 20px 0;
    display: flex;
    /* align-items: center; */
    flex-direction: column;
}

.reward-info .reward-details{
    position: relative;
    left: 90px;
    margin-bottom: 10px;
    width: 70%;
}

.reward-details img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.reward-details span {
    color: #ffffff;
    font-family: var(--noto);
}

.reward-details span:nth-child(2) {
    margin-right: 10px;
    font-weight: 600;
    font-size: 15px;
}


.maintenance-container {
    background: linear-gradient(120deg, #009b0d, #385454, #385454);
    display: flex;
    flex-direction: column;
    border-radius: 20px !important;
    margin-bottom: 20px;
    width: 400px;
}

.maintenance-container span {
    color: #ffffff;
}

.maintenance-container .maintenance {
    padding-left: 25px;
    margin-bottom: 5px;
}

.maintenance-container .maintenance:first-child {
    margin-top: 15px;
    font-size: 20px;
    font-weight: 600;
}

.maintenance-container .countdown-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 5px;
    padding-bottom: 10px;
}

.countdown-container .maintenance-date {
    color: #f0d897;
    font-size: 25px;
    font-weight: 700;
    position: relative;
    top: -10px;
}

.sponsor-container {
    border-radius: 20px !important;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    width: 400px;
}

.sponsor-container .container-header {
    border-top-left-radius: 20px !important;
    border-top-right-radius: 20px !important;
    background: linear-gradient(150deg, #009b0d, #385454, #385454);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px 0 10px 0;
}

.sponsor-container .container-header span {
    color: #ffffff;
    font-family: var(--noto);
    line-height: 30px;
}

.sponsor-container .container-header span:first-child {
    font-size: 25px;
    font-weight: 800;
    font-family: var(--merr);
}

.sponsor-container .container-body {
    background: #f8f4f4;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-bottom-left-radius: 20px !important;
    border-bottom-right-radius: 20px !important;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-bottom: 20px;
}

.sponsor-container .container-body .containerLeft-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.sponsor-container .container-body img {
    width: 120px;
    height: 100px;
    margin-left: auto;
}

.containerLeft-body .horizontalBar {
    margin-top: 20px;
}

.containerLeft-body .horizontalBar .empty-line {
    width: 200px;
    height: 2px;
    background: #000;
    position: relative;
    top: 5px;
    left: 10px;
}

.containerLeft-body .horizontalBar .circle-container {
    display: flex;
    position: relative;
    justify-content: space-between;
    top: -15px;
    left: 10px;
}

.containerLeft-body .horizontalBar .label-container {
    margin-top: 5px;
    display: flex;
    position: relative;
    justify-content: space-between;
    top: -15px;
    left: 18px;
    width: 180px;
    font-size: 15px;
}

.circle-container .circle-label {
    background: #dfdfdf;
    border-radius: 50% !important;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 35px;
    width: 35px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
}

.referral-container {
    background: #f8f4f4;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    width: 400px;
    border-radius: 20px !important;
}

.referral-container .referralLink {
    display: flex;
    margin: 20px 0 20px 0;
}

.referral-container .referralLink span {
    font-size: 22px;
    font-weight: 800;
    font-family: var(--noto);
    margin-right: 10px;
}

.referral-container .referralLink button {
    border: none;
    background: none;
}

.referral-container .referralLink button i{
    font-size: 20px;
    transform: scaleX(-1);
}

.welcome-container .welcomeRight-container {
    display: flex;
    flex-direction: column;
    width: 60%;
    align-items: center;
}

.welcomeRight-container .event-container {
    display: flex;
    flex-direction: row;
    width: 650px;
    justify-content: center;
}

.event-container img {
    width: 320px;
    height: 380px;
}

.event-container .eventDetails {
    background: #385454;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    width: 330px;
    height: 380px;
}

.event-container .eventDetails span {
    font-size: 20px;
}

.event-container .eventDetails .event-title {
    font-family: "Great Vibes", cursive;
    font-size: 40px;
    position: relative;
    top: -100px;
    /* line-height: 20px; */
    text-align: center;
}

.event-container .eventDetails .progressBar-container {
    position: relative;
    top: 80px;
    left: -10px;
}


.container{
    width: 100%;
    /* height: 100vh; */
    /* background: #222; */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    top: 20px;
}

.skills h2{
    font-weight: 400;
    letter-spacing: 1px;
    margin-top: 40px;
    margin-bottom: 5px;
    color: #fff;
    font-size: 16px;
}

.progress-bar{
    background: #ffffff;
    width: 300px;
    height: 10px;
    border-radius: 5px !important;
}

.progress-bar div{
    height: 10px;
    border-radius: 5px !important; 
    width: 0%;
    
}

.progress-label{
    display:flex;
    
    margin-bottom: 10px;
    /* border: 2px solid red; */
}

.progress-label > div{
    flex-grow: 1;
}

.progress-label.start{
    color: #fff;
   
    
}

.progress-label.middle {
    color: #fff;
    
   
}

.progress-label.end span{
    color: #fff;
    margin-left: auto;
}

.progress-bar div span{
    height: 30px;
    width: 30px;
    border-radius: 50% !important;
    background: #fff;
    float: right;
    margin-top: -15px;
    margin-right: -20px;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px !important;
}

#toolTipText {
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 30%;
    top: 260% !important;
    transform: translateX(-50%);
    background-color: #000;
    color: #fff;
    white-space: nowrap;
    padding: 10px 15px;
    border-radius: 7px;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 10px !important;
}

#toolTipText span {
    font-size: 12px;
}

#toolTipText::before {
    content: "";
    position: absolute;
    left:50%;
    top: -17%;
    transform: translateX(-50%);
    border: 15px solid;
    border-color: #0000 #0000 #000 #0000;
}

#toolTip:hover #toolTipText {
    top: -130%;
    visibility: visible;
    opacity: 1;
    z-index: 10;
}

/*Tooltip Rank*/
.toolTipRankText {
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 62%;
    top: 80% !important;
    transform: translateX(-50%);
    background-color: #000;
    color: #fff;
    white-space: nowrap;
    padding: 10px 15px;
    border-radius: 7px;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 10px !important;
}

.toolTipRankText span {
    font-size: 12px;
}

.toolTipRankText::before {
    content: "";
    position: absolute;
    left:50%;
    top: -30%;
    transform: translateX(-50%);
    border: 15px solid;
    border-color: #0000 #0000 #000 #0000;
}

.toolTipRankText.top::before {
    top: -17%;
}

.tooltipRank:hover .toolTipRankText {
    top: -130%;
    visibility: visible;
    opacity: 1;
    z-index: 10000;
}
.tooltipRank {
    position: relative; /* Use relative positioning */
}

.details-container {
    margin: 5px 0;
    display: flex;
    justify-content: end;
    position: relative;
}

.details-btn {
    color: #2da5ca;
    font-size: 16px;
    font-family: var(--nurito);
    cursor: pointer;
}

.details-btn:hover {
    text-decoration: underline;
}

.details-popUp {
    width: 100%;
    min-width: 330px;
    max-width: 330px;
    position: absolute;
    border: 2px solid #000;
    background: #fff;
    border-radius: 15px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1000;
}

.details-popUp .header {
    color: #000;
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
    height: 40px;
    font-size: 18px;
}

.details-popUp .header .title {
    font-size: 18px;
    /* font-family: 'MagnoliaScript', sans-serif; */
    font-family: var(--nurito);
    font-weight: bold;
}

.details-popUp .header i {
    position: absolute;
    right: 15px;
}

.details-summary {
    width: 90%;
    height: 100px;
    display: flex;
    flex-direction: column;
    background: #ffe8d9;
    border-radius: 20px !important;
}

.details-summary span {
    width: 100%;
    text-align: center;
    font-family: var(--nurito);
    font-size: 15px;
    font-weight: bold;
    padding: 10px 0;
}

.details-summary table {
    padding-bottom: 10px;
}

.details-summary table .row-label{
    font-size: 17px;
}

.details-summary table .row-value{
    font-size: 24px;
}

.details-table {
    width: 90%;
}

.details-table table {
    width: 100%;
    font-family: var(--nurito);
    margin: 15px 0;
    font-size: 13px;
}

.details-table img {
    width: 20px;
}

.details-table span {
    font-weight: bold;
}

.font-orange {
    color: #e8763e;
}

.html{
    background: linear-gradient(90deg, #e91e63, #ff9800, #4caf50);
    animation: html 1s linear forwards;
}

.html span{
    border: 1px solid #e91e63;
}

.html1{
    background: linear-gradient(90deg, #e91e63, #ff9800, #4caf50);
    animation: html 1s linear forwards;
}

.html1 span{
    border: 1px solid #e91e63;
}

.totalSales-container {
    margin-top: 20px;
    width: 650px;
    display: flex;
    flex-direction: column;
}

.totalSales-container .container-header{
    background: linear-gradient(150deg, #009b0d, #385454, #385454);
    height: 60px;
    border-top-left-radius: 20px !important;
    border-top-right-radius: 20px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.totalSales-container .container-header span{ 
    color: #ffffff;
    font-size: 26px;
    font-weight: 800;
    font-family: var(--merr);
}

.totalSales-container .container-body {
    background: #f8f4f4;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-bottom-left-radius: 20px !important;
    border-bottom-right-radius: 20px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.totalSales-container .container-body span{
    font-size: 16px;
    margin: 10px 0 19px 0;
}

.totalSales-container .container-body .circle-container {
    display: flex;
    justify-content: space-between;
    width: 90%;
}

.totalSales-container .container-body .circle-container .circle {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.totalSales-container .container-body .circle-container .circle div{
    width: 120px;
    height: 120px;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #9fdbf7, #0079b1, #0079b1);
    color: #ffffff;
    font-weight: 600;
    font-size: 13px;
}

.totalSales-container .container-body .bonus-container {
    display: flex;
    align-items: center;
}

.totalSales-container .container-body .bonus-container .rank-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 150px;
    margin-right: 40px;
}

.totalSales-container .container-body .bonus-container .rank-container span {
    font-size: 15px;
    font-family: var(--nurito);
    font-weight: 700;
    color: #000000;
    margin: 0;
}

.totalSales-container .container-body .bonus-container .rank-container img {
    width: 100px;
    height: 100px;
}

.totalSales-container .container-body .bonus-container .rank-container span:first-child {
    font-size: 15px;
    font-family: var(--nurito);
    color: #ffffff;
    background: linear-gradient(150deg, #009b0d, #385454, #385454);
    border-radius: 20px !important;
    padding: 1px 20px 1px 20px;
    margin-bottom: 5px;
}

.totalSales-container .container-body .bonus-container i {
    font-size: 40px;
    position: relative;
    top: 0px;
}

.totalSales-container .container-body .bonus-container .details-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 150px;
    margin-left: 40px;
}

.totalSales-container .container-body .bonus-container .details-container span:first-child {
    font-size: 15px;
    font-family: var(--nurito);
    color: #ffffff;
    background: linear-gradient(150deg, #009b0d, #385454, #385454);
    border-radius: 20px !important;
    padding: 1px 20px 1px 20px;
    margin-bottom: 5px;
}

.totalSales-container .container-body .bonus-container .details-container span {
    font-size: 15px;
    font-family: var(--nurito);
    font-weight: 700;
    color: #000000;
    margin: 0;
}

.totalSales-container .container-body .bonus-container .details-container .totalPoints {
    height:100px; 
    display:flex; 
    align-items:center;
    font-size: 50px;
    position: relative;
    right: -25px;
}

.totalSales-container .container-body .bonus-container .details-container .totalPoints span {
    font-size: 20px;
    font-style: italic;
    background: none;
    color: #000000;
    position: relative;
    top: 10px;
    left: -15px;
}

.weekly-container {
    width: 650px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    border-radius: 20px !important;
    background-color: #f8f4f4;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.weekly-container .topic {
    font-size: 26px;
    font-weight: 800;
    color: #000000;
    margin-top: 35px;
    text-align: center;
    line-height: 28px;
    font-family: var(--merr);
}

.weekly-container .progressbar-container {
    display: flex;
    flex-direction: column;
}

.weekly-container .progressbar-container .date {
    margin-left: auto;
    margin-right: auto;
    padding: 15px 0;
}

.weekly-container .progressbar-container .progressbarInner-container {
    display: flex;
    align-items: center;
    /* border: 2px solid red; */
}

.weekly-container .progressbar-container .progressbarInner-container:first-child {
    margin-top: 20px;
}

.weekly-container .progressbar-container .progressbarInner-container .rank {
    font-size: 16px;
    font-family: var(--nurito);
    font-weight: 700;
    margin-right: 10px;
    min-width: 120px;
    padding-left: 5px;
}

.weekly-container .progressbar-container .progressbarInner-container .progress-bar {
    max-width: 400px;
    min-width: 160px;
}

.weekly-container .progressbar-container .progressbarInner-container img {
    width: 45px;
    height: 45px;
    margin-left: 20px;
}

.topFive-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f8f4f4;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 650px;
    margin-top: 20px;
    border-radius: 20px !important;
    margin-bottom: 20px;
}

.topFive-container .header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 120px;
    width: 93%;
}

.topFive-container .banner-container {
    position: relative;
    height: 100px;
    min-height: 100px;
    top: -40px;
}

.topFive-container .topic {
    font-size: 22px;
    font-weight: 800;
    margin: 20px 0 15px 0;
    text-align: center;
    line-height: 28px;
    font-family: var(--merr);
    z-index: 1;
    position: relative;
    top: 30px;
    color: #dad6c1;
    /* width: 90%; */
    height: 28px;
    /* background-image: url(../../images/greenBanner.png); */
}

.topFive-container .topic .inner-span {
    font-size: 16px;
    color: #ffffff;
    font-weight: normal;
}

.topFive-container .date { 
    font-size: 16px;
    margin-bottom: 20px;
}

.topFive-container .topFiveInner-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
}

.topFive-container .topFiveInner-container .user-row{
    display: flex;
    flex-direction: row;
    justify-content: center;
    height: 50px;
    width: 97%;
    /* min-width: 330px; */
    margin-bottom: 15px;
    padding: 12px 0 2px 0;
    border-radius: 15px !important;
    background: linear-gradient(90deg, #d8d6cf, #d8d6cf, #d8d6cf);
}

.topFive-container .topFiveInner-container .user-row.first {
    width: 60%;
    min-width: 330px;
}

.topFive-container .topFiveInner-container .user-row.old:nth-child(1) {
    border-radius: 15px !important;
    background: linear-gradient(90deg, #e9dc92, #e4d479, #cc9c00);
}

.topFive-container .topFiveInner-container .user-row.old:nth-child(2) {
    border-radius: 15px !important;
    background: linear-gradient(90deg, #a4d385, #99d471, #178b00);
}

.topFive-container .topFiveInner-container .user-row.old:nth-child(3) {
    border-radius: 15px !important;
    background: linear-gradient(90deg, #e9cdb3, #dfa46a, #CD7F32);
}

.topFive-container .topFiveInner-container .user-row span {
    font-size: 18px;
    font-weight: 1000;
    font-family: var(--archivo);
}

.topFive-container .topFiveInner-container .user-row span span {
    font-family: "Amaranth", sans-serif;
    font-style: italic;
    font-size: 45px;
    font-weight: bold;
    position: relative;
    top: 7px;
    background: linear-gradient(180deg, #ffffff, #ffffff, #cecece);
    -webkit-background-clip: text; /* For Safari */
    background-clip: text;
    color: transparent;
}

.topFive-container .topFiveInner-container .user-row .line-break{
    width: 2px;
    height: 85%;
    background: #808080;
    margin: 0 10px 0 10px;
}

.topFive-container .topFiveInner-container .user-row .user-details {
    display: flex;
    align-items: center;
}

.topFive-container .topFiveInner-container .user-row .user-details div {
    display: flex;
    flex-direction: column;
}

.topFive-container .topFiveInner-container .user-row .user-details div .username{
    font-size: 16px;
    font-weight: normal;
    font-family: var(--noto);
    width: 100px;
}

.topFive-container .topFiveInner-container .user-row .user-details div .userRank{
    font-size: 13px;
    font-weight: normal;
    font-family: var(--nurito);
    font-style: italic;
}

.topFive-container .topFiveInner-container .user-row .user-details .crown_img {
    position: relative;
    top: -18px;
    left: -25px;
    transform: rotate(38deg);
    width: 35px;
    height: 20px;
}

.topFiveCombine {
    display: flex; 
    flex-direction:row; 
    width:100%; 
    justify-content: center;
}

.topFive-container .topFiveInner-container .user-row .user-details .user_img {
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
}


.topFive-container.left, .topFive-container.right {
    width: 320px;
}

.topFive-container.left {
    margin-right: 10px;
}

.upcoming-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 650px;
    background: #f8f4f4;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 20px !important;
    margin: 10px 0 20px 0;
}

.upcoming-container .topic {
    font-size: 26px;
    font-family: var(--merr);
    font-weight: 700;
    margin: 20px 0 20px 0;
}

.upcoming-container .event-container {
    display: flex;
    width: 98%;
    justify-content: center;
    margin-bottom: 20px;
    flex-direction: row !important;
    flex-wrap: wrap;
}

.upcoming-container .event-container .event {
    width: 130px;
    background: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 160px;
    margin: 0px 20px 15px 20px;
}

.upcoming-container .event-container .event:not(:last-child) {
}

.upcoming-container .event-container .event .header {
    width: 100%;
    height: 4px;
    background: #b16418;
}

.upcoming-container .event-container .event .remark, .upcoming-container .event-container .event .time {
    font-size: 13px;
    font-family: "Montserrat", sans-serif;
    color: #964B00;
    padding-left: 10px;
}

.upcoming-container .event-container .event .dateDetails {
    display: flex;
    justify-content: space-between;
    height: 80px;
    margin-top: 15px;
    align-items: center;
}

.upcoming-container .event-container .event .dateDetails div {
    display: flex;
    flex-direction: column;
}

.upcoming-container .event-container .event .dateDetails .day {
    font-size: 25px;
    padding-right: 10px;
    font-weight: 800;
    color: #f3dddd;
}

.upcoming-container .event-container .event .dateDetails div span {
    font-family: "Montserrat", sans-serif;
    font-size: 30px;
    line-height: 30px;
    color: #964B00;
    padding-left: 10px;
}

.upcoming-container .event-container .event .dateDetails div .months {
    font-size: 20px;
}

.calendar-container {
    display: flex;
    flex-direction: column;
    width: 650px;
}

.calendar-container .topic {
    font-size: 26px;
    font-family: var(--merr);
    font-weight: 800;
    width: 100%;
    height: 80px;
    background: linear-gradient(150deg, #ddae8e, #a8846c, #a8846c);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border-top-left-radius: 20px !important;
    border-top-right-radius: 20px !important;
}

.wrapper{
    width: 100%;
    background: #f8f4f4;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
    margin-bottom: 20px;
    border-bottom-left-radius: 20px !important;
    border-bottom-right-radius: 20px !important;
}

.wrapper header{
    display: flex;
    align-items: center;
    padding: 25px 30px 10px;
    justify-content: space-between;
    background: #f8f4f4;
}

header .icons{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

header .icons span{
    height: 38px;
    width: 38px;
    margin: 0 1px;
    cursor: pointer;
    color: #b16418;
    text-align: center;
    line-height: 38px;
    font-size: 1.9rem;
    user-select: none;
    border-radius: 50%;

}

header .icons div {
    margin: 0 15px 0 15px !important;
    font-weight: 700;
}

.icons span:last-child{
    margin-right: -10px;
}

header .icons span:hover{
    background: #f2f2f2;
}

header .current-date{
    font-size: 1.45rem;
    font-weight: 500;
}

.calendar{
    /* padding-right: 20px; */
    background: #f8f4f4;
}

.calendar ul{
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    text-align: center;
    /* border: 1px solid red; */
}

.calendar .days{
    margin-bottom: 20px;
}

.calendar li{
    color: #333;
    width: calc(100% / 7);
    font-size: 1.07rem;
}

.calendar .weeks li{
    font-weight: 500;
    cursor: default;
}

.calendar .days li{
    z-index: 1;
    cursor: pointer;
    position: relative;
    margin-top: 30px;
}

.days li {
    display: flex;
    /* justify-content: end; */
}

.days li div {
    display: flex;
    flex-direction: column;
    border: 2px solid red;
    width: 90%;
    text-align: left;
    border: 0.5px solid #964B00;
    justify-content: start;
    border-radius: 10px !important;
    min-height: 70px;
    justify-content: space-between;
    background: #ffffff;
}

.days li div span {
    font-size: 14px;
    padding: 0 0 10px 8px;
    font-family: "Amaranth", sans-serif;
    color: #964B00;
    overflow: hidden;
    /* word-wrap: break-word; */
    line-height: 15px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.days li div span:first-child {
    font-style: italic;
    padding: 5px 0 10px 8px;
}

.days li.inactive{
    color: #aaa;
}

.days li.inactive div{
    background: linear-gradient(90deg, #e7d6cb, #e9bc9c, #e9bc9c);
    border: none;
}


.days li.active div {
    border: 2px solid #964B00;
}

.days li.active div span {
    font-weight: bold;
}

/* .days li.active{
    color: #fff;
} */

.days li::before{
    position: absolute;
    content: "";
    left: 50%;
    top: 50%;
    height: 40px;
    width: 40px;
    z-index: -1;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.days li.active::before{
    /* background: #9B59B6; */
}

.days li:not(.active):hover::before{
    /* background: #f2f2f2; */
}


/*Popup window*/

.popup {
    position: fixed;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border: 1px solid #ccc;
    z-index: 9999;
    opacity: 0; 
    transition: opacity 0.6s; 
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.3); 
    z-index: 9998;
}

.content {
    text-align: center;
}

.popup.show {
    opacity: 1; 
}

#cartMsgSpan {
    color: #000000;
    font-family: var(--nurito);
    font-weight: 600;
    font-size: 20px;
}

/*End*/

.topic.MagnoliaText {
    font-family: var(--Magnolia);
}


@media (max-width: 1640px) {

    .welcomeRight-container {
        width: 100%;
    }

    .welcomeRight-container .event-container {
        /* flex-direction: column; */
        width: 330px;
    }

    .event-container .eventDetails {
        min-height: 330px;
        min-width: 330px;
    }

    .event-container .eventDetails .event-title {
        font-size: 40px;
        top: -60px;
    }

    .event-container .eventDetails .progressBar-container {
        left: -10px;
    }
}

@media (max-width: 1570px) {
    /* .welcomeRight-container .event-container {
        flex-direction: column;
        width: 360px;
    } */

    .event-container img {
        /* width: 50%;
        height: 20vw; */
    }

    .event-container .eventDetails {
        /* min-width: 250px; */
        min-height: auto;
    }

    .event-container .eventDetails .event-title {
        font-size: 35px;
        top: -40px;
        line-height: 35px;
        text-align: center;
    }
    
    .event-container .eventDetails .progressBar-container {
        top: 30px;
    }

    .event-container .eventDetails span {
        font-size: 15px;
    }
    .progress-bar {
        width: 200px;
    }
}

@media (max-width: 1420px) {
    .totalSales-container, .weekly-container, .topFive-container, .topFive-container.left, .topFive-container.right, .calendar-container, .upcoming-container, 
    .maintenance-container, .sponsor-container, .referral-container {
        width: 100%;
    }

    .event-container img {
        min-width: 250px;
    }

    .event-container .eventDetails {
        min-width: 250px;
    }
}

@media (max-width: 1360px) {
    .topFiveCombine {
        flex-direction: column;
    }

    .topFive-container.left, .topFive-container.right {
        width: 100%;
        margin-top: 0;
    }

    .topFive-container .topFiveInner-container .user-row{   
        width: 60%;
        min-width: 330px;
    }
}

@media (max-width: 1250px) {
    .welcome-container .welcomeLeft-container {
        width: 20%;
    }

    .welcome-container .welcomeRight-container {
        width: 80%;
    }

    .event-container img {
        min-width: 220px;
        height: 300px;
    }

    .event-container .eventDetails {
        min-width: 200px;
        height: 300px;
    }

    .event-container .eventDetails .event-title {
        font-size: 30px;
        top: -20px;
        line-height: 30px;
    }
    
    .event-container .eventDetails .progressBar-container {
        top: 15px;
    }

    .event-container .eventDetails span {
        font-size: 12px;
    }
    .progress-bar {
        width: 160px;
    }
}

@media (max-width: 1180px) {
    .totalSales-container .container-body .circle-container .circle div {
        width: 88px;
        height: 88px;
        font-size: 12px;
    }

    .totalSales-container .container-body span {
        font-size: 14px;
    }

    .totalSales-container .container-body .bonus-container .rank-container {
        margin-right: 10px;
    }

    .totalSales-container .container-body .bonus-container .details-container {
        margin-left: 10px;
    }

    .weekly-container .progressbar-container .progressbarInner-container .progress-bar {
        max-width: 240px;
    }
}

@media (max-width: 1120px) {
    .welcome-container {
        align-items: center;
        flex-direction: column;
    }

    .welcome-container .welcomeLeft-container {
        align-items: center;
        padding: 0;
    }

    .welcome-container .welcomeRight-container {
        width: 460px;
    }

    .welcomeLeft-container .profile {
        width: 100%;
        height: 450px;
    }

    .weekly-container .topic {
        font-size: 23px;
    }

    .event-container img {
        width: 150px;
        min-width: 130px;
        height: 195px;
    }

    .event-container .eventDetails {
        min-width: 200px;
        min-height: 195px;
        max-height: 185px;
    }

    .event-container .eventDetails .progressBar-container {
        top: 0px;
    }

    .event-container .eventDetails .progressBar-container .progress-bar {
        height: 5px;
    }
    .event-container .eventDetails .progressBar-container .progress-bar div {
        height: 5px;
    }
    .event-container .eventDetails .progressBar-container .progress-bar div span {
        width: 25px;
        height: 25px;
        font-size: 10px;
    }

    #toolTipText {
        left: 25%;
        top: 400% !important;
    }

    .topFive-container .topFiveInner-container .user-row{
        width: 85%;
    }
    
}

.qrImg {
    min-width: 250px;
}

.qrSlider {
    display: flex; 
    max-width: 250px;
    overflow: hidden;
}

.qrSliderContainer {
    display: flex;
    align-items: center;
}

@media (max-width: 979px) {
    .qrImg {
        min-width: 150px;
    }

    .qrSlider {
        max-width: 150px;
    }
    
    .welcomeLeft-container .profile {
        height: 400px;
        max-width: 300px;
    }
    
    .welcomeLeft-container .profile .profile-info img {
        width: 50px;
        height: 50px;
    }

    .profile .profile-info div span:first-child {
        font-size: 15px;
        line-height: 15px;
    }

    .sales-info .currentRank-info img {
        height: 100px;
        width: 100px;
    }

    .sales-info .totalSales-amount {
        font-size: 25px;
        line-height: 30px;
    }
    .sales-info {
        margin-left: 11px;
    }
}

@media (max-width: 465px) {
    .welcome-container .welcomeLeft-container {
        min-width: 330px;
        width: 100%;
    }

    .welcome-container .welcomeRight-container {
        min-width: 330px;
        width: 100%;
    }

    .event-container .eventDetails {
        width: 200px;
    }

    .profile-info {
        margin-left: 20px;
    }

    .sales-info {
        margin-left: 11px;
    }

    .sales-info .currentRank-info span {
        left: 0px;
    }
    .sales-info .totalSales-amount {
        width: 80%;
    }
    .reward-info .reward-details {
        left: 50px;
    }
    .reward-info .reward-details {
        width: 80%;
    }
    .reward-details span:nth-child(2) {
        margin-right: 5px;
    }

    .weekly-container .progressbar-container .progressbarInner-container .progress-bar {
        max-width: 200px;
    }
    
    .calendar ul {
        margin: 0 0 10px 4px;
        width: 98%;
    }

    .days li div {
        /* width: 91%; */
    }

    .days li div span {
        font-size: 13px;
    }

    .days li div span:first-child {
        font-size: 15px;
    }

    .popup {
        top: 25%;
    }

    .weekly-container .progressbar-container .progressbarInner-container img {
        margin-left: 5px;
    }
}


/*Whatsapp button*/

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 38px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px !important;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    transition: all 0.3s ease-in-out;
}

.float:hover {
    color: #333333;
}

.my-float{
	margin-top:16px;
}




/*mlResources.asp*/

.mainContainer {
    width: 100%;
    height: 100%;
    /* border: 1px solid red; */
    max-width: 100% !important;    
}


.resourcesTitle {
    font-family: var(--nurito);
    font-size: 20px;
    padding-left: 15px;
}

.resourcesContainer {
    display: flex;
    margin-top: 20px;
    scroll-behavior: smooth;
    scrollbar-width: none;
    /* max-width: 800px; */
    overflow: hidden;
    overflow-x: auto;
    /* border: 1px solid blue; */
    margin-left: 15px;
    height: 145px;
    align-items: end;
    width: calc(100vw - 300px);
}

.latestResources {
    position: relative;
    margin-left: 10px;
    margin-right: 10px;
    /* border: 1px solid black; */
    display: flex;
    align-items: center;
    max-height: 100px;
    border-radius: 15px !important;
    min-width: 292px;
    text-decoration: none !important;
}

.latestResources:first-child {
    margin-left: 0px;
}

.latestResources:last-child {
    margin-right: 0px;
}

.image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; 
    border-radius: 15px !important;
    z-index: 1;
}

.blurImg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(10px); /* Adjust the blur amount */
    position: absolute;
    top: 0;
    left: 0;
}

.resourcesImg {
    width: 100px;
    height: 130px;
    position: relative;
    top: -30px;
    margin-left: 20px;
    border-radius: 10px !important;
    z-index: 2;
}

.resourcesDetails {
    display: flex;
    flex-direction: column;
    padding: 0 20px;
    z-index: 2;
    color: #fff;
    font-family: var(--nurito);
}

.resourcesDetails .topic {
    font-weight: 600;
    font-size: 16px;
}

.resourcesDetails .others {
    margin-top: 5px;
}

.arrowBtn {
    height: 30px;
    width: 30px;
    min-width: 30px;
    cursor: pointer;
    font-size: 1.25rem;
    position: absolute;
    text-align: center;
    line-height: 30px !important;
    background: #fff;
    border-radius: 50% !important;
    box-shadow: 0 3px 6px rgba(0,0,0,0.23);
    transform: translateY(-50%);
    transition: transform 0.1s linear;
    z-index: 10;
}

#arrowLeft {
    top: 310px;
    /* left: 100px; */
}

#arrowRight {
    top: 310px;
    right: 60px;
}


.allContainer {
    width: 100%;
    margin-top: 80px;
}

.allResourcesContainer {
    display: flex;
    flex-wrap: wrap;
    gap: 55px;
    margin-top: 30px;
    margin-bottom: 20px;
}

.allResources {
    display: flex;
    flex-direction: column;
    margin-left: 15px;
    max-width: 120px;
    width: 120px;
}

.allResources:last-child {
    margin-right: 0;
}

.allResources img {
    width: 120px;
    height: 160px;
    border-radius: 10px !important;
}

.allResources .topic {
    color: #000;
    font-family: var(--nurito);
    font-weight: 600;
    font-size: 14px;
    margin-top: 15px;
    margin-left: 3px;
    line-height: 14px;
}

.allResources .visitBtn {
    margin-left: 3px;
    margin-top: 10px;
    color: #000;
    width: 60px;
    border-radius: 20px !important;
    background: #AEC4CE;
    height: 22px;
    font-family: var(--nurito);
    font-weight: 600;
    text-align: center;
}

.allResources .visitBtn:hover {
    color: #fff;
    background: #ff0000;
    text-decoration: none;
}


/*Mix & Match CSS*/

.mixmatchContainer {
    display: flex;
    flex-direction: row;
    width: 90%;
    border: 0.5px solid #c5c5c5;
    padding: 5px;
    margin-bottom: 5px;
    cursor: pointer;
    overflow: hidden;
}

.mixmatchContainer .image {
    width: 50px;
    height: 50px;
    min-width: 50px;
    margin: auto 0;
}

.mixmatchContainer .content {
    margin-left: 5px;
    display: flex;
    flex-direction: column;
    text-align: left;
    font-family: "Nurito", sans-serif;
    margin-top: auto;
    margin-bottom: auto;
    font-size: 15px;
}

.mixmatchContainer .content .title {
    color: #757677;
    margin-bottom: 3px;
}

.mixmatchContainer .content .prodName {
    color: #9638f5;
    text-decoration: underline;
}

.mixmatchContainer .quantity {
    margin: auto 0 auto auto;
}


.overlay2 {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(163, 163, 163, 0.3); 
    z-index: 9998;
}

.mixmatchSelection {
    display: none;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 800px;
    z-index: 10000;
    background: #fff;
    border-top-right-radius: 10px !important;
    border-top-left-radius: 10px !important;
}

.mixmatchSelection .header {
    padding: 0 10px !important;
}

.mixmatchSelection .header .closeBtn {
    margin-left: auto;
    display:flex;
    border: none;
    background: transparent;
    color: #000;
}

.mixmatchSelection .display-container {
    display: flex;
    border-bottom: 1px solid #000;
    padding-bottom: 15px;
}

.mixmatchSelection .display-container .image {
    width: 100px;
    height: 100px;
    margin-left: 20px;
}

.mixmatchSelection .display-container .content {
    display: flex; 
    flex-direction: column;
    text-align: left;
    /* justify-content: space-between; */
    margin-left: 15px;
}

.mixmatchSelection .display-container .content .title {
    line-height: 25px;
}

.mixmatchSelection .selection-container {
    padding: 20px 15px 15px 25px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.mixmatchSelection .selection-container #option {
    border: 1px solid #000;
    width: fit-content;
    padding: 4px 6px;
    display: none;
}

.mixmatchSelection .selection-container #option .radio {
    display: none;
}

.mixmatchSelection .selection-container #option:has(.checked) {
    border-color: #ff0000 !important;
    background: #ddd;
}

.mixmatchSelection button {
    margin: 10px 0 25px 25px;
    color: #fff;
    background: rgb(0, 88, 19);
}

.mixmatchSelection button:hover {
    background: #25d366;
}


/*New Packages CSS Start*/
.product-container.newPkgXX,.product-container.pwpPkg {
    border: 5px solid #fff !important;
    padding: 25px 0;
    border-radius: 20px !important;
    box-shadow:
            -3px 0 6px #64e8ff,  /* Left Blue Outer */
            3px 0 6px #f6aeff,   /* Right Purple Outer */
            inset -3px 0 6px #f6aeff, /* Left Blue Inset */
            inset 3px 0 6px #64e8ff,  /* Right Purple Inset */
            0 0 6px #64e8ff;     /* Glow (Blue Start) */
    animation: rotateClockwiseShadow 4s linear infinite;
}

.product-container.newPkg.old {
    box-shadow:
            -3px 0 6px #000,  /* Left Blue Outer */
            3px 0 6px #000,   /* Right Purple Outer */
            inset -3px 0 6px #000, /* Left Blue Inset */
            inset 3px 0 6px #000,  /* Right Purple Inset */
            0 0 6px #000;     /* Glow (Blue Start) */
    animation: none;
}

.product-container.newPkgXX .productLeft-container, .product-container.newPkgXX .productRight-container, 
.product-container.pwpPkg .productLeft-container, .product-container.pwpPkg .productRight-container {
    width: 75%;
    min-width: 75%;
    /* height: 90%; */
    /* min-height: 90%; */
}

.product-container .productLeft-container .newPkgImg {
    display: none;
}

.product-container.newPkg .productLeft-container {
    position: relative;
}

.product-container.newPkg .productLeft-container .newPkgImg {
    display: block;
    position: absolute;
    top: -15px;
    left: -40px;
    height: 60px;
    width: 120px;
}

.product-container.newPkg.old .productLeft-container .newPkgImg {
    display: none;
}

.product-container.newPkg .productLeft-container .pwpPkgImg {
    display: block;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%) !important;
    height: 60px;
    width: 120px;
}

@keyframes rotateClockwiseShadow {
    0% {
        box-shadow:
            -3px 0 6px #64e8ff,  /* Left Blue Outer */
            3px 0 6px #f6aeff,   /* Right Purple Outer */
            0 -3px 6px #f6aeff,  /* Top Purple Outer */
            0 3px 6px #f6aeff,   /* Bottom Purple Outer */
            inset -3px 0 6px #f6aeff, /* Left Blue Inset */
            inset 3px 0 6px #64e8ff,  /* Right Purple Inset */
            inset 0 -3px 6px #f6aeff, /* Top Purple Inset */
            inset 0 3px 6px #f6aeff,  /* Bottom Purple Inset */
            0 0 6px #64e8ff;     /* Glow Blue */
    }
    25% {
        box-shadow:
            -3px 0 6px #f6aeff,  /* Left Purple */
            3px 0 6px #f6aeff,   /* Right Purple */
            0 -3px 6px #64e8ff,  /* Top Blue */
            0 3px 6px #f6aeff,   /* Bottom Purple */
            inset -3px 0 6px #f6aeff,
            inset 3px 0 6px #f6aeff,
            inset 0 -3px 6px #f6aeff, /* Top Blue Inset */
            inset 0 3px 6px #64e8ff,
            0 0 6px #64e8ff;
    }
    50% {
        box-shadow:
            -3px 0 6px #f6aeff,
            3px 0 6px #64e8ff,   /* Right Blue */
            0 -3px 6px #f6aeff,
            0 3px 6px #f6aeff,
            inset -3px 0 6px #64e8ff,
            inset 3px 0 6px #f6aeff, /* Right Blue Inset */
            inset 0 -3px 6px #f6aeff,
            inset 0 3px 6px #f6aeff,
            0 0 6px #64e8ff;
    }
    75% {
        box-shadow:
            -3px 0 6px #f6aeff,
            3px 0 6px #f6aeff,
            0 -3px 6px #f6aeff,
            0 3px 6px #64e8ff,   /* Bottom Blue */
            inset -3px 0 6px #f6aeff,
            inset 3px 0 6px #f6aeff,
            inset 0 -3px 6px #64e8ff,
            inset 0 3px 6px #f6aeff, /* Bottom Blue Inset */
            0 0 6px #64e8ff;
    }
    100% {
        box-shadow:
            -3px 0 6px #64e8ff,  /* Back to Left Blue */
            3px 0 6px #f6aeff,
            0 -3px 6px #f6aeff,
            0 3px 6px #f6aeff,
            inset -3px 0 6px #f6aeff,
            inset 3px 0 6px #64e8ff,
            inset 0 -3px 6px #f6aeff,
            inset 0 3px 6px #f6aeff,
            0 0 6px #64e8ff;
    }
}

/*New Packages CSS End*/

@media (max-width: 512px) {
    .mixmatchContainer .content {
        font-size: 12px;
    }
}
/*Mix & Match CSS*/


@media (max-width: 979px) {
    .resourcesContainer {
        width: calc(100vw - 60px);
    }
}

@media (max-width: 767px) {
    .page-content {
        padding: 20px !important;
    }

    #arrowLeft {
        top: 300px;
    }
    
    #arrowRight {
        top: 300px;
    }
    
}

@media (max-width: 460px) {
    
}

@keyframes glow {
    to {
        opacity: 1; /* Set opacity to 1 for the glowing effect */
    }
}