.feedback-popup {
    position: fixed;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    max-width: 95%;
    width: 500px;
    box-shadow: #666 2px 2px 10px;
    transition: top 0.5s;
}

.feedback-popup.active {
    top: 50px;
}

body.theme--gaucher .feedback-popup h2 {
    font-weight: bold;
    margin: -0.5em 0 0.5em;
}

body.theme--gaucher .feedback-popup .ui-dialog-titlebar {
    background: transparent;
    border: 0;
    margin: 20px 20px 0;
}

.feedback-popup-answer {
    line-height: 30px;
    cursor: pointer;
    margin: 5px 0;
}

.feedback-popup-answer label {
    cursor: pointer;
}

.feedback-popup-answer label:before {
    content: " ";
    width: 30px;
    height: 30px;
    display: inline-block;
    border: solid 1px #ED1C24;
    margin-right: 5px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
    content: "\2713";
    color: transparent;
}

.feedback-popup-answer input:checked + label:before {
    content: "\2713";
    color: #FFF;
    background: #ED1C24;
}

.feedback-popup-answer input {
    width: 0;
    height: 0;
    position: absolute;
    overflow: hidden;
}

.feedback-popup-screen-footer {
    font-weight: bold;
    text-align: center;
    position: relative;
}

.feedback-popup-screen-footer button {
    float: right;
    background: #ED1C24;
    color: #FFF;
    height: auto;
    width: auto;
    padding: 7px 20px;
    border: 0;
    border-radius: 5px;
    margin-top: -8px;
    box-shadow: 5px;
    position: absolute;
    right: 0;
}

.feedback-popup-screen {
    display: none;
}

.feedback-popup-screen-1 {
    display: block;
}

body.theme--gaucher .feedback-popup .feedback-popup-screen-3 h2 {
    margin: 1em;
}

.feedback-popup-screen-3 .feedback-popup-screen-footer {
    text-align: right;
}

.feedback-popup-screen-3 .feedback-popup-screen-footer button {
    position: static;
    float: none;
}