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


/* Custom page CSS
-------------------------------------------------- */
/* Not required for template or sticky footer method. */

body > .container {
    padding-top: 60px;
}

body > .container-fluid {
    padding-top: 60px;
}

.footer > .container {
    padding-right: 5px;
    padding-left: 5px;
}

code {
    font-size: 80%;
}

#flash-message {
    position: absolute;
    top: 75px;
    left: 30%;
    font-size: 1.2em;
    width: 40%;
    text-align: center;
    z-index: 10;
    -webkit-animation: flash-message 5s forwards;
    animation: flash-message 5s forwards;
}

@-webkit-keyframes flash-message {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.75;
    }

    100% {
        opacity: 0;
        display: none;
    }
}

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

    50% {
        opacity: 0.75;
    }

    100% {
        opacity: 0;
        display: none;
    }
}

.message-button {
    margin-right: 16px;
    position: relative;
}
.message-button::after {
    content: '';
    position: absolute;
    display: inline-block;
    background: #636b6f;
    width: 1px;
    height: 36px;
    right: -10px;
    top: -8px;
}

.message-button:last-of-type::after {
    display: none;
}

