.d-flex {
    display: flex
;
}
.mb-3 {
    margin-bottom: 0.5rem !important;
}
.mb-4 {
    margin-bottom: 0.75rem !important;
}
.text-green{color: #56bc00;}
.card .card-header {
    padding: 10px 15px;
    border-radius: 4px 4px 0px 0px;
    font-size: 1.1em;
}
.card .card-body {
    padding: 15px;
}
.card-review-summary {
    border: 1px solid silver;
    border-radius: 8px;
    box-shadow: 0 0 4px rgba(0, 0, 0, .4);
    padding: 15px;
}

.card-review-summary .content-summary {
    margin-left: 15px;
    border-left: 1px solid #ccc;
    padding-left: 15px;
    width: 80%;
}

.card-review-summary h2 {
    font-size: 3rem
}

.rating-summary {
    margin-bottom: 30px;
}

.rating-average {
    font-size: 32px;
    font-weight: bold;
}

.rating-bar {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.rating-label {
    width: 60px;
}

.rating-count {
    margin-left: 10px;
    color: #666;
}

.progress {
    flex-grow: 1;
    margin: 0 10px;
    height: 18px;
    border-radius: 10px;
    background-color: #f5f5f5;
    width: 400px;
}

.progress-bar {
    line-height: 18px;
    font-size: 12px;
}

.rating-comments .review-box {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.avatar {
    font-size: 32px;
    color: #999;
}

.d-inline {
    display: inline-block;
}

.gap-10 {
    gap: 10px
}

.card-review .card-body {
    border: 1px solid #337ab7
}

.star-rating {
    display: grid;
    justify-content: center;
    margin-bottom: 1rem;
    text-align: center;
}

.star-rating label {
    margin-bottom: 15px
}

.stars {
    cursor: pointer;
}

.stars .fa-star {
    transition: color 0.2s;
    font-size: 2.2em;

}

.stars .fa-star {
    color: #000;
}

.fa-star.filled {
    color: #ffd700;
}

.justify-content-between {
    justify-content: space-between;
}

.align-items-center {
    align-self: center;
}

.gap-1 {
    gap: 1rem
}

.flex-wrap {
    flex-wrap: wrap
}

.d-none input {
    display: none !important
}

.submit-review {
    margin-top: 20px
}

@media only screen and (max-width: 767px) {
    .card-review-summary {
        font-size: 11px;
    }

    .card-review-summary .content-summary {
        margin-left: 10px;
        padding-left: 10px;
    }

    .progress {
        width: 100px;
    }
}