* {
    box-sizing: border-box; 
  }
  @font-face {
    font-family: "Nunito Sans";
    src: url("/font/NunitoSans-Regular.ttf");
}
  body {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    margin: 0;
    font-family: "Nunito Sans";
  }
  #main {
    display: flex;
    flex: 1;
  }
  #main > article {
    flex: 1;
    color:#425664;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 20em;
    flex-direction: column;
  }
  #main > nav {
    flex: 0 0 12vw;
    background: #f6f4f2;
    color:#425664;
  }
  #main > nav {
    order: -1;
  }
  header {
    background:#425664;
    color:#f2f2f2;
  }
  footer {
    background:#f6f4f2;
    color:#425664;
    font-size:12px;

  }
  header, footer, article, nav {
    padding: 1em;
  }
  input[type="text"] {
    width: 400px;
    height: 40px;
    padding: 0 15px;
    border-color:#425664;    
    border-radius: 30px;
    flex: 1;
    display: block;
}
input[type="file"] {
    width: 400px;
    height: 40px;
    padding: 0 15px;
    border-color:#425664;    
    border-radius: 30px;
    flex: 1;
    display: block;
}
input:focus{
    outline:none;
}
.button {
    position:absolute;
    top:0;
    bottom:0;
    right:0;
    background: #c6ad8f;
    color:#f6f4f2;
    padding:0 15px;
    letter-spacing: 1.2px;
    width:100px;
    height: 100%;
    border-bottom-right-radius: 30px;
    border-top-right-radius: 30px;
    border-bottom: #425664;
    border-right: #425664;
    border-top: #425664;
    border-left:none;
}
.inputContainer {
    display: flex;
    position: relative;
    width:400px;
    }
a {
    text-decoration: none;
    color:#425664;
}
    /* Formatting search box */
    .search-box{
      width: 300px;
      position: relative;
      display: inline-block;
      font-size: 14px;
  }
  .search-box input[type="text"]{
      height: 32px;
      padding: 5px 10px;
      border: 1px solid #CCCCCC;
      font-size: 14px;
  }
  .result{
      position: absolute;        
      z-index: 999;
      top: 100%;
      left: 0;
  }
  .search-box input[type="text"], .result{
      width: 100%;
      box-sizing: border-box;
  }
  .result p{
      margin: 0;
      padding: 7px 10px;
      border: 1px solid #CCCCCC;
      border-top: none;
      cursor: pointer;
  }
  .result p:hover{
      background: #f2f2f2;
  }
  .ewr{
    background: #f2f2f2;
  }
  .pagination {
    list-style-type: none;
  }
  .pagination li {
      display: inline;
  }
  h2{
    text-align: center;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    padding: 30px 0;
}

/* Table Styles */

.table-wrapper{
    margin: 10px 70px 70px;
    box-shadow: 0px 35px 50px rgba( 0, 0, 0, 0.2 );
}

.fl-table {
    border-radius: 5px;
    font-size: 14px;
    font-weight: normal;
    border: none;
    border-collapse: collapse;
    width: 100%;
    max-width: 100%;
    white-space: nowrap;
    background-color: white;
}

.fl-table td, .fl-table th {
    text-align: center;
    padding: 8px;
}

.fl-table td {
    border-right: 1px solid #f8f8f8;
    font-size: 14px;
}

.fl-table thead th {
    color: #ffffff;
    background: #324960;
}



.fl-table tr:nth-child(even) {
    background: #F8F8F8;
}

/* Responsive */

@media (max-width: 767px) {
    .fl-table {
        display: block;
        width: 100%;
    }
    .table-wrapper:before{
        content: "Scroll horizontally >";
        display: block;
        text-align: right;
        font-size: 11px;
        color: white;
        padding: 0 0 10px;
    }
    .fl-table thead, .fl-table tbody, .fl-table thead th {
        display: block;
    }
    .fl-table thead th:last-child{
        border-bottom: none;
    }
    .fl-table thead {
        float: left;
    }
    .fl-table tbody {
        width: auto;
        position: relative;
        overflow-x: auto;
    }
    .fl-table td, .fl-table th {
        padding: 20px .625em .625em .625em;
        height: 60px;
        vertical-align: middle;
        box-sizing: border-box;
        overflow-x: hidden;
        overflow-y: auto;
        width: 120px;
        font-size: 13px;
        text-overflow: ellipsis;
    }
    .fl-table thead th {
        text-align: left;
        border-bottom: 1px solid #f7f7f9;
    }
    .fl-table tbody tr {
        display: table-cell;
    }
    .fl-table tbody tr:nth-child(odd) {
        background: gray;
    }
    .fl-table tr:nth-child(even) {
        background: transparent;
    }
    .fl-table tr td:nth-child(odd) {
        background: #F8F8F8;
        border-right: 1px solid #E6E4E4;
    }
    .fl-table tr td:nth-child(even) {
        border-right: 1px solid #E6E4E4;
    }
    .fl-table tbody td {
        display: block;
        text-align: center;
    }
}