.taas-embed,
.taas-embed * { box-sizing: border-box; }

.taas-embed__window {
  width: 100%;
  height: var(--taas-height, 820px);
  overflow: hidden;
  border: 1px solid #e7e5e8;
  border-radius: var(--taas-radius, 24px);
  background: #fff;
  box-shadow: 0 24px 70px rgba(28, 16, 34, .14);
}

.taas-embed__bar {
  height: 38px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 13px;
  color: #7d7881;
  background: #f5f4f6;
  border-bottom: 1px solid #e7e5e8;
  font: 600 11px/1 Arial, sans-serif;
  letter-spacing: .03em;
}

.taas-embed__bar i { width: 8px; height: 8px; border-radius: 50%; background: #d4d0d7; }
.taas-embed__bar i:first-child { background: #f40087; }
.taas-embed__bar span { margin-left: 6px; }
.taas-embed iframe { width: 100%; height: 100%; display: block; border: 0; background: #fff; }
.taas-embed__window iframe { height: calc(100% - 38px); }

.taas-embed__launch {
  min-height: 52px;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: #f40087;
  font: 800 15px/1 Arial, sans-serif;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(244, 0, 135, .22);
}

.taas-embed__modal { position: fixed; z-index: 999999; inset: 0; padding: 28px; }
.taas-embed__backdrop { position: absolute; inset: 0; background: rgba(15, 10, 18, .72); backdrop-filter: blur(8px); }
.taas-embed__dialog { position: relative; width: min(1500px, 100%); height: min(900px, calc(100vh - 56px)); margin: auto; overflow: hidden; border-radius: 20px; background: #fff; box-shadow: 0 35px 100px rgba(0,0,0,.34); }
.taas-embed__close { position: absolute; z-index: 2; right: 12px; top: 10px; width: 38px; height: 38px; border: 0; border-radius: 50%; color: #fff; background: #f40087; font: 300 27px/1 Arial, sans-serif; cursor: pointer; }
body.taas-demo-modal-open { overflow: hidden; }

@media (max-width: 767px) {
  .taas-embed__window { height: min(var(--taas-height, 820px), 720px); border-radius: 15px; }
  .taas-embed__modal { padding: 0; }
  .taas-embed__dialog { width: 100%; height: 100vh; border-radius: 0; }
}

