#espa-banner{
    position:fixed;
    left:12px;
    bottom:12px;
    z-index:9999;
    opacity:1;
    visibility:visible;
    transform:translateY(0) scale(1);
    transform-origin:left bottom;
    will-change:opacity, transform;
    transition:opacity .35s ease, visibility 0s linear 0s, transform .45s cubic-bezier(.22, 1, .36, 1);
}
#espa-banner img{ display:block; max-width:var(--espa-desktop-max-w,350px); height:auto; }
#espa-banner.hidden{ opacity:0; visibility:hidden; pointer-events:none; transform:translateY(12px) scale(.96); transition:opacity .28s ease, visibility 0s linear .28s, transform .36s cubic-bezier(.4, 0, .2, 1); }

@media (max-width: 767px){
  #espa-banner{
    left:0; right:0; bottom:0;
    display:flex; justify-content:center; align-items:center;
    width:100%;
    padding:8px 10px;
    background:rgba(0,0,0,.05);
    backdrop-filter:saturate(120%) blur(2px);
    transform-origin:center bottom;
  }
  #espa-banner img{
    max-height:var(--espa-mobile-h,64px);
    width:auto;
    max-width:95vw;
    height:auto;
  }
}
