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

/* LOGIN */

@media screen and (min-width: 860px) {
  #logo-reclamos {
 
  }
}
#login-container {
  margin: 50px auto;
  text-align: center;
  width: 30%;
  background: #eee;
  border: 2px solid #33a6dd;
  border-radius: 6px;
}

#login-header {
  background: #33a6dd;
  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: #33a6dd;
}

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

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

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

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

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

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

.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;
}

/* FOOTER */
.footer {
  color: #ddd;
  margin-top: 30px;
}

.footer-top {
  padding: 25px 10px;
  background: #222;
}

.footer-bottom {
  padding: 10px;
  background: #1a1a1a;
  color: #888;
}

.footer-row {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .footer-row {
    display: inherit;
  }
  .footer-row .col-md-6 {
    padding: 10px 0;
  }
}

/* TABLAS */

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

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

th,
td {
  padding: 10px;
}

#employeeList th,
#tipos-reclamos th,
#tabla_contactos th {
  background-color: #33a6dd;
  color: white;
}

.table > thead:first-child > tr:first-child > th {
  background-color: #33a6dd;
  color: white;
}
.td_center {
  text-align: center;
}
.add_btn {
  padding: 10px;
  background: green;
  text-decoration: none;
  color: white;
}

.edit_btn {
  padding: 5px;
  background: darkorange;
  text-decoration: none;
  color: white;
}

.del_btn {
  padding: 5px;
  background: red;
  text-decoration: none;
  color: white;
}

.close_btn {
  padding: 5px;
  background: darkblue;
  text-decoration: none;
  color: white;
}

.detail_btn {
  padding: 5px;
  background: skyblue;
  text-decoration: none;
  color: black;
}

/* FORMULARIOS */
#formulario {
  width: 100%;
  text-align: center;
}

#formulario label {
  display: inline-block;
  width: 180px;
  text-align: left;
}

#formulario input,
#formulario select,
#formulario textarea {
  width: 300px;
}

#formulario button,
#login_btn,
#filter_btn {
  background: black;
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
}
#filter_btn {
  padding: 7px;
}

.form-control {
  text-transform: uppercase;
}

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

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

/* DETALLES */
.botonera_detalle {
  margin-top: 20px;
  text-align: center;
}

.botonera_detalle a {
  background: black;
  color: white;
  text-decoration: none;
  padding: 10px;
}

/* FILTROS */
.filter_field {
  display: inline-block;
  padding-right: 10px;
  padding-bottom: 5px;
}

.filter_field label {
  padding-right: 4px;
}

#filtro_area,
#filtro_tipo {
  width: 150px;
}

#addEmployee {
  font-size: 14px;
}

.detail {
  border: 1px solid #aaa;
}

#filtro_desde,
#filtro_hasta {
  width: 150px;
}

.filter-control {
  height: 26px;
  padding: 4px 6px;
  font-size: 14px;
  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, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s,
    -webkit-box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.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%;
  }
}
