﻿/*GLOBAL*/

html,
body
{   
    box-sizing: border-box;
    background-color: #ececec;
}

body {
    /*background-color: #ececec;*/
    padding: 0px 0 0;
    font-size:14px;
}

.body-content {
    /*padding: 2px 15px 20px 0;*/
    overflow: auto;
    background-color:#ececec; 
    min-height: calc(100vh - 200px);
    padding-bottom: 60px; 
    clear:both;  
}

.body-container {
    background-color:#ececec;
    padding-top: 16px;              
}

* {   
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {    
    font-weight: bold;
    color: royalblue;    
}

hr {
    color:lightgray;
    background-color:lightgray;
    height:1px;
}

textarea {
    width: 900px;
} 

/* #region Header styles */

.k-header h1 {
    margin: 0;
    padding: 30px 15px;
    font-size: 32px;
    font-weight: lighter;
}

a:hover {
    color: black;
}

/* #endregion */   

/* #region Navbar styles */
div.navbar-header {
    padding-top:15px;
}
.navbar {
    z-index: 9999;
}
nav.navbar.navbar-default  {
    min-height:58px !important; 
    background-color:white;
    border-right: 0;
    border-left:0;
}

.navbar-nav > li > a {
    line-height: 45px;
    padding-top    : 0;
    padding-bottom : 0;    
}

.navbar-default .navbar-nav > li > a {
    color: white;
    font-weight:bold;
    font-size:15px;
    /*reduce space between menu items*/
    padding-left:0px;
}

   .navbar-default .navbar-nav > li > a:hover {
      color: #FDB515 !important;
   }

.dropdown-menu > li > a {    
    color: royalblue;    
}

.navbar-brand {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    text-align: center;
    margin: auto;
    font-size: 1.7em;
    color: royalblue;
    font-weight:bold;
}

   .navbar-brand span:hover {
      color: #FDB515 !important;
   }


.navbar-default .navbar-brand {
    color: white;
}

navbar-default .navbar-nav>li>a important! {
    color:royalblue;
}

.navbar-brand.navbar-image {
   padding: 0 20px 0 0;
   display: flex;
}
.navbar-brand.navbar-image>img {
   margin: auto 0;
}
.navbar-toggle {
    z-index: 30;
}

/* #endregion */

/* tile menu */

#nav.affix {
    position: fixed;
    top: 0;
    z-index:10;
    width: 100%;
}

/*PAGE CONTENT*/

.page-wrapper {
    min-height: calc(100vh - 200px);
    padding-bottom: 60px;
}

.white-box {
    background-color: #fff;
}

.page-header {
    height: 200px;
    width: 100%;
    text-align: center;
    margin: 0 0 6px;  /*Changed this to decrease space to breadcrumbs*/
    overflow: hidden;
    background-position: center center;
}

/* FORM STYLE */
.col-md-1plus {
    width: 12.5%;
    float: left;
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
  }

.form-control {
    height: 29px;
    padding-left: 9px;
    padding-right: 24px;
    border: 1px solid #d7d7d7;    
    letter-spacing: .04em;
    font: normal 12px Verdana, sans-serif;
    box-shadow: inset 0 0px 0px rgba(0, 0, 0, .075);
    margin: -5px;
    border-radius: 6px;
}

.form-horizontal .control-label {
    /*display: inline-block;*/
    vertical-align: middle;
    /*float: none;*/
}

.basic-grey {
    margin-left: auto;
    margin-right: auto;
    max-width: 575px; /*Controls the max width of the form. Can be tweaked locally for smaller forms (like Login)*/
    background: lightgray;     
    color: black;
    /*text-shadow: 1px 1px 1px #FFF;*/
    border: 0px solid #E4E4E4;
    padding:15px;
}

.basic-grey hr {
    padding: 1px;
    margin: 0 0 12px 0;
    border-top: 1px solid #8c8b8b;
}

.basic-grey h1 {
    font-size: 25px;
    padding: 0px 0px 10px 40px;
    display: block;
    border-bottom: 1px solid #E4E4E4;
    margin: -10px -15px 30px -10px;
    color: #888;
}

.basic-grey h4 {
    font-size: 18px;
    padding: 0px 0px 0px 15px;
    display: block;        
    margin: -10px -15px 14px -10px;
    color: #8c8b8b;
}

.basic-grey h1 > span {
    display: block;
    font-size: 11px;
}

.basic-grey label {
    display: block;
    margin: 0px;
    color: black;
    font-weight: normal;
}

.basic-grey .control-label {
    text-align: left;
    padding: 0;
    font-weight:bold;
}   

.basic-grey input[type="text"], .basic-grey input[type="email"], .basic-grey input[type="password"],
.basic-grey input[type="tel"], .basic-grey input[type="datetime"], .basic-grey input[type="number"], 
.basic-grey textarea, basic-grey checkbox .list-box, .basic-grey select {
    border: 1px solid #DADADA;
    color: black; /*originally gray #888*/
    height: 26px;
    margin: 0px 0px 0px 0px;
    outline: 0 none;
    padding: 2px 2px 2px 6px;
    width: 95%;
    font-size: 12px;
    line-height: 15px;
    max-width: 500px;
    background:white;
    background-color:white;
    /*box-shadow: inset 0px 1px 4px #ECECEC;
        -moz-box-shadow: inset 0px 1px 4px #ECECEC;
        -webkit-box-shadow: inset 0px 1px 4px #ECECEC;*/
}

.basic-grey textarea {
    padding: 5px 3px 3px 5px;
    height: 100px;
}
    
.basic-grey .form-group {
        margin:12px 0px 0px 0px;
    } 

/*Row style*/

div.row.narrowrow { 
    height: 5px;
}

/*Button Style*/
.btn-default:hover, .btn-default:focus, .focus.btn-default, .btn-default:active, .active.btn-default, .open > .btn-default.dropdown-toggle
{
    color: white;
    background-color: darkgray; 
}

.btn-default {
    color: white;
    background-color: black;
}

.btn-lg {
    color: white;
    background-color: black;
}

.btn-sm {
    color: white;
    background-color: black;
}
    
.k-button {
min-width: 0 !important;
padding-right: 0;
}

.XLButton {
    margin-top: -15px;
    font-family:Arial;
}

a.k-button.k-button-icontext.k-grid-add {
    color:white;
    background-color:royalblue;
}

.disabled-link
{
    text-decoration: none !important;
    color: black !important;
    cursor: default;
}
.enabled-link
{
    text-decoration: underline !important;
    color: #075798 !important;
    cursor: pointer !important;
}

/* REMOVE BULLETS FROM VALIDATIONSUMMARY */
 .validation-summary-errors ul { 
    list-style: none;
    display: inline;
    margin: 0 12px 0 0;
}

 .validation-summary-errors li {
     color:red;
     font-size:.9em;
     font-weight:bold;
 }

 .validation-summary-errors {
    width: 700px;
}

 .field-validation-error {
    color: red;
}

 /*span style*/

 .paddedSpan {
     padding-left:15px;
     padding-right:10px;
 }

 /*control style*/

 /*adjust look of IE select dropdown arrows*/
 select::-ms-expand {
  background-color:white;
  padding-right:0px;
  margin-right:-20px;
  border:none;
}

 /*kendo window display*/

 /*div.k-window-titlebar.k-header {*/
 .k-window-titlebar,.k-window-actions {
    background-color:royalblue;
 }

 span.k-window-title {
     color:white;
 }
 /*kendo widget display*/

/*reduce rowheight on kendo grids*/
.k-grid td
{
    padding: 0.0em 0.0em
}

/*give kendo grids royal blue headings with white text*/
.k-grid-header .k-header
{
    background-color:royalblue;   
}
.k-grid-header .k-header .k-link
{
    color:white;
    text-shadow:none;
    font-weight: bold;
}
.k-grid-header .k-link
{
    color:white;
    text-shadow:none;
    font-weight: bold;
}
/*make grid sort arrows easier to see on blue background*/
.k-i-sort-asc-sm:before {
    color: white;
}
     
.k-i-sort-desc-sm:before {
    color: white;
}

/*center all grid column headings*/
span.k-link {
    text-align:center;
}

/*center all grid column contents by default*/
td[role=gridcell]{
    text-align:center;
    padding-left:.5em;
    padding-right:.5em;
    padding-top:.25em;
    padding-bottom:.25em;
}

html .k-grid tr:hover {
  background: transparent;
}

html .k-grid tr.k-alt:hover {
  background: #f1f1f1;
}

.k-grid-content > table > tbody > tr:hover
{
        background-color: none;
        background: transparent;
}

/*give grid add button same width as other editing buttons*/
span.k-icon.k-i-add {
    width:25px;
}

/*change case of kendo button text*/
.k-button {
    height: 32px;
    text-transform:capitalize;
}

/*make editing icons bolder*/
.k-grid .k-icon {
    opacity:1
}

.k-grid-toolbar {
    height: 20px;
}

/* make the grid no records message same size as a grid row */
div.k-grid-norecords {
    height:30px;    
}
div.k-grid-norecords:before {
    display: inline-block;
    vertical-align: top;
}
div.k-grid-norecords-template {
    height:30px; 
    display: inline-block;
    vertical-align: top;
    line-height: 2em;
    border: none;
}

/*make selected text in dropdowns easier to see*/
.k-list > .k-state-selected.k-state-focused {
    color: lightgray;
}
/*bold tab text on tabstrip*/
.k-tabstrip-items .k-state-active .k-link {
    color: black;
    font-weight:bold;
}

.k-tabstrip-items .k-state-default .k-link {
    font-size: 16px;
    padding-left:25px;
    padding-right:25px;
}
.k-panelbar>li.k-state-default>.k-link, .k-tabstrip-items .k-state-default .k-link {
    font-weight:bold;
}

.k-panelbar .k-content {
    text-align: center;
}
/* get rid of horizontal scrollbar in tabstrip panels */
div.k-content.k-state-active {
    overflow: hidden;
}

/*keep panelbar items black even when losing focus*/
.k-panelbar>li.k-state-default>.k-link.k-state-selected, .k-panelbar>li>.k-state-selected, .k-state-selected>.k-link {
    color: black;
}

/* remove border around combobox arrow so it looks like standard dropdown */
.k-state-default>.k-select {
    border-color: #fff;
}
/*.k-dropdown-wrap.k-state-default {
    border-color: #fff;
}*/
.k-state-default>.k-select:hover {    
    color: black;
    background-color:white;
  }
/*.k-dropdown-wrap .k-input {
    border-color: #fff;
}*/
.k-dropdown-wrap .k-input:hover {
   background-color:white;
}

/* reduce font of kendo listboxes */
div.k-list-scroller.k-selectable {
    font-size: 11px;    
}

ul.k-reset.k-list li {
    white-space:nowrap;
}

/* maximize listbox size */
div.k-widget.k-listbox {
    width:100%;
}

/* get rid on annoying left border on kendo checkboxes*/
input.k-checkbox.form-control[type="checkbox"]{
    border: 0px;
}
.k-checkbox:disabled+.k-checkbox-label:before,
.k-checkbox:checked:disabled+.k-checkbox-label:before {
    background: gainsboro;
}
.k-checkbox+.k-checkbox-label:before {
    background: white;
}

/*get rid of line above popup edit buttons*/
.k-edit-form-container .k-edit-buttons {
    border-style:none;
}

div.k-widget.k-upload.k-header.k-upload-sync.k-upload-empty {
    width: 200px;
}

div.k-button.k-upload-button {
    color: white;
    background-color:black;
}

.k-tabstrip > .k-tabstrip-items > .k-item {
    text-transform:none;
}

.text-danger
{
    font-weight: bold;
}

.grayClass {
        background-color: #d8d7d7;
}

.lightBlueClass {
        background-color: lightblue;
}

.strikethruClass {
    text-decoration: line-through;
}

.redClass {
    color:red;
}

.blackClass {
    color:black;
}


.reportPanelStyle {
    padding: 10px;
    background-color:lemonchiffon;
    text-align:center;
    margin: 0 auto;
}

/* Footer Style*/

 .footer-content {
    height: 64px;
    text-align: center;
    margin-bottom: 62px;
    padding: 0px 24px;
    background-color: #ececec;
    /*background-image: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #f3f3f3), color-stop(80%, lightgrey));
    background-image: -webkit-linear-gradient(#f3f3f3 10%, lightgrey 80%);
    background-image: linear-gradient(#f3f3f3 10%, lightgrey 80%);*/
    font-size: small;
}

.footer-content > h2 {
    margin-top: 0px;
    line-height: 64px;
    display: block;
    margin-right: 24px;
}

.footer-content > p,
.footer-content > ul,
.footer-content > ul > li {   
    display: inline-block;
}

.footer-content span {
    color: #7d7d7d;
}

footer-content>ul.nav>li {
    padding: 0px;
}

.footer-content>ul.nav>li>a {
    color: #7d7d7d;    
    /*font-size: 11px;*/
}

.footer-content>ul.nav>li>a:hover {
    text-decoration: underline;
    background-color: transparent;
}

.notmobile {
    display:none;
}

/* Small devices (phones, less than 767px) */

@media screen and (max-width:993px) {
    .notmobile {      
      display: block;
  }
   .navbar-header img {
    display: none;
  }
  .navbar-brand {    
    font-size: 20px;    
  }  
}

/* Small devices (tablets, 768px and up) */

@media only screen and (min-width: 768px) {
      
    li.dropdown > a:hover ~ .dropdown-menu,
    li.dropdown:hover .dropdown-menu {
        display: block;
    }
    .footer-content {
        text-align: left;
        margin-bottom: 40px;
    }
    .footer-content > h2 {
        display: inline-block;
    }
    .footer-content > p,
    .footer-content > ul,
    .footer-content > ul > li {
        line-height: 64px;
        display: inline-block;
        padding-left:3px !important;
    }
    ul#menu {
        margin: 0;
        padding: 0;
        text-align: center;
    }

    ul#menu li {
        margin: 0;
        padding: 0;
    }
}

/* Small devices (tablets, 768px and up) */

@media screen and (min-width:768px) and (max-width:991px)
{    
    .navbar-brand>img {
        height:.825em;
        width:3.975em;
  }
}

/* Medium devices (desktops, 992px and up) */

@media screen and (min-width:992px) {    
    a.navbar-brand>img {
        height:1.7em;
        width:5.7em;
        padding-top:.3em;
  }
}

/* Large devices (large desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {}


