/* Justerar DataTables */
table.hover tr{
  cursor: pointer;
}

/* Lägger style på typeaheads förslagsmenyer */

.tt-query { /* UPDATE: newer versions use tt-input instead of tt-query */
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.tt-hint {
    color: #999;
}

.tt-menu { /* UPDATE: newer versions use tt-menu instead of tt-dropdown-menu */
    width: 241px;
    margin-top: -3px;
    padding: 8px 0;
    background-color: #f3f6f9;
    border-radius: 0px 0px 8px 8px;
    border-width: 1px 0px 0px 0px;
    border-color: #e9e9ea;
    border-style: solid;
    cursor:pointer;
}

.tt-suggestion {
    padding: 3px 20px;
    /*font-size: 18px;*/
    line-height: 24px;
}

.tt-suggestion.tt-is-under-cursor { /* UPDATE: newer versions use .tt-suggestion.tt-cursor */
    color: #fff;
    background-color: #0097cf;

}

.tt-suggestion p {
    margin: 0;
}

/* Lägger till öppna/stäng-ikoner för datatable-detalj-rader */
td.details-control {
    background: url('/v2/assets/media/svg/icons/Navigation/Plus.svg') no-repeat center center;
    cursor: pointer;
    /* color: blue; */
}
tr.shown td.details-control {
    background: url('/v2/assets/media/svg/icons/Navigation/Minus.svg') no-repeat center center;
}

/* Adds margin to othe right of checkboxes in forms */
.checkbox > span {
    margin-right: 10px;
}

/* Makes sure the notifications items changes the cursor to pointer */
.navi-item {
    cursor: pointer;
}
