/* BEG: Sticky Footer - https://css-tricks.com/couple-takes-sticky-footer/#there-is-flexbox */
html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

.content-container {
    flex: 1 0 auto;
}

.footer-container {
    flex-shrink: 0;
}
/*END: Sticky Footer */
