.publish-review-info {
    padding-bottom: 20px;
}

.publish-review-info img {
    width: 200px;
    object-fit: cover;
}

.overview-rate {
    display: flex;
    align-items: center;
}

.final-rate {
    padding: 40px 0;
    border-radius: 50%;
    text-align: center;
}

.final-rate-number {
    font-size: 5rem;
    font-weight: 100;
}

.rate-bars {
    width: 100%;
}

.rate-bar {
    margin-bottom: 0px;
    display: flex;
    align-items: center;
}

.rate-number {
    margin-right: 5px;
}

.bar {
    width: 0px;
    height: 25px;
    transition: width 1s cubic-bezier(0.18, 0.71, 0.63, 1);
}

.bar-5 {
    background: #2ce080;
}

.bar-4 {
    background: #92e02c;
}

.bar-3 {
    background: gold;
}

.bar-2 {
    background: #ff9941;
}

.bar-1 {
    background: #ff4187;
}

.review-media .time {
    font-size: 11px;
    margin: 0;
}

.review-media-heading h4{
    font-size: 15px;
}

.review-content {
    font-size: 15px;
    color: rgb(33, 33, 33, .5);
}

.author {
    font-weight: bold;
    font-size: 1em;
}

.user-img {
    float: left;
    width: 40px;
    height: 40px;
    border: 1px solid #CCC;
    border-radius: 50%;
}

.rating {
    font-size: 0.8em;
}

.rating>div {
    float: left;
    margin-right: 0.5em;
}

.btn-loadmore {
    text-align: center;
    width: 100%;
    text-decoration: underline;
    cursor: pointer;
    margin-bottom: 34px;
}

@media (max-width: 768px) {
    .overview-rate {
        flex-direction: column
    }

    .publish-review-info {
        text-align: center;
    }

    .publish-review-info img {
        width: 75vw;
        object-fit: cover;
    }
}