
.send-feedback-wrapper {
    box-shadow: 0px 11px 20px 0px #0000001A;
    z-index: 99;
    position: absolute;
    right: 1em;
    bottom: 3.5em;
    background-color: white;
    border-radius: 5px;
}

.send-feedback-box {
    text-align: left;
    font-size: 17px;
    font-weight: 500;
    padding: 1.5em;
    width: 15em;
    height: 12em;
    user-select: none;
}

.send-feedback-message-container {
    border-radius: 5px;
    margin-top: 1em;
    padding: 1em;
    height: 40%;
    cursor: text;
    outline: none;
    background-color: #FAF9F5;
    font-size: 13px;
    font-weight: 400;
    color: #A2A2A2;
    transition: 0.3s;
    overflow-y: scroll;
}

.send-feedback-message-container[contentEditable=true]:empty:not(:focus):before{
    content:attr(data-placeholder)
}

.send-feedback-message-container:hover {
    outline: 1px solid #DEDEDE;
    transition: 0.3s;
}

.send-feedback-message-container:focus {
    outline: 1px solid black;
    color: black;
}

.send-feedback-bottom {
    width: 100%;
}

.send-feedback-button {
    margin-top: 1.5em;
    width: 100%;
    font-size: 13px;
    font-weight: 400;
    text-align: center;
    padding: 0.7em;
    border: 1px solid black;
    background-color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.4s;
}

.send-feedback-button:hover {
    background-color: black;
    color: white;
    transition: 0.4s;
}