<style>

#author{
	width: 100% !important;
}

.rating-star {
  cursor: pointer;
  display: inline-block;
}

.rating-shape {
  stroke="#2B3A24";
	fill="#2B3A24"
	cursor: pointer;
  opacity: 0.25;
  transition: opacity 0.2s ease;
}

.rating-shape.hovered,
.rating-shape.selected {
  opacity: 1;
}

.rating-display {
  font-size: 1rem;
  color: #2B1E38;
}

.rating-star > svg{
	cursor: pointer;
}

.rating-wrapper {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 5px;
}

.rating-stars {
	display: flex;
	gap: 5px;
}

.comment-form-author, .comment-form-comment{
    position: relative;
    display: flex;
    align-items: start !important;
    width: 100%;
    flex-direction: column !important;
}

.comment-form-author > label, .comment-form-comment > label{
	margin-left: 10px;
	margin-bottom: -12px;
	z-index: 4;
	padding: 5px 10px;
	background-color: white;
	font-size: 12px;
	line-height: 16px;
	font-weight: 400;
	font-family: 'Roboto';
}

.comment-success {
    background-color: #c7f8a3;
    color: #1b3d1b;
    font-weight: 600;
    padding: 12px;
    text-align: center;
    border-radius: 5px;
    margin-bottom: 20px;
    border: 1px solid #9ee77b;
}

.comments-area {
    display: flex;
    flex-direction: column;
}
.no-comments-message {
    order: 2;
}
.comment-form {
    order: 3;
}
#respond {
    order: 0;
}

#comment-success-message{
	color: #9ee77b !important;
	border: 0px solid red;
	text-align: left !important;
	font-weight: 900 !important;
	background-color: transparent !important;
}

</style>