@keyframes animFixedMenu {
  0% {
    transform: translateY(-100%)
  }

  to {
    transform: translateY(0)
  }
}

.fixed{
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    z-index: 4999;
    background-color: #fff4c5;
    animation: animFixedMenu .7s;
    box-shadow: 0 2px 2px #0000000d;
}
