* {
    margin: 0;
    padding: 0;
}

.feedback {
    width: 300px;
    position: fixed;
    right: 0px;
    bottom: -9999px;
    box-shadow: 0 20px 40px 8px rgba(0, 0, 0, 0.25);
    font-size: 14px;
    border-radius: 10px 10px 0 0;
    z-index: 56;

}

.feedback .feedbackHeader {
    height: 40px;
    line-height: 40px;
    border-radius: 10px 10px 0 0;
    color: #ffffff;
    text-indent: 60px;
    font-weight: normal;
    cursor: pointer;
    margin-bottom: 0px;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
}

.feedback .eMailIco {
    background: url("./emailIco.svg") 16px center no-repeat #4a8ac8;
    background-size: 28px auto;
}

.feedbackForm {
    padding: 16px 16px 40px 16px;
    background: white;
}


.feedbackForm .line {
    margin-bottom: 16px;
}

.feedbackForm .line input,
.feedbackForm .line textarea {
    width: 100%;
    box-sizing: border-box;
    box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    border: solid 1px #ccc;
    color: #222d38;
    display: block;
}

.feedbackForm textarea {
    resize: none;
    height: 78px;
    padding: 11px;
    line-height: 20px;
}

.feedbackForm .line input {
    height: 40px;
    line-height: 40px;
    padding: 0 11px;
}

.feedback h3 {
    margin-top: 0;
}

.feedbackForm .btn {
    background: #4a8ac8;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
    border: none;
    height: 40px;
    line-height: 16px;
    color: #ffffff;
    cursor: pointer;
}

.feedback .closeBtn {
    background: url("./closeBtn.svg") no-repeat;
    width: 28px;
    height: 28px;
    background-size: 28px 28px;
    position: absolute;
    right: 5px;
    top: 6px;
    cursor: pointer;
    display: none;
}