.footer {
position: fixed;
bottom: 0px;
font-size: 20px;
width: 100%;
filter: drop-shadow(2px 4px 6px blue);
height: 30px;
transition: height .3s linear;
contain: content;
}
.footer.open {
height: 40%;
}
filter: drop-shadow(2px 4px 6px blue);
заменить на box-shadow: 2px 4px 6px blue;
. И можете добавить will-change: height;
.