@charset "utf-8";

/************************************************************************
*                                                                       *
*                    Sticky Footer for Bootstrap CSS                    *
*                   Copyright (C) 2017, John Zaitseff                   *
*                                                                       *
*************************************************************************

  Author:  John Zaitseff <J.Zaitseff@zap.org.au>
  Version: 1.1
  Date:    11th November, 2017

  This stylesheet contains custom styles to generate a sticky footer for
  Bootstrap 4.

  Copying and distribution of this file, with or without modification,
  are permitted in any medium without royalty provided the copyright
  notice and this notice are preserved.  This file is offered as-is,
  without any warranty.
*/


html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 4.4rem;
    padding-bottom: 1rem;
}

.sticky-footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 4.4rem;
}

@media (min-width: 576px) {
    body {
	margin-bottom: 3.25rem;
	padding-bottom: 1rem;
    }

    .sticky-footer {
	height: 3.25rem;
    }
}
