#feedback-form {
    position:fixed;
    bottom: 30px;
    right: 30px;
    box-shadow: 0 0 0 transparent;
    z-index: 100;
    border-radius: 1ch;
    overflow: hidden;
    height: auto;
    max-height: 0;
    max-width: 70px;
    transition: 0.5s ease-in;
    background-color: #f5f7f8;
}

#feedback-form form {
    margin: 1em;
    white-space: nowrap;
}

#feedback-form.open {
    max-width: 215px;
    max-height: 200px;
    transition: 0.5s ease-in-out;
    background: white;
    box-shadow: 0 0 1em rgba(0,0,0,0.25);
}

#feedback-button {
    position:fixed;
    bottom: 32px;
    right: 32px;
}

label.fas {
    cursor: pointer;
}
