.btn-primary{
    color: #fff;
    background-color: #ce7147;
    border-color: #ce7147;
}
.btn-raised{
    box-shadow: 0 4px 3px -2px rgba(0,0,0,.15),0 2px 2px 0 rgba(0,0,0,.04),0 1px 5px 0 rgba(0,0,0,.02)!important;
}
.btn-primary:hover {
    color: #fff;
    background-color: #c76235;
    border-color: #c76235;
}
.btn-raised:hover {
    box-shadow: 0 2px 4px -1px rgba(0,0,0,.15),0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12)!important;
}
.mtb-1 {
    margin: 5px 0;
}

.pa-1 {
    padding: 5px;
}

.dashboard_graph .count{
    font-weight: bold;
}

.dc-chart path.area {
    fill-opacity: .3;
    stroke: none;
}
.dc-chart rect.bar {
    fill-opacity: .8;
    stroke: none;
}


.well{
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    background-color: #fff;
    border-radius: 0;
    -webkit-box-shadow: inset rgba(255, 255, 255, 0.16) 0 1px 0;
    box-shadow: rgba(0, 0, 0, 0.25) 0 1px 0, inset rgba(255, 255, 255, 0.16) 0 1px 0;
}


.well .exhaustion-title {
    padding: 2rem!important;
}
.count_top, .chart-title, .x_title span.chart-title, .x_title > .count_top{
    font-weight: bold;
    color: #d15e14
}

.dashboard_graph > .count_top{
    color: #000;
    font-weight: inherit;
}

.thead-light {
    color: #fff;
    background: #d15e14;
    text-align: center
}
.dc-table-head{
    text-align: center;
}

.dc-chart select{
    font-size: inherit
}

footer {
    position: relative;
    z-index: 1000;
}
.nav-md .container.body .col-md-3.left_col {
    position: fixed !important;
}
.lame-card {
    min-height: 325px;
    padding-top: 15%;
}

.lame-card-histo {
    min-height: 405px;
}

.footer-link a {
    color:#000;
}
.footer-link a:hover{
    color:#d15e14;
}

.brand-right {
    padding: 5px 15px;
  }
.brand-centered .navbar-brand {
    display: flex;
    align-items: center;
}
.navbar-toggle {
    z-index: 1;
}
.navbar-brand>img {
    height: 100%;
    width: auto;
}
.navbar-brand {
    padding:0px !important
}

.dropbtn {
    color: #d15e14;
    background: #fff;
    width: 16px;
    height: 16px;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
  }
  
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
  .dropdown-content a:hover {background-color: #f1f1f1;}
  
  .dropdown:hover .dropdown-content {
    display: block;
  }

  .loader {
    border: 8px solid #d15e14;
    border-radius: 50%;
    border-top: 8px solid #d15e14;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
  }
  
  /* Safari */
  @-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  #overlay {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 2;
    cursor: pointer;
  }
  
  #loading{
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 50px;
    color: white;
    transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
  }