html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px; /* Margin bottom by footer height */
}

td {
  white-space: normal !important; 
  word-wrap: break-word;  
}

.navbar{
    background-color: grey !important;
}

.navbar-nav{
    padding-left: 10%;
}

.navbar-dark .navbar-nav .nav-link {
    color: whitesmoke;
}

.navbar-dark .navbar-nav .nav-link:hover{
    color: orange;
}

.page-body{
    padding-top: 80px;
    padding-bottom: 40px;
}

.container{
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    /*padding-bottom: 50px;*/
}

.footer{
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60px;
    line-height: 60px;
    background-color: #f5f5f5;
    font-style: italic;
}

.table {
    table-layout: fixed;
}

.table th {
    background-color: lightgray;
}

.th-nombre{
    width: 70%;
}

.th-cierre{
    width: 30%;
}

.table a {
    color: darkorange;
}

.botonera{
    padding-top: 20px;
    padding-bottom: 40px;
}

.botoneraSecundaria a{
    background-color: white;
}

/*Pantalla de Escritorio*/
@media (min-width: 768px) {
    .jumbotron {
        background-color: orange;
        padding: 10px;
    }

    .jumbotron img{
        width: 40%;
    }
    .botonera-mobile{
        display: none;
    }
    .botonera-desktop{
        display: block;
    }
    .footer-desktop{
        display: block;
    }
    .footer-mobile{
        display: none;
    }
}

/*Tablet y moviles*/
@media (max-width: 767px) {
    .jumbotron {
        background-color: orange;
    }

    .jumbotron img{
        width: auto;
    }
    .botonera-mobile{
        display: block;
    }
    .botonera-desktop{
        display: none;
    }
    .footer-desktop{
        display: none;
    }
    .footer-mobile{
        display: block;
    }
}

@-moz-document url-prefix() {
  fieldset { display: table-cell; }
}

