.c-popup-modal-body .dak_modal--content {
  padding: 0;
  width: auto;
  max-width: 90vw; 
  background: transparent;
}

.c-modal-popup {
  position: relative; 
  width: 100%;
  max-width: 440px;   
  margin: auto;
}

.c-modal-wrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100000;
  background: rgba(0,0,0,.9);
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  padding: 1rem;
  display: flex;
	flex-direction: column;
  justify-content: center;
}

.c-modal-wrap.is-inactive {
  display: none;
}

.c-modal {
  margin: 0;
  max-height: calc(90vh - 40px);;   
  overflow-y: auto;  
  display: flex;
  flex-direction: column;

}

.c-modal-close {
  background: none;
  border: none;
  position: absolute;
  top: 8px;
  right: 12px;
  cursor: pointer;
  transition: opacity .3s ease-out;
}
.c-modal-close img{
  width: 40px;
  height: 40px;
  padding: 6px;
  border-radius: 50%;
  background: #fff;
}

.c-modal-close:hover {
  opacity: 0.8;
}