﻿.i-title {
    display: block;
    padding: 10px;
    color: white;
    font-size: 18px;
    font-weight: bold;
}

.records-wrapper {
    display: flex;
    flex-flow: column;
    padding: 10px;
    border-left: 1px solid;
    border-right: 1px solid;
    border-bottom: 1px solid;
}

.single-record {
    margin-bottom: 5px;
    padding-bottom: 5px;
    border-bottom: 1px solid;
}
/*
.single-record:last-of-type {
    border: none;
    margin-bottom: 0;
    padding-bottom: 0;
}*/

.audit-header {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    position: relative;
}

.more-button {
    display: inline-block;
    position: absolute;
    right: 0;
    bottom: -5px;
    padding: 5px 10px;
    font-size: 13px;
    background-color: #5cb85c;
    font-weight: bold;
    color: white;
    z-index: 1;
}

.more-button:hover {
    cursor: pointer;
    background-color: #47a447;
}

.audit-desc {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-weight: bold;
    margin-right: 5px;
}

.audit-collapse {
    display: none;
}

.audit-collapse.open {
    display: flex;
}

.audit-data {
    display: flex;
    flex-flow: column;
    padding: 10px;
    width: 100%;
}

.single-audit-data {
    margin-bottom: 4px;
    border-bottom: 1px solid #e0e0e0;
}

.key-icon img {
    width: 15px;
}

.key-icon {
    background-color: #ABD8F2;
    padding: 3px;
    margin-right: 8px;
    border-right: 4px solid white;
}

.ad-key {
    display: inline-flex;
    align-items: center;
    background-color: #DBEBF3;
    padding-right: 8px;
}