﻿:root {
    --colorFooter: #ededed;
    --colorBlanco: #fff;
    --colorRojoCaja: #ff0901;
    --colorNegro: #000;
    --colorAmarilloCaja: #ffc200;
    --colorVinculo: #007bff;
}


body {
    padding: 0;
    margin: 0;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

header {
    height: 90px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

main {
    min-height: calc(100vh - 90px - 45.8px);
    margin-top: 90px;
}


footer {
    color: white;
    background-color: #FF0000;
    padding: 10px;
    width: 100%;
}


/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}




@media (max-width: 600px){
    .container {
        width: auto !important;
    }

    .row{
        margin-left: 0px;
        margin-right: 0px;
    }
}