/* Override css */

body {
    font-family: 'Roboto', sans-serif;
}

.primary-bg-color {
    background-color: #eee;
}

.master-breadcrumb {
    background-color: #e9ecef;
}

.master-breadcrumb, .breadcrumb {
    background-color: #aaa;
    padding: 12px;
}

.breadcrumb-item.active {
    color: white;
}

footer.footer {
    margin: 0;
    padding: 20px 0 50px;
    background-color: #404040;
    color: #eee;
    font-size: 1rem;
}

.grecaptcha-badge {
    z-index: 999;
}

/*force footer on bottom on pages with little content*/

html, body {
  height: 100%;
}
body {
  display: flex;
  flex-direction: column;
}
#main-body {
  flex: 1 0 auto;
}
.footer {
  flex-shrink: 0;
}