.feedback-rating {
    display: flex;
    justify-content: center;
    align-items: center;
}

.feedback-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0%;
    text-align: center;
    color: #7D889B;
    margin-right: 8px;
}

.feedback-rating>span {
    height: 32px;
    width: 32px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feedback-rating>span>img {
    height: 20px;
    width: 20px;
    filter: grayscale(100%);
    transition: all 0.3s ease-in-out;
}

.feedback-rating>span:hover>img {
    filter: none;
}

.active {
    filter: none !important;
}

#feedback-textarea {
    background-color: #F4F6F8;
    border: 1px solid #E8E8E8;
    border-radius: 8px;
    padding: 12px;
    height: 110px;
    resize: none;
    width: 100%;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    margin-right: 8px;
    margin: 0;
    outline: none;
}

#feedback-textarea:focus {
    border: 1px solid #03448F;
    ;
}

#feedback-submit-btn {
    width: 100%;
    border-radius: 10px;
    padding-top: 8px;
    padding-right: 16px;
    padding-bottom: 8px;
    padding-left: 16px;
    background-color: #091E42;
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    text-align: center;
    border: 0px;
    margin: 0px
}

#feedback-submit-btn:hover {
    background-color: #040f21;
    cursor: pointer;
}

.feedback-container {
    background-color: #fff;
    box-shadow: 0px 4px 32px 0px rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 20px;
    width: 360px;
    height: fit-content;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.feedback-close {
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 15px;
    margin: 0px !important;
}

.feedback-overlay {
    height: 100vh;
    width: 100vw;
    position: fixed;
    background: #000;
    z-index: 2;
    opacity: 0.2;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.feedback-popup {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 16px;
}

#feedback-error-message {
    text-align: start;
    width: 100%;
    margin-left: 16px;
    color: red;
    font-size: 12px;
    font-weight: 400;
    line-height: 0px;
}
.feedback-submit, .feedback-submitted{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
}
.feedback-submit-heading {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    text-align: center;
    color: #091E42;
}

.feedback-submit-subheading {
    font-weight: 300;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: #2E405E;
    max-width: 238px;
}
.submit-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
@media(max-width: 400px) {
    .feedback-container {
        width: 90vw;
    }
}