/**
 * Klaro Custom Styles for alma nura
 * Overrides Klaro's default styling to match brand
 */

/* Klaro wrapper - must be fixed positioned at bottom */
.klaro {
  position: fixed !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 9999 !important;
  pointer-events: none !important; /* Allow clicking through wrapper */
}

/* Cookie notice and modal - enable pointer events */
.klaro .cookie-notice,
.klaro .cookie-modal {
  pointer-events: auto !important; /* Re-enable pointer events on the actual notice */
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
  background: #F5EDE3 !important;
  color: #031C2C !important;
  border-top: 1px solid rgba(200, 172, 118, 0.3) !important;
  box-shadow: 0 -4px 20px rgba(3, 28, 44, 0.15) !important;
  width: 100% !important;
  max-width: none !important;
  padding: 20px 24px !important;
  animation: slideInUp 0.5s ease-out !important;
  outline: none !important; /* Remove focus outline */
}

/* Remove focus outline from all Klaro elements */
.klaro *:focus {
  outline: none !important;
}

/* Restore accessible focus indicator on interactive elements only */
.klaro button:focus-visible,
.klaro a:focus-visible,
.klaro input:focus-visible {
  outline: 2px solid #C8AC76 !important;
  outline-offset: 2px !important;
}

@keyframes slideInUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Notice content layout */
.klaro .cookie-notice .cn-body {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 32px !important;
  max-width: 1400px !important;
  margin: 0 auto !important;
  flex-wrap: wrap !important;
}

/* Text content */
.klaro .cookie-notice .cn-body p {
  flex: 1 !important;
  min-width: 0 !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
  color: #031C2C !important;
  opacity: 0.85 !important;
  margin: 0 !important;
}

.klaro .cookie-notice .cn-body p strong {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 20px !important;
  font-weight: 600 !important;
  color: #031C2C !important;
  display: block !important;
  margin-bottom: 6px !important;
  line-height: 1.2 !important;
}

/* Fix for .cn-ok wrapper - should not be a button */
.klaro .cookie-notice .cn-ok {
  display: flex !important;
  align-items: center !important;
  gap: 24px !important;
  flex-shrink: 0 !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  cursor: default !important;
  box-shadow: none !important;
  transform: none !important;
}

/* Ensure wrapper doesn't get hover effects */
.klaro .cookie-notice .cn-ok:hover {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  transform: none !important;
}

/* Buttons container */
.klaro .cookie-notice .cn-buttons,
.klaro .cookie-modal .cm-footer .cm-buttons {
  display: flex !important;
  gap: 12px !important;
  flex-shrink: 0 !important;
  margin: 0 !important;
}

/* Individual banner buttons */
.klaro .cookie-notice .cn-buttons button {
  background: #C8AC76 !important;
  color: #031C2C !important;
  border: none !important;
  padding: 12px 28px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  white-space: nowrap !important;
  border-radius: 0 !important;
}

.klaro .cookie-notice .cn-buttons button:hover {
  background: #D9C59D !important;
  box-shadow: 0 10px 30px -10px rgba(200, 172, 118, 0.5) !important;
  transform: translateY(-1px) !important;
}

/* Primary button (Accept All) */
.klaro .cm-btn.cm-btn-success,
.klaro .cookie-notice button.cn-accept-all {
  background: #C8AC76 !important;
  color: #031C2C !important;
  border: none !important;
  padding: 12px 28px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  white-space: nowrap !important;
  border-radius: 0 !important;
}

.klaro .cm-btn.cm-btn-success:hover,
.klaro .cookie-notice button.cn-accept-all:hover {
  background: #D9C59D !important;
  box-shadow: 0 10px 30px -10px rgba(200, 172, 118, 0.5) !important;
  transform: translateY(-1px) !important;
}

/* Secondary buttons (Reject, Customize, Save) */
.klaro .cm-btn.cm-btn-info,
.klaro .cm-btn.cm-btn-decline,
.klaro .cookie-notice button.cn-decline,
.klaro .cookie-notice .cn-buttons button[type="button"]:not(.cn-accept-all) {
  background: transparent !important;
  color: #031C2C !important;
  border: 1px solid rgba(3, 28, 44, 0.2) !important;
  padding: 12px 28px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  white-space: nowrap !important;
  border-radius: 0 !important;
}

.klaro .cm-btn.cm-btn-info:hover,
.klaro .cm-btn.cm-btn-decline:hover,
.klaro .cookie-notice button.cn-decline:hover,
.klaro .cookie-notice .cn-buttons button[type="button"]:not(.cn-accept-all):hover {
  border-color: #C8AC76 !important;
  color: #C8AC76 !important;
  background: transparent !important;
}

/* Customize Preferences link styling */
.klaro .cookie-notice .cn-learn-more {
  background: transparent !important;
  color: #C8AC76 !important;
  border: none !important;
  padding: 0 !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  text-decoration: underline !important;
  text-decoration-color: rgba(200, 172, 118, 0.3) !important;
  text-underline-offset: 3px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  white-space: nowrap !important;
}

.klaro .cookie-notice .cn-learn-more:hover {
  color: #D9C59D !important;
  text-decoration-color: rgba(200, 172, 118, 0.6) !important;
  background: transparent !important;
  border: none !important;
}

/* Link style for "Learn More" in text */
.klaro .cookie-notice a,
.klaro .cookie-modal a.cm-link {
  color: #C8AC76 !important;
  text-decoration: underline !important;
  text-decoration-color: rgba(200, 172, 118, 0.3) !important;
  text-underline-offset: 3px !important;
  transition: all 0.3s !important;
}

.klaro .cookie-notice a:hover,
.klaro .cookie-modal a.cm-link:hover {
  color: #D9C59D !important;
  text-decoration-color: rgba(200, 172, 118, 0.6) !important;
}

/* ========================================
   MODAL (Cookie Preferences Popup)
   ======================================== */

/* Modal wrapper - full screen overlay container */
.klaro .cookie-modal {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 100000 !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  animation: none !important;
  transform: none !important;
  max-width: none !important;
  overflow: visible !important;
}

/* Modal overlay background */
.klaro .cookie-modal .cm-bg {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(3, 28, 44, 0.85) !important;
  backdrop-filter: blur(4px) !important;
  -webkit-backdrop-filter: blur(4px) !important;
  z-index: 1 !important;
}

/* The actual modal box */
.klaro .cookie-modal .cm-modal {
  position: relative !important;
  z-index: 2 !important;
  max-width: 680px !important;
  width: calc(100% - 40px) !important;
  max-height: 85vh !important;
  overflow-y: auto !important;
  background: #F5EDE3 !important;
  border: 1px solid rgba(200, 172, 118, 0.4) !important;
  border-radius: 0 !important;
  box-shadow: 0 25px 80px rgba(3, 28, 44, 0.4) !important;
  padding: 40px !important;
  animation: modalFadeIn 0.3s ease-out !important;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   MODAL HEADER
   ======================================== */

.klaro .cookie-modal .cm-header {
  margin-bottom: 28px !important;
  padding-bottom: 24px !important;
  border-bottom: 1px solid rgba(200, 172, 118, 0.25) !important;
  position: relative !important;
}

/* Close button */
.klaro .cookie-modal .cm-header button.hide {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  width: 36px !important;
  height: 36px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: transparent !important;
  border: 1px solid rgba(200, 172, 118, 0.3) !important;
  border-radius: 0 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  padding: 0 !important;
}

.klaro .cookie-modal .cm-header button.hide:hover {
  background: rgba(200, 172, 118, 0.1) !important;
  border-color: #C8AC76 !important;
}

.klaro .cookie-modal .cm-header button.hide svg {
  width: 12px !important;
  height: 12px !important;
}

.klaro .cookie-modal .cm-header button.hide svg line {
  stroke: #031C2C !important;
  stroke-width: 1.5 !important;
  transition: stroke 0.3s !important;
}

.klaro .cookie-modal .cm-header button.hide:hover svg line {
  stroke: #C8AC76 !important;
}

/* Modal title */
.klaro .cookie-modal .cm-header h1.title {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 28px !important;
  font-weight: 600 !important;
  color: #031C2C !important;
  margin: 0 0 16px 0 !important;
  padding-right: 50px !important; /* Make room for close button */
  letter-spacing: -0.02em !important;
  line-height: 1.2 !important;
}

/* Modal description */
.klaro .cookie-modal .cm-header p {
  font-size: 14px !important;
  line-height: 1.7 !important;
  color: #031C2C !important;
  opacity: 0.8 !important;
  margin: 0 !important;
  padding-right: 50px !important; /* Make room for close button */
}

/* Modal description links */
.klaro .cookie-modal .cm-header p a,
.klaro .cookie-modal .cm-header a {
  color: #C8AC76 !important;
  text-decoration: underline !important;
  text-underline-offset: 2px !important;
  opacity: 1 !important;
  transition: color 0.3s !important;
}

.klaro .cookie-modal .cm-header p a:hover,
.klaro .cookie-modal .cm-header a:hover {
  color: #D9C59D !important;
}

/* ========================================
   MODAL BODY - Purposes List
   ======================================== */

.klaro .cookie-modal .cm-body {
  margin: 0 !important;
  padding: 0 !important;
}

/* Main purposes list (Analytics, Marketing, etc.) */
.klaro .cookie-modal .cm-body ul.cm-purposes {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

/* Individual purpose item (Analytics, Marketing) */
.klaro .cookie-modal .cm-body ul.cm-purposes > li.cm-purpose {
  background: rgba(255, 255, 255, 0.5) !important;
  border: 1px solid rgba(200, 172, 118, 0.25) !important;
  padding: 20px !important;
  margin-bottom: 12px !important;
  transition: all 0.3s ease !important;
}

.klaro .cookie-modal .cm-body ul.cm-purposes > li.cm-purpose:last-child {
  margin-bottom: 0 !important;
}

.klaro .cookie-modal .cm-body ul.cm-purposes > li.cm-purpose:hover {
  border-color: rgba(200, 172, 118, 0.4) !important;
  background: rgba(255, 255, 255, 0.7) !important;
}

/* Purpose label (contains title + toggle) */
.klaro .cookie-modal .cm-purpose > label.cm-list-label {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
  cursor: pointer !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Purpose title (Analytics, Marketing) */
.klaro .cookie-modal .cm-purpose .cm-list-title {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #031C2C !important;
  flex: 1 !important;
}

/* Hide the description div if empty */
.klaro .cookie-modal .cm-purpose > div[id$="-description"]:empty {
  display: none !important;
}

/* Services container (the caret + nested list) */
.klaro .cookie-modal .cm-purpose .cm-services {
  margin-top: 12px !important;
}

/* The "↓ 1 service" caret/link */
.klaro .cookie-modal .cm-purpose .cm-caret {
  margin: 0 !important;
}

.klaro .cookie-modal .cm-purpose .cm-caret a {
  color: #C8AC76 !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: color 0.3s !important;
}

.klaro .cookie-modal .cm-purpose .cm-caret a:hover {
  color: #D9C59D !important;
}

.klaro .cookie-modal .cm-purpose .cm-caret a span {
  display: inline-block !important;
  transition: transform 0.3s ease !important;
  margin-right: 4px !important;
}

/* ========================================
   NESTED SERVICES LIST (Collapsed by default)
   ======================================== */

/* The nested services list - HIDDEN by default */
.klaro .cookie-modal .cm-purpose ul.cm-content {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  background: transparent !important;
  display: none !important; /* Hidden by default */
  overflow: hidden !important;
}

/* Show nested list when aria-expanded="true" on the toggle link */
.klaro .cookie-modal .cm-caret a[aria-expanded="true"] + ul.cm-content,
.klaro .cookie-modal .cm-services:has(a[aria-expanded="true"]) ul.cm-content {
  display: block !important;
  margin-top: 12px !important;
}

/* Individual service item (e.g., "Analytics Cookies") */
.klaro .cookie-modal .cm-purpose ul.cm-content li.cm-service {
  background: rgba(255, 255, 255, 0.85) !important;
  border: 1px solid rgba(200, 172, 118, 0.3) !important;
  padding: 20px !important;
  margin-bottom: 8px !important;
  transition: all 0.3s ease !important;
}

.klaro .cookie-modal .cm-purpose ul.cm-content li.cm-service:last-child {
  margin-bottom: 0 !important;
}

.klaro .cookie-modal .cm-purpose ul.cm-content li.cm-service:hover {
  background: rgba(255, 255, 255, 1) !important;
  border-color: rgba(200, 172, 118, 0.5) !important;
}

/* Service item inner wrapper */
.klaro .cookie-modal .cm-purpose ul.cm-content li.cm-service > div {
  background: transparent !important;
  padding: 0 !important;
}

/* Service label (contains title + toggle) */
.klaro .cookie-modal .cm-purpose ul.cm-content li.cm-service label.cm-list-label {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
  cursor: pointer !important;
  margin: 0 0 12px 0 !important;
  padding: 0 !important;
}

/* Service title */
.klaro .cookie-modal .cm-purpose ul.cm-content li.cm-service .cm-list-title {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #031C2C !important;
  flex: 1 !important;
}

/* Service description container */
.klaro .cookie-modal .cm-purpose ul.cm-content li.cm-service div[id$="-description"] {
  margin: 0 !important;
  padding: 0 !important;
}

/* Service description text */
.klaro .cookie-modal .cm-purpose ul.cm-content li.cm-service p.cm-list-description {
  font-size: 14px !important;
  line-height: 1.7 !important;
  color: #031C2C !important;
  opacity: 0.85 !important;
  margin: 0 0 12px 0 !important;
  padding: 0 !important;
}

/* Purpose label (e.g., "purpose: Analytics") */
.klaro .cookie-modal .cm-purpose ul.cm-content li.cm-service p.purposes {
  font-size: 11px !important;
  color: #C8AC76 !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  margin: 12px 0 0 0 !important;
  padding-top: 12px !important;
  border-top: 1px solid rgba(200, 172, 118, 0.2) !important;
}

/* ========================================
   TOGGLE SWITCHES
   ======================================== */

/* Visually hide the checkbox but keep it functional for accessibility and click handling */
.klaro .cookie-modal input[type="checkbox"].cm-list-input {
  position: absolute !important;
  opacity: 0 !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  border: 0 !important;
  /* Keep pointer-events so label clicks still work */
}

/* Toggle switch container - DEFAULT OFF STATE */
.klaro .cookie-modal .cm-switch {
  background: rgba(3, 28, 44, 0.15) !important;
  border-radius: 12px !important;
  width: 44px !important;
  height: 24px !important;
  transition: all 0.3s ease !important;
  flex-shrink: 0 !important;
  position: relative !important;
  display: inline-block !important;
  cursor: pointer !important;
}

/* Toggle OFF hover */
.klaro .cookie-modal .cm-switch:hover {
  background: rgba(3, 28, 44, 0.25) !important;
}

/* Toggle ON state - using sibling selector based on checkbox :checked state */
.klaro .cookie-modal .cm-purpose input[type="checkbox"]:checked + label .cm-switch,
.klaro .cookie-modal .cm-service input[type="checkbox"]:checked + label .cm-switch {
  background: #C8AC76 !important;
}

.klaro .cookie-modal .cm-purpose input[type="checkbox"]:checked + label .cm-switch:hover,
.klaro .cookie-modal .cm-service input[type="checkbox"]:checked + label .cm-switch:hover {
  background: #D9C59D !important;
}

/* Toggle slider/ball - DEFAULT LEFT POSITION (OFF) */
.klaro .cookie-modal .cm-switch .slider,
.klaro .cookie-modal .cm-switch .slider.round {
  background: white !important;
  border-radius: 50% !important;
  width: 18px !important;
  height: 18px !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2) !important;
  transition: all 0.25s ease !important;
  position: absolute !important;
  top: 3px !important;
  left: 3px !important; /* Default: OFF position (left) */
}

/* Toggle slider position when checkbox is CHECKED (ON) - using sibling selector */
.klaro .cookie-modal .cm-purpose input[type="checkbox"]:checked + label .cm-switch .slider,
.klaro .cookie-modal .cm-purpose input[type="checkbox"]:checked + label .cm-switch .slider.round,
.klaro .cookie-modal .cm-service input[type="checkbox"]:checked + label .cm-switch .slider,
.klaro .cookie-modal .cm-service input[type="checkbox"]:checked + label .cm-switch .slider.round {
  left: 23px !important; /* ON position (right): 44px - 18px - 3px = 23px */
}

/* Hide any ::before pseudo-element that might create duplicate balls */
.klaro .cookie-modal .cm-switch .slider::before,
.klaro .cookie-modal .cm-switch .slider.round::before {
  display: none !important;
  content: none !important;
}

/* ========================================
   MODAL FOOTER & BUTTONS
   ======================================== */

.klaro .cookie-modal .cm-footer {
  border-top: 1px solid rgba(200, 172, 118, 0.25) !important;
  padding-top: 28px !important;
  margin-top: 28px !important;
  display: flex !important;
  gap: 16px !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  align-items: center !important;
}

/* Base button styles */
.klaro .cookie-modal .cm-footer button {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
  padding: 12px 24px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  border-radius: 0 !important;
  white-space: nowrap !important;
}

/* Reject All button - uses .cn-decline class */
.klaro .cookie-modal .cm-footer button.cn-decline {
  background: transparent !important;
  color: #031C2C !important;
  border: 1px solid rgba(3, 28, 44, 0.3) !important;
}

.klaro .cookie-modal .cm-footer button.cn-decline:hover {
  border-color: #031C2C !important;
  background: rgba(3, 28, 44, 0.05) !important;
}

/* Accept Selected button - uses .cm-btn-accept but NOT .cm-btn-accept-all */
.klaro .cookie-modal .cm-footer button.cm-btn-accept:not(.cm-btn-accept-all) {
  background: transparent !important;
  color: #031C2C !important;
  border: 1px solid #C8AC76 !important;
}

.klaro .cookie-modal .cm-footer button.cm-btn-accept:not(.cm-btn-accept-all):hover {
  background: rgba(200, 172, 118, 0.1) !important;
  border-color: #D9C59D !important;
}

/* Accept All button - uses .cm-btn-accept-all class */
.klaro .cookie-modal .cm-footer button.cm-btn-accept-all {
  background: #C8AC76 !important;
  color: #031C2C !important;
  border: none !important;
}

.klaro .cookie-modal .cm-footer button.cm-btn-accept-all:hover {
  background: #D9C59D !important;
  box-shadow: 0 4px 12px rgba(200, 172, 118, 0.25) !important;
}

/* Hide "Powered by Klaro" */
.klaro .cm-powered-by,
.klaro .cookie-notice .cn-powered-by {
  display: none !important;
}

/* Hide contextual consent button (the "N" button on the left) */
.klaro .context-notice,
.klaro .cn-app-notice {
  display: none !important;
}

/* Hide or minimize the "changes" notification unless truly needed */
.klaro .cookie-notice .cn-changes {
  display: none !important;
}

/* Mobile responsive */
@media (max-width: 968px) {
  .klaro .cookie-notice .cn-body {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 20px !important;
  }

  .klaro .cookie-notice .cn-ok {
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
    gap: 16px !important;
  }

  .klaro .cookie-notice .cn-buttons {
    width: 100% !important;
  }

  .klaro .cookie-notice .cn-buttons button {
    flex: 1 !important;
    min-width: 100px !important;
  }

  .klaro .cn-learn-more {
    text-align: center !important;
  }

  .klaro .cookie-modal {
    padding: 28px !important;
    width: calc(100% - 32px) !important;
    max-height: 90vh !important;
  }

  .klaro .cookie-modal .cm-header h1.title {
    font-size: 28px !important;
  }

  .klaro .cookie-modal .cm-services .cm-service {
    padding: 16px !important;
  }

  .klaro .cookie-modal .cm-footer .cm-buttons {
    flex-direction: column !important;
  }

  .klaro .cookie-modal .cm-footer .cm-buttons button {
    width: 100% !important;
  }
}

@media (max-width: 640px) {
  .klaro .cookie-notice,
  .klaro .cookie-modal {
    padding: 20px 16px !important;
  }

  .klaro .cookie-notice .cn-body p strong {
    font-size: 18px !important;
  }

  .klaro .cookie-notice .cn-body p {
    font-size: 13px !important;
  }

  .klaro .cookie-notice .cn-ok {
    gap: 12px !important;
  }

  .klaro .cookie-notice .cn-buttons {
    flex-direction: column !important;
    gap: 10px !important;
  }

  .klaro .cookie-notice .cn-buttons button {
    width: 100% !important;
    padding: 12px 24px !important;
  }

  .klaro .cn-learn-more {
    width: 100% !important;
    text-align: center !important;
    padding: 12px 24px !important;
    display: block !important;
  }

  .klaro .cookie-modal {
    padding: 24px 20px !important;
    width: calc(100% - 24px) !important;
  }

  .klaro .cookie-modal .cm-header {
    margin-bottom: 24px !important;
  }

  .klaro .cookie-modal .cm-header h1.title {
    font-size: 24px !important;
  }

  .klaro .cookie-modal .cm-header p {
    font-size: 14px !important;
  }

  .klaro .cookie-modal .cm-services .cm-service {
    padding: 16px !important;
    margin-bottom: 12px !important;
  }

  .klaro .cookie-modal .cm-footer {
    padding-top: 24px !important;
    margin-top: 24px !important;
  }
}

