.footable {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    font-family: 'trebuchet MS', 'Lucida sans', Arial;
    font-size: 14px;
    color: #444;
    margin-bottom: 70px;
}

.footable.breakpoint tbody td.expand {
    background: url('img/plus.png') no-repeat 5px center;
    padding-left: 40px;
    color: #444;
}

.footable.breakpoint tbody .footable-detail-show td.expand {
    background: url('img/minus.png') no-repeat 5px center;
}

.footable.breakpoint tbody tr.footable-row-detail {
    background: #eee;
}

.footable tbody tr:hover {
    background: #fbf8e9;
}

.footable.breakpoint tbody tr:hover:not(.footable-row-detail) {
    cursor: pointer;
}

.footable thead th,
.footable tbody td {
    padding: 15px;
    text-align: left;
    border-left: 1px solid #fff;
    border-top: 1px solid #fff;
}

.footable tbody td {
    vertical-align: top;
}

.footable tbody td.footable-cell-detail {
    border-left: none;
}

.footable thead th,
.footable thead td {
    background-color: #0080A5;
    border-top: none;
    color: #fff !important;
}


.footable th.footable-sorted,
.footable th.footable-sorted-desc {
    background-color: #083542;
}


.footable thead th.footable-first-column,
.footable thead td.footable-first-column,
.footable tbody td.footable-first-column {
    border-left: none;
}

.footable tr {
    background-color: #F2F2F2;
}

.footable tr:nth-last-of-type(2n -1) {
    background-color: #EBEBEB;
}


.footable > tbody img {
    vertical-align: middle;

}

.footable tbody [data-value="01low"] img,
.footable tbody [data-value="medium"] img,
.footable tbody [data-value="02medium"] img,
.footable tbody [data-value="03High"] img {
    min-width: 30px;
    width: 30px;
    height: 30px;
}

.footable th {
    white-space: nowrap;
    padding-right: 20px;
    position: relative;
}

.table-notes {
    max-width: 870px;
    padding-bottom: 100px;
}

.table-notes .footable {
    color: #696969;
    font-size: 16px;
    line-height: 22px;
}

.table-notes .footable h1,
.table-notes .footable h2,
.table-notes .footable h3,
.table-notes .footable h4 {
    color: #262626;
}


.table-wrapper {
    max-width: 100%;
    overflow-x: auto;
}

.table-shadow-wrapper {
    position: relative;
    overflow: hidden;
}

.table-shadow-wrapper::before,
.table-shadow-wrapper::after {
    content: "";
    display: block;
    height: 100%;
    width: 20px;
    top: 0;
    position: absolute;
    background-color: #f7f7f7;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    filter: blur(10px);
    -ms-filter: blur(10px);
    -o-filter: blur(10px);
    -moz-filter: blur(10px);
    -webkit-filter: blur(10px);
    transition: .3s opacity;
}

.table-shadow-wrapper::after {
    right: 0;
}

.table-shadow-wrapper::before {
    left: 0;
}

.table-shadow-wrapper.right-shadow::after,
.table-shadow-wrapper.left-shadow::before {
    opacity: 1;
}

.table-wrapper:hover {
    cursor: grab;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none;
}


