html,body{
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    background: #d5defd;
}

.modal-content{
    width: 100%;
    color: #324483;
    background: none;
    font-weight: 700;
}

#SearchActivityModal .customBodyModal{
    width: 100%;
    height: fit-content;
    padding: 0;
}

#SearchActivityModal .prod-pad{
    padding-right: 0 !important;
}

.modal-backdrop {
    opacity: 1 !important; 
    pointer-events: none ;
    background: #d5defd;
}

.custom-backdrop{
    opacity: .8 !important;
}

.modal-fullscreen {
    max-width: 100%;
    margin: 0;
}
  
.modal-fullscreen .modal-content {
    height: 100%;
    border-radius: 0;
}
.removeModalContentBg{
    background: none;
}

.fullscreenbg{
    background: #d5defd;
}
  
  #filterBydateRangeModal .modal-header{
    border-top-left-radius: 1.4rem;
    border-top-right-radius: 1.4rem;
    background: #d5defd;
    border-bottom: none !important;
}

.modal-body{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.messageBoxtext{
    border:none;
    color:#fff !important;
    width: 100%;
    background: #324483;
    font-weight: 700;
    border-radius: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
}


.setCustomSlide {
    top: 50%;
    animation: modalSlide 0.5s forwards;
  }
  
@keyframes modalSlide {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
  }

  .removeCustomSlide {
    top: 50%;
    animation: removeModalSlide 0.5s forwards;
  }
@keyframes removeModalSlide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(200%);
    }
  }
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Move animation for the product */
@keyframes moveToCart {
    0% {
        transform: translate(0, 0);
        opacity: 1;
    }
    100% {
        transform: translate(300px, -100px); /* Adjust based on cart position */
        opacity: 0;
    }
}

/* Shake animation for the cart label */
@keyframes shakeCart {
    0%, 100% {
        transform: translateX(0);
    }
    20%, 80% {
        transform: translateX(-20px);
    }
    40%, 60% {
        transform: translateX(20px);
    }
}

.shakeCart {
    animation: shakeCart 0.1s ease-in-out;
}

/**********************START MEDIA QUERY SECTION*******************/

@media (min-width: 767.1px){
    .primaryBloc{
        position: relative;
        margin:0;
        padding: 0;
        height: 100%;
        width: 100%;
        background: transparent;
        display: block ;
    }
    .primaryBloc .theFooter{
        top: 0 ;
        border: none;
        padding: 0;
        padding-top: 10px;
        background: #d5defd;
        white-space: nowrap; /* Empêche le retour à la ligne */
        overflow: hidden; /* Cache le texte qui dépasse */
        text-overflow: ellipsis;/* Ajoute "..." à la fin du texte trop long */
    }

    .addItemToCart,.buyItemNow{
        width: 70%;
    }

    .addToCartImage-container{
        width: 300px;
        height: fit-content;
    }
    .addToCartImage-container img{
        width: 100%;
    }

}

@media (max-width: 767px){
    .primaryBloc{
        top: 0;
        left: 0;
        margin:0;
        padding: 0;
        height: 100%;
        width: 100%;
        background: transparent;
    }

    .theFooter{
        bottom: 0;
    }

    .addItemToCart,.buyItemNow{
        width: 100%;
    }

    .addToCartImage-container{
        width: 100%;
        height: fit-content;
    }
    .addToCartImage-container img{
        width: 100%;
    }
}
/**********************END MEDIA QUERY SECTION*************************/

/**********************START BODY CONTAINER SECTION*************************/
.bodyContains{
    display: none;
    position: relative;
    margin:0;
    padding: 0;
    height: 100%;
    width: 100%;
    background: #e8edfe;
}

.bodyContains .bodyAlertMessage{
    position: relative;
    background: rgba(80,100,130);
    padding: 20px;
    margin: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    align-items: center;
  }

.primaryBloc .theHeader{
    position: fixed;
    top:0;
    width: 100%;
    display: flex;
    flex-direction: line;
    background: #d5defd;
    height: 55px;
    z-index: 1000;
    border: 1px solid rgb(100, 149, 237,.2);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.theHeader div{
    position: absolute;
    right: 10px;
    top: 8px;
}

.theHeader .fa-bars-btn{
    position: absolute;
    left: 10px;
    top: 8px;
}

.theHeader div button{
    margin-left: 10px;
}

.theHeader button{
    position: relative;
    background:rgb(255, 255, 255,.5);
    height: 35px;
    width: 35px;
    border: none;
    border-radius: 20px;
    z-index: 20;
    border: 1px solid rgb(100, 149, 237,.2);
}

.icon-with-badge {
    position: relative;
    display: inline-block;
}

.icon-with-badge .badge {
    position: absolute;
    top: -5px;
    left: 10px;
    padding: 3px 5px;
    border-radius: 50%;
    background-color: red;
    color: white;
    font-size: 10px;
    z-index: 100;
    cursor: pointer;
}

.second-container .icon-with-badge .badge{
    left: 95%;
}

.theHeader button:active, 
.theFooter .fContent:active,
.btnSection .btnContent:active,
.secondaryBloc .second-header .fas:active,
.primaryBloc .mySection .S_R_W:active,
.icon-with-badge:active{
    opacity: .1;
}

.theHeader button img{
    position: absolute;
    left: 0;
    top: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100% !important;
    border: none;
    border-radius: 50%;
    z-index: 10;
    border: 2px solid #fff;
}

.theHeader span{
    color: #324483;
    background: transparent;
    font-size: 18px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255,.5); /* transparent overlay */
    z-index: 200;
    height: 100%;
    width: 100%;
}

.no-click {
    pointer-events: none;
  }
/*-------------------------------------------------------------------------*/

 #primaryBloc .mySection{
    position: relative;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}

.custom-margin{
   padding-bottom: 100px;
}

.primaryBloc .inner-container h4{
    color: #324483;
    font-size: 24px;
    font-weight: 700;
    margin-top: 85px;
    padding-left: 10px;
}

.mySection .accountCard-container{
    padding-left: 10px;
    padding-right: 10px;
}

.mySection .accountCard{
    position: relative;
    width: 100%;
    height: 200px;
    background: rgb(100,149,237,.2);
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 2px 2px 5px   #324483;
    color: #324483;
    padding: 0;
}

.padd{
    padding: 5px;
    padding-left: 10px;
    padding-right: 10px;
}

.mySection .inner-container{
    width: 100%;
    padding: 0;
    margin: 0;
}

.accountCard .titleBar{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: #d9d9d9;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #324483;
    font-size: 14px;
    font-weight: 700;
}

.accountCard .infoContainer{
    position: absolute;
    bottom: 10px;
    width: 100%;
    padding-left:20px ;
    padding-right: 20px;
}

.accountCard .cenvamartBalance{
    font-size:12px ;
    padding: 20px;
    padding-top: 40px;
    font-weight: 700;
}

.accountCard .amountSection{
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #d9d9d9;
    font-weight: 500;
}

.accountCard .S_R_W{
    background: rgb(0, 0, 0,.1);
    border-radius: 5rem;
    color: #324483 ;
    font-weight: 700;
    height: 40px ;
    cursor: pointer;
}

.accountCard .title{
    font-size: 14px;
}

#myHome_section .accountCard{
    background: transparent;
}

#myHome_section .AdsOnCardContainer{
    position: absolute;
    bottom: 0;
    margin: 0;
    height: 40%;
    width: 100%;
    background: #324483;;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    color: #fff;
    font-weight: 700;
}

#myHome_section .AdsRate{
    position: relative;
    display: flex;
    width: 50px;
    height: 50px;
    text-align: center;
    align-items: center;
    margin-left: 10px;
}

#myHome_section .AdsRate span{
    background: rgb(100, 149, 237,.4);
    padding: 10px;
    border-radius: 5px;
}

#myHome_section .cashBalance{
    top:30px;
}

#myHome_section .cashBalanceContent{
    background: transparent;
}

#myHome_section .cashBalanceContent span{
    font-size: 24px;
}

#myHome_section .username{
    position: absolute;
    top: 60px;
    right: 15px;
    font-size: 12px;
    color: #324483;
    font-weight: 700;
}

#myHome_section .chevron-right{
    padding: 20px;
    width: 20px;
}

#myHome_section .AdsOnCard{
    display: flex;
    align-items: center;
    justify-items: center;
    height: 100%;
    font-size: 12px;
    padding-left:10px ;
    padding-right: 10px;
}

#myHome_section .recent-Activities{
    position: relative;
    border-radius: 10px;
    background: #fff;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 5px;
    display: flex;
    flex-direction: line;
}

#myHome_section .actNumContainer{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 30%;
}

#myHome_section .events-activities-container{
    position: relative;
    height: 38.5px;
    width: 70%;
    align-self: flex-end;
}

#myHome_section .events-activities-container .events-activities{
    background: transparent;
    position: absolute;
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    box-shadow: 5px 0 5px rgb(0, 0, 0,.2);
    border-radius: 3.5rem;
}

#myHome_section .events-activities-container img{
    position: relative;
    background: transparent;
    height: 35px;
    width: 35px;
    border: none;
    border-radius: 20px;
    z-index: 10;
}

#myHome_section .actNumContainer span{
    text-align: left;
    font-size: 16px;
    font-weight: 700;
    color: #324483;
}

#myHome_section .recentAct{
    font-size: 12px !important;
    color: #b0acac !important;
    padding: 0;
    white-space: nowrap; /* Empêche le retour à la ligne */
    overflow: hidden; /* Cache le texte qui dépasse */
    text-overflow: ellipsis;/* Ajoute "..." à la fin du texte trop long */
}

#myHome_section .seeAll-container{
    display: flex;
    flex-direction: line;
    background: transparent;
}

#myHome_section .seeAll{
    text-align: right;
    width: 30%;
    padding-right: 20px;
    font-size: 12px;
    font-weight: 700;
    color: #605e5ef5;
}

#myHome_section .recommended-for-you{
    width: 70%;
    font-size: 16px;
    font-weight: 700;
}

#myHome_section .home-products-container{
    padding: 5px;
}

#myHome_section .home-products{
    position: relative;
    background: #fff;
    width: 100%;
    padding-bottom: 5px;
    border-radius: 15px;
}

#myHome_section .home-prodprice-container{
    position: relative;
    width: 100%;
    height: 25px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    font-weight: 700;
}

.amount-container{
    position: relative;
    order: -1;
    width: fit-content;
    height: 100%;
    padding: 5px;
    display: flex;
    flex-direction: line;
    color: darkorange;
    align-items: center;
}

.amount-container .dollar-sign,
.amount-container .price-floatPart{
    font-size: 10px !important;
}

.amount-container .price-intPart{
    font-size: 17px;
}

.beforeRealPrice{
    position: relative;
    color: rgb(180,0,32,.7) !important;
    width: fit-content;
    height: 100%;
    padding: 5px;
    display: flex;
    flex-direction: line;
    align-items: center;
}

.beforeRealPrice::before {
    content: '';
    position: absolute;
    top: 50%; /* Vertically centers the line */
    left: 5px;
    right: 5px;
    height: 1px; /* Adjust the thickness of the line */
    background-color: rgb(180,0,32,.9); /* Line color */
    transform: translateY(-50%); /* Fine-tune alignment */
    border-radius: 10px;
}

.beforeRealPrice .dollar-sign,
.beforeRealPrice .price-floatPart{
    font-size: 9px;
}

.beforeRealPrice .price-intPart{
    font-size: 12px;
}

.home-products .home-image-container{
    position: relative;
    width: 100%;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.home-image-container img{
    position: relative;
    width: 100%;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    margin: 0;
}


.addToCart{
    position: absolute;
    height: fit-content;
    width: fit-content;
    padding: 8px;
    background: rgb(255, 255, 255,.9);
    border-radius: 50%;
    border: 1px solid rgb(100, 149, 237,.3);
    right: 4px;
    bottom: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #324483;
}

.cart-container{
    position: absolute;
    width: fit-content;
    right: 0;
    bottom: 0;
    padding: 10px;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor:pointer ;
    z-index: 200;
}

.custom-cart{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid #198754;
    background: #e8edfe;
}

.custom-cart span{
    white-space: nowrap; /* Prevents text from wrapping */
    width: auto;         /* Allows the element to grow in width */
}


.custom-cart-container{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #198754;
}

.cart-number{
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 35px;
    font-size: 10px;
    background: darkorange;
    color: #fff;
    width: fit-content;
    border: 3px solid #e8edfe;
    border-radius: 50%;
    padding: 3px;
} 


.cart-modal {
    width: 100%; /* Full width */
    max-width: none !important; /* Disable Bootstrap's max-width */
    height: 90%; /* 90% of viewport height */
    margin: 0; /* Remove margins */
    top: 10%;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }
  
  .modal-content {
    height: 100%;
  }

.cart-number:empty{
    display: none;
}

.cart-free-shipping{
    position: relative;
    top: -8px;
    font-size: 10px;
    background: #198754;
    color: #fff;
    padding-left: 5px;
    padding-right: 5px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.already-in-cart{
    position: absolute;
    top: -10px !important;
    right: 10px;
    font-size: 10px;
    background: darkcyan;
    color: #fff;
    font-size: 700;
    padding-right: 5px;
    padding-left: 5px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    width: auto;
}

.already-in-cart:empty{
    display: none;
}

.custom-cart-container .cart-text{
    font-size: 10px;
}

#recent-activities-container:empty{
    display: none;
}

.add-buy-item-container{
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.addItemToCart{
    cursor: pointer;
    background: gold;
    color: #161515;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    margin-bottom: 10px;
}

.buyItemNow{
    cursor: pointer;
    background: darkorange;
    color: #161515;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}

.displayAddToCart-container{
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-products .custom-badge{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    min-width: 40px;
    padding: 3px;
    padding-left: 10px;
    padding-right: 10px;
    border-top-left-radius: 15px;
    height: 15px;
    border-bottom-right-radius: 15px;
    background-color: darkorange;
    color: white;
    font-size: 10px;
    z-index: 100;
}



.home-products .custom-badge:empty{
    display: none;
}

.mySection .titleBar span{
    width: 100%;
    white-space: nowrap; /* Empêche le retour à la ligne */
    overflow: hidden; /* Cache le texte qui dépasse */
    text-overflow: ellipsis;/* Ajoute "..." à la fin du texte trop long */
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
}

.mySection .btnContent span{
    white-space: nowrap; /* Empêche le retour à la ligne */
    overflow: hidden; /* Cache le texte qui dépasse */
    text-overflow: ellipsis;/* Ajoute "..." à la fin du texte trop long */
    white-space: nowrap; /* Prevents text from wrapping */
    overflow: visible;   /* Keeps content visible, can be auto for scrollbars */
    width: auto;         /* Allows the element to grow in width */
    max-width: 100%;    /* Optional: Set a max-width */
}

.accountCard .customStyle{
    font-size: 16px;
    font-weight: 700;
}

.accountCard .cashBalance{
    position: absolute;
    top: 50px;
    height: 60px;
    width: 100%;
    background: transparent;
    color: #324483;
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
    justify-items: flex-start;
}

.accountCard .cashBalance .title{
    font-size: 10px;
    white-space: nowrap; /* Empêche le retour à la ligne */
    overflow: hidden; /* Cache le texte qui dépasse */
    text-overflow: ellipsis;/* Ajoute "..." à la fin du texte trop long */
    text-align: center;
    max-width: 100%;
}

.accountCard .cashBalanceContent{
    position: absolute;
    background:  rgb(243, 243, 243,.4);
    border-radius: 10px;
    max-width: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-left: 10px;
    padding-right: 10px;
    left: 10px;

}

.accountCard img{
    position: absolute;
    top: 5px;
    right: 10px;
    width: 50px;
    margin:0 ;
    padding: 0;
    background: transparent;
}

.mySection .rewards_history{
    position: relative;
    width: 100%;
    height: 200px;
    background: rgb(100, 149, 237,.2);
    margin-top: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    /*box-shadow: 5px 0 5px  rgba(45, 68, 118,.6);*/
}

.btnSection .btnContainer{
    margin-top: 40px;
    background: rgb(100, 149, 237,.2);
    border-radius: 10px;
}

#bar-menu-content .btnSection .btnContainer{
    margin-top: 0;
    background: #fff;
    border-radius: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.otherStyle{
    border: 1px solid  rgb(100, 149, 237,.2);
    background: transparent !important;
    border-radius: 10px;
}

.btnSection .btnContent,
.profileBntContainer .btnContent{
    margin-top: 10px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.menuBntContainer .btnContent{
    margin-top: 0;
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

.second-container .btnContainer{
    background: transparent;
}

.profileBntContainer .btnContent{
    background: rgb(250, 250, 250);
    padding: 10px;
    border-radius: 10px;
}

.profileBntContainer .btnContainer{
    padding: 25px;
}

.btnContent span{
    cursor: pointer;
    margin-right: 20px;
}

.btnContent .icon-with-badge span{
    margin-right: 0;
}

.btnContent > span:first-child{
    color: #324483;
    font-size: 20px;
}

.btnContent > span:nth-of-type(2){
    color:#777;
    font-weight: 500;
    font-size: 15px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.btnSection .rewards_history{
    height: 300px ;
}


.rewards_history .titleBar{
    position: absolute;
    top: 10px;
    width: 80%;
    height: 20px;
    background: #324483;
    border-radius: 10px;
    border-top-right-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.rewards_history .infoContainer{
    position: absolute;
    padding: 10px;
    top: 50px;
    width: 100%;
}

#myTeam_section .mysubsectionsContainer{
    background: #324483;
    border-radius:20px ;
    padding: 15px;
    padding-left: 18px;
    padding-right: 18px;
    max-width: 95%;
}

#myTeam_section .mysubsectionsInnerContainer{
    background: #fff;
    border-radius: 20px;
}

#myTeam_section .subsectionTitle{
    font-size: 18px;
    color: #fff;
    font-weight: 700;
    white-space: nowrap; /* Empêche le retour à la ligne */
    overflow: hidden; /* Cache le texte qui dépasse */
    text-overflow: ellipsis;
}

#myTeam_section .promo-code-container{
    position: relative;
    display: flex;
    flex-direction: column;
    background: #324483;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 20px;
}

#myTeam_section .promo-code-div{
    position: relative;
    display: flex;
    flex-direction: line;
    padding: 5px;
    background: #f3f3f3;
    border-radius: 15px;
    height: 50px;
}

#myTeam_section .copy-promo-code{
    position: absolute;
    right: 10px;
    top:50%;
    transform: translateY(-50%);
    width: fit-content;
    margin-left: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #324483;
    background: rgb(100, 149, 237,.2);
    padding: 5px;
    border-radius: 10px;
    font-size: 14px;
    cursor: pointer;
}

#myTeam_section .copy-promo-code:active{
    opacity: .1;
}

#myTeam_section .promo-code{
    width: 80%;
    display: flex;
    color : rgb(0, 100,150);
    font-size: 12px;
    font-weight: 700;
    padding-left: 10px;
    font-size: 16px;
}

.link{
    font-size: 12px !important;
}

#myTeam_section .promo-code-title{
    padding-left: 10px;
    font-size: 14px;
    color: #fff;
    font-weight: 700;
}

.active .rewards_history .amountSection{
    width: 33.3333%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #324483;
    font-weight: 500;
}

.rewards_history .title{
    font-size: 18px;
    margin-top: 50px;
    margin-bottom: 0;
}

.mySection .mysubsections{
    display: flex;
    flex-direction: line;
    justify-content: center;
    align-items: center;
    background: transparent;
    border-radius: 20px;
    border: 1px solid rgb(45, 68, 118,.2);
    background: rgb(100, 149, 237,.2);
    padding-bottom: 0;
}

#myShop_section .shopMenu-container{
    width: 100%;
    margin-top: 20px;
    overflow-y: hidden;
    overflow-x: auto;
    display: flex;
    flex-direction: line;
    background: #d5defd;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

#myShop_section .shopMenu{
    display: flex;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

#myShop_section .active{
    background: #e8edfe;
    position: sticky;
    right: 0;
    left: 0;
    margin-top: 10px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

#myShop_section .active .shopMenu-name-container span{
    color: #324483 !important;
    font-weight: 700;
}

#myShop_section .shopSubmenu-container, #myActivity_section .activity-menu-container{
    height: 40px;
    background: #e8edfe;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    display: flex;
    flex-direction: line;
    align-items: center;
    overflow-y: hidden;
    overflow-x: auto;
}

#myShop_section .shopSubmenu, #myActivity_section .activity-menu-container{
    display: flex;
    flex-direction: line;
}

#myActivity_section .activity-menu-container{
    background: #e8edfe;
}

#myShop_section .shopSubmenu span, #myActivity_section .activity-menu-container span{
    height: 25px;
    margin-right: 10px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 3.5rem;
    border: none;
    color: #616060;
    font-size: 13px;
    cursor: pointer;
    white-space: nowrap; /* Prevents text from wrapping */
    width: auto;         /* Allows the element to grow in width */
    max-width: 100%;    /* Optional: Set a max-width */
}

#myActivity_section .activity-menu-container span{
    background: #fff;
    z-index: 10;
}

#myActivity_section .filter-container{
    position: sticky;
    top: 0;
    padding-top: 10px;
    z-index: 12;
    background: #e8edfe;
}

#package-in-activity:empty{
    display: none;
}

#myShop_section .shopSubmenu .active, #myActivity_section .activity-menu-container .active{
    border: 2px solid #d5defd;
    color: #324483;
    margin-top: 0;
    background: #fff;
    font-size: 13px;
    font-weight: 700;
}

#myActivity_section .activity-menu-container .active{
    position: sticky;
    left: 0;
    right: 0;
    z-index: 100;
}

.shopMenu .shopMenu-name-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin:10px ;
    color: #616060;
}

.shopMenu-name-container .shopMenu-name{
    font-size: 14px;
    white-space: nowrap; /* Prevents text from wrapping */
    width: auto;         /* Allows the element to grow in width */
    max-width: 100%; 
}

#myShop_section .master-container{
    position: relative;
    height: auto;
    padding-left: 10px;
    padding-right: 10px;
}

#myActivity_section .input-container,
#myShop_section .input-container{
    position: relative;
    width: 100%;
    background: #fff;
    border-radius: 5rem;
    padding: 5px 40px; /* Padding leaves space for the icon */
    font-size: 16px;
    color: #b0acac;
    cursor: text;
}


#SearchActivityModal .input-container {
    position: relative;
    width: fit-content;
}

#SearchActivityModal .input-container input {
    width: 100%;
    padding-left: 10px;
    padding-right: 40px ;/* Padding leaves space for the icon */
    font-size: 14px;
    border-radius: 5rem;
    background: #fff;
}

#searchActivityModal .modal-body{
    display: block;
    height: fit-content;
    
}

#myActivity_section .input-container .icon,
#myShop_section .input-container .icon{
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
}

#SearchActivityModal .input-container .icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #86b7fe;
    height: 100%;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-top-right-radius: 5rem;
    border-bottom-right-radius: 5rem;
    cursor: pointer;
}

#SearchActivityModal .searchActivity-container{
    position: sticky;
    top: 0;
    padding: 10px;
    padding-top: 20px;
    padding-left: 30px;
    width: 100%;
    background: rgb(213, 222, 253);
    z-index: 100;
}

.sacontainer{
    align-items: center;
    display: flex;
    flex-direction: line;
}

#SearchActivityModal .searchActivity-container span{
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 10px;
    padding-left: 0;
    padding-right:20px ;
    font-size: 20px;
    font-weight: 700;
}

.custom-opacity {
    opacity: 1 !important;
}

opacity

.legal-agreement-container {
    position: relative;
    margin-top: 50px;
    margin-bottom: 10px;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #324483;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.legal-agreement-container .legal-agreement, .legal-agreement-container .version{
    margin-bottom: 10px;
}

.mysubsections .subsection{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 33.33%;
    background:transparent;
    border-radius: 10px;
    margin: 10px;
    padding: 5px;
    margin-bottom: -2px;
    cursor: pointer;
    white-space: nowrap; /* Empêche le retour à la ligne */
    overflow: hidden; /* Cache le texte qui dépasse */
    text-overflow: ellipsis;/* Ajoute "..." à la fin du texte trop long */
}

.subsection div{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.subsection span {
    margin-top: 10px;
}

.subsection .fa-users{
    font-size: 24px;
}

.subsection div span {
    margin-top: 10px;
    margin-bottom: 0px;
}

.mySection .mysubsections .subsection-name{
    position: relative;
    width: 100%;
}

.subsection-name > span:first-child{
    color: rgb(45,65,118,.5);
    font-size: 24px;
}

.subsection-name > span:nth-of-type(2){
    position: relative;
    display: block;
    color:#777;
    font-weight: 500;
    font-size: 18px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    width: 100%;
    text-align: center;
    padding-left:5px ;
    padding-left: 5px;
    white-space: nowrap; /* Empêche le retour à la ligne */
    overflow: hidden; /* Cache le texte qui dépasse */
    text-overflow: ellipsis;/* Ajoute "..." à la fin du texte trop long */
}

.subsection-name i{
    color: #777;
    font-weight: 700;
    font-size: 24px;
    padding: 0;
    margin: 0;
}

.subsection-name .active > span:nth-of-type(1){
    color: #324483;
}

.mysubsections .active{
    background: #fff;
}

.mysubsections .active{
    border: 1px solid rgb(45, 68, 118,.2);
    border-bottom: none;
    transition:all ease 0.7s;
}

.active .pseudo, .active .team-number {
    color: #324483 !important;
}

.mysubsections .team-number{
    visibility: hidden;
    font-weight: 500;
    font-size: 18px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.mysubsections .active .team-number{
    visibility: visible;
}

.rewards_history .customStyle{
    font-size: 16px;
    font-weight: 700;
}

.rewards_history .cashBalance{
    position: absolute;
    bottom: 20px;
    height: 60px;
    width: 100%;
    background: transparent;
    color: #324483;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rewards_history .cashBalanceContent{
    border-radius: 10px;
    background: rgb(255, 255, 255,.5);
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mySection .otherTask{
    position: relative;
    height: 200px;
    border-radius: 10px;
    box-shadow: 5px 0 5px  rgba(45, 68, 118,.6);
    background: #324483;
    margin-top: 40px;
}

.products-container .products{
    position: relative;
    background: #fff;
    width: 100%;
    height: fit-content;
    border-radius: 15px;
    cursor: pointer;
    margin: 0;
    padding: 0;
}

.products .image-container{
    width: 100%;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.image-container img{
    position: relative;
    height: 100%;
    width: 100%;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.products .pdescription-container{
    position: relative;
    color: #616060;
    font-weight: 500;
    padding: 0;
}

.image-inboxer{
    position: relative;
    width: 100%;
    height: fit-content;
}

.products-container{
    padding: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.products-container .phop{
    position: absolute;
    background: rgb(255, 255, 255,.8);
    bottom: 0;
    left: 10px;
    font-size: 10px;
    font-weight: 700;
    color: rgb(13, 127, 242);
    border-radius: 10px;
    padding-left: 5px;
    padding-right: 5px;
}

.products-container .pbrain{
    font-size: 10px;
}

.products-container .innerpdcontainer > *{
    display: block;
    font-size: 13px;
}

.products-container .prsection{
    width: 100%;
    display: flex;
    flex-direction: line;
}

.products-container .ppcontainer{
    position: relative;
    padding-right: 10px;
    padding-left: 10px;
}

.products-container .prsection .ptimecontainer{
    width: 50%;
    white-space: nowrap; /* Empêche le retour à la ligne */
    overflow: hidden; /* Cache le texte qui dépasse */
    text-overflow: ellipsis;
    padding-right: 5px;
    text-align: left;
}

.products-container .ptimecontainer> span{
    position: relative;
    width: 50%;
}

.products-container .prsection .brpcontainer{
    width: fit-content;
    margin: 0;
    padding: 0;
    white-space: nowrap; /* Empêche le retour à la ligne */
    overflow: hidden; /* Cache le texte qui dépasse */
    text-overflow: ellipsis;
}


.phop .fa-fire{
    color: darkorange;
}

.products-container .prsection .amount-container,
.products-container .prsection .ptime{
    text-align: left;
    color: darkorange;
}

.products-container .prsection .ptime{
    font-size: 10px;
    white-space: nowrap; /* Empêche le retour à la ligne */
    overflow: hidden; /* Cache le texte qui dépasse */
    text-overflow: ellipsis;
}

.products-container .dratecontainer{
    font-size: 10px;
    margin-top: 5px;
    margin-bottom:10px ;
}

.products-container .cddiscount {
    display: flex;
    flex-direction: line;
    padding: 2px;
    padding-right: 10px;
    padding-left: 10px;
    width: 100%;
    background: rgb(180,0,32,.7);
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.products-container .pdescription,
.products-container .pname,
.products-container .drate,
.products-container .drate-container,
.products-container .pbrain-container,
.products-container .innerpdcontainer{
    white-space: nowrap; /* Empêche le retour à la ligne */
    overflow: hidden; /* Cache le texte qui dépasse */
    text-overflow: ellipsis;
}

.products-container .cddiscount  div{
    margin-right: 10px;
    color: #fff;
    font-weight: 700;
    width: 50%;
}

.products-container .cddiscount .cddiscountcontainer > span:first-child{
    margin-right: 5px;
    text-align: left;
    font-weight: 700;
}

.products-container .drate{
    font-size: 12px;
    margin-right: 0;
}

.products-container .cddiscountcontainer{
    width: 40%;
    line-height: 11px;
}

#myShop_section .mysubsections{
    background: rgb(100, 149, 237,.2);
}

#myActivity_section .search-and-filter-container{
    position: relative;
    display: grid;
    grid-template-columns: 1fr 30px;
}

#myActivity_section .package-tracking{
    width: 100%;
    position: relative;
    background: #fff;
    display: grid;
    grid-template-columns: 30px 1fr 30px;
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
}

#myActivity_section .package-tracking i{
    color: #324483;
    font-size: 20px;
}

.search-and-filter-container .fa-sliders{
    color: #324483;
    font-size: 20px;
    cursor: pointer;
}

.activities-status-container{
    padding-left: 10px;
}

.activity-bg{
    background:rgb(0, 0, 0,.05);
    border-radius: 8px;
    margin-right: 0;
}

.subactivities-container{
    border-radius: 10px;
    padding: 15px;
    padding-top: 8px;
    padding-bottom: 8px;
}

.status-end-bar{
    background: #fff;
    padding-top: 5px;
    padding-bottom: 5px;
}

.period-end-bar{
    background: #fff;
    border-radius: 10px;
    padding-top: 2px;
    padding-bottom: 2px;
}

.subactivities{
    position: relative;
    display: grid;
    grid-template-columns: 52px 1fr 100px;
    cursor: pointer;
}

.subactivities span:empty{
    display: none;
}

.activity-status-title{
    margin: 0;
    margin-top: 10px;
    margin-bottom: 10px;
    color: #324483;
    font-size: 16px;
    background: transparent;
}

.results-found{
    position: relative;
}

.activity-duration{
    display: block;
    margin-top: 10px;
    padding:0;
    padding-left: 30px;
    padding-bottom: 5px;
    color: #777;
    font-size: 12px !important;
    font-weight: 700;
    background: transparent;
}

.activity-duration:empty{
    display: none;
}

.img-activity{
    padding-right: 5px;
}

.img-activity img{
    height: 52px;
    width: 52px;
    border-radius: 5rem;
}

.activity-nadaty,
.activity-ampost{
    position: relative;
    display: flex;
    flex-direction: column;
    padding-left: 5px;
    font-weight: 700;
}

.activity-nadaty .activity-name{
    font-size: 16px;
}

.activity-ampost .activity-amount{
    font-size: 14px;
}

.activity-nadaty .activity-date,
.activity-nadaty .activity-type,
.activity-ampost .activity-status{
    font-size: 12px;
    color: #777;
}

.activity-ampost .activity-points{
    font-size:12px ;
}

.activity-ampost{
    text-align: right;
}

.search-result{
    position: relative;
    height:fit-content;
    overflow-y:auto;
    overflow-x:hidden;
}

#myActivity_section .display-activities-container{
    padding-bottom: 80px;
    height: auto;
}

#filterBydateRangeModal .filterPlage-container,
#filterBydateRangeModal .filterPlage-container div{
    display: flex;
    flex-direction: line;
    align-items: center;
}

#filterBydateRangeModal .filterPlage-container span{
   margin-right: 10px;
   
}

#filterBydateRangeModal .filterPlage-container .from-container{
    margin-right:10px ;
}

#filterBydateRangeModal .filterPlage-container .to-container{
    margin-left: 10px;
}

#dateRange-container{
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    background: transparent;
}

#dateRange-container:empty{
    display: none;
}

#dateRange-container .dateRange{
    display: flex;
    flex-direction: line;
    align-items: center;
    width: 100%;
    font-weight: 700;
    margin-left: 20px;
    border-radius: 5rem;
    padding: 5px 10px;
    background: rgb(10,140,255,.2);
    color: #324483;
}

#dateRange-container .dateRange-content{
    font-size: 12px;
    margin-right: 5px;
}

#dateRange-container .fa-xmark{
    font-size: 20px;
    margin-left: 5px;
    font-weight: 100 !important;
    cursor: pointer;
}

#display-activities-container .empty-list-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 85px;
    padding: 20px;
    padding-left: 30px;
    padding-right: 30px;
}

.padMarBottom{
    margin-bottom: 85px !important;
}

#display-activities-container .empty-list-container img{
    width: 120px;
    margin-bottom: 20px;
}

#display-activities-container .empty-list-container span{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    font-size: 26px;
    color: #b0acac;
    font-weight: 300;
}

#chooseAnotherDateRange{
    display: block !important;
    margin-top: 20px !important;
    font-size: 14px !important;
    color:#1286fa !important;
    font-weight: 700 !important;
    cursor: pointer !important;

}


#SearchActivityModal .search-product{
    display: flex;
    flex-direction: line;
    align-items: center;
    padding: 5px;
    padding-left: 20px;
    cursor: pointer;
    background: rgb(213, 222, 253,.8);
    border-bottom-left-radius: 10%;
}

#SearchActivityModal .search-product .fa-search{
    padding: 5px;
    padding-left: 0;
    font-size: 16px;
}

#SearchActivityModal .search-product .result-text{
    padding: 5px;
    font-size: 14px;
    white-space: nowrap; /* Empêche le retour à la ligne */
    overflow: hidden; /* Cache le texte qui dépasse */
    text-overflow: ellipsis;/* Ajoute "..." à la fin du texte trop long */
}

#SearchActivityModal .search-product-container .trace{
    width: 100%;
    height: 0;
    border-top: 1px solid #e3e2e2;
}
/*------------------------------------------*/
.secondaryBloc{
    position: fixed !important;
    top: 0;
    left: 0;
    margin:0;
    padding: 0;
    height: 100%;
    width: 100%;
    background: transparent;
    display: block ;
    overflow-x: hidden;
    overflow-y: auto;
}

.secondaryBloc .second-container{
    position: fixed;
    top: 0;
    left: 0;
    display: grid;
    grid-template-rows:50px 1fr;
    align-items: center;
}

.secondaryBloc .second-header{
    margin-top: 10px;
    display: flex;
    flex-direction: line;
    justify-items: center;
    align-items: center;
}

.secondaryBloc .second-header >*{
    position: relative;
    width: 32%;
    margin: 20px;
}

.secondaryBloc .second-header h4{
    font-size: 18px;
    font-weight: 500;
    color: #616060;
}

#bar-menu-subsection h4{
    font-size: 15px;
    font-weight: 500;
    padding: 0;
}

.secondaryBloc .second-header .fas{
    color: #324483;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
}



.second-container .second-body{
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
}

.second-container .back-fore-ground-container{
    position: absolute;
    height: 270px;
    width: 350px;  
    top: 70px;
}

.back-fore-ground-container .bground,.back-fore-ground-container .bground img{
    display: flex;
    align-items: center;
    width: 100%;
    height: 100px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;

}
.back-fore-ground-container .fground,
.back-fore-ground-container .fground img{
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100px;
}

.fground span{
    position: absolute;
    font-weight: 500;
    color: #324483;
}

.fground .userFullname{
    top: 160px;
    font-size: 16px;
    text-transform: uppercase;
}

.fground .username{
    top: 190px;
    font-size: 12px;
    color: #616060;
}

.fground .editProfileBnt {
    position: absolute; /* Ensure it's positioned if not already */
    top: 130px;
    left: 205px; /* Center horizontally if needed */
    transform: translateX(-50%); /* Center correction */
    font-size: 12px;
    border: 1px solid #324483;
    border-radius: 50%;
    padding: 5px;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 100;
    transition: background-color 0.3s, transform 0.2s;
}

.fground .editProfileBnt:hover {
    background-color: rgba(255, 255, 255, 0.7);
    transform: translateX(-50%) scale(1.05);
}


.fground .editProfileBnt:active{
    opacity: .1;
}

.back-fore-ground-container .bground{
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    background: rgb(250, 250, 250);
}

.back-fore-ground-container .bfground-container{
    position: relative;
    height: 100%;
    width: 100%;
    background: rgb(100, 149, 237,.19);
    border-radius: 15px;
}

.back-fore-ground-container .fground img{
    position: absolute;
    display: flex;
    align-items: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    top: 20%;
    left: 20%;
    border: 3px solid #fff;
}

.fground .profileLetter{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    top: 20%;
    left: 20%;
    border: 3px solid white;
    border-radius: 50%;
    background-color: #324483; 
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 24px;
}

.second-body .profileBntContainer{
    position: absolute;
    margin-top: 370px;
}

.second-body .menuBntContainer{
    position: relative;
}

/*-------------------------------------------------------------------------*/
.theFooter{
    display: flex;
    position: fixed;
    width: 100%;
    flex-direction: line;
    align-items: center;
    justify-content: center;
    background: #d5defd;
    z-index: 1000;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 10px;
    margin: 0;
    border: 1px solid rgb(100, 149, 237,.2);
}

.theFooter .fContent{
    width: 20%;
    color: #979797;
    font-size: 12px;
    cursor: pointer;
    white-space: nowrap; /* Empêche le retour à la ligne */
    overflow: hidden; /* Cache le texte qui dépasse */
    text-overflow: ellipsis;/* Ajoute "..." à la fin du texte trop long */
}

.theFooter .fContent button{
    border: none;
    background: transparent;
}

.theFooter .active button{
    background: #324483 !important;
    height: 25px !important;
    width: 55px !important;
    border-radius: 20px !important;
    transition:all ease 0.1s;
    
}

.theFooter .active span{
    color: #fff !important;
    transition:all ease 0.1s;
}

.theFooter .active label{
    color: #324483 !important;
    font-weight: 700;
    transition:all ease 0.1s;
}



.theFooter .fContent span{
    color: #777;
    font-size: 16px;
}

.theFooter .fContent label{
    width: 100%;
    text-align: center;
    white-space: nowrap; /* Empêche le retour à la ligne */
    overflow: hidden; /* Cache le texte qui dépasse */
    text-overflow: ellipsis;/* Ajoute "..." à la fin du texte trop long */
}

.rotate-90 {
    transform: rotate(90deg);
    transform-origin: center;
}

.rotate-30 {
    transform: rotate(30deg);
    transform-origin: center;
}

/***************************************************************************/
.hide_container{
    display: none !important;
}



/* Real-time UI Animations */
@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.5; }
  100% { opacity: 1; }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.notification-item {
  animation: fadeInDown 0.3s ease-out;
}

.status-indicator .status-dot {
  transition: all 0.3s ease;
}

#user-count-indicator.updated {
  animation: pulse 0.5s ease-in-out;
}

.connection-quality-excellent { color: #28a745; }
.connection-quality-good { color: #17a2b8; }
.connection-quality-fair { color: #ffc107; }
.connection-quality-poor { color: #dc3545; }

/* Performance indicators */
.performance-good { color: #28a745; }
.performance-warning { color: #ffc107; }
.performance-critical { color: #dc3545; }



/**********************END BODY CONTAINER SECTION*************************/


