﻿
/* override the font weight and size */
.responsive-table th {
    font-size: 16px;
    font-size: 1rem;
    font-weight: normal;
}

/* render table header link as white */
.responsive-table thead tr th a {
    color: #ffffff;
}

    .responsive-table thead tr th a:hover {
        color: #FB4D42;
    }

/* fix the border for the vertical table */
.responsive-table--vertical tr:not(:last-child) th {
    border-bottom: 1px solid #fff;
}

.responsive-table--vertical tr:last-child th {
    border-bottom: 1px solid #000; /* solid color for last row */
}

.responsive-table--vertical tr:first-child th {
    border-top: 1px solid #000; /* solid color for first row */
}

@media (max-width: 768px) {
    .responsive-table--vertical tr:first-child th {
        border-top: none;
    }
}
/* end vertical fix */

/* force data-label to block not float left */
@media (max-width:768px) {
    .responsive-table--m tbody tr td {
        text-align: left;
    }

        .responsive-table--m tbody tr td::before {
            content: attr(data-label);
            float: none;
            display: block;
        }
}

/* highlights a grid row */
.highlightOn {
    color: #FB4D42;
    background-color: #D2D2D2 !important;
    cursor: pointer;
    vertical-align: top;
}

/* gridview pager styles */
.gv-pager tr {
}

.gv-pager td {
    background-color: #fff;
    border-top: 1px solid #091f2f !important;
    border-bottom: 1px solid #fff !important;
    border-left: 1px solid #fff !important;
    border-right: 1px solid #fff !important;
}

    .gv-pager td table {
        margin: 0 auto;
        border-collapse: collapse;
    }

        .gv-pager td table td {
            font-family: Montserrat,Arial,sans-serif;
            text-decoration: none;
            color: #091f2f;
            border: 2px solid #091f2f !important;
            font-weight: bold;
            padding: 0;
        }

            .gv-pager td table td:hover {
                color: #FB4D42;
            }

        .gv-pager td table a {
            color: #091f2f;
            padding: 15px;
            width: 100%;
            display: block;
        }

        .gv-pager td table span {
            color: #FFF;
            padding: 15px;
            background-color: #288BE4;
            width: 100%;
            display: block;
        }

        .gv-pager td table a:hover {
            color: #FFF;
            background-color: #FB4D42;
        }

@media all and (max-width:768px) {
    .gv-pager td table {
        margin: 0 auto;
        width: 100%;
    }

        .gv-pager td table tr td {
            width: inherit;
            clear: none;
            float: none;
            display: inline-block;
            text-align: center;
            border: none !important;
            padding: 4px;
        }

        .gv-pager td table span {
            color: #FB4D42;
            padding: inherit;
            background-color: #FFF;
            display: inline;
        }

        .gv-pager td table a {
            padding: inherit;
            display: inline;
        }
}

.col--w10 {
    width: 10%;
}

.col--w15 {
    width: 15%;
}

.col--w20 {
    width: 20%;
}
