﻿html, body {
    height: 100%;
}

.hidden {
    display: none;
}

.fillWhite{
    background: white;
}

/* Div Styling*/
.centerDisplay {
    padding-bottom: 5px;
    text-align: center;
    margin: auto;
}

.middleWithAd {
    width: calc(100% - 160px);
    min-width: 1050px;
    text-align: center;
}

.divFull {
    width: 100%;
}

.inline {
    display: inline;
}

.middle {
    vertical-align: middle;
}

.top {
    vertical-align: top;
}

.padTop {
    padding-top: 5px;
}

.padTop4 {
    padding-top: 4px;
}

.inlineBlock {
    display: inline-block;
    vertical-align: middle;
}

/* Controls */
/* UI Button */
.navBtn {
    color: white;
}

.menuBtn {
    width: 134px;
    font-size: large;
    border: 2px solid #a8b6c2;
    margin: 2px;
    margin-top: 0px;
    background-color: #212529;
    box-shadow: 2px 2px 2px 2px rgba(34,34,34,0.6);
    font-family: sans-serif;
    height: 41px;
}

    .menuBtn:hover {
        color: #fff;
        background-color: #212529;
    }

.menuBtnRed {
    width: 134px;
    font-size: large;
    border: 2px solid #a8b6c2;
    margin: 2px;
    margin-top: 0px;
    background-color: #FF0000;
    box-shadow: 2px 2px 2px 2px rgba(34,34,34,0.6);
    font-family: sans-serif;
    height: 41px;
}

    .menuBtnRed:hover {
        color: #fff;
        background-color: #1d70c1;
    }

.button {
    background-color: rgba(128,128,128, 0.5);
    border: none;
    color: white;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 12px;
    margin: 4px 2px;
    cursor: pointer;
    border: 2px solid gray;
    border-radius: 4px;
    width: 100px;
    height: 40px;
    -o-transition: .1s ease-out;
    -ms-transition: .1s ease-out;
    -moz-transition: .1s ease-out;
    -webkit-transition: .1s ease-out;
    transition: .1s ease-out;
}

    .button:hover {
        background-color: gray;
    }

.greenbutton {
    background-color: rgba(37, 181, 31, 0.7);
    border: 2px solid #00ff0b;
}

    .greenbutton:hover {
        background-color: #00ff0bb5;
    }

.yellowbutton {
    background-color: rgba(214, 214, 23, 0.7);
    border: 2px solid #feff00;
}

    .yellowbutton:hover {
        background-color: #feff00;
    }

.redbutton {
    background-color: rgba(202, 0, 6, 0.7);
    border: 2px solid #ff0000;
}

    .redbutton:hover {
        background-color: #ff0000b5;
    }
/* UI Select/Drop Down */

.UIinput[type=text], .UIinput[type="password"] {
    padding: 8px;
    font-size: 16px;
    font-family: monospace;
    box-sizing: border-box;
    border: 1px solid #bbbbbb;
    border-radius: 3px;
    background-color: #2F3640;
    color: #ffffff;
    height: 25px;
    -o-transition: .1s ease-out;
    -ms-transition: .1s ease-out;
    -moz-transition: .1s ease-out;
    -webkit-transition: .1s ease-out;
    transition: .1s ease-out;
    vertical-align: middle;
    margin-left: 1px;
    margin-right: 1px;
}

    .UIinput[type=text]:hover {
        border: 1px solid #ffffff;
    }

    .UIinput[type=text]:focus {
        border: 1px solid #ffffff;
        box-shadow: 0 0 6px rgba(255, 255, 255, 1)
    }
/* UI Textarea */
.UItextarea {
    padding: 6px;
    font-size: large;
    font-family: monospace;
    box-sizing: border-box;
    border: 1px solid #c1c1c1;
    border-radius: 3px;
    background-color: rgb(17,26,33);
    color: white;
    width: 300px;
    height: 100px;
    box-sizing: border-box;
    resize: none;
    margin-left: 1px;
    margin-right: 1px;
}

    .UItextarea:hover {
        border: 1px solid #ffffff;
    }

    .UItextarea:focus {
        border: 1px solid #ffffff;
        box-shadow: 0 0 6px rgba(255, 255, 255, 1)
    }
/* Remove bullet points for lists */
ul {
    list-style-type: none;
    padding: 0;
}

/* Tables */
.mainBlock {
    text-align: center;
    display: inline-block;
    vertical-align: top;
}

.statusBlock {

}

.topBar {
    background-color: rgba(30,54,81, 0.85);
    border: 1px solid #e69f15;
    width: 100%;
    margin: 5px 0 5px 0;
}

.bottomBar {
    display: inline-block;
    background-color: #363636;
    border: 1px solid #3A7AE2 !important;
    width: 100%;
    text-align: center;
    position: inherit;
    padding: 5px;
    margin: 0px !important;
    -o-transition: .1s ease-in;
    -ms-transition: .1s ease-in;
    -moz-transition: .1s ease-in;
    -webkit-transition: .1s ease-in;
}

    .bottomBar:hover {
        border: 1px solid #dc3545 !important;
    }

    .table-hover tbody tr:hover td, .table-hover tbody tr:hover { /*Override Bootstrap background change on hover*/
        background: gray;
    }

.highlightRed {
    background: rgba(255,0,0,0.5);
}

.highlightOrange {
    background: rgba(255,165,0,0.5);
}

.highlightGreen {
    background: rgba(0,255,0,0.5);
}

.highlightBlue {
    background: rgba(0,0,255,0.5);
}

.highlightRegular {
    background: rgba(0,0,0,0.8);
}

/* Menus */
.unitInfo {
    background: center no-repeat url();
    background-size: contain;
    width: 80px;
    height: 80px;
    background-size: contain;
}

.txtBxInfo {
    font-size: x-small;
    width: auto;
    color: white;
    outline: none;
    background-color: transparent;
    border: transparent;
}

.drpDwnStatus {
    text-align-last: center;
    width: 80px;
    height: 30px;
}

.headerLabel {
    font-size: x-small;
    color: white;
}

/* Department Selector */
.bottomCenter {
    vertical-align: bottom;
    text-align: center;
}

/* Unit Viewer */
.table.tableUnit th {
    padding-right: 10px;
}

.table.tableUnit tr {
    padding: 0px;
    border-spacing: 0;
    border-collapse: collapse;
    border-style: solid;
    border-width: 1px;
    border-color: #a8b6c2;
    color: lightgray;
}

.tableUnit {
    display: inline;
    background: #2F3640;
}

    .tableUnit td:first-child,
    .tableUnit th:first-child {
        display: none;
    }

tr td {
    padding: 1px !important;
    padding-right: 2px !important;
    margin: 0 !important;
}

/* Records */
.txtBxRecord {
    text-align: center;
    background-color: black;
    color: limegreen;
    width: 220px;
}

.txtBxLbl {
    padding-top: 10px;
    font-size: small;
    color: #fbfbfb;
    font-family: Tahoma;
    border: transparent;
    background-color: transparent;
}

.txtBxRegLbl {
    color: white;
    font-size: large;
    width: 75px;
    text-align: left;
}

/* The Modal (background) */
.mapModal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    font-size: 12px;
}

.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    font-size: 12px;
}

/* Dispatch Call*/
.call {
    min-width: 350px;
    vertical-align: top;
}

.sideBarLeft {
    border-left: 1px solid darkgray;
    vertical-align: middle;
    height: 100%;
}

.sideContainer {
    text-align: center;
    padding: 2px;
}

.callID {
    font-size: medium;
    color: #e69f15;
    font-family: Tahoma;
}

.lineBr1 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    background-color: darkgray;
    color: darkgray;
    margin-top: 5px;
    margin-bottom: 7px;
}

.dispatch th {
    border-spacing: 0;
    border-collapse: collapse;
    font-size: medium;
    color: #c5951e;
    border: transparent;
    background-color: transparent;
    font-family: sans-serif;
    padding-left: 3px;
    padding-top: 2px;
    padding-bottom: 0px;
}

.dispatch tr,
.dispatch td {
    border-spacing: 0;
    border-collapse: collapse;
    color: lightgray;
}

.dispatch {
    text-align: left;
    padding: 5px;
}

.callLabel {
    color: #c5951e;
    font-weight: bold;
    font-family: sans-serif;
}

/* Incoming 911 Calls */
.incoming {
    min-width: 350px;
    padding: 5px;
    height: 201px;
}

.incomingHeader {
    color: lightgray;
    font-weight: bold;
}

.incomingTable th {
    padding-right: 50px;
    border-spacing: 0;
    border-collapse: collapse;
    color: lightgrey;
}

.incomingTable tr,
.incomingTable td {
    border-spacing: 0;
    border-collapse: collapse;
    color: red;
}

/* Lookup */
.lookupModal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    font-size: 12px;
}

.txtBxLookup {
    width: 200px;
    height: 40px;
    background-color: black;
    color: limegreen;
    font-size: large;
    margin: 2px;
}

.darkBack {
    background-color: rgba(0,0,0,0.5);
}

/* Call Viewer */
.calls {
    min-width: 350px;
    padding: 5px;
    height: 300px;
}

.plateImage {
    width: 400px;
}

.containerPlate {
    display: inline-block;
    position: relative;
    text-align: center;
    color: white;
}

.centeredPlate {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.txtBxRegPlate {
    font-size: 50px;
    font-weight: bold;
    outline: none;
    border: transparent;
    background-color: transparent;
    color: white;
    text-align: center;
    width: 400px;
}

.txtBxReg {
    color: white;
    outline: none;
    border: transparent;
    background-color: transparent;
    font-size: large;
}

/* 10-Codes */
.codesContainer {
    margin: 3px;
}

.codesBox {
    width: 100%;
    height: 260px;
    background: transparent;
    font-size: small;
    font-family: monospace;
    color: darkgoldenrod;
    border: none;
    resize: none;
    padding: 5px;
}

.chatBox {
    display: block;
    width: 100%;
    height: 256px;
    background: transparent;
    font-size: small;
    font-family: monospace;
    color: darkgoldenrod;
    border: none;
    resize: none;
    padding: 5px;
}

.codesBoxDisp {
    width: 296px;
    height: 343.5px;
    background: transparent;
    font-size: small;
    font-family: monospace;
    color: darkgoldenrod;
    border: none;
    resize: none;
}

/* Recent Activity */
.activityBox {
    width: 100%;
    height: 100px;
    background: transparent;
    font-size: large;
    font-family: monospace;
    color: darkgoldenrod;
    resize: none;
    vertical-align: top;
}

/* Notes */
.notes {
    background-image: url(notes.png);
    background-attachment: local;
    Height: 350px;
    Width: 350px;
    Font-Size: 27px;
    resize: none;
    font-family: cursive;
}

/* Modal Content */
.modal-content {
    background-color: rgba(11, 12, 12, 0.8);
    border-radius: .2rem;
    margin: auto;
    text-align: center;
    border: 1px solid #e69f15;
    width: 80%;
    color: lightgray;
    padding: 7px;
    margin-top: 10px;
}

.wrapper {
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
}

button {
    background: lightgrey;
    width: 100%;
    border: 0;
}

    button:hover, button:focus {
        background: gold;
        outline: 0;
    }

.contain {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    padding: 1em;
}

/* Statuses */
.statuses {
    display: inline-block;
    border-spacing: 0;
    border-collapse: collapse;
    border: 1px solid gray;
    border-width: 1px;
    vertical-align: top;
    color: white;
    height: 390px;
    width: 200px;
    margin: 3px;
}

    .statuses th {
        height: 20px;
        padding: 2px;
        width: 150px;
    }

.table {
    margin-bottom: 0rem;
}

.hiddenHeader th {
    display: none;
}

.statusHeader {
    margin: 0;
}

.statusDept {
    display: block;
    width: calc(100% - 6px);
    margin: 3px;
}


.scrollStatus {
    height: 89px;
    overflow-y: scroll;
    -ms-overflow-style: none;
}

    .scrollStatus::-webkit-scrollbar {
        display: none;
    }

/* Image Overlay */
.container {
    width: 400px;
    display: inline-block;
    position: relative;
    text-align: center;
    color: white;
}

/* The alert message box */
.alert {
    display: none;
    padding: 20px;
    background-color: #f44336; /* Red */
    opacity: 0.6;
    color: white;
    margin-bottom: 5px;
    text-align: center;
    transition: all 0.6s ease;
}

/* The close button */
.closebtn {
    margin-left: 15px;
    color: white;
    font-weight: bold;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
}

    /* When moving the mouse over the close button */
    .closebtn:hover {
        color: black;
    }

.signal {
    display: none;
    padding: 5px;
    background-color: rgba(255, 0, 238, 0.49);
    opacity: 0.6;
    color: #f1ffff;
    font-size: large;
    font-weight: bold;
    margin-bottom: 5px;
    text-align: center;
    vertical-align: middle;
    transition: all 0.6s ease;
    border: 1px solid rgb(58, 122, 226);
}

    .signal:hover {
        background-color: rgba(255, 0, 238, 0.6);
        border: 1px solid rgb(68, 132, 236);
    }

div#google_translate_element div.goog-te-gadget-simple {
    background-color: #333;
    border-color: #222;
}

    div#google_translate_element div.goog-te-gadget-simple a.goog-te-menu-value span {
        color: #ccc;
    }

        div#google_translate_element div.goog-te-gadget-simple a.goog-te-menu-value span:hover {
            color: #eee;
        }
