.ck-popup-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.6);
  display:none;
  align-items:center;
  justify-content:center;
  padding:20px;
  z-index:9999;
}

.ck-popup-overlay.active{
  display:flex;
}

.ck-popup-box{
  background:#fff;
  width:100%;
  max-width:550px;
  max-height:80vh;
  overflow-y:auto;
  padding:25px;
  position:relative;
}

.ck-popup-close{
  position:absolute;
  right:15px;
  top:10px;
  font-size:28px;
  border:none;
  background:none;
  cursor:pointer;
}

.ck-popup-title{
    text-align: center;
  color:#6A3D9A;
  	font-family: "Cherry Bomb One", cursive;
  margin-bottom:10px;
}

.ck-popup-content{
  white-space:pre-line;
  color:#475569;
  line-height:1.6;
}