html {
  font-size: 14px;
}

a{
    text-decoration:none;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

body {
  margin:0;
  padding:0;
  height:100vh;
  max-height:100vh;
  display:flex;
  flex-flow:column;
  overflow:hidden;
}


/* MENUS Y LAYOUT */
header {
    background-color: #2494f2;
    padding: 1%;
    display:flex;
    align-items:center;
    height:10vh;
}

header span{
    color:white;
    font-size:large;
    font-style:italic;
    margin-left:1%;
}

main{
    flex: 1 1 auto;
    display:flex;
}

nav {
    background-color: #272727;
    display: flex;
    flex-direction: column;
}

nav a {
    display: block;
    width: 100%;
    padding: 10px 20px;
    border-bottom: 1px solid grey;
    color: #b0b0b0!important;
    white-space: nowrap;
}

nav a:hover {
    color: white!important;
    background-color: #202020;
}

nav a span{
    margin-left: 10px;
}

nav button {
    background: none;
    border: none;
    color: #b0b0b0;
    height: 50px;
    background: none;
}

nav button:hover{
    background: #202020;
    color: white;
}


main > article{
    flex: 1 1 auto;
    padding: 2%;
    max-height:90vh;
    overflow-y:scroll;
    overflow-x:hidden;
}

.dropdown i{
    margin-right: 10px;
}

/* PÁGINAS DE DETALLE */
.tab-content{
    padding: 2%;
}

.form-group{
    margin: 20px 0px;
}

.form-group label{
    font-weight: bold;
}