.clickable:hover {
    background-color: #F5F5F5;
}
.clickable {
    cursor: pointer;
}

.clickable-svg:hover {
    /* mit https://codepen.io/sosuke/pen/Pjoqqp berechnet, da svg mit transparentem Hintergrund keine Background-color mögen */
    filter: invert(100%) sepia(21%) saturate(54%) hue-rotate(239deg) brightness(112%) contrast(92%);
}
.clickable-svg {
    cursor: pointer;
}

.tr-hover:hover {
    background-color: #f5f5f5;
}

.linkToTickets {
    cursor: pointer;
    color: blue;
    text-decoration: underline;
}

.answer {
    background-color: #F5F5F5;
    border: 1px solid #ddd;
    padding: 8px;
    margin-top: 4px;
}

#assignment-container {
    border: 2px dashed #cccccc;
    padding: 8px;
    height: 270px;
    overflow-y: scroll;
}

.assignment-list {
    list-style: none;
    padding: 0;
    width: 535px;
}

.assignment-list li {
    display: inline-block;
    width: 130px;
    padding: 8px 14px;
    border: 1px solid #ccc;
    margin-bottom: 4px;
    cursor: pointer;
    font-size: 16px;
}

.assignment-list li.selected,
.assignment-list li:hover {
    color: #bb0a7e;
    border-color: #bb0a7e;
}

.assignment-list li i {
    font-size: 18px;
}

.filialen-list-container {
    background-color: #cccccc;
    height: 120px;
    max-height: 120px;
    overflow-y: scroll;
    overflow-x: hidden;
}

.filialen-list-element {
    text-align: center;
    padding-top: 7px;
}

.badge-success,
.panel-default > .panel-heading .badge.badge-success {
    background-color: #28a745;
}

.badge-danger,
.panel-default > .panel-heading .badge.badge-danger {
    color: #fff;
    background-color: #dc3545;
}

.popover-example .popover {
    position: relative;
    display: block;
    margin: 20px;
    max-width: 800px !important;
    min-width: 600px;
}

.set-tab {
    cursor: pointer;
}

.mb-0{
    margin-bottom: 0;
}

.cursor-pointer{
    cursor: pointer;
}

.cursor-help{
    cursor: help;
}

.no-wrap{
    white-space: nowrap;
}

.d-flex {display: flex}
.d-block {display: block}
.d-none {display: none}
.flex-1 {flex:1}
.flex-column {flex-direction: column}