/*================================
=           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(--nmdescolor);
    border-color: var(--bordcolor) !important;
    border: .0625rem solid rgba(243, 247, 250, .05);
    box-shadow: 3px 3px 6px var(--boxscolor), -3px -3px 6px var(--bs-white) !important;
    border-radius: var(--bs-border-radius);
}

.table .thead:after, .table .tbody:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    border-radius: 2px;
    background-color: var(--bordcolor);
}

.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(--bdtxtcolor);
    text-transform: capitalize;
    padding: 8px 16px;
}

.table .tbody:after {
    display: none;
}

.table .tbody .tr:not(:last-child) {
    border-bottom: 1px solid var(--bordcolor);
}

.table .tbody .tr.hoverable:hover {
    background: rgba(7, 92, 169, 0.15);
    cursor: pointer;
}

.table .tbody .tr .td {
    color: var(--bdtxtcolor);
    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(--bdtxtcolor);
}

.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 var(--bordcolor);
        padding: 8px 16px;
    }

    .table .tbody .tr .td:first-child {
        justify-content: center;
        background-color: rgba(38, 40, 51, .05);
        color: var(--bdtxtcolor);
        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(--bdtxtcolor);
        text-align: left;
        margin-right: 5px;
    }
}

/*===== End of Notice Board ======*/

