.blogfoel-transparent-section-yes:not(.blognews-sticky, .blognews-smooth-sticky) {
  position: absolute !important;
}
.blognews-sticky {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: all 0.9s;
}
.blognews-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 .blogfoel-sticky-section-yes.blognews-sticky {
      top: 32px !important;
  }
  .admin-bar .blogfoel-sticky-section-yes.blognews-smooth-sticky {
      top: 32px !important;
  }
  .admin-bar .blogfoel-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);
  }
} */