/* Затемнённый фон */
.cp-overlay {
  position: fixed;
  inset: 0;                        /* top:0; right:0; bottom:0; left:0 */
  background: rgba(0,0,0,.5);
  z-index: 2147483647;
  display: none;
  align-items: center;             /* центр по вертикали */
  justify-content: center;         /* центр по горизонтали */
}

/* Когда показываем */
.cp-overlay.show {
  display: flex;
}


/* Модальное окно */
.cp-modal {
  background: #fff;
  color: #000;
  padding: 24px 28px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,.35);
  max-width: 420px;
  width: min(92vw, 420px);
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  z-index:99999;
}


.cp-modal {
  top: auto !important;
  bottom: auto !important;
  left: auto !important;
  right: auto !important;
  transform: none !important;
  margin: 0 !important;
}


.cp-text a {
  color: #000;
  text-decoration: underline;
}

.cp-btn {
  margin-top: 15px;
  padding: 10px 20px;
  font-size: 14px;
}


.cookie-close-btn {
  display: none !important;
}

