

.feedback-container {
    background: white;
    border: 0 none;
    border-radius: 12px;
    box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
    color: var(--cadetBlueDarker3);
    width: 100%;
    max-width: 500px;
    padding: 30px;
    margin: 20px auto 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feedback-heading {
    font-size: 18px;
    letter-spacing: 3px;
    margin: 0;
}

.para {
    font-weight: 600;
}

.feedback-level {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.level {
    background: white;
    padding: 13px;
    border-radius: 7px;
    border: solid 0.5px #e0e9fe;
    cursor: pointer;
}
.level:hover {
    box-shadow: var(--primaryColor) 0 2px 5px;
}

.level-picked {
    box-shadow: var(--primaryColor) 0 2px 5px;
    color: var(--cadetBlueBrigter3);
    border: 2px solid var(--primaryColor);
}
.level:hover i {
    color: var(--primaryColor);
}
.level i {
    font-size: 40px;
}

.feedback-msg textarea {
    margin-top: 5px;
    border: solid 2px var(--primaryColor);
    padding: 13px;
    border-radius: 7px;
    outline: none;
    font-size: 14px;
    color: var(--cadetBlueDarker3);
    font-weight: 500;
    letter-spacing: 1px;
    width: 100%;
    height: 90px;
}


.buttons {
    display: flex;
    gap: 10px;
    justify-content: end;
}
.buttons a {
    background: white;
    color: var(--cadetBlueDarker3);
    width: 80px;
    padding: 10px;
    text-align: center;
    border-radius: 4px;
}
.buttons a:hover {
    opacity: 0.8;
}
.buttons a:nth-child(1) {
    background: var(--primaryColor);
    color: #f8faff;
}


/*Star rating*/
.rating {
    margin-top: 20px;
    border: none;
    float: left;
}

.rating > label {
    color: #90A0A3;
    float: right;
}

.rating > label:before {
    margin: 2px;
    font-size: 2em;
    content: '★';
    display: inline-block;
}

.rating > input {
    display: none;
}

.rating > input:checked ~ label,
.rating:not(:checked) > label:hover,
.rating:not(:checked) > label:hover ~ label {
    color: #F79426;
}

.rating > input:checked + label:hover,
.rating > input:checked ~ label:hover,
.rating > label:hover ~ input:checked ~ label,
.rating > input:checked ~ label:hover ~ label {
    color: #FECE31;
}

/*STAR*/


.rating-star{
    font-size: 1.5em;
    width: 1em;
    height: 2em;
    position: relative;
    display: block;
    float:left;
}

.full-star:before {
    color: #f2b01e;
    content: "\2605";
    position: absolute;
    left: 0;
    overflow: hidden;
}

.empty-star:before {
    content: "\2605";
    position: absolute;
    left: 0;
    overflow: hidden;
}

.half-star:before {
    color: #f2b01e;
    content: "\2605";
    width: 50%;
    position: absolute;
    left: 0;
    overflow: hidden;
}

.half-star:after {
    content: '\2605';
    position: absolute;
    left: 1.5rem;
    width: 50%;
    text-indent: -1.5rem;
    overflow: hidden;
}
