/* financs css */
.card.custom-card {
    padding: 15px;
    box-sizing: border-box;
}
.card.custom-card h3 {
    font-size: 20px;
    color: var(--bg-color);
    margin-bottom: 15px;
}
.summery-key {
    margin: 0px 0px 0px;
}
.summery-key h3 {
    margin-bottom: 15px;
}
.summery-key .card.custom-card {
    background: linear-gradient(to right, #fda329 , #ffe1c9);
    border-radius: 10px;
    padding: 15px;
}
.summery-key .row > div:nth-of-type(2n) .card.custom-card {
    background-image: linear-gradient(to right, #7d76dc, #9597e8);
}
.summery-key .row > div:nth-of-type(3n) .card.custom-card {
    background-image: linear-gradient(to right, #01afd6, #5ae1f8);
}
.summery-key .row > div:nth-of-type(4n) .card.custom-card {
    background-image: linear-gradient(to right, #7d76dc, #9597e8);
}
.summery-key .card.custom-card h3 {
    color: #ffffff;
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 5px;
}
.summery-key .card.custom-card p {
    font-size: 20px;
    font-weight: 600;
    color: var(--bg-color);
}
.list-financial thead tr{
    background-color: var(--bg-color);
    border-radius: 5px 5px 0px 0px;
}
.list-financial thead tr th {
    background-color: transparent;
    color: #ffffff;
}
.list-financial table {
    border:1px solid #f1f1f1;
    border-radius: 6px;
    /* overflow: hidden; */
    margin-top: 20px;
}
.receivable-list, .payable-list {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.receivable-list li, .payable-list li {
    flex: 0 0 calc((100% / 3) - 15px);
    max-width: 0 0 calc((100% / 3) - 15px);
    margin-right: 15px;
    border-right: 1px solid #c1c1c1;
}
.receivable-list li:last-child, .payable-list li:last-child {
    margin-right: 0px;
    border-right: 0px;
}
.receivable-list li p, .payable-list li p {
    font-size: 20px;
    color: var(--bg-color);
    margin-bottom: 0px;
    font-weight: 600;
}
.receivable-list li span, .payable-list li span {
    display: inline-block;
    background-color: var(--success-color);
    border-radius: 5px;
    padding: 5px 10px;
    display: inline-block;
    margin-top: 10px;
    font-weight: 700;
    color: #ffffff;
}
.receivable-list li.normal span {
    background-color: var(--primary-color);
}
.receivable-list li.medium span {
    background-color: var(--info-color);
}
.receivable-list li.high span {
    background-color: var(--warning-color);
}
.fee-collection-header select {
    background-color: #f1f1f1;
    padding: 5px;
    border-radius: 5px;
    border:0px;
    width: 150px;
}

.notification {
    padding: 10px;
    overflow-y: scroll;
    height: 300px;
}
.notification figure {
    flex: 0 0 10%;
    max-width: 0 0 10%;
    margin-bottom: 0px;
}
.notification figure img {
    width: 100%;
}
.notification li > div {
    flex: 0 0 90%;
    max-width: 0 0 90%;
    padding-left: 15px;
    box-sizing: border-box;
}
.notification h4 {
    font-weight: 600;
    color: var(--bg-color);
    font-size: 14px ;
    margin-bottom: 2px;
}
.notification h4 strong {
    color: var(--primary-color);
}
.notification p{
    margin-bottom: 0px;
    font-size: 12px;
}
.notification span {
    background-color: var(--primary-color);
    color: #ffffff;
    font-size: 12px;
    border-radius: 5px;
    padding: 3px 10px;
    display: inline-block;
    margin-top: 7px;
}
.notification li {
    background-color: #f1f1f1;
    padding: 10px;
    border-radius: 15px;
    margin-bottom: 10px;
}
.notification li:last-child {
    margin-bottom: 0px;
}