﻿@page {
    size: auto
}

/* ########## */

a {
    color: steelblue !important;
}

    a:link, a:active, a:visited {
        text-decoration: none !important;
    }

    a:hover {
        text-decoration: underline !important;
    }

/* ########## */

.header {
    background-color: #213367;
    color: white;
    text-align: center;
    padding: 1em 0;
    font-size: 2em;
}

.header h1 {
    font-size: 24px;
    font-weight: bold;
}

.content {
    background-color: white;
    padding: 2em 0;
}

.footer {
    padding: 2em 0;
    text-align: center;
    font-size: 0.8em;
    color: #606569;
    border-top: 1px solid #d0d5d9;
}

/* ############################## */

.tos {
}

    .tos h1, .tos h3 {
        font-size: 20px;
        font-weight: bold;
        text-transform: uppercase;
        text-align: center;
    }

    .tos p {
        text-align: justify;
    }

.tos-checkbox-bar {
    text-align: center !important;
}

.tos-checkbox {
    margin: auto;
}

    .tos-checkbox label {
        font-weight: bold;
        padding-left: 10px;
        font-size: 14px;
        text-transform: uppercase;
        vertical-align: middle;
    }

.tos-button-bar {
    text-align: center !important;
}

.tos-button {
    background-color: #e0e5e9;
    border: 1px solid #e0e5e9;
    border-radius: 4px;
    padding: 10px 20px;
    font-size: 18px;
}

    .tos-button:hover {
        background-color: #060270;
        border: 1px solid #060270;
        color: white;
    }

/*###################################3*/

.filter-bar {
    margin-bottom: 2em;
}

.filter {
}

    .filter label {
        display: inline-block;
        font-size: 12px;
        text-transform: uppercase;
    }

.filter-textbox {
    width: 100%;
    height: 30px;
    box-sizing: border-box;
    border: 1px solid #000;
    border-radius: 2px;
    padding-left: 5px;
}

.filter-dropdown {
    width: 100%;
    height: 30px;
    box-sizing: border-box;
    border: 1px solid #000;
    border-radius: 2px;
    padding-left: 5px;
}

.filter-button {
    width: 100%;
    height: 30px;
    box-sizing: border-box;
    background-color: #e0e5e9;
    border: 1px solid #e0e5e9;
    border-radius: 2px;
}

    .filter-button:hover {
        background-color: #060270;
        border: 1px solid #060270;
        color: white;
    }

/* ####################### */

.data-grid {
    width: 100%;
    border-collapse: collapse;
    border-width: 0;
}

.data-grid-header, .data-grid-item, .data-grid-item-center {
    background-color: white;
    font-size: 12px;
    padding: 5px 10px;
}

.data-grid-header {
    text-transform: uppercase;
    border-width: 0;
    text-align: center;
    white-space: nowrap;
}

.data-grid-item-center {
    text-align: center;
}

/* ################# */

.message-container {
    background-color: #e0e5e9;
    text-align: center;
    font-weight: bold;
    padding: 1em;
    font-size: 18px;
    border-radius: 4px;
}

.error-container {
    background-color: red;
    color: white;
    text-align: center;
    font-weight: bold;
    padding: 1em;
    font-size: 18px;
    border-radius: 4px;
}