html.w2-live-modal-open,
body.w2-live-modal-open {
  overflow: hidden !important;
}

.w2-live-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(0, 0, 0, 0.64);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.w2-live-modal-shell {
  width: min(1160px, calc(100vw - 44px));
  height: min(820px, calc(100vh - 44px));
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 30px 90px rgba(0,0,0,.34);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.w2-live-modal-top {
  height: 58px;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px 0 24px;
  border-bottom: 1px solid rgba(0,0,0,.08);
  background: #fff;
}

.w2-live-modal-title {
  font: 800 18px/1.1 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #111;
}

.w2-live-modal-close {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: #f0f0f0;
  color: #111;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.w2-live-modal-close:hover {
  background: #dedede;
}

.w2-live-modal-frame {
  flex: 1;
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
}

[data-w2-live-cta] {
  cursor: pointer !important;
}

@media (max-width: 760px) {
  .w2-live-modal-overlay {
    padding: 0;
    align-items: stretch;
  }

  .w2-live-modal-shell {
    width: 100vw;
    height: 100vh;
    max-width: none;
    max-height: none;
    border-radius: 0;
  }

  .w2-live-modal-top {
    height: 54px;
    min-height: 54px;
    padding: 0 14px 0 18px;
  }

  .w2-live-modal-title {
    font-size: 16px;
  }

  .w2-live-modal-close {
    width: 40px;
    height: 40px;
  }
}
