
.rating-stars {
    display: flex;
    column-gap: 12px;
    justify-content: flex-start;
    text-align: center;
    margin-bottom: 2em;
}
.rating-star-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6.7px;
    cursor: pointer;
}
.rating-star-path {
    fill: #1A211F;
    opacity: 0.2;
    transition: opacity 0.2s, fill 0.2s;
}

.rating-star-item.hover .rating-star-path {
    opacity: 1;
    fill: #84BD9B;
}

.rating-star-item.selected .rating-star-path {
    opacity: 1;
    fill: #84BD9B;
}

.rating-label {
    color: #000;
    font-family: "Graphik Trial", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
    opacity: 0.6;
}
.rating-follow-up {
    text-align: left;
    margin-bottom: 1.5em;
}
.rating-follow-up label {
    display: block;
    color: #1A211F;
    font-family: "Graphik Trial", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 80%;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}
#rating-form textarea {
    width: 100%;
    box-sizing: border-box;
    font-family: "Graphik Trial", sans-serif;
    font-size: 16px;
    line-height: 1;
    letter-spacing: -0.02em;
    color: #1A211F;
    opacity: 0.6;
}
#rating-form textarea:focus {
    outline: unset;
} 
.rating-submit-button {
    font-size: 16px;
    font-weight: 600;
    line-height: 80%;
    letter-spacing: -0.02px;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-radius: 0px 0px 0px 0px;
    padding: 0px 20px 6px 6px;    
    display: flex;
    align-items: flex-end;
    min-width: 80px;
    min-height: 80px;
    color: #fff;
	background: url("data:image/svg+xml;utf8, <svg xmlns='http://www.w3.org/2000/svg' width='17' height='6' viewBox='0 0 17 6' fill='none'><path d='M16.5006 3L11.5006 0.113325L11.5006 5.88683L16.5006 3ZM7.67478e-06 3.50025L12.0006 3.50007L12.0006 2.50007L-7.67478e-06 2.50025L7.67478e-06 3.50025Z' fill='%23FFFFFF'/></svg>") no-repeat;
    background-position: calc(100% - 8px) 5px;
    background-size: auto;
    background-color: #1A211F !important;
    justify-self: flex-end;
}
.rating-submit-button:hover {
    color: #1A211F;
	background: url("data:image/svg+xml;utf8, <svg xmlns='http://www.w3.org/2000/svg' width='17' height='6' viewBox='0 0 17 6' fill='none'><path d='M16.5006 3L11.5006 0.113325L11.5006 5.88683L16.5006 3ZM7.67478e-06 3.50025L12.0006 3.50007L12.0006 2.50007L-7.67478e-06 2.50025L7.67478e-06 3.50025Z' fill='%231A211F'/></svg>") no-repeat;
    background-position: calc(100% - 8px) 5px;
    background-size: auto;
    background-color: transparent !important;
}

#rating-response {
    margin-top: 1.5em;
    font-weight: bold;
    padding: 1em;
    border-radius: 4px;
    display: none;
}
@media only screen and (max-width: 767px) {
    .rating-stars {
        flex-wrap: wrap;
        gap: 10px;
    }
}