/* mod_stickytab core */
.stickytab{position:fixed;z-index:2147483000;pointer-events:none}
.stickytab__link{pointer-events:auto;display:inline-flex;align-items:center;justify-content:center;gap:10px;text-decoration:none;border:0;cursor:pointer;user-select:none;-webkit-tap-highlight-color:transparent;touch-action:manipulation}
.stickytab__link:focus-visible{outline:2px solid currentColor;outline-offset:4px}
.stickytab__text{line-height:1;white-space:nowrap}

/* Global modal */
.stickytab-modal{position:fixed;inset:0;display:none;align-items:center;justify-content:center;padding:clamp(10px,3vw,24px);background:rgba(0,0,0,.55);z-index:2147483647}
.stickytab-modal.is-open{display:flex}
.stickytab-modal__dialog{position:relative;width:min(92vw,860px);height:min(88vh,720px);border-radius:16px;overflow:hidden;box-shadow:0 18px 60px rgba(0,0,0,.35);background:#fff;display:flex;flex-direction:column}
.stickytab-modal__header{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:12px 14px;border-bottom:1px solid rgba(0,0,0,.08);background:rgba(255,255,255,.96);backdrop-filter:saturate(120%) blur(6px)}
.stickytab-modal__title{font-size:16px;font-weight:600;line-height:1.2;margin:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.stickytab-modal__frameWrap{flex:1 1 auto;min-height:0}
.stickytab-modal__frame{width:100%;height:100%;border:0;background:#fff}
.stickytab-modal__close{width:40px;height:40px;border:0;border-radius:999px;cursor:pointer;font-size:26px;line-height:1;display:grid;place-items:center;background:rgba(0,0,0,.55);color:#fff;flex:0 0 auto}

@media (max-width:768px){
  .stickytab-modal__dialog{width:min(96vw,960px);height:min(92vh,900px);border-radius:14px}
  .stickytab-modal__title{font-size:15px}
}

