html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

/*body {
  margin-bottom: 60px;
}*/

table thead tr {
    background-color: wheat;
    color: black;
    height: 35px;
}

tr:nth-child(even) {
    
    background-color: #D6EEEE;
}

tr:nth-child(odd) {
    background-color: white;
}

/* complicated rounded table corners! */
.twrap {
    width: 100%;
    overflow: auto;
}
table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    color: black;
    font-size: 14px;

}

    table thead tr th {
        font-weight:500;
    }
    table thead tr th, table tbody tr td {
        border-right: 1px solid #CCC;
        border-top: 1px solid #CCC;
        padding: 7px 31px;
        vertical-align: middle;
    }

        table td:first-child,
        table th:first-child {
            border-left: 1px solid #CCC;
        }

    table tr:last-child td,
    table tr:last-child th {
        border-bottom: 1px solid #CCC;
    }

    table thead + tbody tr:first-child td {
        border-top: 0;
    }

    table thead td,
    table th {
        background-color: wheat;
    }

    /* complicated rounded table corners! */
    table thead:first-child tr:last-child td:first-child {
        border-bottom-left-radius: 0;
    }

    table thead:first-child tr:last-child td:last-child {
        border-bottom-right-radius: 0;
    }

    table thead + tbody tr:first-child td:first-child {
        border-top-left-radius: 0;
    }

    table thead + tbody tr:first-child td:last-child {
        border-top-right-radius: 0;
    }

    table tr:first-child td:first-child,
    table thead tr:first-child td:first-child {
        border-top-left-radius: 5px;
    }

    table tr:first-child td:last-child,
    table thead tr:first-child td:last-child {
        border-top-right-radius: 5px;
    }

    table tr:last-child td:first-child,
    table thead:last-child tr:last-child td:first-child {
        border-bottom-left-radius: 5px;
    }

    table tr:last-child td:last-child,
    table thead:last-child tr:last-child td:last-child {
        border-bottom-right-radius: 5px;
    }
