
.rate-box {
    display: flex;
    flex-direction: row-reverse;
    gap: 0.1rem;
    justify-content: center;
}

.rate-box input {
    display: none;
}

.rate-box input:hover~.star:before {
    color: rgba(255, 204, 51, 0.5);
}

.rate-box input:active+.star:before {
    transform: scale(0.9);
}

.rate-box input:checked~.star:before {
    color: #ffcc33;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.3), -3px -3px 8px rgba(255, 255, 255, 0.8);
}

.rate-box .star:before {

    content: "★";
    font-family: "Potta One", cursive;
    font-size: 2rem;
    cursor: pointer;
    color: #0000;
    text-shadow: 2px 2px 3px rgba(255, 255, 255, 0.5);
    background-color: #aaa;
    background-clip: text;
    -webkit-background-clip: text;
    transition: all 0.3s;
}
.rateTextArea{
 border-radius: 7px;
}
.rateTextArea:focus{

 outline: none;
}
