/* =========================================================
   COOKIE OVERLAY START
   ========================================================= */

.PC_cookie-overlay {
  position: fixed;
  inset: 0;

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 20px;

  background: transparent;

  z-index: 99999;

  pointer-events: none;
}

/* =========================================================
   COOKIE MODAL
   ========================================================= */

.PC_cookie-modal {
  width: 100%;

  max-width: 740px;

  background: #ffffff;

  border-radius: 24px;

  padding: 62px;

  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.25);

  pointer-events: auto;

  animation: PC_cookieFadeIn 0.25s ease forwards;
}

@keyframes PC_cookieFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.PC_cookie-modal h2 {
  margin: 0 0 16px;

  color: #111827;

  font-size: 28px;

  font-weight: 800;
}

.PC_cookie-message {
  margin: 0;

  color: #667085;

  line-height: 1.7;

  font-size: 15px;
}

/* =========================================================
   COOKIE BUTTONS
   ========================================================= */

.PC_cookie-actions {
  display: flex;

  flex-wrap: wrap;

  gap: 12px;

  margin-top: 28px;
}

.PC_cookie-actions button {
  border: 0;

  cursor: pointer;

  border-radius: 14px;

  padding: 13px 20px;

  font-size: 14px;

  font-weight: 800;

  transition: 0.2s ease;
}

#PC_acceptAll,
#PC_savePreferences {
  background: #2563eb;

  color: #ffffff;
}

#PC_rejectAll {
  background: #f3f4f6;

  color: #111827;
}

#PC_manageCookies {
  background: #111827;

  color: #ffffff;
}

/* =========================================================
   COOKIE POLICY LINKS
   ========================================================= */

.PC_cookie-links {
  display: flex;

  flex-wrap: wrap;

  gap: 16px;

  margin-top: 24px;
}

.PC_cookie-links a {
  color: #2563eb;

  text-decoration: none;

  font-size: 14px;

  font-weight: 700;
}

/* =========================================================
   COOKIE PREFERENCES
   ========================================================= */

.PC_cookie-options {
  margin-top: 24px;
}

.PC_cookie-option {
  display: flex;

  justify-content: space-between;

  gap: 20px;

  padding: 16px 0;

  border-bottom: 1px solid #e5e7eb;
}

.PC_cookie-option strong {
  display: block;

  color: #111827;

  margin-bottom: 5px;
}

.PC_cookie-option small {
  display: block;

  color: #667085;

  font-size: 13px;

  line-height: 1.6;
}

.PC_cookie-option input {
  width: 20px;

  height: 20px;

  margin-top: 4px;
}

/* =========================================================
   COOKIE MOBILE
   ========================================================= */

@media (max-width: 640px) {

  .PC_cookie-modal {
    padding: 24px;
  }

  .PC_cookie-modal h2 {
    font-size: 24px;
  }

  .PC_cookie-actions {
    flex-direction: column;
  }

  .PC_cookie-actions button {
    width: 100%;
  }
}

/* =========================================================
   COOKIE OVERLAY END
   ========================================================= */