/* Stemtree Feedback System - CSS */	
.launch-feedback-no, .view-feedback-no {
    /* position: fixed; */
    bottom: 20px;
    right: 20px;
    background: black;
    color: white;
    padding: 10px 30px;
    border-radius: 7px;
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 999999999999999;
    text-decoration: none;
    display: block;
    margin-bottom: 1rem;
    text-align: center;

}

a.view-feedback:visited, a.view-feedback:hover {
    color: white;
}


.feedback-form {
    position: fixed;
    background: rgba(0, 0, 0, 0.69);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    visibility: hidden;
    opacity: 0;
    transition: all .25s;
    display: flex;
    justify-content: center;
    align-items: center;
	z-index: 999999999;
}

.feedback-form.show {
    visibility: visible;
    opacity: 1;
}

.feedback-form::after {
    content: "\f00d";
    position: absolute;
    top: 0px;
    right: 0px;
    color: White;
    font-weight: 900;
    font-family: "Font Awesome 5 Free"; 
    font-size: 1.5rem;
    cursor: pointer;
    padding: 20px;
}

#feedback-form {
    width: 50vw;
    background: white;
    border-radius: 10px;
    position: relative;
    padding: 20px;
    font-family: 'Yanone Kaffeesatz', sans-serif;

}

#feedback-form p {
    margin: 0;
    line-height: 1;
    margin-bottom: 20px;
    font-family: 'Yanone Kaffeesatz', sans-serif;
}

#feedback-form p:last-of-type {
    margin-bottom: 0px;
}

#feedback-form label {
    padding-bottom: 10px;
    display: inline-block;
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 1.25rem;
}

#feedback-form input[type="submit"] {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    text-transform: uppercase;
    transition: background 150ms ease-in-out;
    background: #0073aa;
    border: none;
    border-radius: 5px;
    box-sizing: border-box;
    color: #fff;
    font-size: 0.88889em;
    font-weight: 700;
    line-height: 1.2;
    outline: none;
    padding: 0.76rem 1rem;
    text-decoration: none;
    vertical-align: bottom;
    font-size: 1.25rem;

}

#feedback-form input[type="text"], #feedback-form textarea {
    width: 100%;
    padding: 0.36rem 0.66rem;
    line-height: 1.8;
    box-sizing: border-box;
    border: 1px solid gray;
}

.feedback-item {
    padding-bottom: 20px;
    border-bottom: 1px dashed grey;
    margin-bottom: 20px;
}

.feedback-item:last-of-type {
    padding-bottom: 20px;
    border-bottom: 0px dashed grey;
    margin-bottom: 0px;
}

@media only screen and (max-width: 900px) {
    #feedback-form {
        width: 90vw;    
    }
}