html
{
    position: relative;
    min-height: 100%;
    -webkit-touch-callout: none;
    -webkit-user-select: none; /* Webkit */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE 10  */
    -o-user-select: none;
    user-select: none;
}

body
{
    margin-bottom: 50px;
}

.navbar
{
    margin-bottom: 0px;
}

.navbar-brand
{
    padding-top: 9px;
}

.navbar-logo 
{
     height: 60px;
     width: auto;
     margin: 0 auto;
     padding-right: 5px;
}

.footer
{
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50px;
    color: #edefef;
    background-color: #153842;
    padding-top: 14px;
    text-align: center;
}

/* Added by dan 5.12.16 -- For login and set-password pages */
@-webkit-keyframes fadeIn 
{
    from { opacity: 0; }
      to { opacity: 1; }
}
@keyframes fadeIn 
{
    from { opacity: 0; }
      to { opacity: 1; }
}
.animate-to-visible 
{
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s;
}