.rating-box {
    margin: 0 auto;
    width: 300px;
}
.rating-box .stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.star.active {
    color: red;
    border: 2px solid red;
    background: #fff8f9;
}
.star{
    /*box-sizing: border-box;*/
    color: black;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    width: 30px;
    /*padding: 10px;*/
    border-radius: 20px;
    border: 1px solid blue;
}
.container{
    width: 600px;
    padding:30px;
    border: 1px solid #c9c9c9;
    border-radius: 7px;
}

.hide{
    display: none;
}
.show{
    display: flex;
}
.comment1{
    width: 70%;
    margin:0 auto;
    display:block;
    padding: 3px;
    border: 1px solid blue;
}
.comment2{
    width: 100%;
    margin:0 auto;
    display:block;
    padding: 3px;
    border: 1px solid blue;
}
