.prompt {
    position: absolute;
    left: -1px;
    top: 24px;
    width: calc(100% + 2px);
    max-width: 198px;
    list-style: none;
    z-index: 2;
    background: #fff;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    border-right: 1px solid #8871a6;
    border-bottom: 1px solid #8871a6;
    border-left: 1px solid #8871a6;
    box-shadow: 0 7px 7px -3px #8871A6;
    padding: 0;
    box-sizing: border-box;
}
.prompt .prompt_li {
    color: #a6a6a6;
    padding: 3px 0;
    box-sizing: border-box;
    cursor: pointer;
}
.result_container {
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
    background: #F8F8F8;
}
.result_container .result_title {
    font-weight: bold;
}
.result_container .result_title.error {
    color: rgb(210, 35, 42);
}
.result_container .result_table {
    width: 100%;
    margin: 10px 0 15px;
}
.result_container .result_table tr {
    border: 1px solid #666;
}
.result_container .result_table td {
    width: 50%;
    border: 1px solid #666;
    background: #fff;
    padding: 3px 5px;
    box-sizing: border-box;
}
textarea.suggestion {
    border: 0;
    resize: none;
    outline: none;
    position: relative;
}
.feedback_form_field > div {
    position: relative;
}
.kalk_input.required::before,
.feedback_form_field > div::before {
    position: absolute;
    content: '*';
    font-size: 24px;
    color: #D2232A;
    top: -3px;
    right: -13px;
}
.kalk_input.required.success::before,
.feedback_form_field.success > div::before {
    color: #0D9901;
}
.send {
    display: inline-block;
    padding: 5px;
    border: 1px solid #8467a9;
    border-radius: 4px;
    background: #cdb6e3;
    background: -moz-linear-gradient(top, #cdb6e3 0%, #a78fbd 7%, #735aa7 100%);
    background: -webkit-linear-gradient(top, #cdb6e3 0%, #a78fbd 7%, #735aa7 100%);
    background: linear-gradient(to bottom, #cdb6e3 0%, #a78fbd 7%, #735aa7 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cdb6e3', endColorstr='#735aa7', GradientType=0);
    color: white;
    margin: 0 20px 0 0;
    cursor: pointer;
}
.send.disabled {
    float: left;
    cursor: default;
    padding: 5px;
    border: 1px solid #A7A9AC;
    border-radius: 4px;
    background: linear-gradient(180deg, rgba(237,235,233,.5) 0%, rgba(246,245,244,.5) 14.36%, rgba(167,169,172,.5) 95.58%), rgba(255,255,255,1);
    color: #A7A9AC;
}
.feedback_container .answer {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    box-sizing: border-box;
    font-weight: bold;
    color: #0D9901;
}