body {
  font-family: Lato, Arial, sans-serif;
}

h3 {
  margin-top: 10px !important;
}

/* LOGIN */

@media screen and (min-width:860px) {
  #logo-reclamos {
    height: 275px;
  }
  #footer-reclamos{
    height: 100px;
  }
}

.login-banner{
  background: #ba251d;
  color: white;
  text-align: center;
  padding: 5px;
}

#login-container{
  margin: 0 auto;
  text-align: center;
  width: 30%;
  margin-top: 45px;
  margin-bottom: 45px;
  background: #eee;
  border: 2px solid #ba251d;
  border-radius: 6px
}

#login-header{
  background: #ba251d;
  color: white;
  padding: 5px
}
#login-content{
  padding: 10px
}

.login-field{
  text-align: left;
}

.login-field input{
  width: 100%;
  height: 25px;
  border: 1px solid #aaa;
  border-radius: 6px;
  font-size: 14px;
  margin-top: 5px
}

#login_btn:hover{
  background: #ba251d
}

@media screen and (max-width:768px) {
  #login-container {
    width: 90%
  }
}

/* MENU */
.menu-reclamos {
  overflow: hidden;
  background-color: #000000;
}

.menu-reclamos a {
  float: left;
  font-size: 15px;
  color: white;
  text-align: center;
  padding: 12px 14px;
  text-decoration: none;
}

.dropdown-reclamos {
  float: left;
  overflow: hidden;
}

.dropdown-reclamos .dropbtn-reclamos {
  font-size: 15px;  
  border: none;
  outline: none;
  color: white;
  padding: 12px 14px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.menu-reclamos a:hover, .dropdown-reclamos:hover .dropbtn-reclamos {
  background-color: #831e1e;
}

.dropdown-content-reclamos {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content-reclamos a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content-reclamos a:hover {
  background-color: #ddd;
}

.dropdown-reclamos:hover .dropdown-content-reclamos {
  display: block;
}

.menu-reclamos i, .menu-reclamos img{
  padding-right: 4px;
}

/* TABLAS */

.container{
  width: 100%;
  padding-left: 5px;
  padding-right: 5px
}

#combustibles_reg, #tipos-reclamos {
  margin-top: 10px;
  font-size: 13px
}

th, td {
  padding: 10px;
}

#combustibles_reg th, #tipos-reclamos th {
  background-color: #ba251d;
  color: white;
}

.table>thead:first-child>tr:first-child>th{
  background-color: #ba251d;
  color: white;
}

.table>tbody>tr>td, .table>tbody>tr>th, .table>thead>tr>td, .table>thead>tr>th {
  padding: 4px;
  vertical-align: middle;
}

.td_center{
  text-align: center;
}

.td_center button, .td_center a{
  margin: 0 2px
}

/* FORMULARIOS */
#login_btn{
  background: black;
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.form-control {
  text-transform: uppercase;
  font-size: 13px;
}

.password-form{
  width: 50%;
  margin: 0 auto;
  margin-top: 40px
}

@media (max-width: 860px){
  .password-form {
    width: 100% !important;
  }
}

/* FILTROS */
#filter_container{
    padding-top: 5px;
    margin-top: 5px;
    background: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.filter_field{
  display: inline-block;
  width: 220px;
  padding-bottom: 5px
}

.filter_field label{
  padding-right: 4px;
  width: 60px;
  text-align: right;
}

.filter_field select, .filter_field input{
  width: 150px
}

#add, #excel{
  font-size: 14px
}

.detail{
  border: 1px solid #aaa
}

#filtro_desde, #filtro_hasta{
  width: 150px
}

.filter-control {
  height: 26px;
  padding: 4px 6px;
  font-size: 13px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}

/* ESTADISTICAS */
#reclamos_area_wrapper .table>thead:first-child>tr:first-child>th{
  background-color: #40806b;
}

#reclamos_tipo_wrapper .table>thead:first-child>tr:first-child>th{
  background-color: #146b7a;
}

#reclamos_zona_wrapper .table>thead:first-child>tr:first-child>th{
  background-color: #234368;
}

#reclamos_origen_wrapper .table>thead:first-child>tr:first-child>th{
  background-color: #3b366e;
}

.estadisticas{
  width: 49%;
  display: inline-block;
  margin: 2px;
  padding: 4px;
  background: rgb(242, 243, 228);
  border: 1px solid gray;
  border-radius: 5px;
}

.estadisticas .table{
  background: white;
}

.estadisticas h4{
  font-weight: 600
}

.estadisticas .dataTables_info{
  display: none
}

@media (max-width: 860px){
  .estadisticas {
    width: 100% !important;
  }
}

/* SOBRESCRIBIR CSS BOOTSTRAP */
.select2-container {
  width: 100% !important
}

.modal-header, .modal-body, .modal-footer{
  padding: 8px
}

@media (min-width: 768px){
  .modal-dialog {
    width: 768px;
  }

  .form-inline .form-group {
    width: 49.7%;
    padding: 3px;
  }

  .form-inline .form-control {
    width: 100%;
  }
}