/**
 * @file `feedback-form.css`
 *
 * `feedback-form.css` controls the style of the feedback form.
 *
 * @author H Paterson.
 * @copyright Iris Data Science, 2020.
 */

#popup-window-background {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1998;
    background-color: rgba(0, 0, 0, 0.4);
}

#popup-window {
    position: fixed;
    top: 50%;
    left: 50%;
    height: min-content;
    max-height: 90%;
    overflow: auto;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 1em 2em 1em 1em;
}

#form-title {
    color: #2993b2;
    font-size: 2em;
}

#feedback-form {
    display: inline-block;
    text-align: center;
    width: 100%;
    margin-top: 1em;
}

#submit-div {
    text-align: left;
}

#popup-window-control-div {
    text-align: left;
}

#narrative-button {
  float: right;
}

.popup-window-button, #narrative-button {
    background-color: #2993b2;
    border: none;
    color: white;
    display: inline-block;
    padding: 0.5em;
    margin-top: 1em;
    margin-right: 1em;
    width: 8em;
}

.popup-window-button:hover, #narrative-button:hover {
    background-color: #52bf9f;
    cursor: pointer;
}

.popup-window-label-div {
    color: #2993b2;
    text-align: left;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

.popup-window-text-input {
    font-size: 1em;
    font-family: 'Montserrat', sans-serif;
    width: 100%;
}
