html, body {
    font-family: 'Source Sans Pro', sans-serif;
    height: 100%;
    margin: 0;
}

.top-menu-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: space-between;
    position: fixed;
    width: 100%;
    background: #ffd900;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12), 0 3px 1px -2px rgba(0, 0, 0, .2);
    min-height: 64px;
    z-index: 2;

}
.top-menu-container:before {
     width: 100%;
     height: 0;
     display: block;
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     background: #ffd900;
}

.bottom-menu-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: space-between;
    position: fixed;
    background: #2a3740;
    bottom: 0;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12), 0 3px 1px -2px rgba(0, 0, 0, .2);
    height: 50px;
    z-index: 2;
    width: 100%;
    left: 0;
}

.brand-logo {
    background-image: url('./logo.png');
    background-repeat: no-repeat;
    background-size: contain;
    width: 160px;
    height: 60px;
    margin: 0 20px;
}

.content-container {
    padding: 64px 15rem;
    color: #535353;
    margin-bottom: 65px;
}

ul:not(.browser-default) {
  padding-left: 0;
  list-style-type: disc !important;
}

app-terms-and-conditions-intro.divider {
	height: 0px !important;
}
