.footer__nav-fixed {
    width: 100vw;
    height: 60px;
    padding: 12px 16px;
    background: #FFFFFF;
    border-top: 1px solid #E5E5E5;
    box-shadow: 0px -4px 12px 0px #33333314;
    z-index: 99;
    margin-bottom: -1px;
    max-width: 100vw;
}

.footer__nav-fixed .items-sticky {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}
.footer__nav-fixed .items-sticky .item-sticky {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    justify-content: flex-end;
}
.footer__nav-fixed .items-sticky .item-sticky .icon {
    height: 20px;
    width: 20px;
    filter: brightness(0) saturate(100%) invert(24%) sepia(82%) saturate(1111%) hue-rotate(178deg) brightness(84%) contrast(108%);
}
.footer__nav-fixed .items-sticky .item-sticky .icon.icon-home{
    content: url(images/home.png);
} 
.footer__nav-fixed .items-sticky .item-sticky .icon.icon-doc{
    content: url(images/doc.png);
} 
.footer__nav-fixed .items-sticky .item-sticky .icon.icon-media{
    content: url(images/media.png);
    padding-bottom: 1px;
} 
.footer__nav-fixed .items-sticky .item-sticky .icon.icon-menu{
    content: url(images/menu.png);
     transition: opacity 0.5s ease;
} 
.footer__nav-fixed .items-sticky .item-sticky.item-active .icon.icon-menu{
    content: url(images/x.png);
    transition: opacity 0.5s ease;
    zoom: 80%;
}
.footer__nav-fixed .items-sticky .item-sticky .footer-icon-sticky-mobile {
    max-width: 20px;
    max-height: 20px;
}

.footer__nav-fixed .items-sticky .item-sticky .text {
    font-family: Merriweather;
    font-size: 12px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    color: #494949;
}

@media only screen and (min-width: 769px) {
        .footer__nav-fixed{
    		display: none;
        }
}
