.hidden {
    display: none;
}
.proem {
    float: left;
    margin: 25px 0 0 0;
    font-weight: bold;
    color: rgb(210, 35, 42);
}
.kalk_values_row.error .kalk_values_cell_1 {
    color: #D2232A;
}
.kalk_values_row.error .kalk_input {
    border: 1px solid #D2232A !important;
}
.search_result {
    float: left;
    margin: 25px 0 0 0;
    border-top: 2px solid #666;
    border-bottom: 2px solid #666;
}
.search_result thead tr {
    font-weight: bold;
    padding: 15px 0;
    box-sizing: border-box;
    border-bottom: 2px solid #666;
    text-align: center;
}
.search_result tr td {
    vertical-align: unset;
    padding: 5px 15px;
    box-sizing: border-box;
}
.search_result tr td:first-child {
    border-left: 2px solid #666
}
.search_result tr td:nth-child(2) {
    border-left: 1px solid #666;
    border-right: 1px solid #666;
}
.search_result tr td:last-child {
    border-right: 2px solid #666;
}
.search_result .more {
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 7.5px 0 7.5px;
    border-color: rgba(136,113,166, .5) transparent transparent transparent;
    transition: .3s;
    cursor: pointer;
}
.search_result .more:hover {
    border-color: rgba(136,113,166, 1) transparent transparent transparent;
    transition: .3s;
}
.search_result td.open .more {
    transform: rotate(180deg);
    transition: .3s;
}
.search_result tbody tr:hover td {
    background: rgba(228,228,228, .5);
}
.search_result tbody tr:hover td.no_result {
    background: transparent;
}
.search_result .responsibilities {
    height: 0;
    overflow: hidden;
}
.search_result td.open .responsibilities {
    margin: 15px 0 0 0;
    height: 100%;
    text-align: left;
}
.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;
}
.prompt .prompt_li:hover {
    color: #6F7170;
}
textarea {
    width: 100%;
    border: 0;
    resize: none;
    outline: none;
}

.feedback_container {
    float: left;
    /*display: none;*/
    /*background: #F8F8F8;*/
}
.feedback_container .description {
    margin: 40px 0 9px;
    font-weight: bold;
    box-sizing: border-box;
    padding: 0 12px ;
}
.feedback_container > * {
    margin-left: 12px;
    margin-right: 12px;
}
.feedback_container .denied_message_container {
    display: none;
}
.feedback_container .denied_message_container.open {
    display: block;
    margin: 15px 0;
    border: 2px solid #D2232A;
}