.kw-overlay {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  background: rgba(0, 0, 0, 0.65);
  z-index: 999999;
  padding: 16px;
}

.kw-overlay.is-open {
  display: grid;
}

.kw-modal {
  position: relative;
  /* width: min(960px, 95vw); */
  max-height: 90vh;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.kw-title {
  margin: 14px 16px 0;
  font-size: 18px;
  text-align: center;
}

.kw-video {
  display: block;
  max-width: 95%;
  max-height: 75vh;
  width: auto;
  height: auto;
  margin: 0;
}

.kw-close {
    position: absolute;
    top: -10px;
    right: 0;
    width: 40px;
    height: 40px;
    border: 0;
    background: #dfdf6b;
    border-radius: 999px;
    cursor: pointer;
    outline: none;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kw-close svg {
    width: 18px;
    height: 18px;
    stroke: #000;
    stroke-width: 2.5;
    stroke-linecap: round;
    pointer-events: none;
}


.kw-actions {
  padding: 0 16px 16px;
}

.kw-btn {
  border: 0;
  padding: 10px 14px;
  border-radius: 0;
  cursor: pointer;
}
