/* your styles go here */

html {
    font-size: 18px !important;
}

.about,
#about-tabs {
    margin-bottom: 30px;
}

.nav-link.active {
    border-bottom: 3px solid;
}

.tab-content {
    font-size: 1rem !important;
    line-height: 2rem !important;
    border: none !important;
}

.table {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-weight: bold;
}

.table thead td {
    text-align: center;
}

.table tbody td:nth-child(1) {
    font-weight: normal;
}

.table tbody td:nth-child(5) {
    color: #cc0000;
    font-weight: bold;
}

.table tbody td:nth-child(6) {
    color: #05832b;
    font-weight: bold;
}

.table tbody td:not(.time):not(:first-child) {
    text-align: right;

}

.table .font-red {
    color: #f00;
}

.table .font-green {
    color: #04a835;
}

@keyframes greenBg {
    from {
        background-color: #C2F2C2;
    }

    to {
        background-color: transparent;
    }
}

@keyframes redBg {
    from {
        background-color: #FCDEDE;
    }

    to {
        background-color: transparent;
    }
}

.bg-green {
    animation: greenBg 0.5s;

}

.bg-red {
    animation: redBg 0.5s;
}





@media screen and (max-width: 576px) {
    .table thead tr>td:nth-child(n+3) {
        display: none;
    }

    .table tbody tr>td:nth-child(n+3) {
        display: none;
    }

    .table thead tr>td:nth-child(1) {
        text-align: left;
    }

    .table thead tr>td:nth-child(2) {
        text-align: right;
    }

    .table thead tr>td:nth-child(4) {
        display: table-cell;
        text-align: right;
    }

    .table tbody tr>td:nth-child(4) {
        display: table-cell;
        text-align: right;
    }
}

@media screen and (max-width: 375px) {
    .table thead tr>td:nth-child(n+3) {
        display: none;
    }


    .table tbody tr>td:nth-child(n+3) {
        display: none;
    }

    .table thead tr>td:nth-child(1) {
        text-align: left;
    }

    .table thead tr>td:nth-child(2) {
        text-align: right;
    }

    .table thead tr>td:nth-child(4) {
        display: table-cell;
        text-align: right;
    }

    .table tbody tr>td:nth-child(4) {
        display: table-cell;
        text-align: right;
    }
}