/* Footer */

/* #contentFooter{
    height: 30px;
    min-height: 30px;
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: var(--sticky-color);
} */

.footer {
   /* position: relative; */
    position: fixed;
    width: 100%;
    /* Set the fixed height of the footer here */
    height: 30px;
    min-height: 30px;
    /*line-height: 40px; /* Vertically center the text there */
    background-color: var(--sticky-color); /*#f5f5f5*/
    text-align: center;
    bottom: 0;
    z-index: 10000;
}

@media (max-width: 850px){
    #contentFooter { 
        display : none; 
        visibility : hidden;
        height: 30px;
        min-height: 30px;
        background-color: var(--sticky-color);
    }
}