/*================================
=           Notice Board         =
================================*/
.headingtxt {
    font-weight: 700;
}
* {
    -webkit-font-smoothing: antialiased;
}
.fa-file-pdf {
    font-size: 1.5rem;
}
.sec-desc {
    text-align-last: unset;
}

.table > :not(caption) > * > * {
    padding: unset;
    background-color: unset;
    border-bottom-width: unset;
    box-shadow: unset;
}

.table > :not(:first-child) {
    border-top: unset;
}

.table {
    margin-bottom: 0;
    background: var(--bs-tertiary-bg);
    border-radius: 1rem;
}

.table .thead:after, .table .tbody:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    border-radius: 2px;
    background-color: var(--bs-border-color);
}

.table .thead .tr, .table .tbody .tr {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.table .thead .tr .th, .table .tbody .tr .th, .table .tbody .tr .td {
    font-weight: bold;
    color: var(--brandcolor);
    text-transform: capitalize;
    padding: 8px 16px;
}

.table .tbody:after {
    display: none;
}

.table .tbody .tr:not(:last-child) {
    border-bottom: 1px solid var(--bs-border-color);
}

.table .tbody .tr.hoverable:hover {
    background: rgba(7, 92, 169, 0.15);
    cursor: pointer;
}

.table .tbody .tr .td {
    color: var(--dpCol);
    font-weight: 400;
    padding: 4px 16px;
}

.table .thead .tr .th,
.table .thead .tr .td,
.table .tbody .tr .th,
.table .tbody .tr .td {
    flex-basis: 100%;
}

.dpdfof {
    color: var(--brandcolor);
}

.brndcard .card-header {
    text-align: center;
}

@media (min-width: 992px) {
    .table .tbody .tr .th-sm {
        display: none;
    }
}

@media (max-width: 768px) {
    .table {
        overflow: hidden;
    }

    .table .thead, .table .tbody {
        display: none;
    }

    .table .tbody {
        display: block;
    }

    .table .tbody:after {
        display: none;
    }

    .table .tbody .tr {
        flex-wrap: wrap;
        align-items: start;
    }

    .table .tbody .tr .td {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-basis: 100%;
        margin: unset;
        text-align: right;
        font-size: 14px;
        border-bottom: 1px solid color-mix(in srgb, var(--brandcolor) 25%, #fff);
        padding: 8px 16px;
    }

    .table .tbody .tr .td:first-child {
        justify-content: center;
        background: var(--brandcolor);
        color: var(--lighashcolor);
        font-weight: bold;
    }

    .table .tbody .tr .td:first-child, .table .tbody .tr .td:last-child {
        border-bottom: unset;
    }

    .table .tbody .tr .td .th-sm {
        font-weight: bold;
        color: var(--brandcolor);
        text-align: left;
        margin-right: 5px;
    }
}

/*===== End of Notice Board ======*/

