* {
  font-family: Helvetica, sans-serif;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  min-width: 100%;
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

h1 {
  color: #17365d;
  margin: 10px auto;
}

header, footer {
  width: 100%;
  margin: auto;
  text-align: center;
}

footer {
  padding: 2em 0;
}

ul {
  list-style: none;
}

a {
  cursor: pointer;
  text-decoration: none;
}

.btn {
  font-size: 1em;
  padding: 0.3em 1em;
  border-radius: 5px;
  text-decoration: none;
}

.primary {
  background-color: #8a9fb5;
  color: #fff;
  border: 1px solid #7f94aa;
}

.primary:hover {
  background-color: #17365d;
  color: #fff;
  font-weight: bold;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  box-shadow: 1px 1px 4px 1px #616161;
}

.secondary {
  background-color: #17365d;
  color: white;
  border: 1px solid #17365d;
}

.secondary:hover {
  background-color: #112947;
  color: white;
  font-weight: bold;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  box-shadow: 1px 1px 4px 1px #616161;
}

.divTab {
  border-bottom: solid 1px #17365d;
  margin: 50px 0;
}

#myTabContent{
  padding: 20px;
}

.stock thead tr th {
  background-color: #17365d;
  color: #fff;
}

.container-fluid {
  width: 90% !important;
}

.form-proveedores, .form-cedis, .form-deptos, .form-ttsa, .form-walmart {
  padding: 10px;
  margin: 20px 0;
  border: solid 1px #bbb;
  border-radius: 4px;
}