.rating {
    padding: 1rem;
    width: 33.33%;
    box-sizing: border-box;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.rating svg {
    width: 20px;
    height: 20px;
    transition: transform .2s ease-in-out
}

.rating svg>path {
    fill: #FFB621;
    transition: fill .2s ease-in-out;
}

.rating>span>p {
    font-size: 0.8rem;
    font-weight: 700;
    opacity: 0.5;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-family: "OSWALD";
}

.rating>span {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rating>span>div>span {
    background: #f0ad4e;
    width: 8px;
    height: 8px;
    margin: 0 2px;
    display: inline-block;
    border-radius: 50%;
}
.rating>div {
    flex-grow: 1;
}