﻿

.w3-StateType {
    background-color: #005693 !important;
    color:white;
}
.w3-tblSubTot {
    background-color: #003b64 !important;
    color: white;
}


/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .example {
        background: red;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    .w3-responsive {
        overflow-x: auto !important;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    .w3-responsive {
        overflow-x: auto !important;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    thead {
        position: sticky;
        top: 80px;
        transition: 2s;
        z-index: 2;
    }

    .w3-responsive {
        overflow-x: unset !important;
    }
    .bottomMenu {
        position: fixed;
        top: 80px;
        width: 100%;
        height: 57px;
        border-top: 1px solid #fff;
        background: #fff;
        z-index: 1;
    }

    .hide {
        opacity: 0;
        left: -100%;
    }

    .show {
        opacity: 1;
        left: 0;
    }

}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    thead {
        position: sticky;
        top: 80px;
        transition: 2s;
        z-index: 2;
    }

    .w3-responsive {
        overflow-x: unset !important;
    }
    .bottomMenu {
        position: fixed;
        top: 80px;
        width: 100%;
        height: 32px;
        border-top: 1px solid #fff;
        background: #fff;
        z-index: 1;
    }

    .hide {
        opacity: 0;
        left: -100%;
    }

    .show {
        opacity: 1;
        left: 0;
    }

}


