.ant-transparent-section-yes:not(.anant-sticky, .anant-smooth-sticky) {
  position: absolute !important;
}
.anant-sticky {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: all 0.9s;
}
.anant-smooth-sticky {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: all 0.9s;
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}
@media screen and (min-width: 783px) {
  .admin-bar .ant-sticky-section-yes.anant-sticky {
      top: 32px !important;
  }
  .admin-bar .ant-sticky-section-yes.anant-smooth-sticky {
      top: 32px !important;
  }
  .admin-bar .ant-transparent-section-yes {
      top: 32px !important;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}