.addreview{
    width: 180px;
    height: 55px;
}
.review-card {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 3px 20px;
    border: 1px solid transparent;
    transition: ease 250ms;
    /* Ask Jehad if its ok */
    height: 360px;
}
.review-card .card-body {
    background-image: url(/assets/reviews/quote.svg);
    background-size: 14px;
    background-repeat: no-repeat;
    background-position: 94% top;
}
.review-card:hover {
    border: 1px solid var(--custom-primary);
    transition: ease 250ms;
}
.readmore::before {
    content: "";
    width: 0;
    transition: ease 250ms;
    height: 7px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--custom-primary);
}
.review-card:hover .readmore::before {
    width: 500px;
    transition: ease 250ms;
}
.review-name {
    font-size: 14px;
    font-weight: bold;
    color: #244c5f;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.total-rate {
    font-size: 14px;
    color: #244c5f;
}
.review-date {
    font-size: 12px;
    color: #244c5f76;
}
.review-avatar {
    height: 82px;
    width: 82px;
    object-fit: cover;
    border-top-right-radius: 6px;
    border-bottom-left-radius: 6px;
}
.review-star-icon {
    width: 10px;
}
.review-star-icon-all{
    width: 24px;
}
.review-by-all{
    font-size: 18px;
}
.total-rate-all{
    font-size: 1rem;
    color: #000;
    font-weight: bold;
}
.total-users{
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
}
.review-by {
    font-size: 12px;
    color: #244c5f;
    opacity: 50%;
}
.review-content {
    color: #000;
    font-size: 14px;
    height: 210px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 10;
    -webkit-box-orient: vertical;
    text-align: justify;
}

.review-content.expand {
    height: 100%;
    -webkit-line-clamp: unset !important;
}
.readmore {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.45);
}
.reviews-filteration button{
    border: 2px solid transparent;
    border-radius: 6px;
    color: #65818E;
    font-weight: bold;
}
.reviews-filteration button img{
    width: 24px;
}
.reviews-filteration button.active,
.reviews-filteration button:hover{
    border: 2px solid var(--custom-primary);
    color: var(--custom-primary);
    font-size: 1rem;
}
.all-total-rates{
    font-size: 14px !important;
}
.loadmore-button{
    background-color: #3cabe329;
    border-radius: 6px;
    color: var(--custom-primary);
    font-size: 18px;
}
.loadmore-button:hover{
    transform: translateY(-5px);
    color: var(--custom-primary);
}

@media(max-width:991px){
    .reviews-filteration button{
        background-color: #fff;
    }
    .reviews-filteration button.active,
    .reviews-filteration button:hover{
        border: 2px solid transparent;
        background-color: #3cabe329;
    }
    .review-by-all{
        font-size: 1rem;
    }
    .review-star-icon-all{
        width: 16px;
    }
    .reviews-filteration button{
        width: 122px;
        height: 110px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .reviews-filteration button span{
        font-size: 14px;
    }
    .addreview{
        width: 140px;
        height: 50px;
    }
}

.loading{
    -webkit-animation:spin 4s linear infinite;
    -moz-animation:spin 4s linear infinite;
    animation:spin 4s linear infinite;
}
@keyframes loading {
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
    }
}
#reviews .row > *{
    padding: 0 8px !important;
}

#vueModal.offcanvas{
    height: 414px;
    margin-bottom: 72px;
}
#vueModal .review-content{
    height: 350px;
    overflow: unset;
    -webkit-line-clamp:unset;
    -webkit-box-orient: unset;
}
#vueModal .review-card{
    height: 100%;
    overflow: scroll;
}