.PlainHeader {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    border-bottom: 3px solid black;
    height: 120px;
    z-index: 2;
    background-color: white;
}

.PlainHeader img {
    position: absolute;
    height: 90%;
    top: 5%;
    left: 2%;
}

.PlainHeaderBuffer {
    width: 100%;
    height: 120px;
}

.DefaultFooter {
    width: 100%;
    background-color: #1A365E;
    border-top: 1px solid black;
    position: fixed;
    bottom: 0;
    left: 0;
}

.DefaultFooter td {
    text-align: center;
    width: 25%;
    color: white;
    padding: 4px 0;
    font-size: 16pt;
}

.DefaultFooter a {
    color: white;
    text-decoration: underline;
}

.DefaultFooterBuffer {
    width: 100%;
    height: 40px;
}

.TabsHeader {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    height: 130px;
    z-index: 2;
    background-color: white;
}

.TabsHeader img {
    position: absolute;
    height: 56%;
    top: 2%;
    left: 1%;
}

.TabsHeaderBuffer {
    width: 100%;
    height: 135px;
}

.TabsHeaderTable {
    width: 100%;
    border: none;
    table-layout: fixed;
    background-color: #1A365E;
    font-size: 0.85em;
    font-weight: bold;
    position: absolute;
    bottom: 0;
}

.TabsHeaderTable a {
    color: white;
    text-decoration: none;
}

.TabsHeaderTable tr:first-child td {
    height: 10px;
}

.TabsHeaderTable tr:nth-child(2) td {
    text-align: center;
    background-color: #1A365E;
    color: white;
    padding: 8px 0 14px 0;
    text-transform: uppercase;
    border-radius: 10px 10px 0 0;
}

.TabsHeaderTopMessage {
    font-size: 18pt;
    color: #1A365E;
    font-weight: bold;
    position: absolute;
    top: 5px;
    right: 10px;
}

.TabsHeaderBottomMessage {
    font-size: 10pt;
    color: #1A365E;
    font-weight: bold;
    position: absolute;
    top: 55px;
    right: 10px;
}

.TabsLogoutForm {
    display: inline-block;
}

.TabsLogoutForm input {
    color: #1A365E;
    background-color: transparent;
    border: none;
    font-weight: bold;
    text-decoration: underline;
}


/*---*/

.NewOrdersHeaderTable {
    position: fixed;
    top: 0;
    left: 0;
    height: 50px;
    width: 100%;
    table-layout: fixed;
    background-color: #1A365E;
    z-index: 10;
}

.NewOrdersHeaderTable tr td {
    color: white;
    padding: 4px 0;
    text-align: center;
}

.NewOrdersHeaderBuffer {
    width: 100%;
    height: 60px;
}

.on_hold_header {
    position: absolute;
    top: 10px;;
    left: 15%;
    border: 1px solid black;
    padding: 3px 30px;
    border-radius: 15px;
    font-weight: bold;
    font-size: 90%;
    color: red;
    background-color: #e9e9e9;
}

.on_hold_header img {
    width: 25px;
    height: 25px;
    position: relative;
    margin-right: 15px;
    vertical-align: -5px;
}

.on_hold_header form {
    margin-left: 15px;
    display: inline-block;
}

.DefaultFooter img {
    height: 30px;
    position: absolute;
    bottom: 2px;
    right: 2px;
    cursor: pointer;
}

.DefaultFooter label {
    color: white;
    margin: 7px;
    float: right;
    margin-right: 40px;
    font-size: 17px;
}

/*

 __  __  ___  ____ ___ _     _____    ____ ____ ____  
|  \/  |/ _ \| __ )_ _| |   | ____|  / ___/ ___/ ___| 
| |\/| | | | |  _ \| || |   |  _|   | |   \___ \___ \ 
| |  | | |_| | |_) | || |___| |___  | |___ ___) |__) |
|_|  |_|\___/|____/___|_____|_____|  \____|____/____/ 

*/
.show-mobile {
    display: none;
  }
  
  @media screen and (max-width: 1500px) {
  
    .hide-mobile {
        display: none;
    }
  
    .show-mobile {
        display: inherit;
    }
  
  
  }
  
  @media screen and (max-width: 1100px) {
  
    .hide-mobile {
        display: none;
    }
  
    .show-mobile {
        display: inherit;
    }
  
    .TabsHeaderTable {
      font-size: 65%;
      table-layout: inherit;
    }

    .TabsHeaderTable td {
        padding: 5px;
        border-radius: 3px 3px 0 0 !important;

    }

    .TabsHeaderTable tr:nth-child(3) {
        display: none;
    }

    .TabsHeaderTopMessage {
        display: none;
    }
  
  }
  