.primary-text {
    color: var(--main-hsl-color);
}
/* Hidden on mobile display*/
@media(max-width:992px) {
    .mobile-hide {
        display: none;
    }
}
h2.section-title {
    font-size: 18px;
    margin-bottom: 15px;
}
.center-text {
    text-align: center;
}


/* pages solde points */
#module-hs_cluballocation-account #content-wrapper{
    max-width: 1024px;
    margin: auto;

    #see_privilege_products{
        text-align: center;
        padding-bottom: 25px;
        a{
            background-color: var(--main-hsl-color);
            color: #fff;
            border-radius: 5px;
            text-align: center;
            padding: 10px 20px;
        }
    }
}
#loyalty-credit-container {
    width: 100%;
    margin-bottom: 30px;

    & .loyalty-credit-solde {
        background-color: var(--main-hsl-color);
        padding: 10px;
        display: flex;
        gap: 8px;

        &.allocation{
            background-color: var(--allocation-hsl-color);
            & div{
                & h2{
                    border-bottom: 1px solid var(--allocation-hsl-color);
                }
            }
            .primary-text{
                color: var(--allocation-hsl-color);
            }
        }

        picture {
            width: 40%;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            img {
                max-width: 100%;
                height: auto;
                max-height: 160px;
            }
        }  
        & div {
            background-color: #fff;
            padding: 10px 10px 0 10px;
            width: 60%;
            text-align: center;
            h2 {
                border-bottom: 1px solid var(--main-hsl-color);
                width: 100%;
                padding-bottom: 5px;
                font-size: 16px;
                margin-bottom: 0;
            }
            .solde-big {
                font-size: 50px;
                font-weight: 100;
                margin-bottom: 0;
                line-height: 1.5;
                & + p {
                    margin-top: 0;
                    margin-bottom: 0;
                    font-weight: 400;
                }
            }
            .solde-euro {
                font-size: 12px;
                margin-top: 10px;
                font-weight: 300;
                font-style: italic;
                span {
                    font-weight: 600;
                    font-size: 14px;
                }
            }
        }
    }
    & .text-part {
        background-color: var(--bk-hsl-txt);
        padding: 20px;
        a {
            text-decoration: underline;
            margin-top: 15px;
        }
    }
}
table.historique-points {
    width: 100%;
    margin-bottom: 25px;
    tr {
        padding: 10px 3px;
        border-top: 1px solid var(--gray-hsl-color);
        &:has(th) {
            border-bottom: 2px solid var(--gray-hsl-color);
            border-top: 2px solid var(--gray-hsl-color);
        }
        
        th {
            padding: 10px 0;
            color: var(--allocation-hsl-color);
            font-weight: 400;
            font-size: 15px;
            &:first-child {
                width: 25%;
            }
            &:nth-child(3) {
               text-align: center; 
               width: 40%;
            } 
            &:last-child {
                width: 35%;
                text-align: center;
            }           
        }
        td {
            padding: 8px 0;
            &:not(:first-child) {
               text-align: center; 
            }
            &:not(:last-child) {
                font-weight: 600;
            }
            a {
                text-decoration: underline;
            }
        }
        .mobile-info {
            font-size: 12px;
            font-weight: 400;
            display: block;
        }
    }
}
.hs-block-reward{
    color: var(--main-hsl-color);
    font-size: 13px;
    text-align: center;
}
@media(min-width: 768px) {
    #loyalty-credit-container {
        display: flex;
        & .loyalty-credit-solde {
            width: 50%;
            h2 {
                font-size: 20px;
            }
            picture {
                width: 50%;
            }
            & > div {
                width: 50%;
            }
        }
        & .text-part {
            width: 50%;
        }
        
    }
}
@media(min-width:992px) {
    #loyalty-credit-container {
        margin: 0 auto 50px auto;
        & .loyalty-credit-solde {
            width: 50%;           
            picture {
                width: 40%;
            }
            & > div {
                padding: 20px 10px 20px 10px;
                width: 60%;
                h2 {
                    font-size: 20px;
                }
            }
        }
        & .text-part {
            padding: 20px 50px;
            width: 50%;
        }
    }

    table.historique-points {
        margin-bottom: 30px;
        tr {
            padding: 10px 8px;            
            th {
                padding: 12px 0;
                font-size: 16px;
                text-align: center;
                &:nth-child(1), &:nth-child(2) {
                    width: 15%;
                }
                &:nth-child(3) {
                    width: 30%;
                } 
                &:nth-child(4), &:nth-child(5) {
                    width: 20%;
                }
            }
            td {
                text-align: center;
                padding: 12px 0;
                &:nth-child(4) {
                   font-weight: 400; 
                }        
                
            }
            .mobile-info {
                display: none;
            }
        }
    }
}