/* your styles go here */

html {
    font-size: 18px !important;
}
.section{
    display: flex;
    justify-content: center;
    align-items: center;
}
.is-pc{
    position: fixed;
    z-index: 1000;
    width: 100%;
    height: 116px;
    top:0;
}
.top{
    width: 100%;
    color: #2e2f30;
    background-color: #111517;
    z-index: 700;
    position: relative;
}
.top .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-tools{
    display:flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
 
}
.top-tools .tools-btn{
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    display: inline-flex;
    border-bottom: 1px solid #2c2c30;
    padding:10px 0;
}
.top-tools .tools-btn a:last-child{
    margin-left:20px;
}
.button{
    min-width: 77px;
    background: #212529;
    border: 1px solid #212529;
    color: #fff;
    -webkit-transition: all .3s cubic-bezier(.165, .84, .44, 1);
    transition: all .3s cubic-bezier(.165, .84, .44, 1);
    border-radius: 6px;
}
.button:hover{
    border:1px solid #666;
    background:#111;
    color:#ddd !important;
}
.button-green{
    background: #00c94c;
    border: 1px solid #00c94c;
    color: #fff;
}
.button-green:hover{
    background: #025823;
    border: 1px solid #00f15d;
    color: #ddd !important;
}

.bg01{
    background-image: url('../images/bg01.png');
}
.bg-blue-dark .col{padding:0;}
.bg-blue-dark .col .image>img{
    min-height:64px;
}

.main{
    margin-top: 116px;
}
.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;
    }
}