.feedback-button {
    position: fixed;
    right: 0;
    transform: rotate(-90deg);
    transform-origin: bottom right;
    z-index: 3;
    top: 230px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.feedback-button.animate {
    animation-name: showFeedbackButton;
    animation-duration: 0.2s;
    animation-timing-function: linear;
}

@keyframes showFeedbackButton {
    0% {
        transform: translateX(60px) rotate(-90deg);
        scale: 1;
    }
    100% {
        transform: translateX(0) rotate(-90deg);
        scale: 1;
    }
}