﻿div#anchor-container {
    position: fixed;
    bottom: 0;
	left:0;
    width: 100vw;   
    transition: ease-out 0.5s;
    z-index: 100;    
}

div#footer-anchor::before {
    position: absolute;
    top: -30px;
    right: -86px;
}

div#footer-anchor {
    background: rgba(25,25,25,0.8);
    background: -moz-linear-gradient(top, rgba(25,25,25,0.8) 0%, rgba(25,25,25,1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(25,25,25,0.8)), color-stop(100%, rgba(25,25,25,1)));
    background: -webkit-linear-gradient(top, rgba(25,25,25,0.8) 0%, rgba(25,25,25,1) 100%);
    background: -o-linear-gradient(top, rgba(25,25,25,0.8) 0%, rgba(25,25,25,1) 100%);
    background: -ms-linear-gradient(top, rgba(25,25,25,0.8) 0%, rgba(25,25,25,1) 100%);
    background: linear-gradient(to bottom, rgba(25,25,25,0.8) 0%, rgba(25,25,25,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#191919', endColorstr='#191919', GradientType=0 );
    display: flex;
    width: 100vw;
    position: fixed;
    bottom: -5px;
    transition: ease-out 0.5s;
    z-index: 100;
}

@media (min-width: 480px) {
    div#anchor-container {
        display: none;
    }
}