.rating_wrapper {
    width: 500px;
    display: flex;
    align-items: center;
}

.rating_summary_wrapper{
    width: 200px;
}

.progressbar_wrapper {
    width: 350px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.average_rating_wrapper{
    width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.total_rating_reviews {
    width: 200px;
    display: flex;
    justify-content: center;
    font-size: 17px;
    font-weight: 700;
}

.average_rating{
    font-size: 30px;
    font-weight: 700;
}

.average_rating_icon svg{
    fill: #0000ff;
    font-size: 32px;
    font-weight: 800;
}
.rating_progressbar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap:10px;
}
.rating_number {
    font-size: 16px;
    font-weight: 500;
}

.rating_icon {
    fill: #0000ff;
    font-size: initial;
}

.fill_progress_bar {
    height: 15px;
    background-color: #0000ff;
}
.background_progress_bar {
    background-color: #D9D9D9;
    height: 13px;
    width: 300px;
    font-size: large;
    font-weight: 800;
}
@media (max-width: 480px) {
.rating_wrapper {
    display: block;
}
.progressbar_wrapper {
    width: 333px;
}
.total_rating_reviews {
    height: 32px;
}
}