﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification\ 
for details on configuring this project to bundle and minify static web assets. */
html {
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
    font-size:16px;
    overflow: hidden;
}

body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding-top: 50px;
    padding-bottom: 20px;
    font-size: 16px;
    overflow: hidden;
}

html body #pdfviewer {
    width: 100% !important;
}

footer {
    height: 20px;
    width: 100%;
    bottom: 0;
    position: absolute;
    background-color: #eee;
    border-top: 1px solid #eeeeee;
    text-align: center;
    font-size:15px;
}

.centerForm {
    width: 500px;
    margin: auto;
    padding: 10px;
    color: #000000
}

.gridWrapper {
    height: 100%;
    padding: 0;
    margin: 0;
}

input[type="text"]:disabled {
    cursor: default;
}

input[type="text"]:enabled {
    cursor: text;
}

/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden;
}

/*.inspection-container, .inspection-panel {
    padding: 0.01em 16px
}*/

/* Carousel */
/*.carousel-caption p {
    font-size: 20px;
    line-height: 1.4;
}*/

/* Make .svg files in the carousel display properly in older browsers */
/*.carousel-inner .item img[src$=".svg"] {
    width: 100%;
}*/

/* QR code generator */
#qrCode {
    margin: 15px;
}

.GridFooter {
    padding: 10px 0px;
}

/* Hide/rearrange for smaller screens */
@media screen and (max-width: 767px) {
    /* Hide captions */
    .carousel-caption {
        display: none;
    }
}

.dual-list .list-group {
    margin-top: 8px;
}

.list-left li, .list-right li {
    cursor: pointer;
}

.list-arrows {
    padding-top: 100px;
}

    .list-arrows button {
        margin-bottom: 20px;
    }

/* For styling form labels and values DIV */

.buttonDiv {
    width: 100%;
    padding: 5px;
    border-top: 1px solid #ccc;
}

.labelDiv {
    width: 90px;
    text-align: left;
    display: inline-block;
}

.valueDiv {
    padding: 3px;
    width: 100px;
    text-align: left;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
}

.site-blue, .site-hover-blue:hover {
    color: ghostwhite !important;
    /*background-color: #0078d7 #005a9e*/
    background-color: #0078d7 !important
}

/* Apply padding to td elements that are direct children of the tr elements with class spaceUnder. */

table {
    border-collapse:separate;
    border-spacing:4px;
}
td {
    padding-right: 10px;
}

/*Blinking Text*/
.blinking {
    animation: blinkingText 1s infinite;
}

@keyframes blinkingText {
    0% {
        color: transparent;
    }

    25% {
        color: hotpink;
    }

    40% {
        color: yellow;
    }

    75% {
        color: yellow;
    }

    100% {
        color: transparent;
    }
}

