﻿button {
    padding: 0.5em 3em;
    border: 0px solid #FFFFFF;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Roboto',sans-serif;
    font-size: 9px;
    color: black;
    text-align: center;
    color: black;
    cursor: pointer;
}

    button:hover {
        background-color: silver;
    }

.aLink {
    color: steelblue;
}

#popup {
    z-index: 2000;
    position: absolute;
    top: 15%;
    left: 30%;
    background-color: whitesmoke;
    border: solid 2px silver;
    box-shadow: 2px 4px rgba(77, 92, 122, 0.78);
    vertical-align: middle;
    text-align: center;
    padding: 10px;
    font-size: 10px;
}

.popupLink {
    color: steelblue;
    cursor: pointer;
    padding: 4px;
}

    .popupLink:hover {
        background-color: silver;
    }

a {
    cursor: pointer;
}

.smGray {
    color: gray;
    font-weight: normal;
    text-align: right;
    font-size: 10px;
}

.mainhdr {
    font-weight: bold;
    height: 20px;
}

.hdr {
    padding: 20px;
    font-weight: bold
}

.leftPanel {
    width: 150px;
    text-align: left;
    vertical-align: top;
    
}

.whthdr {
    width:100%;
    background-color: white;
    padding: 10px;
}

.mainDiv {
    text-align: left;
    vertical-align: top;
    padding-left: 0px;
    /*background-color: rgb(239,242,248);*/
    color: black;
}

.dropdown {
    border: solid 1px silver;
    display: inline-block;
    width: 200px;
    height: 25px;
    padding: 5px;
    background-image: url(../Images/dropdown-downarrow.png);
    background-position-x: right;
    background-repeat: no-repeat;
}

    .dropdown:hover {
        border: solid 2px gray;
    }

.dropdownInner {
    padding: 10px;
    border: solid 1px silver;
    box-shadow: 2px 4px #888888;
}

.invisInput {
    width: 100px;
    height: 10px;
    border: solid 0px gray;
    outline: none;
}

.midPanel {
    white-space: nowrap;
    padding-left: 10px;
    text-align: left;
    vertical-align: top;
    padding-left: 0px;
    background-color: white;
    color: black;
}

#divManageColumns_main {
    width: 230px;
    height: 600px;
    overflow-y: auto;
}

#divAllFilters_main {
    width: 230px;
    height: 600px;
    overflow-y: auto;
}

.slctHdr {
    border: solid 1px gray;
    background-color: rgb(229,233,240);
    height: 30px;
    padding-left: 40px;
    padding-top: 10px;
    cursor: pointer;
    font-weight: bold;
}

.slctOpts {
    padding-left: 10px;
}



.hdrlink {
    padding: 10px;
    font-size: 12px;
    font-weight: normal;
}

    .hdrlink:hover {
        background-color: lightgray;
    }



.mainTbl {
    padding-top: 0px;
    width: 100%;
    height: 600px;
}

.ltBlueTbl {
    padding: 10px;
    border-top: solid 3px lightgray;
}

/*----------------------------------------------------------------------------------*/

.mainSection {
    border-top: solid 3px lightgray;
}

#singleDispute {
    padding: 5px;
    background-color: white;
    border: solid 1px black;
    box-shadow: 2px 2px;
    position: absolute;
    top: 15px;
    right: 10px;
    display: none
}

.smhdr {
    text-align: left;
    font-weight: bold
}

.whiteOnBlack {
    padding-top: 10px;
    color: white;
}

.alignRight {
    text-align: right;
}

td, p, input {
    font: 10px Verdana;
}

.rptFooter {
    background-color: white;
    color: black;
    font-size: 10px;
    padding: 2px;
    height: 20px;
}

.listSearch {
    border: solid 1px gray;
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 2px;
    padding-bottom: 2px;
    font-size: 8px;
    color: gray;
    background-color: rgb(237, 234, 234);
    box-shadow: 2px 2px;
    cursor: pointer;
}

table, th, td {
    border: solid 0px #DDD;
    border-collapse: collapse;
    padding: 2px 3px;
    /*text-align: center;*/
}

th {
    font: 10px Verdana;
    background-color: white;
    border-bottom: solid 1px gray;
    height: 30px;
}

.fullGrid {
    width: 100%;
    padding: 4px;
    box-shadow: 1px 2px #888888
}

.tableHeader {
    width: 100%;
    padding: 4px;
    float: right;
}

.smallGrid {
    padding: 4px;
    box-shadow: 1px 2px #888888
}
/* ------------------------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------------------------ */

/* Customize the label (the container) */
.container {
    display: block;
    position: relative;
    padding-top: 10px;
    padding-left: 15px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 10px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* Hide the browser's default checkbox */
    .container input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 12px;
    left: 0;
    height: 10px;
    width: 10px;
    background-color: #eee;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
    background-color: #ccc;
}

.container input::backdrop {
    background-color: white;
}
/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
    background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
    left: 4px;
    top: .7px;
    width: 2.5px;
    height: 5px;
    border: solid white;
    border-width: 0 1.2px 1.2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* ------------------------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------------------------ */

/* The container */
.rcontainer {
    display: block;
    position: relative;
    padding-top: 10px;
    padding-left: 15px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 10px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* Hide the browser's default radio button */
    .rcontainer input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

/* Create a custom radio button */
.rcheckmark {
    position: absolute;
    top: 12px;
    left: 0;
    height: 10px;
    width: 10px;
    background-color: #eee;
    border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.rcontainer:hover input ~ .rcheckmark {
    background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.rcontainer input:checked ~ .rcheckmark {
    background-color: #2196F3;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.rcheckmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.rcontainer input:checked ~ .rcheckmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.rcontainer .rcheckmark:after {
    top: 1.8px;
    left: 2px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: white;
}

.singleDspTables {
    background-color: white;
    padding: 10px;
    border: 2px solid lightgray;
    width:940px
}
