* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 13px;
}

header {
  background: steelblue;
  color: #ffffff;
  height: 40px;
}

header div {
  padding: 10px;
  text-align: center;
}

.main_general {
  height: calc(100vh - 40px);
  width: 100%;
  overflow-y: auto;
}

main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 900px;
  margin: 20px auto;
}

main form {
  background: #f1f1f1;
  padding: 10px 20px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

main div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 10px;
}

main div input {
  outline: none;
  padding: 3px 10px;
  border: 1px solid #ccc;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

main div input:focus {
  border: 1px solid #000;
}

main div button {
  background: steelblue;
  color: #fff;
  padding: 5px;
  border-radius: 0px;
  border: none;
  cursor: pointer;
}

main section {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 20px;
}

.ruta {
  color: brown;
  font-weight: 600;
}

.enlace {
  color: blue;
}

table {
  width: 100%;
  margin: 0px auto;
  border-collapse: collapse;
  border-spacing: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

table tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

table td {
  border-bottom: 1px solid #ccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

table thead {
  border-bottom: 2px solid red;
}

table th, table td {
  padding: 3px 5px;
  text-align: justify;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

table th a.a_btn, table td a.a_btn {
  display: inline-block;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0px 7px;
  text-decoration: none;
  border-radius: 10px;
  color: #ffffff;
}

.eliminar {
  background: red;
}

.editar {
  background: darkgreen;
}

.div_textarea {
  height: 400px;
}

.div_textarea h4 {
  margin: 10px 0px;
  text-align: center;
}

.div_textarea textarea {
  width: 100%;
  height: 100%;
  resize: none;
  outline: orangered;
  padding: 10px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.div_textarea button {
  margin: 10px 0px;
  padding: 5px 20px;
}

.dominio {
  width: 200px;
  text-align: justify;
}

.celda {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: justify;
}

.boton {
  width: 70px;
}

.error {
  color: red;
}
/*# sourceMappingURL=estilos.css.map */