.qualitelis{

    h2{
        font-family: 'Cal Sans';
        text-transform: uppercase;
        font-size: 36px;
        margin-top: 0;
        padding-bottom: 0;
        margin-bottom: 40px;
        color: #702382;
    }
    .qualitelis-container{
        column-count: 2;
        column-gap: 20px;
        transition: 0.5s all;
        &.loading {
            opacity: 0.5;
            pointer-events: none;
        }
        .qualitelis-review-item{
            break-inside: avoid;
            margin-bottom: 20px;
            padding: 15px;
            border-radius: 8px;
            border: 0px solid #702382;
            background-color: #ffffff;
            justify-content: center;
            box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
            display: flex;
            flex-direction: column;
            .review-header{
                font-family: 'Cal Sans';
                display: flex;
                justify-content: space-between;
                margin-bottom: 20px;
                font-size: 18px;
                .review-rating{
                    display: flex;
                    gap: 25px;
                    .review-stars{
                        color: #702382;
                    }
                }
            }

        }
    }
    .qualitelis-pagination{
        .disabled {
            opacity: 0.4;
            pointer-events: none;
            cursor: default;
        }
    }
}