.kndev-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
}
.kndev-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}
.kndev-popup__card {
  position: relative;
  width: min(560px, calc(100vw - 32px));
  background: #fff;
  border-radius: 16px;
  padding: 18px 18px 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  z-index: 1;
}
.kndev-popup__close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: 0;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.kndev-popup__title {
  font-weight: 700;
  margin: 0 34px 10px 0;
}
.kndev-popup__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  background: #097678;
  color: #fff;
}
