.tlpl-modal-layout {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  display: none;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: rgba(3, 1, 23, 0.85);
}

.tlpl-modal-layout.tlpl-modal-show {
  display: flex;
}

.tlpl-modal-box {
  position: relative;
  max-width: 800px;
  width: 90%;
  padding: 1.75rem 2.625rem;
  border-radius: 1.25rem;
  background-color: #fff;
}

.tlpl-modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0;
  border: none;
  margin: 0;
  background-color: transparent;
  cursor: pointer;
}

.tlpl-modal-close-btn img {
  width: 1.875rem;
}

.tlpl-modal-foot .tlpl-modal-close-btn {
  position: unset;
}