﻿/*
    Basic Template Styles
*/
html
{
    position: relative;
    min-height: 100%;
}

body
{
    padding-top: 50px;
    padding-bottom: 20px;
    /*Margin bottom by footer height*/
    margin-bottom: 60px;
    font-family: Arial,sans-serif;
    font-size: 14px;
}

/*
    BOOTSTRAP OVERRIDES   
 */

.page-header
{
    margin: 0;
    background-color: #F5F5F5;
    border: none;
    padding: 6px;
    position: fixed;
    left: 0;
    right: 0;
    z-index: 99;
    height: 60px;
    display: block;
}

.page-header-container
{
    height: 60px; /* Matches the height of the page header*/
}


.page-header > h3
{
    margin: 12px;
}

.button-bar
{
    margin: 0;
    padding: 0;
    margin-top: 6px;
}

.affix
{
    /*width:150px;*/
}

.panel-title
{
    font-size: inherit;
}

.modal-lg
{
    width: 900px;
}

.modal-body
{
    padding: 30px;
}

.modal-footer
{
    background-color: #f0f0f0;
}

.modal-header
{
    background-color: #f0f0f0;
}

label
{
    font-weight: normal;
}

.field-validation-error
{
    color: red;
}

.validation-summary-valid{
    display:none;
}


/* Set padding to keep content from hitting the edges*/
.body-content
{
    padding-left: 15px;
    padding-right: 15px;
}

/* 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;
}

/*
    FOOTER STYLE    
*/

.footer
{
    position: absolute;
    bottom: 0;
    width: 100%; /* Set the fixed height of the footer here */
    height: 60px;
    /*background-color: #323D42;*/
    /*border-top:solid 1px #323D42;*/
    
}

 /*.footer p {
     font-size:1.5em;
 }*/

.footer hr
{
    background: none repeat scroll 0 0 #232a2d;
    /*border-bottom: 1px solid #404c52;*/
    border-top: 2px solid #52BCEC;
    margin-top:10px;
    margin-bottom:10px;
}

.footer .bottomNav, footer .breadcrumb
{
    margin-top: 10px;
    background: none repeat scroll 0 0 #323D42;
}

.footer > .container-fluid .text-muted
{
    margin: 20px;
}

/*
    NAVIGATION BAR STYLE
*/
/*nav bar*/
.navbar-default
{
    /*background-color:#0000A0;
    border-color: #E7E7E7;*/
    border-bottom:10px;
    border-bottom-style:solid;
    border-bottom-color:#012E67;
}

/*title*/
.navbar-default .navbar-brand
{
    color: #FFFFFF;
}

.navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus
{
    color: #000000;
}

/* link */
.navbar-default .navbar-nav > li > a
{
    color: #000000;
    /*color: white;*/
}

.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus
{
    /*color: #FFFFFF;*/
    color: black;
    background-color: #E7E7E7;
}

.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus
{
    color: #000000;
    background-color: #E7E7E7;
}

.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus
{
    color: #555;
    background-color: #E7E7E7;
}


.dropdown-submenu > .dropdown-menu
{
    top: 0;
    left: 100%;
    margin-top: -6px;
    margin-left: -1px;
    -webkit-border-radius: 0 6px 6px 6px;
    -moz-border-radius: 0 6px 6px;
    border-radius: 0 6px 6px 6px;
}

@media (min-width: 1024px)
{
    .dropdown-submenu:hover > .dropdown-menu
    {
        display: block;
    }
}

@media (max-width: 1024px)
{
    .dropdown-submenu > .dropdown-menu
    {
        display: block;
        margin-left:15px;
    }
}

.dropdown-submenu > a:after
{
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #ccc;
    margin-top: 5px;
    margin-right: -10px;
}



@media (max-width:1024px){
    .dropdown-submenu > a:after
    { 
        content: none;
    }
}

.dropdown-submenu:hover > a:after
{
    border-left-color: #fff;
}

.dropdown-submenu.pull-left
{
    float: none;
}

    .dropdown-submenu.pull-left > .dropdown-menu
    {
        left: -100%;
        margin-left: 10px;
        -webkit-border-radius: 6px 0 6px 6px;
        -moz-border-radius: 6px 0 6px 6px;
        border-radius: 6px 0 6px 6px;
    }

@media (max-width: 1024px)
{
    .navbar-header
    {
        float: none;
    }

    .navbar-toggle
    {
        display: block;
    }

    .navbar-collapse
    {
        border-top: 1px solid transparent;
        -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
        -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
    }

    .navbar-collapse.collapse
    {
        display: none!important;
    }

    .navbar-nav
    {
        float: none!important;
        /*margin: 7.5px -15px;*/
    }

    .navbar-nav > li
    {
        float: none;
    }

    .navbar-nav > li > a
    {
        padding: 15px 15px;
        font-size: 18px;
        line-height: 20px;
    }

    .navbar-text
    {
        float: none;
        margin: 15px 0;
    }
    /* since 3.1.0 */
    .navbar-collapse.collapse.in
    {
        display: block!important;
    }

    .collapsing
    {
        overflow: hidden!important;
    }


    .navbar-nav .open .dropdown-menu
    {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: transparent; 
        border: 0;
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        color:white;
    }

    .navbar-nav .open .dropdown-menu > li > a
    {
        padding: 15px 15px;
        font-size: 18px;
        line-height: 20px;
         color:white;
    }
  
}


        @media screen and (max-width: 1024px)
        {
            .side-collapse-container
            {
                width: 100%;
                position: relative;
                left: 0;
                -moz-transition: left .4s;
                -o-transition: left .4s;
                -webkit-transition: left .4s;
                transition: left .4s;
                z-index: 1000;
            }

                .side-collapse-container.out
                {
                    left: 300px;
                }

            .side-collapse
            {
                top: 50px;
                bottom: 0;
                left: 0;
                width: 300px;
                position: fixed;
                overflow: scroll;
                -moz-transition: width .4s;
                -o-transition: width .4s;
                -webkit-transition: width .4s;
                transition: width .4s;
                background-color: #16ACBD;
            }

                .side-collapse.in
                {
                    width: 0;
                }
        }


/*
    TABLE STYLE    
*/

.table-hover tbody tr:hover td, .table-hover tbody tr:hover th
{
    background-color: #00A9FB;
    color: #000000;
}

.control-buttons
{
    margin-top: 10px;
}

/*left and Right Lists*/

.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;
    }

.pagination
{
    margin: 0px;
}

.page-list
{
   margin:10px;
}

.pagination-info
{
    margin: 6px;
}


/*These two bits add thead caret to the caret*/

.panel-heading .accordion-toggle:after
{
    /* symbol for "opening" panels */
    font-family: 'Glyphicons Halflings'; /* essential for enabling glyphicon */
    content: "\e114"; /* adjust as needed, taken from bootstrap.css */
    margin-left: 10px;
    color: grey; /* adjust as needed */
}

.panel-heading .accordion-toggle.collapsed:after
{
    /* symbol for "collapsed" panels */
    content: "\e080"; /* adjust as needed, taken from bootstrap.css */
}

.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control
{
    cursor: default;
    background-color: #FFFFFF;
    resize: vertical;
}

.btn-file
{
    position: relative;
    overflow: hidden;
}

    .btn-file input[type=file]
    {
        position: absolute;
        top: 0;
        right: 0;
        min-width: 100%;
        min-height: 100%;
        font-size: 100px;
        text-align: right;
        filter: alpha(opacity=0);
        opacity: 0;
        outline: none;
        background: white;
        cursor: inherit;
        display: block;
    }

.container-fluid
{
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.dropdown-submenu
{
    position: relative;
}

.form-save
{
    border-top: 1px solid black;
    border-bottom: 1px solid black;
    padding-top: 10px;
    padding-bottom: 30px;
}

.icon-inactive
{
    opacity: 0.1;
}
/*.icon-active {
    -moz-box-shadow: 10px 10px 5px #888888;
    -webkit-box-shadow: 10px 10px 5px #888888;
    box-shadow: 10px 10px 5px #888888;
}*/



/* Large desktops and laptops */
@media (min-width: 1400px) {

}

/* Landscape tablets and medium desktops */
@media (min-width: 992px) and (max-width: 1199px) {

    /*Hides the -to- text in the Date Review search control on md screens*/
    .review-date-addon {
        display:none;
     }
}

/* Portrait tablets and small desktops */
@media (min-width: 768px) and (max-width: 991px) {

}

/* Landscape phones and portrait tablets */
@media (max-width: 767px) {

}

/* Portrait phones and smaller */
@media (max-width: 480px) {

}

.chemicalclass-number{
    /*margin-left:48px;*/
    /*text-align:center;*/
    font-size:2em;
    
}


.btnDetailSave , .btnDetailCancel, .btnDetailDelete{
    display:none;
}

.progress
{
    position: relative;
    /*width: 400px;*/
    border: 1px solid #ddd;
    padding: 1px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

.bar
{
    background-color: #B4F5B4;
    width: 0%;
    height: 20px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

.percent
{
    position: absolute;
    display: inline-block;
    top: 3px;
    left: 48%;
}

.yellow
{
    background-color: lightgoldenrodyellow;
}