.cdtc-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.cdtc-modal-content {
  background: #fff;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 20px;
  width: 90%;
  max-width: 400px;
  height: 50vh;
  border-radius: 8px;
  position: relative;
}

.cdtc-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}

.cdtc-modal-content-link {
  display: block;
  width: 100%;
  max-width: inherit;
  text-decoration: none;
  color: inherit;
}

.cdtc-modal-content-link .cdtc-modal-content {
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.cdtc-modal-btn {
  margin-top: 15px;
  padding: 10px 18px;
  background: #ffffff;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  align-self: center;
  border-radius: 6px;
  transition: 0.25s;
}

.cdtc-modal-btn:hover {
  opacity: 0.8;
}
