/* Sticky footer styles
-------------------------------------------------- */
html {
    position: relative;
    min-height: 100%;
}
  body {
    margin-bottom: 60px; /* Margin bottom by footer height */
}
  .footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50px; /* Set the fixed height of the footer here */
    line-height: 50px; /* Vertically center the text there */
    background-color: #f5f5f5;
  }

#flash-message {
    position : fixed;
    bottom : 0px;
    right : 20px;
    z-index : 10;
    animation: flash-message 10s forwards;
}

@keyframes flash-message {
  0%   {opacity: 1;}
  100% {opacity: 0; display:none;}
}