.img-preview {
    width: 433px;
    height: 325px;
    object-fit: contain;
    transition: all .25s ease;
}

.img-preview-thumb {
    width: 67px;
    height: 60px;
    object-fit: cover;
    transition: all .25s ease;
}

.img-preview-comment {
    width: 70px;
    height: 70px;
    object-fit: cover;
    transition: all .25s ease;
}

.rating {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
}

.rating input{
    position: relative;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}

.rating input::before{
    content: '\f005';
    position: absolute;
    font-family: fontAwesome;
    font-size: 20px;
    color: #c2c2c2;
    transition: .2s;
}

.rating input:hover ~ input::before,
.rating input:hover::before,
.rating input:checked ~ input::before,
.rating input:checked::before
{
    color: #ffd900;
}