.stars{
    display: flex;
    gap: 10px;
}
.stars .star{
    color: white;
    stroke: var(--blue);
}
.stars .star.blue{ color: var(--blue); }

#commentsInfo{
    display: flex;
    justify-content: space-evenly;
    margin-bottom: 40px;
}

#commentsInfo .commentsInfo{
    background-color: white;
    padding: 10px 30px;
    align-content: center;
}

#comments .commentsInfoLeft h2{
    font-size: 66px;
}

#comments .rateRow{
    display: flex;
    align-items: center;
    gap: 9px;
}

#comments .rateRow .line{
    width: 160px;
    height: 3px;
    background-color: #D8D8D8;
}
#comments .rateRow .blueLine{
    height: 100%;
    background-color: var(--blue);
    width: 0%;
}

#userComments{
    padding: 30px 100px 0 100px;
}
#userComments .userComment{
    display: flex;
    gap: 50px;
    align-items: start;
    margin-bottom: 50px;
}
#userComments .userCommentLeft{
    display: flex;
    align-items: center;
    gap: 10px;
}
#userComments .oneChar{
    min-width: 55px;
    min-height: 55px;
    border-radius: 50%;
    text-align: center;
    align-content: center;
    font-size: 32px;
}
#userComments .userCommentLeft p:last-child{ color: grey; }

#comments .showMoreComments{
    transition: 0.2s;
    margin: 30px auto 10px auto;
    display: block;
    border: 1px solid var(--blue);
    background-color: #f3fcff;
    font-size: 20px;
    padding: 15px 100px;
    box-shadow: 0 0 3px;
    cursor: pointer;
}
#comments .showMoreComments:hover{ background-color: var(--blue); color: white; }

#addComment{ text-align: left; }
#addComment h2{
    padding-bottom: 20px;
}
#addComment label{
    display: block;
}
#addComment select{
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
}
#addComment textarea{
    padding: 10px;
    width: 500px;
    max-width: 75vw;
    min-width: 100px;
    height: 180px;
    max-height: 50vh;
    min-height: 100px;
}
#addComment .buttons{
    display: flex;
}
#addComment button,
#addComment span{
    transition: 0.2s;
    cursor: pointer;
    display: block;
    width: 100%;
    padding: 10px;
    text-align: center;
    border: 1px solid black;
    box-sizing: border-box;
}
#addComment button{ background-color: #86C65A; color: white; }
#addComment span{ background-color: gainsboro; }

#addComment button:hover,
#addComment span:hover{ opacity: 0.6; }

#addComment .alert{
    background: var(--red);
    margin-top: 10px;
    color: white;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}