﻿/*!
 * Start Bootstrap - Simple Sidebar (https://startbootstrap.com/template-overviews/simple-sidebar)
 * Copyright 2013-2017 Start Bootstrap
 * Licensed under MIT (https://github.com/BlackrockDigital/startbootstrap-simple-sidebar/blob/master/LICENSE)
 */

body {
  overflow-x: hidden;
  background-color: #F3F4F0;
}

#wrapper {
  padding-left: 0;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#wrapper.toggled {
  padding-left: 250px;
}

#sidebar-wrapper {
  z-index: 1000;
  position: fixed;
  left: 250px;
  width: 0;
  height: 100%;
  margin-left: -250px;
  overflow-y: auto;
  background: #354151;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#wrapper.toggled #sidebar-wrapper {
  width: 200px;
}

#page-content-wrapper {
  width: 100%;
  position: absolute;
  padding: 15px;
}

#wrapper.toggled #page-content-wrapper {
  position: absolute;
  margin-right: -250px;
}


/* Sidebar Styles */

.sidebar-nav {
  position: relative;
  /*top: 0;*/
  width: 250px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar-nav li{
  padding-left: 20px;
  line-height: 25px;
}

.sidebar-nav li a {
  display: block;
  text-decoration: none;
  color: #ffffff;
}

.sidebar-nav li a:hover {
  /*text-decoration: none;*/
  /*color: #7BC4F1;*/
  color: #fe6c00;
}

.sidebar-nav li a:active, .sidebar-nav li a:focus {
  text-decoration: none;
}

.sidebar-nav li .active a{
  text-decoration: none;
  color: #fe6c00;
}

.sidebar-nav>.sidebar-brand {
  height: 65px;
  font-size: 18px;
  line-height: 60px;
  margin-left: -7px;
}

.sidebar-nav>.sidebar-brand a {
  color: #999999;
}

.sidebar-nav>.sidebar-brand a:hover {
  color: #fff;
  background: none;
}
.sidebar-nav>.sidebar-user h4 {
    color: #fff;
    font-size: small;
    text-decoration: underline;
}
.sidebar-nav>.sidebar-agency h4 {
    color: #7EBAE7;
    font-size: small;
}

#loginDiv{
    position: relative;
    top: 50%;
    transform: translateY(50%);
}

.selectableTable tbody tr:hover{
    cursor: pointer;
    background-color: #fe6c00;
    color: #fff;
}

#dataList tbody tr:hover{
    cursor: pointer;
    background-color: #ffb97c;
    color: #fff;
}

#buttonDataList tbody tr:hover{
    background-color: #ffb97c;
    color: #fff;
}

.tab-content {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    padding: 10px;
}

.form-group-sm label{
    font-size: smaller;
}

@media(min-width:768px) {
  #wrapper {
    padding-left: 0;
  }
  #wrapper.toggled {
    padding-left: 250px;
  }
  #sidebar-wrapper {
    width: 0;
  }
  #wrapper.toggled #sidebar-wrapper {
    width: 250px;
  }
  #page-content-wrapper {
    padding: 20px;
    position: relative;
  }
  #wrapper.toggled #page-content-wrapper {
    position: relative;
    margin-right: 0;
  }
}

.input-validation-error {
    border: 1px solid #ff0000;
    background-color: #ffeeee;
}


/* Absolute Center Spinner */
.loading {
  position: fixed;
  z-index: 999;
  height: 2em;
  width: 2em;
  overflow: show;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

/* Transparent Overlay */
.loading:before {
  content: '';
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.3);
}

/* :not(:required) hides these rules from IE9 and below */
.loading:not(:required) {
  /* hide "loading..." text */
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.loading:not(:required):after {
  content: '';
  display: block;
  font-size: 10px;
  width: 1em;
  height: 1em;
  margin-top: -0.5em;
  -webkit-animation: spinner 1500ms infinite linear;
  -moz-animation: spinner 1500ms infinite linear;
  -ms-animation: spinner 1500ms infinite linear;
  -o-animation: spinner 1500ms infinite linear;
  animation: spinner 1500ms infinite linear;
  border-radius: 0.5em;
  -webkit-box-shadow: rgba(197, 92, 20, 1) 1.5em 0 0 0, rgba(197, 92, 20, 1) 1.1em 1.1em 0 0, rgba(197, 92, 20, 1) 0 1.5em 0 0, rgba(197, 92, 20, 1)-1.1em 1.1em 0 0, rgba(0, 0, 0, 0.5) -1.5em 0 0 0, rgba(0, 0, 0, 0.5) -1.1em -1.1em 0 0, rgba(197, 92, 20, 1)0 -1.5em 0 0, rgba(197, 92, 20, 1)1.1em -1.1em 0 0;
  box-shadow: rgba(197, 92, 20, 1)1.5em 0 0 0, rgba(197, 92, 20, 1)1.1em 1.1em 0 0, rgba(197, 92, 20, 1)0 1.5em 0 0, rgba(197, 92, 20, 1)-1.1em 1.1em 0 0, rgba(197, 92, 20, 1)-1.5em 0 0 0, rgba(197, 92, 20, 1)-1.1em -1.1em 0 0, rgba(197, 92, 20, 1)0 -1.5em 0 0, rgba(197, 92, 20, 1) 1.1em -1.1em 0 0;
}

/* Animation */

@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.modal.modal-wide .modal-dialog {
  width: 90%;
  height: 90%;
}
.modal.modal-wide .modal-content {
  width: 100%;
  height: 100%;
}
.modal.modal-wide .modal-body {
  overflow-y: auto;
  height: 93%;
  min-height: 93%;
}

.btn-info{
    background-color: #fe6c00;
    border-color: #fe6c00;
}
.btn-info:hover{
    background-color: #C55C14;
    border-color: #C55C14;
}
.btn-info:active{
    background-color: #C55C14;
    border-color: #C55C14;
}

.footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  /* Set the fixed height of the footer here */
  height: 30px;
  text-align: right;
  color: #fe6c00;
  padding: 0 15px 0;
}

table.dataTable tbody tr:hover{
    background-color: #ffb97c;
    color: #fff;
    cursor: pointer;
}

.tablefilter{
    color: #fe6c00;
}

.tablefilter:hover{
    cursor: pointer;
}

.datePicker:read-only{
    cursor: pointer;
    background-color: #ffffff;
}

.tab-content{
    border: none;
}

.no-border {
    border: 0;
    box-shadow: none; /* You may want to include this as bootstrap applies these styles too */
}

tr.group,
tr.group:hover {
    background-color: #ddd !important;
}

.table-report{
    font-size: 0.8em;
}

.table-report>thead>tr>th,
.table-report>tbody>tr>td{
    padding: 3px;
}
/* hero widget for dashboards */

.hero-widget { text-align: center; padding-top: 20px; padding-bottom: 20px; background-color:#334252; }
.hero-widget .icon { display: block; font-size: 96px; line-height: 96px; margin-bottom: 10px; text-align: center; color: #7EBAE7; }
.hero-widget var { display: block; height: 64px; font-size: 64px; line-height: 64px; font-style: normal; color: #ffffff; }
.hero-widget label { font-size: 17px; color: #fe6c00 }
.hero-widget .options { margin-top: 10px; }