/* === RT GLOBAL POPUP === */

.rt-popup {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
}

.rt-popup.is-open {
  display: block;
}

.rt-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
}

.rt-popup-window {
  position: relative;
  max-width: 520px;
  margin: 10vh auto;
  background: #0e0e0e;
  border: 1px solid #333;
  box-shadow: 0 0 30px rgba(255,193,7,.25);
  border-radius: 12px;
  overflow: hidden;
}

.rt-popup-header {
  padding: 14px 18px;
  font-weight: bold;
  color: #ffc107;
  border-bottom: 1px solid #222;
}

.rt-popup-body {
  padding: 18px;
  color: #ddd;
}

.rt-popup-close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: none;
  border: none;
  color: #aaa;
  font-size: 18px;
  cursor: pointer;
}