/*

    Sellix.me
    ------------
    Version 0.2.24

*/

.btn-custom{
    align-self: center;
}
.reviews_cards{
    display: flex !important;
    flex-direction: column;
}
.review_card_container{
    display: flex;
    justify-content: space-between;
}
.reviews_card__verified {
    color: var(--bs-green);
    font-size: 15px;
    font-weight: 500;
    
}
#loadMoreBtn {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#loadMoreBtn:hover {
    background-color: var(--primary-dark);
}

.reviews{
    background: var(--backgroundSecondary);
    padding: 70px 0 60px;
    width: 100%;
}

.reviews_title{
    font-size: 26px;
    font-weight: 600;
    color: var(--primary);
}

.reviews_description{
    color: var(--text-secondary);
    font-weight: 400;
    font-size: 15px;
    width: 80%;
}

.reviews_description::after{
    content: "";
    position: static;
    display: block;
    border-radius: 100px;
    margin-top: 35px;
    margin-bottom: 38px;
    height: 1.7px;
    width: 100%;
    background: linear-gradient(90deg, rgba(39,35,51,1) 0%, rgba(19,17,26,0) 75%);
}

.reviews_button{
    float: right;
    background: var(--elements);
    color: var(--primary);
    padding: 17px 70px;
    transition: .2s;
}

.reviews_button:hover{
    opacity: 0.7;
    transition: .2s;
}

.review_card{
    background: var(--elements);
    padding: 17px 22px 31px;
    margin-bottom: 20px;
    border-radius: 6px;
}

.review_user{
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 20px;
}

.review_user img{
    width: 60px;
    height: 60px;
    max-height: 60px;
    max-width: 60px;
}

.review_user h6{
    margin-top: 20px;
    color: var(--primary);
    font-weight: 500;
}

.review_user p{
    font-size: 15px;
    margin-top: -10px;
    color: var(--text-secondary);
}

.review_stars{
    display: flex;
    gap: 8px;
}

.review_title{
    color: var(--text-light);
    margin-top: 30px;
    margin-bottom: 7px;
}

.review_description{
    font-size: 15px;
    color: var(--text-secondary);
}

@media only screen and (max-width: 768px) {
    .reviews_button{
        margin-bottom: 20px;
        float: left;
    }

    .reviews{
        padding: 40px 0 30px;
    }

    .reviews_description{
        width: 100%;
    }
}

@media only screen and (max-width: 500px) {
    .review_card_container{
        flex-direction: column;
        row-gap: 10px;
        align-items: center;
    }
}



.review_button_load{
    background: var(--primary);
    color: var(--text-dark)!important;
    padding: 10px 20px;
    width: 150px;
    border: none;
    cursor: pointer;
    transition: .2s;
    border-radius: 6px;
}

.review_button_load:hover{
    background: var(--elements);
    color: var(--primary)!important;
    transition: .2s;
}


.review_button_reset{
    background: var(--elements);
    color: white;
    padding: 10px 20px;
    width: 150px;
    border: none;
    cursor: pointer;
    transition: .2s;
    border-radius: 6px;
}


.LoadMoreContainer{
    display: flex;
    justify-content: center;
    gap: 20px;
}

.review_button_reset:hover{
    background: var(--elements-dark);
    color: var(--primary)!important;
    transition: .2s;
}