﻿.is-showingSpinner:before, .is-showingSpinner:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    z-index: 2147483647;
    pointer-events: none;
}

.is-showingSpinner:before {
    position: fixed;
    width: 100%;
    min-height: 100%;
    background-color: rgba(211, 211, 211, .8);
}

.is-showingSpinner:after {
    margin: auto;
    width: 32px;
    height: 32px;
    border: 4px solid #4ea6ea;
    border-left-color: transparent;
    border-top-color: transparent;
    border-radius: 50%;
    -webkit-animation: rotation .6s infinite linear;
    -moz-animation: rotation .6s infinite linear;
    -o-animation: rotation .6s infinite linear;
    animation: rotation .6s infinite linear;
}

@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(359deg)
    }
}

@-moz-keyframes rotation {
    from {
        -moz-transform: rotate(0deg)
    }

    to {
        -moz-transform: rotate(359deg)
    }
}

@-o-keyframes rotation {
    from {
        -o-transform: rotate(0deg);
    }

    to {
        -o-transform: rotate(359deg);
    }
}

@keyframes rotation {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(359deg)
    }
}

body {
    padding-top: 50px;
    padding-bottom: 20px;
    background-color: cornflowerblue;
}

.field-validation-error {
    color: #b94a48;
}
/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
    background-color: aliceblue;
}

.roundtoprow {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.rounddiv {
    border-radius: 12px;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 280px;
}

textarea, select {
    width: 85%;
}

.dashboardSummary th, .dashboardSummary tr {
    text-align: center;
}

.tcal {
    width: 120px;
}

.chart {
    width: 1200px;
    min-height: 450px;
}

@media (min-width: 1200px) {
    .container {
        min-width: 85%;
    }
}

@media only screen and (max-width:991px) {
    .headerText {
        font-size: 16px;
    }

    .rounddiv {
        margin-bottom: 10px;
    }

    [class*="col-"] {
    }

    .play {
        display: none;
    }
}

@media only screen and (max-width: 800px) {

    #no-more-tables-mobile-header {
        display: normal
    }

    /* Force table to not be like tables anymore */
    #no-more-tables table,
    #no-more-tables thead,
    #no-more-tables tbody,
    #no-more-tables th,
    #no-more-tables td,
    #no-more-tables tr {
        display: block;
    }

        /* Hide table headers (but not display: none;, for accessibility) */
        #no-more-tables thead tr {
            position: absolute;
            top: -9999px;
            left: -9999px;
        }

    #no-more-tables tr {
        border: 2px solid #000000;
    }

    #no-more-tables td {
        /* Behave  like a "row" */
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 50%;
        white-space: normal;
        text-align: left;
        font-size: large;
        font-weight: normal;
        min-height: 40px;
        border-bottom: 0px;
    }

        #no-more-tables td:before {
            /* Now like a table header */
            position: absolute;
            /* Top/left values mimic padding */
            top: 6px;
            left: 6px;
            width: 45%;
            padding-right: 10px;
            white-space: nowrap;
            text-align: left;
            font-weight: bold;
            font-style: italic;
            font-size: 18px
        }

        /*
	Label the data
	*/
        #no-more-tables td:before {
            content: attr(data-title) ":";
        }
}
