/* ===== BASE ===== */
:root{
  --bg:#0a0a0a;
  --text:#ffffff;
  --muted:#a0a0a0;
  --brand:#3b82f6;
  --brand2:#60a5fa;
  --brand-warm:#f59e0b;
  --brand-warm-light:#fbbf24;
  --accent:#10b981;
  --accent-light:#34d399;
  --ring:rgba(96,165,250,.45);
  --card:#1a1a1a;
  --light:#2a2a2a;
  --radius:18px;
  --shadow:0 16px 40px rgba(0,0,0,.3);
  --shadow-colored:0 16px 40px rgba(59,130,246,.15);
  --gradient-primary:linear-gradient(135deg, #3b82f6, #60a5fa, #93c5fd);
  --gradient-warm:linear-gradient(135deg, #f59e0b, #fbbf24, #fde047);
  --gradient-accent:linear-gradient(135deg, #10b981, #34d399, #6ee7b7);
  --gradient-dark:linear-gradient(135deg, #1a1a1a, #2a2a2a, #1a1a1a);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
html{scroll-padding-top: 80px}
body{
  font-family: ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,"Noto Sans",Ubuntu,"Helvetica Neue",Arial;
  color:#ffffff; 
  line-height:1.7; 
  background:#0a0a0a;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.01em;
}
img{max-width:100%; display:block}
a{text-decoration:none; color:var(--brand2)}
a:hover{opacity:.9}
.no-scroll{overflow:hidden}

/* Enhanced Typography Hierarchy */
h1{
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}

h2{
  font-size: clamp(1.75rem, 3.5vw, 2.5rem); 
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0 0 1rem;
}

h3{
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 0 0 0.75rem;
}

h4{
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 0.5rem;
}

p{
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  line-height: 1.7;
  margin: 0 0 1rem;
  font-weight: 400;
}

.lead{
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  line-height: 1.6;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
}

/* Enhanced Button Styles */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  font-size: clamp(0.95rem, 1.8vw, 1rem);
  letter-spacing: -0.005em;
}

.btn::before{
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before{
  left: 100%;
}


/* Global Micro-interactions - but not for critical elements */
*:not(.hero-van):not(.fallout-seq):not(.fall-item) {
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus states for accessibility */
*:focus {
  outline: 2px solid var(--brand2);
  outline-offset: 2px;
}

/* Loading animation for images - but not for gallery or van */
img:not(.gallery-item img):not(.hero-van) {
  transition: opacity 0.3s ease;
}

img[loading="lazy"]:not(.gallery-item img):not(.hero-van) {
  opacity: 0;
}

img[loading="lazy"].loaded:not(.gallery-item img):not(.hero-van) {
  opacity: 1;
}

/* Pulse animation for loading states */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}


/* Mobile viewport optimizations */
@media (max-width: 768px) {
  /* Prevent horizontal scroll */
  body {
    overflow-x: hidden;
  }
  
  /* Optimize text rendering */
  * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  /* Better tap highlighting */
  a, button, .card, .btn {
    -webkit-tap-highlight-color: rgba(59, 130, 246, 0.2);
  }
  
  /* Improve scrolling performance */
  .hero, .section {
    -webkit-overflow-scrolling: touch;
  }
}/* ===== LAYOUT ===== */

.container{
  width:100%;
  max-width:1200px;
  margin:0 auto;
  padding:0 clamp(1rem, 4vw, 2rem);
}

.section{
  padding: clamp(64px, 10vw, 120px) 0;
  position: relative;
}

.section.alt{
  background:#2a2a2a;
}

.flow > *+*{
  margin-top:1.5em;
}

.grid{
  display:grid;
  gap:clamp(1.5rem, 3vw, 2.5rem);
}

.grid.spacious{
  gap:clamp(2rem, 4vw, 3rem);
}

.flex{
  display:flex;
  align-items:center;
}

.flex.between{
  justify-content:space-between;
}

.flex.center{
  justify-content:center;
}/* ===== UTILITIES ===== */

.btn-ghost{
  background:transparent;
  color:#ffffff;
  border:1px solid rgba(255,255,255,.3);
}

.btn-accent{
  background:linear-gradient(135deg,var(--brand),var(--brand2));
  color:#fff;
}

.eyebrow{
  font-size:.9rem;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.05em;
  color:var(--brand2);
}/* ===== HEADER (brand, nav, burger menu) ===== */

.header{
  position:sticky;
  top:0;
  z-index:50;
  background: rgba(0,0,0,0.3);
  border-bottom:1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transition: all 0.3s ease;
}

/* Scroll-based header styling */
.header.scrolled {
  background: rgba(0,0,0,0.5);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  border-bottom:1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.header .container.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:80px;
}

.brand{
  display:flex;
  align-items:center;
  gap:.5rem;
  font-weight:700;
  font-size:1.2rem;
  color:var(--text);
  transition: all 0.3s ease;
  text-decoration: none;
}

.brand:hover{
  transform: scale(1.05);
  color: var(--brand2);
}

.brand-logo{
  height:40px;
  width:auto;
  transition: all 0.3s ease;
  filter: brightness(1);
}

.brand:hover .brand-logo{
  filter: brightness(1.1) drop-shadow(0 2px 8px rgba(255,255,255,0.2));
}

.brand-name{
  transition: all 0.3s ease;
}

.menu{
  display:flex;
  gap:1.5rem;
  align-items:center;
}

.menu a{
  color:var(--text);
  font-weight:500;
  font-size:1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 0.5rem 0;
}

.menu a::after{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu a:hover{
  color:var(--brand2);
  transform: translateY(-1px);
}

.menu a:hover::after{
  width: 100%;
}

.menu .btn{
  padding:.5rem 1rem;
}

/* Burger menu */
#nav-toggle{ display:none }

.burger{
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
  padding: 0.5rem;
  transition: all 0.3s ease;
}

.burger:hover{
  transform: scale(1.05);
}

.burger span{
  display:block;
  width:24px;
  height:2px;
  background:var(--text);
  border-radius:2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.burger:hover span{
  background: var(--brand2);
}

/* Burger animation when active */
#nav-toggle:checked ~ .burger span:nth-child(1){
  transform: rotate(45deg) translate(5px, 5px);
}

#nav-toggle:checked ~ .burger span:nth-child(2){
  opacity: 0;
}

#nav-toggle:checked ~ .burger span:nth-child(3){
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Dropdown menu styles */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.dropdown-toggle::after {
  content: '▼';
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  padding: 0.5rem 0;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
  position: relative;
}

.dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--brand2);
  border-left-color: var(--brand2);
  padding-left: 1.75rem;
}

.dropdown-menu a::after {
  display: none;
}

/* Mobile dropdown adjustments */
@media (max-width: 720px) {
  .dropdown-menu {
    position: static;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    background: rgba(0, 0, 0, 0.3);
    border: none;
    border-radius: 0;
    box-shadow: none;
    margin-top: 0.5rem;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    max-height: 500px;
  }
  
  .dropdown-menu a {
    padding: 0.5rem 1rem;
    border-left: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .dropdown-menu a:hover {
    padding-left: 1rem;
    border-left: none;
    border-bottom-color: var(--brand2);
  }
}/* ===== HERO (section background, overlay, inner layout) ===== */

/* A háttérképet inline adjuk át: style="--hero:url(//zsobikemeny.hu/wp-content/themes/zsobi/assets/css/...)" */
.hero{
  position: relative;
  background: var(--light) no-repeat center/cover;
  min-height: clamp(420px, 75vh, 860px);
  overflow: hidden;

  /* A tényleges kép a --hero változóval érkezik; lásd alább */
}

/* Hero transitions are now handled in transitions.css */

/* A tényleges háttérkép réteg: így biztosan cover, és külön overlay réteget tudunk tenni fölé */
.hero::before{
  content:"";
  position:absolute; inset:0;
  background: var(--hero) center/cover no-repeat;
  z-index: 0;
}

/* Sötétítő/fényesítő overlay (ha volt a formatting.css-ben, 1:1 megtartjuk a rétegezést) */
.hero .overlay{
  position:absolute; inset:0;
  z-index: 1;
  pointer-events:none;

  
  /* ha eddig volt gradient, itt marad a helye; üresen nem változtat */
}

/* Hero-n belüli akciógombok sor */
.hero .actions{
  display:flex;
  flex-wrap:wrap;
  gap:clamp(12px, 2vw, 16px);
  position: relative;
  z-index: 3;
  margin-top: clamp(16px, 3vw, 24px);
}

.hero .actions .btn{
  position: relative;
  overflow: hidden;
}

.hero .actions .btn::after{
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s ease;
}

.hero .actions .btn:hover::after{
  width: 300px;
  height: 300px;
}

/* Üveges tartalomkártya a hero-ban */
.hero-card{
  position: relative;
  max-width: 860px;
  padding: clamp(18px, 2.6vw, 28px);
  border-radius: 22px;
  background: linear-gradient(135deg, 
    rgba(8,14,24,.75), 
    rgba(8,14,24,.60),
    rgba(59,130,246,.08)
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 
    0 20px 60px rgba(0,0,0,.3),
    0 8px 25px rgba(59,130,246,.1),
    inset 0 1px 0 rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-card:hover{
  transform: translateY(-4px) scale(1.01);
  box-shadow: 
    0 25px 80px rgba(0,0,0,.4),
    0 12px 35px rgba(59,130,246,.15),
    inset 0 1px 0 rgba(255,255,255,.15);
}

/* Enhanced hero card animations */
.hero-card::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(59,130,246,0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.hero-card:hover::after{
  opacity: 1;
}

.hero .container{
display: flex;
  justify-content: center;   /* vízszintesen középre */
  align-items: center;       /* függőlegesen középre */
  min-height: clamp(420px, 75vh, 860px);
  padding: clamp(40px, 8vw, 60px) clamp(1rem, 4vw, 2rem);
}

/* Kis sor-távolság az egymásra eső elemek között */
.hero-card > * + *{ 
  margin-top: clamp(12px, 2vw, 16px); 
  color: #fff;    
}

.hero-card .eyebrow{
  color: rgba(207,232,255,.95);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.hero-card .hero-title{ 
  line-height: 1.05; 
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.hero-card .hero-subtitle{
  color: rgba(255,255,255,.92);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.hero-card .btn{
  color:#fff;
}
.hero-card .btn-ghost{
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.45);
  border:3px solid rgba(255,255,255,.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-card .btn-ghost:hover{ 
  background: rgba(255,255,255,.18);
  border-color: var(--brand-warm);
  color: var(--brand-warm-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(245,158,11,.2);
}

/* Mobilon a kártya teljes szélesség közelébe mehet */
@media (max-width: 640px){
  .hero-card{ max-width: none; }
}/* ===== VAN ANIMATION (hero van image + fallout sequence) ===== */

.hero-van{
  --van-pad: 20px;            /* vertical padding adjustment for van height calculation */
  position:absolute;
  
  /* Vertical centering: bottom: 50% + translateY(50%) centers the van */
  bottom: 50%;
  transform:translateX(0) translateY(50%);
  
  /* Horizontal positioning: starts offscreen to the left */
  left: calc(-1 * var(--van-w, 35vw));
  
  /* Height: reduce hero height by padding (40px total), then scale up 20% for visual prominence */
  /* Formula: (heroHeight - 40px) * 1.2 ensures van doesn't touch hero edges while staying prominent */
  height: calc((var(--hero-h, 60vh) - (var(--van-pad) * 2)) * 1.2);
  width:auto;                 /* maintains aspect ratio based on height */
  
  z-index:3;
  visibility: hidden;         /* hidden until measurements complete */
  will-change: transform;     /* GPU acceleration for smooth animation */
  opacity: 1 !important;
  transition: none !important;
}


/* Drive animation keyframes */
@keyframes drive{
  0%   { transform: translateX(0) translateY(50%); }
  100% { transform: translateX(var(--van-path, calc(100vw + 35vw + 40px))) translateY(50%); }
}

/* Animáció csak akkor induljon, ha a body megkapja a hero-anim-start-ot */
body.hero-anim-start .hero-van{
  visibility: visible;
  animation: drive var(--van-duration,3600ms) linear forwards;
}

/* Hide van after animation completes */
body.hero-anim-complete .hero-van{
  visibility: hidden !important;
  animation: none !important;
}

/* Fallout sequence: a hero-innerben lévő itemek */
.fallout-seq{
  display:grid;
  gap:12px;
}
.fallout-seq .fall-item{
  opacity:0;
  transform:translateY(-20px);
  transition: none !important;
}

/* Ha a body-hoz bekerül a fallout-now, indul a „kiesés” */
body.fallout-now .fallout-seq .fall-item{
  animation: fall-from-van 600ms cubic-bezier(.2,.8,.4,1) forwards;
}

/* Időzítés nth-child-del */
body.fallout-now .fallout-seq .fall-item:nth-of-type(1){ animation-delay:   0ms; }
body.fallout-now .fallout-seq .fall-item:nth-of-type(2){ animation-delay: 120ms; }
body.fallout-now .fallout-seq .fall-item:nth-of-type(3){ animation-delay: 240ms; }
body.fallout-now .fallout-seq .fall-item:nth-of-type(4){ animation-delay: 360ms; }
body.fallout-now .fallout-seq .fall-item:nth-of-type(5){ animation-delay: 480ms; }
body.fallout-now .fallout-seq .fall-item:nth-of-type(6){ animation-delay: 600ms; }
body.fallout-now .fallout-seq .fall-item:nth-of-type(7){ animation-delay: 720ms; }
body.fallout-now .fallout-seq .fall-item:nth-of-type(8){ animation-delay: 840ms; }
/* ha több elem van, itt lehet folytatni */

@keyframes fall-from-van{
  0%{
    opacity:0;
    transform:translateY(-20px) rotate(-5deg);
  }
  100%{
    opacity:1;
    transform:translateY(0) rotate(0);
  }
}

/* Mobile */
@media (max-width: 640px){
  .hero-van{
    display: none;
  }
  
  /* Show content immediately on mobile */
  .fallout-seq .fall-item{
    opacity: 1;
    transform: translateY(0);
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .hero-van {
    display: none;
  }
  
  .fallout-seq .fall-item {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}/* ===== SERVICES SECTION ===== */

.section.services{
  background:#1a1a1a;
  padding-top: clamp(16px, 2vw, 24px);
}

.section.services h2{
  text-align:center;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.section.services .lead{
  text-align:center;
  max-width:640px;
  margin:0 auto 3rem;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  font-weight: 400;
}

.card-grid{
  display:grid;
  gap:clamp(1.5rem, 3vw, 2.5rem);
  grid-template-columns: repeat(4, 1fr);
  margin-top: 2rem;
}

/* Responsive adjustments for two-row layout */
@media (max-width: 1200px) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
}

.card{
  background: var(--gradient-dark);
  border-radius:var(--radius);
  padding:clamp(1.25rem, 2.5vw, 1.75rem);
  box-shadow:0 8px 25px rgba(0,0,0,.3);
  text-align:center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border:1px solid rgba(255,255,255,.1);
  position: relative;
  overflow: hidden;
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.card:hover{
  transform:translateY(-8px) scale(1.02);
  box-shadow:0 25px 50px rgba(0,0,0,.4), 0 12px 30px rgba(59,130,246,.2);
  border-color:var(--brand2);
}

.card:hover::before{
  opacity: 0.08;
}

/* Enhanced card animations */
.card::after{
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(59,130,246,0.1), transparent);
  opacity: 0;
  transition: all 0.6s ease;
  z-index: 1;
}

.card:hover::after{
  opacity: 1;
  transform: rotate(180deg);
}

.card i{
  font-size:1.5rem;
  color:var(--brand2);
  margin-bottom:.25rem;
  position: relative;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover i{
  color:var(--brand-warm);
  transform: scale(1.15);
  filter: drop-shadow(0 4px 8px rgba(245,158,11,0.3));
}

/* Icon pulse animation */
.card i::after{
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(245,158,11,0.2) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.4s ease;
  z-index: -1;
}

.card:hover i::after{
  transform: translate(-50%, -50%) scale(2);
}

.card h3{
  margin:0 0 0.25rem;
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.card:hover h3{
  color:var(--text);
}

.card p{
  margin:0;
  font-size: clamp(0.8rem, 1.5vw, 0.9rem);
  color:var(--muted);
  line-height: 1.4;
  font-weight: 400;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.section.services .card.card-clickable:hover p{
  opacity: 0;
  transform: translateY(-10px);
}

/* Clickable card styles */
.card-clickable{
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.card-clickable:hover{
  text-decoration: none;
  color: inherit;
}

/* Override the general card animation for clickable cards and add arrow */
.section.services .card.card-clickable::after{
  content: '→' !important;
  position: absolute !important;
  bottom: 1rem !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  font-size: 1.5rem !important;
  color: #3b82f6 !important;
  opacity: 0 !important;
  transition: all 0.3s ease !important;
  z-index: 10 !important;
  pointer-events: none !important;
  background: none !important;
  width: auto !important;
  height: auto !important;
  top: auto !important;
}

.section.services .card.card-clickable:hover::after{
  opacity: 1 !important;
  transform: translateX(-50%) scale(1) !important;
  color: #f59e0b !important;
}/* ===== INNOVA SECTION + HERO BADGE ===== */

/* Innova Red Color Variables */
:root {
  --innova-red: #e53e3e;
  --innova-red-light: #fc8181;
  --innova-red-dark: #c53030;
}

.innova-badge{
  display:flex;
  gap:10px;
  align-items:center;
  margin-bottom:12px;
}
.innova-badge .pill{
  display:inline-block;
  font-weight:600;
  font-size:14px;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(46,163,242,.12);
  color: var(--brand2);
  border:1px solid rgba(46,163,242,.25);
}
.innova-badge .pill-link{
  display:inline-block;
  font-weight:600;
  font-size:14px;
  padding:6px 10px;
  border-radius:999px;
  text-decoration:none;
  color:#0b0b0b;
  background:#fff;
  border:1px dashed rgba(0,0,0,.15);
}

.hero-title{
  font-size:clamp(28px,4.2vw,48px);
  line-height:1.1;
  margin:8px 0 10px;
  font-weight:900;
}
.hero-subtitle{
  font-size:clamp(16px,2.4vw,20px);
  opacity:.9;
  margin-bottom:16px;
}

/* INNOVA section layout */
.section-innova{
  padding: clamp(16px,3vw,24px) 0;
  background: transparent;
  border: 3px solid var(--innova-red);
  border-radius: 20px;
  position: relative;
  margin: clamp(8px,2vw,16px) 0;
}

.innova-layout{
  display:flex;
  flex-direction:column;
  gap:clamp(16px,3vw,32px);
}
.innova-content{
  flex:1 1 auto;
  display:flex;
  flex-direction:column;
  gap:clamp(16px,3vw,32px);
}
.innova-media{
  flex:0 0 auto;
  margin:0;
  align-self:center;
  max-width:440px;
}
.innova-media__image{
  width:100%;
  height:auto;
  display:block;
  border-radius:0;
  box-shadow:none;
}

.section-innova .section-head{
  text-align:center;
  margin-bottom: clamp(12px,2vw,20px);
}
.section-innova h2{
  font-size: clamp(24px,3.6vw,36px);
  margin:0 0 8px;
  color: var(--innova-red);
  font-weight: 800;
}

.section-innova .section-head p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

.grid-innova{
  display:grid;
  gap:16px;
  grid-template-columns: repeat(1,minmax(0,1fr));
}
@media(min-width:720px){
  .grid-innova{ grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media(min-width:1024px){
  .innova-layout{
    flex-direction:row;
    align-items:center;
  }
  .innova-content{
    flex:1 1 65%;
  }
  .innova-media{
    flex:0 1 35%;
    display:flex;
    align-items:center;
    justify-content:center;
  }
  .section-innova .section-head{
    text-align:left;
  }
}

@media(min-width:1080px){
  .grid-innova{ grid-template-columns: repeat(4,minmax(0,1fr)); }
}

/* Mobile adjustments for border design */
@media (max-width: 768px) {
  .section-innova {
    margin: clamp(6px,1.5vw,12px) 0;
    border-width: 2px;
    border-radius: 16px;
    padding: clamp(12px,2vw,18px) 0;
  }
}

.section-innova .card{
  background: #ffffff;
  color:#0b1220;
  border-radius:16px;
  padding:18px;
  border: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
.section-innova .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.section-innova .card h3{
  margin:0 0 6px;
  font-size:18px;
  color:#0b1220;
  font-weight: 700;
}
.section-innova .card p{
  margin:0;
  color:#334155;
}

.innova-cta{
  display:flex;
  gap:12px;
  justify-content:center;
  margin-top:12px;
  flex-wrap:wrap;
}

/* Innova-specific button styles */
.innova-cta .btn-accent {
  background: #ffffff;
  color: var(--innova-red);
  border: none;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.innova-cta .btn-accent:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.innova-cta .btn-ghost {
  background: transparent;
  color: var(--innova-red);
  border: 2px solid var(--innova-red);
  font-weight: 600;
}

.innova-cta .btn-ghost:hover {
  background: var(--innova-red);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(229, 62, 62, 0.3);
}

/* ===== INNOVA POPUP MODAL ===== */

.popup-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

.popup-content {
  background: #ffffff;
  border-radius: 16px;
  max-width: 1200px;
  width: 100%;
  max-height: 95vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: popupSlideIn 0.3s ease-out;
}

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

.popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 24px 16px;
  border-bottom: 1px solid #e2e8f0;
}

.popup-header h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: var(--innova-red);
}

.popup-close {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 50%;
  font-size: 18px;
  color: #64748b;
  cursor: pointer;
  line-height: 1;
  transition: all 0.2s ease;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 10;
  flex-shrink: 0;
}

.popup-close:hover {
  color: var(--innova-red);
  background: #ffffff;
  border-color: var(--innova-red);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(229, 62, 62, 0.2);
}

.popup-body {
  padding: 24px;
}

.popup-media {
  margin: 0 0 20px;
  text-align: center;
}

.popup-media video {
  max-width: 60%;
  height: auto;
  border-radius: 8px;
}

.popup-text {
  line-height: 1.6;
}

.popup-text p {
  margin: 0 0 16px;
  color: #334155;
  font-size: 16px;
}

.popup-text p:last-child {
  margin-bottom: 0;
}

/* ===== ENHANCED POPUP INFO GRID ===== */

.popup-info-grid {
  display: contents;
}

.popup-benefit-box {
  background: var(--innova-red);
  border: 2px solid #ffffff;
  border-radius: 16px;
  padding: 20px;
  position: relative;
  box-shadow: 0 8px 32px rgba(229, 62, 62, 0.2);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 200px;
  height: auto;
}

.popup-benefit-box:nth-child(1) {
  grid-area: benefit1;
}

.popup-benefit-box:nth-child(2) {
  grid-area: benefit2;
}

.popup-benefit-box:nth-child(3) {
  grid-area: benefit3;
}

.benefit-header {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.benefit-number {
  width: 40px;
  height: 40px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  color: var(--innova-red);
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.benefit-title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  flex: 1;
}

.benefit-content {
  flex: 1;
  overflow: hidden;
}

.benefit-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: 14px;
  line-height: 1.5;
}

/* Enhanced popup layout adjustments */

.popup-body {
  padding: 24px 24px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  grid-template-areas: 
    "benefit1 logo"
    "benefit2 benefit3";
  gap: 24px;
  align-items: start;
}

/* Ensure bottom row cards have equal height */
.popup-benefit-box:nth-child(2),
.popup-benefit-box:nth-child(3) {
  align-self: stretch;
}

/* Conservative responsive scaling for cards */
@media (max-width: 1000px) {
  .popup-benefit-box {
    min-height: 220px;
  }
  
  .benefit-content p {
    font-size: 13px;
  }
}

@media (max-width: 900px) {
  .popup-benefit-box {
    min-height: 240px;
  }
  
  .benefit-content p {
    font-size: 13px;
  }
}

.popup-media {
  margin: 0;
  grid-area: logo;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.popup-media video {
  max-width: 100%;
  max-height: 200px;
  width: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .popup-content {
    margin: 10px;
    max-height: 95vh;
  }
  
  .popup-header {
    padding: 20px 20px 12px;
  }
  
  .popup-header h3 {
    font-size: 20px;
  }
  
  .popup-body {
    padding: 20px 20px 24px;
    grid-template-columns: 1fr;
    grid-template-areas: 
      "logo"
      "benefit1"
      "benefit2"
      "benefit3";
    gap: 16px;
  }
  
  .popup-text p {
    font-size: 15px;
  }
  
  .popup-media video {
    max-width: 50%;
    max-height: 80px;
  }
  
  .popup-benefit-box {
    padding: 18px;
    height: auto;
    min-height: 180px;
  }
  
  .benefit-number {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  
  .benefit-content h4 {
    font-size: 16px;
  }
  
  .benefit-content p {
    font-size: 13px;
  }
}

/* Fix overlapping on very small screens */
@media (max-width: 480px) {
  .popup-body {
    gap: 12px;
  }
  
  .popup-benefit-box {
    min-height: 160px;
    padding: 16px;
  }
  
  .benefit-content p {
    font-size: 12px;
    line-height: 1.4;
  }
  
  .benefit-title {
    font-size: 15px;
  }
}

/* ===== INNOVA QUOTE REQUEST FORM STYLES ===== */

/* Form container for innova section */
.section-innova .quote-form-container.forminator-hide {
  display: none;
  margin-top: 1.5rem;
}

.section-innova .quote-form-container.form-visible {
  display: block !important;
  animation: fadeInForm 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Form styling for innova section */
.section-innova .quote-form {
  background: #ffffff;
  border: none;
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  max-width: 600px;
  margin: 0 auto;
}

/* Address fields grid layout for innova */
.section-innova .address-fields {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0.75rem;
}

@media (max-width: 768px) {
  .section-innova .address-fields {
    grid-template-columns: 1fr;
  }
}

/* Phone field with prefix for innova */
.section-innova .phone-field {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}

.section-innova .phone-prefix {
  font-size: 1rem;
  font-weight: 600;
  color: var(--innova-red);
  background: rgba(229, 62, 62, 0.1);
  padding: 0.875rem 0.75rem;
  border-radius: 8px;
  border: 2px solid rgba(229, 62, 62, 0.2);
  white-space: nowrap;
}

.section-innova .phone-field input[type="tel"] {
  flex: 1;
}

.section-innova .quote-form input,
.section-innova .quote-form textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(229, 62, 62, 0.05);
  border: 2px solid rgba(229, 62, 62, 0.2);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  color: #0b1220;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.section-innova .quote-form input:focus,
.section-innova .quote-form textarea:focus {
  outline: none;
  border-color: var(--innova-red);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

.section-innova .quote-form textarea {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
}

.section-innova .quote-form input::placeholder,
.section-innova .quote-form textarea::placeholder {
  color: rgba(11, 18, 32, 0.5);
}

/* Submit button for innova form */
.section-innova .quote-form .btn {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.section-innova .quote-form .btn-primary {
  background: var(--innova-red);
  color: #ffffff;
  border: none;
}

.section-innova .quote-form .btn-primary:not(:disabled):hover {
  background: var(--innova-red-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(229, 62, 62, 0.3);
}

.section-innova .quote-form .btn-primary:disabled {
  background: rgba(229, 62, 62, 0.3);
  cursor: not-allowed;
  opacity: 0.6;
}

.section-innova .quote-form .btn-hint {
  font-size: 0.75rem;
  font-weight: 400;
  opacity: 0.8;
}

.section-innova .quote-form .btn-primary:not(:disabled) .btn-hint {
  display: none;
}

/* Form messages for innova section */
.section-innova .form-message {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  text-align: center;
  display: none;
  margin-top: 0.5rem;
}

.section-innova .form-message.success {
  display: block;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #15803d;
}

.section-innova .form-message.error {
  display: block;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #991b1b;
}

/* Mobile responsive adjustments for innova form */
@media (max-width: 768px) {
  .section-innova .quote-form {
    padding: 1.25rem;
    gap: 0.875rem;
  }
  
  .section-innova .quote-form input,
  .section-innova .quote-form textarea {
    padding: 0.75rem 0.875rem;
    font-size: 0.95rem;
  }
  
  .section-innova .quote-form .btn {
    padding: 0.875rem;
    font-size: 0.95rem;
  }
  
  .section-innova .quote-form .btn-hint {
    font-size: 0.7rem;
  }
}
/* ===== REDESIGNED CONTENT BLOCKS ===== */

/* Enhanced color variables for blocks */
:root {
  --block-accent: #60a5fa;
  --block-accent-light: #93c5fd;
  --block-gradient-start: rgba(96, 165, 250, 0.1);
  --block-gradient-end: rgba(96, 165, 250, 0.05);
  --block-bg: rgba(25, 25, 25, 0.95);
  --block-border: rgba(255, 255, 255, 0.08);
  --block-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* ===== FORMINTOR INTEGRATION STYLES ===== */
/* Import Forminator custom styles */
/**
 * Forminator Custom Styling for Zsobi Theme
 * Matches theme design with dark aesthetic and blue accents
 * Uses !important to override Forminator's default styles
 */

/* Use theme color variables */
:root {
  --form-accent: #60a5fa;
  --form-accent-light: #93c5fd;
  --form-bg: rgba(255, 255, 255, 0.05);
  --form-border: rgba(255, 255, 255, 0.1);
  --form-text: rgba(255, 255, 255, 0.9);
  --form-text-muted: rgba(255, 255, 255, 0.7);
  --input-bg: rgba(255, 255, 255, 0.95);
  --input-text: #0b1220;
  --input-border: transparent;
  --input-focus-border: var(--form-accent);
  --input-focus-shadow: 0 0 0 3px rgba(96, 165, 250, 0.1);
}

/* Form Container - HIGH SPECIFICITY */
.quote-form-container .forminator-form,
#blokkok .forminator-form,
.section-innova .forminator-form {
  background: var(--form-bg) !important;
  border: 1px solid var(--form-border) !important;
  border-radius: 12px !important;
  padding: 1.5rem !important;
  margin: 0 !important;
}

/* Labels */
.quote-form-container .forminator-label,
#blokkok .forminator-label {
  color: var(--form-text) !important;
  font-weight: 600 !important;
}

/* Required Field Indicator */
.quote-form-container .forminator-required,
#blokkok .forminator-required {
  color: #ef4444 !important;
}

/* Input Fields - HIGH SPECIFICITY */
.quote-form-container .forminator-field input[type="text"],
.quote-form-container .forminator-field input[type="email"],
.quote-form-container .forminator-field input[type="tel"],
.quote-form-container .forminator-field input[type="number"],
.quote-form-container .forminator-field select,
.quote-form-container .forminator-field textarea,
#blokkok .forminator-field input[type="text"],
#blokkok .forminator-field input[type="email"],
#blokkok .forminator-field input[type="tel"],
#blokkok .forminator-field input[type="number"],
#blokkok .forminator-field select,
#blokkok .forminator-field textarea {
  width: 100% !important;
  padding: 0.875rem 1rem !important;
  background: var(--input-bg) !important;
  border: 2px solid var(--input-border) !important;
  border-radius: 8px !important;
  font-size: 1rem !important;
  font-family: inherit !important;
  color: var(--input-text) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-sizing: border-box !important;
}

.quote-form-container .forminator-field input[type="text"]:focus,
.quote-form-container .forminator-field input[type="email"]:focus,
.quote-form-container .forminator-field input[type="tel"]:focus,
.quote-form-container .forminator-field input[type="number"]:focus,
.quote-form-container .forminator-field select:focus,
.quote-form-container .forminator-field textarea:focus,
#blokkok .forminator-field input[type="text"]:focus,
#blokkok .forminator-field input[type="email"]:focus,
#blokkok .forminator-field input[type="tel"]:focus,
#blokkok .forminator-field input[type="number"]:focus,
#blokkok .forminator-field select:focus,
#blokkok .forminator-field textarea:focus {
  outline: none !important;
  border-color: var(--input-focus-border) !important;
  background: #ffffff !important;
  box-shadow: var(--input-focus-shadow) !important;
}

.quote-form-container .forminator-field input::placeholder,
.quote-form-container .forminator-field textarea::placeholder,
#blokkok .forminator-field input::placeholder,
#blokkok .forminator-field textarea::placeholder {
  color: rgba(11, 18, 32, 0.5) !important;
}

.quote-form-container .forminator-field textarea,
#blokkok .forminator-field textarea {
  resize: vertical !important;
  min-height: 100px !important;
}

/* Submit Button - HIGH SPECIFICITY */
.quote-form-container .forminator-button,
.quote-form-container input.forminator-button,
.quote-form-container button.forminator-button,
#blokkok .forminator-button,
#blokkok input.forminator-button,
#blokkok button.forminator-button {
  width: 100% !important;
  padding: 1rem !important;
  background: var(--form-accent) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 8px !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative !important;
}

.quote-form-container .forminator-button:hover:not(:disabled),
.quote-form-container input.forminator-button:hover:not(:disabled),
.quote-form-container button.forminator-button:hover:not(:disabled),
#blokkok .forminator-button:hover:not(:disabled),
#blokkok input.forminator-button:hover:not(:disabled),
#blokkok button.forminator-button:hover:not(:disabled) {
  background: var(--form-accent-light) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(96, 165, 250, 0.3) !important;
}

.quote-form-container .forminator-button:disabled,
.quote-form-container input.forminator-button:disabled,
.quote-form-container button.forminator-button:disabled,
#blokkok .forminator-button:disabled,
#blokkok input.forminator-button:disabled,
#blokkok button.forminator-button:disabled {
  background: rgba(96, 165, 250, 0.3) !important;
  cursor: not-allowed !important;
  opacity: 0.6 !important;
}

/* Consent Checkbox */
.quote-form-container .forminator-field-consent,
.quote-form-container .forminator-checkbox,
#blokkok .forminator-field-consent,
#blokkok .forminator-checkbox {
  margin: 1.5rem 0 !important;
}

.quote-form-container .forminator-checkbox input[type="checkbox"],
#blokkok .forminator-checkbox input[type="checkbox"] {
  accent-color: var(--form-accent) !important;
  width: 20px !important;
  height: 20px !important;
  cursor: pointer !important;
}

.quote-form-container .forminator-checkbox-label,
.quote-form-container .consent-text,
#blokkok .forminator-checkbox-label,
#blokkok .consent-text {
  color: var(--form-text) !important;
  font-size: 0.9rem !important;
}

.quote-form-container .forminator-checkbox a,
.quote-form-container .consent-text a,
#blokkok .forminator-checkbox a,
#blokkok .consent-text a {
  color: var(--form-accent) !important;
  text-decoration: underline !important;
}

/* Messages */
.quote-form-container .forminator-message,
#blokkok .forminator-message {
  padding: 0.75rem 1rem !important;
  border-radius: 8px !important;
  font-size: 0.9rem !important;
}

.quote-form-container .forminator-message.forminator-success,
#blokkok .forminator-message.forminator-success {
  background: rgba(34, 197, 94, 0.1) !important;
  border: 1px solid rgba(34, 197, 94, 0.3) !important;
  color: #22c55e !important;
}

.quote-form-container .forminator-message.forminator-error,
#blokkok .forminator-message.forminator-error {
  background: rgba(239, 68, 68, 0.1) !important;
  border: 1px solid rgba(239, 68, 68, 0.3) !important;
  color: #ef4444 !important;
}

/* Responsive */
@media (max-width: 768px) {
  .quote-form-container .forminator-form,
  #blokkok .forminator-form,
  .section-innova .forminator-form {
    padding: 1.25rem !important;
  }
  
  .quote-form-container .forminator-field input,
  .quote-form-container .forminator-field textarea,
  #blokkok .forminator-field input,
  #blokkok .forminator-field textarea,
  .section-innova .forminator-field input,
  .section-innova .forminator-field textarea {
    font-size: 16px !important; /* Prevent iOS zoom */
  }
  
  /* Stack columns on mobile */
  .quote-form-container .forminator-col,
  #blokkok .forminator-col,
  .section-innova .forminator-col {
    flex: 1 1 100% !important;
    margin-right: 0 !important;
  }
}

/* Reset Forminator defaults */
.quote-form-container .forminator-row,
#blokkok .forminator-row,
.section-innova .forminator-row {
  margin: 0 !important;
  gap: 0.75rem !important; /* Space between columns */
  display: flex !important;
  flex-wrap: wrap !important;
}

.quote-form-container .forminator-col,
#blokkok .forminator-col,
.section-innova .forminator-col {
  padding: 0 !important;
  margin-right: 0.75rem !important; /* Space between columns */
}

/* Remove right margin from last column */
.quote-form-container .forminator-col:last-child,
#blokkok .forminator-col:last-child,
.section-innova .forminator-col:last-child {
  margin-right: 0 !important;
}

/* Space between field wraps */
.quote-form-container .forminator-field-wrap,
#blokkok .forminator-field-wrap,
.section-innova .forminator-field-wrap {
  margin-bottom: 1rem !important; /* Space between rows */
}

/* For fields with multiple columns in a row */
.quote-form-container .forminator-row .forminator-col .forminator-field-wrap,
#blokkok .forminator-row .forminator-col .forminator-field-wrap,
.section-innova .forminator-row .forminator-col .forminator-field-wrap {
  margin-bottom: 0 !important; /* Remove vertical spacing in same row */
  margin-right: 0 !important;
}

/* Re-add margin to last field in row */
.quote-form-container .forminator-row .forminator-col .forminator-field-wrap:last-child,
#blokkok .forminator-row .forminator-col .forminator-field-wrap:last-child,
.section-innova .forminator-row .forminator-col .forminator-field-wrap:last-child {
  margin-bottom: 1rem !important;
}


  #blokkok .feature{
    display:grid;
    gap:clamp(1.5rem, 3vw, 2.5rem);
    align-items:center;
    grid-template-columns:0.8fr 1.2fr;
    margin-bottom:clamp(2rem, 3vw, 2.5rem);
    position: relative;
    background: var(--block-bg);
    border-radius: 24px;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border: 1px solid var(--block-border);
    box-shadow: var(--block-shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
  }

/* Adjust grid columns for reverse cards to give more space to text */
#blokkok .feature.reverse{
  grid-template-columns:1.2fr 0.8fr;
}

#blokkok .feature.reverse .media{
  order:2;
}

#blokkok .feature.reverse .copy{
  order:1;
}

#blokkok .media {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  padding: 1.5rem;
  max-width: 100%;
}

#blokkok .media img{
  width:100%;
  height:auto;
  max-width:100%;
  max-height: 400px;
  object-fit:cover;
  border-radius:12px;
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.4),
    0 4px 16px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
}

#blokkok .media::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, 
    transparent 30%, 
    rgba(96, 165, 250, 0.1) 50%, 
    transparent 70%
  );
  transform: rotate(45deg);
  transition: all 0.6s ease;
  z-index: 1;
  opacity: 0;
}

#blokkok .feature:hover .media::before {
  opacity: 1;
  transform: rotate(45deg) translate(20px, 20px);
}

/* Specific styling for the 800x1035 images to maintain uniformity */
#blokkok .media img[src*="solid-fuel"],
#blokkok .media img[src*="gas"],
#blokkok .media img[src*="milling"],
#blokkok .media img[src*="dw"],
#blokkok .media img[src*="roof-walk"],
#blokkok .media img[src*="condensing"]{
  aspect-ratio:800/1035;
  object-fit:cover;
  max-height: 350px;
}

/* Special styling for the Innova GIF */
#blokkok .media img[src*="Innova Pro.gif"]{
  object-fit:contain;
  max-height:280px;
}

/* Service header with icon */
.service-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: clamp(1rem, 2vw, 1.25rem);
}

.service-icon {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--block-accent);
  background: linear-gradient(135deg, var(--block-accent), var(--block-accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 8px rgba(96, 165, 250, 0.3));
}

#blokkok .copy h3{
  margin:0;
  font-size:clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight:700;
  color:#ffffff;
  line-height:1.3;
  letter-spacing:-0.01em;
  position:relative;
}

#blokkok .copy h3::after{
  content:'';
  position:absolute;
  bottom:-0.5rem;
  left:0;
  width:3rem;
  height:3px;
  background:linear-gradient(90deg, var(--block-accent), var(--block-accent-light));
  border-radius:2px;
  box-shadow: 0 2px 8px rgba(96, 165, 250, 0.3);
}

#blokkok .copy p{
  margin:0 0 clamp(1.25rem, 2.5vw, 1.75rem);
  color:rgba(255, 255, 255, 0.9);
  line-height:1.7;
  font-size:clamp(1.15rem, 2.2vw, 1.35rem);
  text-align:left;
  font-weight: 400;
  letter-spacing: -0.005em;
}

#blokkok .copy p:last-child{
  margin-bottom:0;
}

/* Service features list */
.service-features {
  list-style: none;
  padding: 0;
  margin: clamp(0.5rem, 1vw, 0.75rem) 0;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.5;
}

.service-features li:last-child {
  margin-bottom: 0;
}

.service-features li i {
  color: var(--block-accent);
  font-size: 1.1em;
  flex-shrink: 0;
}

/* Direct spacing for copy elements */
#blokkok .copy > p {
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  text-align: justify;
}

#blokkok .copy > p:last-of-type {
  margin-bottom: 0;
}

/* Service action button */
.service-action {
  margin-top: auto;
  padding-top: clamp(1rem, 2vw, 1.25rem);
  text-align: center;
}

.service-action .btn {
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid var(--block-accent);
  background: transparent;
  color: var(--block-accent);
}

.service-action .btn:hover {
  background: var(--block-accent);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(96, 165, 250, 0.3);
}

/* Enhanced spacing and layout */
#blokkok .copy{
  padding:0;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  height: 100%;
  overflow:visible;
}

/* Hover effects */
#blokkok .feature:hover{
  transform: translateY(-4px);
  box-shadow: 
    0 16px 48px rgba(0,0,0,0.4),
    0 8px 24px rgba(96, 165, 250, 0.2);
  border-color: rgba(96, 165, 250, 0.2);
}

#blokkok .feature:hover .media img {
  transform: scale(1.02);
  box-shadow: 
    0 16px 48px rgba(0, 0, 0, 0.5),
    0 8px 24px rgba(96, 165, 250, 0.2);
}

/* Mobile responsive improvements */
@media (max-width: 768px) {
  #blokkok .feature{
    padding: clamp(1.5rem, 4vw, 2rem);
    gap: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: clamp(2rem, 4vw, 3rem);
    grid-template-columns: 1fr;
  }
  
  #blokkok .feature.reverse{
    grid-template-columns: 1fr;
  }
  
  #blokkok .feature.reverse .media{
    order: 1;
  }
  
  #blokkok .feature.reverse .copy{
    order: 2;
  }
  
  .service-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: clamp(1rem, 2.5vw, 1.25rem);
  }
  
  .service-icon {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }
  
  #blokkok .copy h3{
    font-size: clamp(1.5rem, 5vw, 1.8rem);
    margin-bottom: 0;
  }
  
  .service-features {
    margin: clamp(0.75rem, 1.5vw, 1rem) 0;
  }
  
  .service-features li {
    font-size: clamp(0.9rem, 3vw, 1rem);
    margin-bottom: 0.5rem;
  }
  
  .service-action {
    margin-top: clamp(0.75rem, 1.5vw, 1rem);
  }
  
  .service-action .btn {
    font-size: clamp(0.85rem, 3vw, 0.95rem);
    padding: 0.6rem 1.25rem;
    width: 100%;
    text-align: center;
  }
  
  #blokkok .copy p{
    font-size: clamp(1rem, 3.5vw, 1.15rem);
    line-height: 1.6;
    margin-bottom: clamp(1rem, 2.5vw, 1.25rem);
  }
  
  #blokkok .media{
    padding: 1rem;
    max-width: 100%;
  }
  
  #blokkok .media img{
    max-width: 100%;
    height: auto;
    max-height: 300px;
  }
  
  #blokkok .media img[src*="solid-fuel"],
  #blokkok .media img[src*="gas"],
  #blokkok .media img[src*="milling"],
  #blokkok .media img[src*="dw"],
  #blokkok .media img[src*="roof-walk"],
  #blokkok .media img[src*="condensing"]{
    max-height: 280px;
  }
  
  #blokkok .media img[src*="Innova Pro.gif"]{
    max-height: 250px;
  }
}

/* Enhanced animations with staggered effects */
#blokkok .copy h3{
  animation:fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

#blokkok .copy p{
  animation:fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

#blokkok .media img {
  animation:fadeInScale 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
}

@keyframes fadeInUp{
  from{
    opacity:0;
    transform:translateY(30px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@keyframes fadeInScale{
  from{
    opacity:0;
    transform:scale(0.9) translateY(20px);
  }
  to{
    opacity:1;
    transform:scale(1) translateY(0);
  }
}

/* Subtle pulse animation for accent elements */
#blokkok .copy h3::after {
  animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 2px 8px rgba(96, 165, 250, 0.3);
  }
  50% {
    box-shadow: 0 2px 12px rgba(96, 165, 250, 0.5);
  }
}

/* ===== QUOTE REQUEST FORM STYLES ===== */

/* Form container - hidden by default */
.quote-form-container.forminator-hide {
  display: none !important;
  margin-top: 1.5rem;
}

.quote-form-container.form-visible {
  display: block !important;
  animation: fadeInForm 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  visibility: visible !important;
  opacity: 1 !important;
  height: auto !important;
  overflow: visible !important;
}

.quote-form-container {
  position: relative;
  z-index: 10;
}

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

/* Form styling */
.quote-form {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Address fields grid layout */
.address-fields {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0.75rem;
}

@media (max-width: 768px) {
  .address-fields {
    grid-template-columns: 1fr;
  }
}

/* Phone field with prefix */
.phone-field {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}

.phone-prefix {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  padding: 0.875rem 0.75rem;
  border-radius: 8px;
  border: 2px solid transparent;
  white-space: nowrap;
}

.phone-field input[type="tel"] {
  flex: 1;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid transparent;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  color: #0b1220;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.quote-form input:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--block-accent);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.1);
}

.quote-form textarea {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: rgba(11, 18, 32, 0.5);
}

/* Submit button */
.quote-form .btn {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.quote-form .btn-primary {
  background: var(--block-accent);
  color: #ffffff;
  border: none;
}

.quote-form .btn-primary:not(:disabled):hover {
  background: var(--block-accent-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(96, 165, 250, 0.3);
}

.quote-form .btn-primary:disabled {
  background: rgba(96, 165, 250, 0.3);
  cursor: not-allowed;
  opacity: 0.6;
}

.quote-form .btn-hint {
  font-size: 0.75rem;
  font-weight: 400;
  opacity: 0.8;
}

.quote-form .btn-primary:not(:disabled) .btn-hint {
  display: none;
}

/* Form messages */
.form-message {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  text-align: center;
  display: none;
  margin-top: 0.5rem;
}

.form-message.success {
  display: block;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
}

.form-message.error {
  display: block;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

/* Consent checkbox styling */
.consent-wrapper {
  margin: 0.5rem 0;
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.consent-label:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(96, 165, 250, 0.3);
}

.consent-checkbox {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 0.15em;
  cursor: pointer;
  accent-color: var(--block-accent);
}

.consent-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.consent-text a {
  color: var(--block-accent);
  text-decoration: underline;
  text-decoration-color: rgba(96, 165, 250, 0.4);
  text-underline-offset: 2px;
  transition: all 0.3s ease;
}

.consent-text a:hover {
  color: var(--block-accent-light);
  text-decoration-color: var(--block-accent-light);
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .quote-form {
    padding: 1.25rem;
    gap: 0.875rem;
  }
  
  .quote-form input,
  .quote-form textarea {
    padding: 0.75rem 0.875rem;
    font-size: 0.95rem;
  }
  
  .quote-form .btn {
    padding: 0.875rem;
    font-size: 0.95rem;
  }
  
  .quote-form .btn-hint {
    font-size: 0.7rem;
  }
  
  .consent-text {
    font-size: 0.85rem;
  }
}/* ===== SIMPLE GALLERY ===== */

/* Category Filter Container */
.gallery-filter-container {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.5rem, 1.5vw, 1rem);
  margin: clamp(1rem, 2vw, 2rem) 0 0;
  justify-content: center;
  align-items: center;
}

/* Filter Buttons */
.gallery-filter-btn {
  background: var(--card, #1a1a1a);
  color: var(--text, #ffffff);
  border: 2px solid var(--light, #2a2a2a);
  border-radius: var(--radius, 18px);
  padding: clamp(0.625rem, 1.5vw, 0.875rem) clamp(1rem, 2vw, 1.5rem);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow, 0 16px 40px rgba(0,0,0,.3));
}

.gallery-filter-btn:hover {
  background: var(--light, #2a2a2a);
  border-color: var(--brand, #3b82f6);
  transform: translateY(-2px);
  box-shadow: var(--shadow-colored, 0 16px 40px rgba(59,130,246,.15));
}

.gallery-filter-btn.active {
  background: var(--brand, #3b82f6);
  border-color: var(--brand, #3b82f6);
  color: #ffffff;
  box-shadow: var(--shadow-colored, 0 16px 40px rgba(59,130,246,.15));
}

.gallery-filter-btn.active:hover {
  background: var(--brand2, #60a5fa);
  border-color: var(--brand2, #60a5fa);
}

/* Empty State */
.gallery-empty {
  text-align: center;
  color: var(--muted, #a0a0a0);
  padding: 2rem;
  font-size: 1.1rem;
}

.simple-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.simple-gallery .gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius, 18px);
  overflow: hidden;
  cursor: pointer;
  background: var(--card, #1a1a1a);
  transition: all 0.3s ease;
  box-shadow: var(--shadow, 0 16px 40px rgba(0,0,0,.3));
}

.simple-gallery .gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-colored, 0 16px 40px rgba(59,130,246,.15));
}

.simple-gallery .gallery-item.hidden {
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
  grid-row: span 0;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.simple-gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
  filter: contrast(0.9) brightness(1.1) saturate(0.8);
  opacity: 1 !important;
  visibility: visible !important;
}

.simple-gallery .gallery-item:hover img {
  transform: scale(1.05);
}

/* ===== FULLSCREEN LIGHTBOX ===== */

.simple-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.simple-lightbox.active {
  display: flex;
  opacity: 1;
}

.simple-lightbox img {
  max-width: 100vw;
  max-height: 100vh;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: contrast(0.9) brightness(1.1) saturate(0.8);
  transition: transform 0.3s ease;
}

.simple-lightbox-close {
  position: fixed;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 50%;
  font-size: 1.8rem;
  font-weight: bold;
  transition: all 0.3s ease;
  z-index: 10001;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.simple-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.6);
  transform: scale(1.1);
}

.simple-lightbox-prev,
.simple-lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  cursor: pointer;
  padding: 20px 15px;
  font-size: 1.5rem;
  font-weight: bold;
  transition: all 0.3s ease;
  z-index: 10001;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.simple-lightbox-prev {
  left: 20px;
}

.simple-lightbox-next {
  right: 20px;
}

.simple-lightbox-prev:hover,
.simple-lightbox-next:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-50%) scale(1.1);
}

.simple-lightbox-counter {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  z-index: 10001;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.simple-lightbox-loading {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 1.2rem;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.7);
  padding: 20px 30px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1200px) {
  .gallery-filter-container {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  
  .gallery-filter-container::-webkit-scrollbar {
    height: 4px;
  }
  
  .gallery-filter-container::-webkit-scrollbar-thumb {
    background: var(--brand, #3b82f6);
    border-radius: 2px;
  }
}

@media (max-width: 768px) {
  .gallery-filter-container {
    justify-content: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
  }
  
  .gallery-filter-btn {
    flex-shrink: 0;
    white-space: nowrap;
  }
  
  .simple-gallery {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 0.5rem;
  }
  
  .simple-gallery .gallery-item {
    aspect-ratio: 1/1;
  }
  
  .simple-lightbox-close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
  }
  
  .simple-lightbox-prev,
  .simple-lightbox-next {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    padding: 15px 10px;
  }
  
  .simple-lightbox-prev {
    left: 10px;
  }
  
  .simple-lightbox-next {
    right: 10px;
  }
  
  .simple-lightbox-counter {
    bottom: 10px;
    font-size: 0.8rem;
    padding: 8px 15px;
  }
}

@media (max-width: 600px) {
  .gallery-filter-container {
    gap: 0.5rem;
  }
  
  .gallery-filter-btn {
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .simple-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  
  .simple-gallery .gallery-item {
    aspect-ratio: 1/1;
    border-radius: var(--radius, 18px);
  }
  
  .simple-gallery .gallery-item:hover {
    transform: translateY(-3px);
  }
  
  .gallery-filter-btn {
    min-height: 44px;
    padding: 0.5rem 0.875rem;
    font-size: 0.8125rem;
  }
}
/* ===== CTA STRIP ===== */

.cta-strip{
  background: var(--gradient-primary);
  color:#fff;
  position: relative;
  overflow: hidden;
}

.cta-strip::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-warm);
  opacity: 0.1;
  z-index: 1;
  transition: opacity 0.4s ease;
}

.cta-strip:hover::before{
  opacity: 0.15;
}

/* Enhanced CTA animations */
.cta-strip::after{
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(245,158,11,0.1), transparent);
  opacity: 0;
  transition: all 0.8s ease;
  z-index: 1;
}

.cta-strip:hover::after{
  opacity: 1;
  transform: rotate(360deg);
}
.cta-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:clamp(1.5rem, 3vw, 2.5rem);
  padding:clamp(2rem, 4vw, 3rem) 0;
  position: relative;
  z-index: 2;
}
.cta-text h3{
  margin:0 0 0.5rem;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.cta-text p{
  margin:0;
  opacity:.9;
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  line-height: 1.6;
  font-weight: 400;
}
.cta-actions{
  display:flex;
  gap:clamp(1rem, 2vw, 1.5rem);
  flex-wrap:wrap;
}
.cta-actions .btn{
  background:#fff;
  color:var(--brand);
  font-weight:600;
  font-size: clamp(0.95rem, 1.8vw, 1rem);
  letter-spacing: -0.005em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-actions .btn{
  position: relative;
  overflow: hidden;
}

.cta-actions .btn::before{
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(245,158,11,0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s ease;
}

.cta-actions .btn:hover::before{
  width: 300px;
  height: 300px;
}

.cta-actions .btn:hover{
  background: var(--brand-warm-light);
  color: var(--brand);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 30px rgba(0,0,0,.3);
}

.cta-actions .btn-ghost{
  background:transparent;
  color:#fff;
  border:1px solid rgba(255,255,255,.6);
  font-size: clamp(0.95rem, 1.8vw, 1rem);
  letter-spacing: -0.005em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-actions .btn-ghost{
  position: relative;
  overflow: hidden;
}

.cta-actions .btn-ghost::before{
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s ease;
}

.cta-actions .btn-ghost:hover::before{
  width: 300px;
  height: 300px;
}

.cta-actions .btn-ghost:hover{
  background: rgba(255,255,255,.1);
  border-color: var(--brand-warm);
  color: var(--brand-warm-light);
  transform: translateY(-3px) scale(1.05);
}/* ===== FOOTER ===== */

.footer{
  background:#0b1220;
  color:#fff;
  padding:2rem 0;
}
.foot{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:1.5rem;
}
.foot-brand{
  display:flex;
  align-items:center;
  gap:.5rem;
}
.foot-brand img{
  height:32px;
}
.foot-links{
  display:flex;
  align-items:center;
  gap:0.75rem;
  font-size:.9rem;
}
.foot-links a{
  color:rgba(255,255,255,0.8);
  text-decoration:none;
  transition:color 0.3s ease;
}
.foot-links a:hover{
  color:#60a5fa;
  opacity:1;
}
.facebook-link{
  display:flex;
  align-items:center;
  gap:0.5rem;
  color:rgba(255,255,255,0.8);
  text-decoration:none;
  transition:color 0.3s ease;
}
.facebook-link:hover{
  color:#1877f2;
  opacity:1;
}
.facebook-link svg{
  flex-shrink:0;
}
.foot-links .separator{
  opacity:.4;
}
.copy{
  font-size:.9rem;
  opacity:.7;
}

@media (max-width: 768px){
  .foot{
    flex-direction:column;
    text-align:center;
    gap:1rem;
  }
  .foot-brand{
    flex-direction:column;
  }
}/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Tablet és kisebb */
@media (max-width:1080px){
  .container.nav{ height:64px; }
  .menu{ gap:1rem; }
}

/* Tablet */
@media (max-width:920px){
  #blokkok .feature{
    grid-template-columns:1fr !important;
    gap: clamp(2rem, 4vw, 3rem);
    padding: clamp(1.5rem, 3vw, 2rem);
  }
  /* Ensure text comes before image on single-column layout */
  #blokkok .feature .copy{ 
    order:1 !important; 
  }
  #blokkok .feature .media{ 
    order:2 !important; 
  }
  
  /* Reset any reverse ordering on mobile */
  #blokkok .feature.reverse .copy{ 
    order:1 !important; 
  }
  #blokkok .feature.reverse .media{ 
    order:2 !important; 
  }
}

/* Mobil */
@media (max-width:720px){
  .menu{ 
    display:none; 
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .burger{ display:flex; }
  
  #nav-toggle:checked ~ .menu{ 
    display:flex; 
    opacity: 1;
    transform: translateY(0);
    flex-direction:column; 
    position:absolute; 
    top:72px; left:0; right:0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding:clamp(1.5rem, 4vw, 2rem);
    gap:clamp(1rem, 3vw, 1.5rem);
    border-top: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  /* Mobile menu backdrop */
  #nav-toggle:checked ~ .menu::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(2px);
    z-index: -1;
    animation: fadeIn 0.3s ease;
  }
  
  /* Mobile menu link animations */
  #nav-toggle:checked ~ .menu a {
    animation: slideInLeft 0.3s ease forwards;
    opacity: 0;
  }
  
  #nav-toggle:checked ~ .menu a:nth-child(1) { animation-delay: 0.1s; }
  #nav-toggle:checked ~ .menu a:nth-child(2) { animation-delay: 0.15s; }
  #nav-toggle:checked ~ .menu a:nth-child(3) { animation-delay: 0.2s; }
  #nav-toggle:checked ~ .menu a:nth-child(4) { animation-delay: 0.25s; }
  #nav-toggle:checked ~ .menu a:nth-child(5) { animation-delay: 0.3s; }
  #nav-toggle:checked ~ .menu a:nth-child(6) { animation-delay: 0.35s; }
}

/* Keyframe animations */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
  
  .menu a{
    padding: 0.75rem 0;
    font-size: clamp(1rem, 4vw, 1.125rem);
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  
  .menu a:last-child{
    border-bottom: none;
  }
  
  .hero .container{
    padding: clamp(20px, 6vw, 40px) clamp(1rem, 4vw, 1.5rem);
  }
  /* Mobile readability */
  body{ 
    font-size:17px; 
    line-height:1.7; 
    letter-spacing: -0.005em;
  }
  .lead{ 
    font-size:1.06rem; 
    line-height:1.7; 
    letter-spacing: -0.005em;
  }
  #blokkok .copy p{ 
    font-size:1.12rem; 
    line-height:1.72; 
    letter-spacing: -0.005em;
  }
  #blokkok .copy h3{ 
    font-size:1.35rem; 
    letter-spacing: -0.015em;
  }
  .hero-card{ padding: clamp(20px, 4vw, 28px); }
  .hero-card .hero-subtitle{ 
    line-height:1.5; 
    letter-spacing: -0.005em;
  }
  .hero-card .hero-title{
    letter-spacing: -0.015em;
  }
}

/* Kis mobil */
@media (max-width:520px){
  .card-grid{ 
    grid-template-columns:1fr; 
    gap: clamp(1rem, 2vw, 1.5rem);
  }
  
  .card{
    padding: clamp(1.25rem, 4vw, 1.75rem);
    min-height: 180px;
  }
  
  .card-center{
    max-width: 280px;
  }
  
  /* Ensure blocks are single column on small mobile too */
  #blokkok .feature{
    grid-template-columns:1fr !important;
  }
  #blokkok .feature .copy{ 
    order:1 !important; 
  }
  #blokkok .feature .media{ 
    order:2 !important; 
  }
  #blokkok .feature.reverse .copy{ 
    order:1 !important; 
  }
  #blokkok .feature.reverse .media{ 
    order:2 !important; 
  }
  
  .cta-inner{ 
    flex-direction:column; 
    text-align:center; 
    gap: clamp(1rem, 2vw, 1.5rem);
  }
}

/* Enhanced mobile touch interactions */
@media (max-width: 768px) {
  .btn{
    min-height: 44px;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
  
  .card{
    min-height: 44px;
    cursor: pointer;
  }
  
  .menu a{
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  
  /* Better touch targets */
  .burger{
    min-width: 44px;
    min-height: 44px;
  }
}

/* Mobile performance optimizations */
@media (max-width: 768px) {
  /* Reduce animations on mobile for better performance */
  .card::after,
  .card::before,
  .hero-card::after,
  .cta-strip::after {
    animation-duration: 0.3s;
  }
  
  /* Simplify hover effects on mobile */
  .card:hover{
    transform: translateY(-2px) scale(1.01);
  }
  
  .hero-card:hover{
    transform: translateY(-2px) scale(1.005);
  }
}/* ===== LEGAL PAGES (Privacy Policy & Terms of Service) ===== */

.legal-page {
  background: var(--bg);
  padding: clamp(3rem, 6vw, 6rem) 0;
  min-height: 100vh;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background: var(--card);
  border-radius: 24px;
  padding: clamp(2rem, 4vw, 3.5rem);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-content h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.legal-content .lead {
  font-size: clamp(1.125rem, 2.2vw, 1.3rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(1.5rem, 3vw, 2rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Legal sections */
.legal-section {
  margin-bottom: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(1.5rem, 3vw, 2rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.legal-section h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  position: relative;
  padding-left: 1rem;
}

.legal-section h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 4px;
  height: 1.2em;
  background: var(--gradient-primary);
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.4);
}

.legal-section h3 {
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.legal-section p {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1rem;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

/* Info boxes */
.info-box {
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  margin: 1.25rem 0;
}

.info-box p {
  margin-bottom: 0.5rem;
  font-size: clamp(0.95rem, 1.9vw, 1.05rem);
}

.info-box p:last-child {
  margin-bottom: 0;
}

.info-box strong {
  color: var(--brand2);
  font-weight: 600;
}

/* Legal lists */
.legal-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
}

.legal-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

.legal-list li:last-child {
  margin-bottom: 0;
}

.legal-list li i {
  color: var(--brand2);
  font-size: 1.1em;
  margin-top: 0.25em;
  flex-shrink: 0;
}

.legal-list li strong {
  color: var(--text);
  font-weight: 600;
}

/* Notice boxes */
.notice {
  background: rgba(251, 191, 36, 0.08);
  border-left: 3px solid var(--brand-warm);
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
  border-radius: 0 8px 8px 0;
  font-size: clamp(0.95rem, 1.9vw, 1.05rem);
  color: rgba(255, 255, 255, 0.9);
}

.notice strong {
  color: var(--brand-warm-light);
  font-weight: 600;
}

/* Rights grid */
.rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
  margin: 1.5rem 0;
}

.right-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.right-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.15);
}

.right-card i {
  font-size: 2.5rem;
  color: var(--brand2);
  margin-bottom: 1rem;
  display: block;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.right-card h3 {
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.right-card p {
  font-size: clamp(0.9rem, 1.8vw, 0.95rem);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

/* Contact box */
.contact-box {
  background: var(--light);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
  margin: 1.5rem 0;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
}

.contact-method:last-child {
  margin-bottom: 0;
}

.contact-method i {
  font-size: 1.5rem;
  color: var(--brand2);
  flex-shrink: 0;
}

.contact-method div {
  flex: 1;
}

.contact-method strong {
  display: block;
  color: var(--text);
  font-size: clamp(0.9rem, 1.8vw, 0.95rem);
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.contact-method a {
  color: var(--brand2);
  text-decoration: none;
  font-size: clamp(1rem, 2vw, 1.1rem);
  transition: opacity 0.3s ease;
}

.contact-method a:hover {
  opacity: 0.8;
}

/* Steps grid (for Terms) */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin: 1.5rem 0;
}

.step-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.step-card:hover::before {
  opacity: 1;
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.15);
}

.step-number {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.step-card h3 {
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: clamp(0.9rem, 1.8vw, 0.95rem);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

/* Warranty grid */
.warranty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin: 1.5rem 0;
}

.warranty-card {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.warranty-card:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.15);
}

.warranty-card i {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}

.warranty-card h3 {
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.warranty-card p {
  font-size: clamp(0.9rem, 1.8vw, 0.95rem);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

/* CTA box */
.cta-box {
  background: var(--light);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  margin: 1.5rem 0;
  text-align: center;
}

.cta-box h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.cta-box p {
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-actions .btn {
  font-size: clamp(0.95rem, 1.9vw, 1rem);
  padding: 0.875rem 1.75rem;
  border-radius: 12px;
}

.cta-actions .btn-primary {
  background: var(--brand);
  color: #fff;
  border: none;
}

.cta-actions .btn-primary:hover {
  background: var(--brand2);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.cta-actions .btn-outline {
  background: transparent;
  color: var(--brand2);
  border: 2px solid var(--brand2);
}

.cta-actions .btn-outline:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

/* Legal footer */
.legal-footer {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.legal-footer p {
  font-size: clamp(0.9rem, 1.8vw, 0.95rem);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.legal-footer p:last-child {
  margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .legal-page {
    padding: clamp(2rem, 4vw, 3rem) 0;
  }

  .legal-content {
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: 16px;
  }

  .rights-grid,
  .steps-grid,
  .warranty-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .cta-actions {
    flex-direction: column;
  }

  .cta-actions .btn {
    width: 100%;
  }

  .contact-method {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .legal-section h2 {
    font-size: clamp(1.3rem, 4vw, 1.6rem);
  }
}

/* Smooth scroll for anchor links */
html {
  scroll-behavior: smooth;
}

/* Link styling in legal content */
.legal-content a:not(.btn) {
  color: var(--brand2);
  text-decoration: underline;
  text-decoration-color: rgba(96, 165, 250, 0.3);
  text-underline-offset: 2px;
  transition: all 0.3s ease;
}

.legal-content a:not(.btn):hover {
  color: var(--brand);
  text-decoration-color: var(--brand);
}

/* Print styles */
@media print {
  .legal-page {
    background: white;
    padding: 0;
  }

  .legal-content {
    background: white;
    box-shadow: none;
    border: none;
    color: black;
  }

  .legal-content h1,
  .legal-content h2,
  .legal-content h3,
  .legal-content p,
  .legal-content li {
    color: black;
    -webkit-text-fill-color: black;
  }

  .info-box,
  .notice {
    border: 1px solid #ccc;
    background: #f5f5f5;
  }

  .btn {
    display: none;
  }
}

/**
 * Forminator Custom Styling for Zsobi Theme
 * Matches theme design with dark aesthetic and blue accents
 * Uses !important to override Forminator's default styles
 */

/* Use theme color variables */
:root {
  --form-accent: #60a5fa;
  --form-accent-light: #93c5fd;
  --form-bg: rgba(255, 255, 255, 0.05);
  --form-border: rgba(255, 255, 255, 0.1);
  --form-text: rgba(255, 255, 255, 0.9);
  --form-text-muted: rgba(255, 255, 255, 0.7);
  --input-bg: rgba(255, 255, 255, 0.95);
  --input-text: #0b1220;
  --input-border: transparent;
  --input-focus-border: var(--form-accent);
  --input-focus-shadow: 0 0 0 3px rgba(96, 165, 250, 0.1);
}

/* Form Container - HIGH SPECIFICITY */
.quote-form-container .forminator-form,
#blokkok .forminator-form,
.section-innova .forminator-form {
  background: var(--form-bg) !important;
  border: 1px solid var(--form-border) !important;
  border-radius: 12px !important;
  padding: 1.5rem !important;
  margin: 0 !important;
}

/* Labels */
.quote-form-container .forminator-label,
#blokkok .forminator-label {
  color: var(--form-text) !important;
  font-weight: 600 !important;
}

/* Required Field Indicator */
.quote-form-container .forminator-required,
#blokkok .forminator-required {
  color: #ef4444 !important;
}

/* Input Fields - HIGH SPECIFICITY */
.quote-form-container .forminator-field input[type="text"],
.quote-form-container .forminator-field input[type="email"],
.quote-form-container .forminator-field input[type="tel"],
.quote-form-container .forminator-field input[type="number"],
.quote-form-container .forminator-field select,
.quote-form-container .forminator-field textarea,
#blokkok .forminator-field input[type="text"],
#blokkok .forminator-field input[type="email"],
#blokkok .forminator-field input[type="tel"],
#blokkok .forminator-field input[type="number"],
#blokkok .forminator-field select,
#blokkok .forminator-field textarea {
  width: 100% !important;
  padding: 0.875rem 1rem !important;
  background: var(--input-bg) !important;
  border: 2px solid var(--input-border) !important;
  border-radius: 8px !important;
  font-size: 1rem !important;
  font-family: inherit !important;
  color: var(--input-text) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-sizing: border-box !important;
}

.quote-form-container .forminator-field input[type="text"]:focus,
.quote-form-container .forminator-field input[type="email"]:focus,
.quote-form-container .forminator-field input[type="tel"]:focus,
.quote-form-container .forminator-field input[type="number"]:focus,
.quote-form-container .forminator-field select:focus,
.quote-form-container .forminator-field textarea:focus,
#blokkok .forminator-field input[type="text"]:focus,
#blokkok .forminator-field input[type="email"]:focus,
#blokkok .forminator-field input[type="tel"]:focus,
#blokkok .forminator-field input[type="number"]:focus,
#blokkok .forminator-field select:focus,
#blokkok .forminator-field textarea:focus {
  outline: none !important;
  border-color: var(--input-focus-border) !important;
  background: #ffffff !important;
  box-shadow: var(--input-focus-shadow) !important;
}

.quote-form-container .forminator-field input::placeholder,
.quote-form-container .forminator-field textarea::placeholder,
#blokkok .forminator-field input::placeholder,
#blokkok .forminator-field textarea::placeholder {
  color: rgba(11, 18, 32, 0.5) !important;
}

.quote-form-container .forminator-field textarea,
#blokkok .forminator-field textarea {
  resize: vertical !important;
  min-height: 100px !important;
}

/* Submit Button - HIGH SPECIFICITY */
.quote-form-container .forminator-button,
.quote-form-container input.forminator-button,
.quote-form-container button.forminator-button,
#blokkok .forminator-button,
#blokkok input.forminator-button,
#blokkok button.forminator-button {
  width: 100% !important;
  padding: 1rem !important;
  background: var(--form-accent) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 8px !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative !important;
}

.quote-form-container .forminator-button:hover:not(:disabled),
.quote-form-container input.forminator-button:hover:not(:disabled),
.quote-form-container button.forminator-button:hover:not(:disabled),
#blokkok .forminator-button:hover:not(:disabled),
#blokkok input.forminator-button:hover:not(:disabled),
#blokkok button.forminator-button:hover:not(:disabled) {
  background: var(--form-accent-light) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(96, 165, 250, 0.3) !important;
}

.quote-form-container .forminator-button:disabled,
.quote-form-container input.forminator-button:disabled,
.quote-form-container button.forminator-button:disabled,
#blokkok .forminator-button:disabled,
#blokkok input.forminator-button:disabled,
#blokkok button.forminator-button:disabled {
  background: rgba(96, 165, 250, 0.3) !important;
  cursor: not-allowed !important;
  opacity: 0.6 !important;
}

/* Consent Checkbox */
.quote-form-container .forminator-field-consent,
.quote-form-container .forminator-checkbox,
#blokkok .forminator-field-consent,
#blokkok .forminator-checkbox {
  margin: 1.5rem 0 !important;
}

.quote-form-container .forminator-checkbox input[type="checkbox"],
#blokkok .forminator-checkbox input[type="checkbox"] {
  accent-color: var(--form-accent) !important;
  width: 20px !important;
  height: 20px !important;
  cursor: pointer !important;
}

.quote-form-container .forminator-checkbox-label,
.quote-form-container .consent-text,
#blokkok .forminator-checkbox-label,
#blokkok .consent-text {
  color: var(--form-text) !important;
  font-size: 0.9rem !important;
}

.quote-form-container .forminator-checkbox a,
.quote-form-container .consent-text a,
#blokkok .forminator-checkbox a,
#blokkok .consent-text a {
  color: var(--form-accent) !important;
  text-decoration: underline !important;
}

/* Messages */
.quote-form-container .forminator-message,
#blokkok .forminator-message {
  padding: 0.75rem 1rem !important;
  border-radius: 8px !important;
  font-size: 0.9rem !important;
}

.quote-form-container .forminator-message.forminator-success,
#blokkok .forminator-message.forminator-success {
  background: rgba(34, 197, 94, 0.1) !important;
  border: 1px solid rgba(34, 197, 94, 0.3) !important;
  color: #22c55e !important;
}

.quote-form-container .forminator-message.forminator-error,
#blokkok .forminator-message.forminator-error {
  background: rgba(239, 68, 68, 0.1) !important;
  border: 1px solid rgba(239, 68, 68, 0.3) !important;
  color: #ef4444 !important;
}

/* Responsive */
@media (max-width: 768px) {
  .quote-form-container .forminator-form,
  #blokkok .forminator-form,
  .section-innova .forminator-form {
    padding: 1.25rem !important;
  }
  
  .quote-form-container .forminator-field input,
  .quote-form-container .forminator-field textarea,
  #blokkok .forminator-field input,
  #blokkok .forminator-field textarea,
  .section-innova .forminator-field input,
  .section-innova .forminator-field textarea {
    font-size: 16px !important; /* Prevent iOS zoom */
  }
  
  /* Stack columns on mobile */
  .quote-form-container .forminator-col,
  #blokkok .forminator-col,
  .section-innova .forminator-col {
    flex: 1 1 100% !important;
    margin-right: 0 !important;
  }
}

/* Reset Forminator defaults */
.quote-form-container .forminator-row,
#blokkok .forminator-row,
.section-innova .forminator-row {
  margin: 0 !important;
  gap: 0.75rem !important; /* Space between columns */
  display: flex !important;
  flex-wrap: wrap !important;
}

.quote-form-container .forminator-col,
#blokkok .forminator-col,
.section-innova .forminator-col {
  padding: 0 !important;
  margin-right: 0.75rem !important; /* Space between columns */
}

/* Remove right margin from last column */
.quote-form-container .forminator-col:last-child,
#blokkok .forminator-col:last-child,
.section-innova .forminator-col:last-child {
  margin-right: 0 !important;
}

/* Space between field wraps */
.quote-form-container .forminator-field-wrap,
#blokkok .forminator-field-wrap,
.section-innova .forminator-field-wrap {
  margin-bottom: 1rem !important; /* Space between rows */
}

/* For fields with multiple columns in a row */
.quote-form-container .forminator-row .forminator-col .forminator-field-wrap,
#blokkok .forminator-row .forminator-col .forminator-field-wrap,
.section-innova .forminator-row .forminator-col .forminator-field-wrap {
  margin-bottom: 0 !important; /* Remove vertical spacing in same row */
  margin-right: 0 !important;
}

/* Re-add margin to last field in row */
.quote-form-container .forminator-row .forminator-col .forminator-field-wrap:last-child,
#blokkok .forminator-row .forminator-col .forminator-field-wrap:last-child,
.section-innova .forminator-row .forminator-col .forminator-field-wrap:last-child {
  margin-bottom: 1rem !important;
}
@font-face{font-family:Nunito;src:url(//zsobikemeny.hu/wp-content/plugins/gdpr-cookie-compliance/dist/fonts/nunito-v8-latin-regular.eot);src:url(//zsobikemeny.hu/wp-content/plugins/gdpr-cookie-compliance/dist/fonts/nunito-v8-latin-regular.eot?#iefix) format("embedded-opentype"),url(//zsobikemeny.hu/wp-content/plugins/gdpr-cookie-compliance/dist/fonts/nunito-v8-latin-regular.woff2) format("woff2"),url(//zsobikemeny.hu/wp-content/plugins/gdpr-cookie-compliance/dist/fonts/nunito-v8-latin-regular.woff) format("woff"),url(//zsobikemeny.hu/wp-content/plugins/gdpr-cookie-compliance/dist/fonts/nunito-v8-latin-regular.ttf) format("truetype"),url(//zsobikemeny.hu/wp-content/plugins/gdpr-cookie-compliance/dist/fonts/nunito-v8-latin-regular.svg#svgFontName) format("svg");font-style:normal;font-weight:400;font-display:swap}@font-face{font-family:Nunito;src:url(//zsobikemeny.hu/wp-content/plugins/gdpr-cookie-compliance/dist/fonts/nunito-v8-latin-700.eot);src:url(//zsobikemeny.hu/wp-content/plugins/gdpr-cookie-compliance/dist/fonts/nunito-v8-latin-700.eot?#iefix) format("embedded-opentype"),url(//zsobikemeny.hu/wp-content/plugins/gdpr-cookie-compliance/dist/fonts/nunito-v8-latin-700.woff2) format("woff2"),url(//zsobikemeny.hu/wp-content/plugins/gdpr-cookie-compliance/dist/fonts/nunito-v8-latin-700.woff) format("woff"),url(//zsobikemeny.hu/wp-content/plugins/gdpr-cookie-compliance/dist/fonts/nunito-v8-latin-700.ttf) format("truetype"),url(//zsobikemeny.hu/wp-content/plugins/gdpr-cookie-compliance/dist/fonts/nunito-v8-latin-700.svg#svgFontName) format("svg");font-style:normal;font-weight:700;font-display:swap}.gdpr_lightbox-active,.gdpr_lightbox-active body{overflow:hidden}.gdpr_lightbox{z-index:9990;position:fixed;top:0;right:0;bottom:0;left:0;white-space:nowrap;background:#0b0b0b;background:rgba(0,0,0,.9);outline:none!important;opacity:0;transition:opacity .3s ease}.gdpr_lightbox.gdpr_lightbox-opened{opacity:1}.gdpr_lightbox.gdpr_lightbox-closed{opacity:0}.gdpr_lightbox *{box-sizing:border-box}.gdpr_lightbox-wrap{z-index:9990;position:fixed;top:0;right:0;bottom:0;left:0;text-align:center;outline:none!important}.gdpr_lightbox-wrap:before{content:"";display:inline-block;height:100%;vertical-align:middle;margin-right:-.25em}.gdpr_lightbox-loader{z-index:9991;color:#fff;position:absolute;top:50%;margin-top:-.8em;width:100%;text-align:center;font-size:14px;font-family:Arial,Helvetica,sans-serif;opacity:0;transition:opacity .3s ease}.gdpr_lightbox-loading .gdpr_lightbox-loader{opacity:1}.gdpr_lightbox-container{z-index:9992;position:relative;text-align:left;vertical-align:middle;display:inline-block;white-space:normal;max-width:100%;max-height:100%;outline:none!important}.gdpr_lightbox-content{z-index:9993;width:100%;transform:scale(1);transition:transform .3s ease}.gdpr_lightbox-closed .gdpr_lightbox-content,.gdpr_lightbox-loading .gdpr_lightbox-content{transform:scale(.8)}.gdpr_lightbox-content:after{content:"";position:absolute;left:0;top:0;bottom:0;display:block;right:0;width:auto;height:auto;z-index:-1;box-shadow:0 0 8px rgba(0,0,0,.6)}.gdpr_lightbox-close,.gdpr_lightbox-close:active,.gdpr_lightbox-close:focus,.gdpr_lightbox-close:hover,.gdpr_lightbox-close:visited{z-index:9994;width:35px;height:35px;position:fixed;right:0;top:0;-webkit-appearance:none;cursor:pointer;text-decoration:none;text-align:center;padding:0;color:#fff;font-style:normal;font-size:35px;font-family:Arial,Baskerville,monospace;line-height:35px;text-shadow:0 1px 2px rgba(0,0,0,.6);border:0;background:none;box-shadow:none}.gdpr_lightbox-close::-moz-focus-inner{border:0;padding:0}.gdpr_lightbox-close:active{top:1px}.gdpr_lightbox-image img{max-width:100%;display:block;line-height:0;border:0}.gdpr_lightbox-iframe .gdpr_lightbox-container{width:100%;max-width:964px}.gdpr_lightbox-iframe-container{width:100%;height:0;padding-top:56.25%;overflow:auto;pointer-events:auto;transform:translateZ(0);-webkit-overflow-scrolling:touch}.gdpr_lightbox-iframe-container iframe{position:absolute;display:block;top:0;left:0;width:100%;height:100%;box-shadow:0 0 8px rgba(0,0,0,.6);background:#000}body.moove_gdpr_overflow{overflow:hidden}body.moove_gdpr_overflow #page{position:relative;z-index:10}body.moove_gdpr_overflow #main-header,body.moove_gdpr_overflow #page-container{z-index:99}.gdpr_lightbox-hide{display:none}.cookie-switch.focus-g{border-radius:50px}#moove_gdpr_cookie_modal .mgbutton.focus-g,.cookie-switch.focus-g{box-shadow:1px 1px 5px #010101}#moove_gdpr_cookie_info_bar .gdpr-fbo-0{-ms-flex-order:1;order:1}#moove_gdpr_cookie_info_bar .gdpr-fbo-1{-ms-flex-order:2;order:2}#moove_gdpr_cookie_info_bar .gdpr-fbo-2{-ms-flex-order:3;order:3}#moove_gdpr_cookie_info_bar .gdpr-fbo-3{-ms-flex-order:4;order:4}#moove_gdpr_cookie_info_bar .gdpr-fbo-4{-ms-flex-order:5;order:5}#moove_gdpr_cookie_info_bar .gdpr-fbo-5{-ms-flex-order:6;order:6}.gdpr-sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}#moove_gdpr_cookie_modal li a .gdpr-svg-icon,#moove_gdpr_cookie_modal li button .gdpr-svg-icon{height:30px;display:inline-block;float:left;width:35px;margin-right:5px;position:relative;top:0}#moove_gdpr_cookie_modal li a .gdpr-svg-icon svg,#moove_gdpr_cookie_modal li button .gdpr-svg-icon svg{height:30px;width:auto;background-color:transparent}body.gdpr-no-icons #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu .gdpr-svg-icon,body.gdpr-no-icons #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li a i,body.gdpr-no-icons #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li a span.gdpr-icon,body.gdpr-no-icons #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li button i,body.gdpr-no-icons #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li button span.gdpr-icon{display:none}.moove_gdpr_cookie_modal_open .gdpr_lightbox-content:after{box-shadow:none}#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-modal-footer-content{-ms-flex-pack:justify;justify-content:space-between}#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-modal-footer-content .moove-gdpr-button-holder{margin:0 -4px;max-width:calc(100% + 8px);width:auto}#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-modal-footer-content .moove-gdpr-button-holder a.mgbutton,#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-modal-footer-content .moove-gdpr-button-holder button.mgbutton{margin:2px}@media (min-width:768px){#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-modal-footer-content .moove-gdpr-button-holder a.mgbutton,#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-modal-footer-content .moove-gdpr-button-holder button.mgbutton{margin:2px 4px}}#moove_gdpr_cookie_info_bar{content-visibility:auto}#moove_gdpr_cookie_info_bar .moove-gdpr-button-holder{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}#moove_gdpr_cookie_info_bar.gdpr-full-screen-infobar .moove-gdpr-button-holder .moove-gdpr-infobar-close-btn,#moove_gdpr_cookie_info_bar.gdpr-full-screen-infobar.moove-gdpr-dark-scheme .moove-gdpr-button-holder .moove-gdpr-infobar-close-btn{display:none}#moove_gdpr_cookie_info_bar.gdpr-full-screen-infobar.moove-gdpr-dark-scheme .moove-gdpr-infobar-close-btn.gdpr-content-close-btn,#moove_gdpr_cookie_info_bar.gdpr-full-screen-infobar .moove-gdpr-infobar-close-btn.gdpr-content-close-btn{display:block;position:absolute;top:-15px;right:-15px;background-color:#fff}#moove_gdpr_cookie_info_bar.gdpr-full-screen-infobar.moove-gdpr-dark-scheme .moove-gdpr-infobar-close-btn.gdpr-content-close-btn.focus-g,#moove_gdpr_cookie_info_bar.gdpr-full-screen-infobar.moove-gdpr-dark-scheme .moove-gdpr-infobar-close-btn.gdpr-content-close-btn:hover,#moove_gdpr_cookie_info_bar.gdpr-full-screen-infobar .moove-gdpr-infobar-close-btn.gdpr-content-close-btn.focus-g,#moove_gdpr_cookie_info_bar.gdpr-full-screen-infobar .moove-gdpr-infobar-close-btn.gdpr-content-close-btn:hover{background-color:#626262;color:#fff}#moove_gdpr_cookie_info_bar.gdpr-full-screen-infobar.moove-gdpr-dark-scheme .moove-gdpr-info-bar-container,#moove_gdpr_cookie_info_bar.gdpr-full-screen-infobar .moove-gdpr-info-bar-container{position:relative}#moove_gdpr_cookie_info_bar .moove-gdpr-infobar-close-btn{background-color:transparent;padding:0;display:inline-block;float:right;position:relative;font-size:14px;line-height:20px;margin:3px 4px;width:36px;height:36px;border-radius:50%;box-shadow:inset 0 0 0 1px #626262;color:#626262;transition:all .3s ease}#moove_gdpr_cookie_info_bar .moove-gdpr-infobar-close-btn.gdpr-content-close-btn{display:none}#moove_gdpr_cookie_info_bar .moove-gdpr-infobar-close-btn.focus-g,#moove_gdpr_cookie_info_bar .moove-gdpr-infobar-close-btn:hover{background-color:#626262;color:#fff}#moove_gdpr_cookie_info_bar .moove-gdpr-infobar-close-btn i{font-size:32px;top:-1px;position:relative;height:30px;display:block;overflow:hidden}#moove_gdpr_cookie_info_bar.moove-gdpr-dark-scheme .moove-gdpr-button-holder .moove-gdpr-infobar-close-btn{color:#fff;opacity:.7;box-shadow:inset 0 0 0 1px #fff}#moove_gdpr_cookie_info_bar.moove-gdpr-dark-scheme .moove-gdpr-button-holder .moove-gdpr-infobar-close-btn.focus-g,#moove_gdpr_cookie_info_bar.moove-gdpr-dark-scheme .moove-gdpr-button-holder .moove-gdpr-infobar-close-btn:hover{background-color:#fff;opacity:1;color:#fff}#moove_gdpr_cookie_info_bar.gdpr-full-screen-infobar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content a.mgbutton.change-settings-button,#moove_gdpr_cookie_info_bar.gdpr-full-screen-infobar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton.change-settings-button{text-decoration:none}#moove_gdpr_cookie_modal .cookie-switch .cookie-slider,#moove_gdpr_cookie_modal .switch .slider{overflow:visible}#moove_gdpr_cookie_modal{margin:0 auto;margin-top:0;min-height:60vh;font-family:Nunito,sans-serif;content-visibility:hidden}#moove_gdpr_cookie_modal span.tab-title{display:block}#moove_gdpr_cookie_modal button{letter-spacing:0;outline:none;cursor:pointer}#moove_gdpr_cookie_modal *{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-family:inherit}#moove_gdpr_cookie_modal .cookie-switch,#moove_gdpr_cookie_modal .switch{position:relative;display:inline-block;width:50px;height:30px}#moove_gdpr_cookie_modal .cookie-switch input,#moove_gdpr_cookie_modal .switch input{display:none}#moove_gdpr_cookie_modal .cookie-switch .cookie-slider,#moove_gdpr_cookie_modal .cookie-switch .slider,#moove_gdpr_cookie_modal .switch .cookie-slider,#moove_gdpr_cookie_modal .switch .slider{position:absolute;cursor:pointer;top:0;left:0;right:0;bottom:0;background-color:red;transition:.4s;margin:0;padding:0}#moove_gdpr_cookie_modal .cookie-switch .cookie-slider:before,#moove_gdpr_cookie_modal .cookie-switch .slider:before,#moove_gdpr_cookie_modal .switch .cookie-slider:before,#moove_gdpr_cookie_modal .switch .slider:before{position:absolute;content:"";height:26px;width:26px;left:1px;bottom:1px;transition:.4s;border:1px solid #f2f2f2;border-radius:50%;background-color:#fff;box-shadow:0 5px 15px 0 rgba(0,0,0,.25);display:block;box-sizing:content-box}#moove_gdpr_cookie_modal .cookie-switch .cookie-slider:after,#moove_gdpr_cookie_modal .cookie-switch .slider:after,#moove_gdpr_cookie_modal .switch .cookie-slider:after,#moove_gdpr_cookie_modal .switch .slider:after{content:attr(data-text-disabled);position:absolute;top:0;left:60px;font-weight:700;font-size:16px;line-height:30px;color:red;display:block;white-space:nowrap}#moove_gdpr_cookie_modal .cookie-switch .cookie-slider.cookie-round,#moove_gdpr_cookie_modal .cookie-switch .cookie-slider.round,#moove_gdpr_cookie_modal .cookie-switch .slider.cookie-round,#moove_gdpr_cookie_modal .cookie-switch .slider.round,#moove_gdpr_cookie_modal .switch .cookie-slider.cookie-round,#moove_gdpr_cookie_modal .switch .cookie-slider.round,#moove_gdpr_cookie_modal .switch .slider.cookie-round,#moove_gdpr_cookie_modal .switch .slider.round{border-radius:34px}#moove_gdpr_cookie_modal .cookie-switch .cookie-slider.cookie-round:before,#moove_gdpr_cookie_modal .cookie-switch .cookie-slider.round:before,#moove_gdpr_cookie_modal .cookie-switch .slider.cookie-round:before,#moove_gdpr_cookie_modal .cookie-switch .slider.round:before,#moove_gdpr_cookie_modal .switch .cookie-slider.cookie-round:before,#moove_gdpr_cookie_modal .switch .cookie-slider.round:before,#moove_gdpr_cookie_modal .switch .slider.cookie-round:before,#moove_gdpr_cookie_modal .switch .slider.round:before{border-radius:50%}#moove_gdpr_cookie_modal .cookie-switch input:checked+.cookie-slider,#moove_gdpr_cookie_modal .cookie-switch input:checked+.slider,#moove_gdpr_cookie_modal .switch input:checked+.cookie-slider,#moove_gdpr_cookie_modal .switch input:checked+.slider{background-color:#2e9935}#moove_gdpr_cookie_modal .cookie-switch input:checked+.cookie-slider:after,#moove_gdpr_cookie_modal .cookie-switch input:checked+.slider:after,#moove_gdpr_cookie_modal .switch input:checked+.cookie-slider:after,#moove_gdpr_cookie_modal .switch input:checked+.slider:after{content:attr(data-text-enable);color:#2e9935;white-space:nowrap}#moove_gdpr_cookie_modal .cookie-switch input:focus+.cookie-slider,#moove_gdpr_cookie_modal .cookie-switch input:focus+.slider,#moove_gdpr_cookie_modal .switch input:focus+.cookie-slider,#moove_gdpr_cookie_modal .switch input:focus+.slider{box-shadow:0 0 1px #2e9935}#moove_gdpr_cookie_modal .cookie-switch input:checked+.cookie-slider:before,#moove_gdpr_cookie_modal .cookie-switch input:checked+.slider:before,#moove_gdpr_cookie_modal .switch input:checked+.cookie-slider:before,#moove_gdpr_cookie_modal .switch input:checked+.slider:before{transform:translateX(20px)}#moove_gdpr_cookie_modal a,#moove_gdpr_cookie_modal button{outline:none;box-shadow:none;text-shadow:none}#moove_gdpr_cookie_modal .moove-gdpr-modal-content{color:#000;background-color:#fff;width:900px;width:80vw;max-width:1170px;min-height:600px;border-radius:10px;position:relative;margin:0 auto}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .gdpr-cc-form-fieldset,#moove_gdpr_cookie_modal .moove-gdpr-modal-content fieldset{background-color:transparent}#moove_gdpr_cookie_modal .moove-gdpr-modal-content.logo-position-left .moove-gdpr-company-logo-holder{text-align:left}#moove_gdpr_cookie_modal .moove-gdpr-modal-content.logo-position-center .moove-gdpr-company-logo-holder{text-align:center}#moove_gdpr_cookie_modal .moove-gdpr-modal-content.logo-position-right .moove-gdpr-company-logo-holder{text-align:right}#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v1 .main-modal-content{display:-ms-flexbox;display:flex;-ms-flex-flow:column;flex-flow:column;height:100%}#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v1 .moove-gdpr-modal-footer-content .moove-gdpr-button-holder a.mgbutton,#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v1 .moove-gdpr-modal-footer-content .moove-gdpr-button-holder button.mgbutton{margin:2px}#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2{min-height:auto}#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-modal-left-content{display:none}#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-modal-right-content{width:100%;border-top-left-radius:5px;border-bottom-left-radius:5px;position:relative;float:none;padding-bottom:135px}#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .main-modal-content{max-height:50vh;overflow:hidden;overflow-y:auto;padding-bottom:0;height:100%}#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-branding-cnt{padding-right:30px;white-space:nowrap}#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-branding-cnt a{padding-right:0;text-align:right;color:#000;font-weight:700;font-size:13px;letter-spacing:-.3px;position:relative;top:0;text-decoration:none;display:block;-ms-flex-align:baseline;align-items:baseline}#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-tab-main{display:block;position:relative}#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-tab-main .moove-gdpr-tab-main-content{position:relative;overflow:hidden;padding-right:190px;padding-bottom:10px}#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-tab-main .moove-gdpr-status-bar{position:absolute;top:0;right:0;width:190px;text-align:right}#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-tab-main .moove-gdpr-status-bar span.cookie-slider,#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-tab-main .moove-gdpr-status-bar span.slider{position:relative;width:50px;height:30px;display:block}#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-tab-main .moove-gdpr-status-bar span.cookie-slider:after,#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-tab-main .moove-gdpr-status-bar span.slider:after{text-align:right;left:auto;right:60px}#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-tab-main h3.tab-title,#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-tab-main span.tab-title{font-weight:700;font-size:20px;margin-bottom:15px;padding-right:190px}#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-modal-title{display:-ms-flexbox;display:flex;width:100%;-ms-flex-align:center;align-items:center;height:75px;position:relative;margin-bottom:20px;padding-right:180px}#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-modal-title .moove-gdpr-company-logo-holder{max-width:180px;margin:0;float:right;position:absolute;top:0;right:0;width:100%;text-align:right;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:end;justify-content:flex-end;height:100%}#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-modal-title .moove-gdpr-company-logo-holder img{max-width:100%;text-align:center}#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-modal-title .tab-title{width:100%;font-weight:700;font-size:28px;line-height:1.1}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-close{position:absolute;text-decoration:none;top:-30px;right:-30px;display:block;width:60px;height:60px;line-height:60px;text-align:center;border-radius:50%;background:transparent;padding:0;z-index:99;margin:0;outline:none;box-shadow:none;border:none}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-close:hover i,#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-close:hover span.gdpr-icon{background-color:#fff;color:#0c4da2}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-close i,#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-close span.gdpr-icon{display:block;width:60px;height:60px;line-height:60px;font-size:48px;background-color:#0c4da2;border:1px solid #0c4da2;color:#fff;border-radius:50%;transition:all .3s ease}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-company-logo-holder{padding:0;margin-bottom:30px}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-company-logo-holder img{max-height:75px;max-width:70%;width:auto;display:inline-block}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-title h2{font-weight:400;font-size:20px;margin:5px 0 0;padding:0;color:#000}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-content.moove-gdpr-no-modal-title .moove-gdpr-tab-main h3.tab-title,#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-content.moove-gdpr-no-modal-title .moove-gdpr-tab-main span.tab-title{margin-top:0}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main h3.tab-title,#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main span.tab-title{font-weight:700;font-size:28px;line-height:1.2;margin:0;padding:0;color:#000;margin-bottom:25px}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-tab-main-content{display:-ms-flexbox;display:flex;-ms-flex-flow:column;flex-flow:column;max-height:calc(100% - 155px);overflow-y:auto;padding-right:20px;padding-bottom:15px}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-tab-main-content a,#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-tab-main-content button,#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-tab-main-content li,#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-tab-main-content p{font-weight:400;font-size:16px;line-height:1.4;margin-bottom:18px;margin-top:0;padding:0;color:#000}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-tab-main-content h1,#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-tab-main-content h2,#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-tab-main-content h3,#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-tab-main-content h4,#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-tab-main-content h5,#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-tab-main-content h6{font-size:18px;line-height:1.4;margin-bottom:20px;margin-top:0;font-weight:700;text-transform:none;color:#000}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-tab-main-content a{color:#000;text-decoration:underline}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-tab-main-content.moove-gdpr-strict-warning-message{display:none}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-status-bar{padding:5px;margin-right:10px;margin-bottom:15px}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-status-bar.gdpr-checkbox-disabled{opacity:.6;pointer-events:none}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-status-bar.gdpr-checkbox-disabled .cookie-switch input:checked+.cookie-slider,#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-status-bar.gdpr-checkbox-disabled .switch input:checked+.slider{background-color:#474747}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-status-bar.gdpr-checkbox-disabled .cookie-switch input:checked+.cookie-slider:after,#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-status-bar.gdpr-checkbox-disabled .switch input:checked+.slider:after{color:#474747}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-status-bar p{display:inline-block;float:right;color:#09a501;margin:0;line-height:1.2;font:700 11px Arial,Helvetica,sans-serif;font-weight:700}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-status-bar .gdpr-cc-form-wrap,#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-status-bar .gdpr-cc-form-wrap .gdpr-cc-form-fieldset,#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-status-bar .gdpr-cc-form-wrap fieldset,#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-status-bar form,#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-status-bar form .gdpr-cc-form-fieldset,#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-status-bar form fieldset{border:none;padding:0;margin:0;box-shadow:none}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-status-bar .gdpr-cc-form-wrap .gdpr-cc-form-fieldset:hover label,#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-status-bar .gdpr-cc-form-wrap fieldset:hover label,#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-status-bar form .gdpr-cc-form-fieldset:hover label,#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-status-bar form fieldset:hover label{color:#09a501}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;height:130px;position:absolute;left:0;bottom:0;width:100%;background-color:#f1f1f1;z-index:15;border-radius:5px}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content:before{content:"";position:absolute;bottom:130px;left:60px;right:60px;height:1px;display:block;background-color:#c9c8c8}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-branding{text-decoration:none;padding:0 10px;font-size:10px;color:#000;font-weight:700;line-height:13px;display:-ms-flexbox;display:flex;-ms-flex-align:baseline;align-items:baseline;width:auto;max-width:100%}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-branding img{height:15px;margin-left:5px}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-branding span{display:inline-block;text-decoration:underline}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder{width:calc(100% + 16px);display:-ms-flexbox;display:flex;padding:0 60px;-ms-flex-pack:justify;justify-content:space-between;margin:0 -2px;-ms-flex-wrap:wrap;flex-wrap:wrap}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder a.mgbutton,#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder button.mgbutton{margin:8px;text-decoration:none;border-radius:150px;color:#fff;padding:15px 10px;transition:all .3s ease;border:1px solid transparent;min-width:160px;text-align:center;text-transform:none;letter-spacing:0;font-weight:700;font-size:14px;line-height:20px;cursor:pointer}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder a.mgbutton:hover,#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder button.mgbutton:hover{background-color:#fff}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder a.mgbutton.moove-gdpr-modal-save-settings,#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder button.mgbutton.moove-gdpr-modal-save-settings{color:#fff;display:none}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder a.mgbutton.moove-gdpr-modal-save-settings:hover,#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder button.mgbutton.moove-gdpr-modal-save-settings:hover{background-color:#fff}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content{width:40%;display:inline-block;float:left;padding:40px 60px;position:absolute;height:100%;top:0;box-shadow:0 0 30px 0 rgba(35,35,35,.1);background:#fff;z-index:10;left:0;border-top-left-radius:5px;border-bottom-left-radius:5px}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content .moove-gdpr-branding-cnt{position:absolute;bottom:0;padding-bottom:30px;left:60px;right:60px}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content .moove-gdpr-branding-cnt a{color:#000;font-weight:700;font-size:13px;letter-spacing:-.3px;padding:20px 0;position:relative;top:10px;text-decoration:none;display:block}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content .moove-gdpr-branding-cnt a img{width:60px;height:auto;display:inline-block;margin-left:5px;position:relative;top:0}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content .moove-gdpr-branding-cnt a span{display:inline-block;text-decoration:underline}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu{padding:0;list-style:none;margin:0;z-index:12}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li{margin:0;padding:0;list-style:none;margin-bottom:15px}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li.menu-item-selected a,#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li.menu-item-selected button{background-color:#fff;border-color:#f1f1f1;color:#000}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li.menu-item-selected a span.gdpr-icon,#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li.menu-item-selected button span.gdpr-icon{color:#000}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li a,#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li button{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;font-weight:800;font-size:14px;text-decoration:none;text-transform:uppercase;background-color:#f1f1f1;border:1px solid #f1f1f1;line-height:1.1;padding:13px 20px;color:#0c4da2;width:100%;transition:all .3s ease;border-radius:5px;text-align:left}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li a:hover i,#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li a:hover span.gdpr-icon,#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li button:hover i,#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li button:hover span.gdpr-icon{text-decoration:none}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li a i,#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li a span.gdpr-icon,#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li button i,#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li button span.gdpr-icon{display:inline-block;float:left;font-size:30px;width:40px;margin-right:5px;position:relative;top:0;color:#0c4da2}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li a span.gdpr-nav-tab-title,#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li button span.gdpr-nav-tab-title{display:-ms-inline-flexbox;display:inline-flex;-ms-flex-align:center;align-items:center;width:calc(100% - 40px)}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-right-content{width:60%;display:inline-block;float:right;padding:40px 60px;position:absolute;top:0;height:auto;right:0;background-color:#f1f1f1;border-top-right-radius:5px;border-bottom-right-radius:5px}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-company-logo{width:100%;height:0;padding-bottom:38px;background-size:contain;background-position:0;background-repeat:no-repeat}.moove-hidden{display:none}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-status-bar:after,.moove-clearfix:after{content:"";display:table;clear:both}#moove_gdpr_cookie_info_bar{position:fixed;bottom:0;left:0;width:100%;min-height:60px;max-height:400px;color:#fff;z-index:9900;background-color:#202020;border-top:1px solid #fff;font-family:Nunito,sans-serif;transition:bottom .3s cubic-bezier(.17,.04,.03,.94)}#moove_gdpr_cookie_info_bar.gdpr_infobar_postion_top{bottom:auto;top:0;transition:top .3s cubic-bezier(.17,.04,.03,.94)}#moove_gdpr_cookie_info_bar.gdpr_infobar_postion_top.moove-gdpr-dark-scheme{border-top:0;border-bottom:1px solid #fff}#moove_gdpr_cookie_info_bar.gdpr_infobar_postion_top.moove-gdpr-light-scheme{border-top:0;border-bottom:1px solid #202020}#moove_gdpr_cookie_info_bar.gdpr_infobar_postion_top.moove-gdpr-info-bar-hidden{bottom:auto;top:-400px}#moove_gdpr_cookie_info_bar *{font-family:inherit;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}#moove_gdpr_cookie_info_bar.moove-gdpr-info-bar-hidden{bottom:-400px}#moove_gdpr_cookie_info_bar.moove-gdpr-align-center,#moove_gdpr_cookie_info_bar.moove-gdpr-align-right{text-align:center}#moove_gdpr_cookie_info_bar button.moove-gdpr-infobar-close-btn{border:none}#moove_gdpr_cookie_info_bar.moove-gdpr-light-scheme{background-color:#fff;border-top:1px solid #202020}#moove_gdpr_cookie_info_bar.moove-gdpr-light-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content h1,#moove_gdpr_cookie_info_bar.moove-gdpr-light-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content h2,#moove_gdpr_cookie_info_bar.moove-gdpr-light-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content h3,#moove_gdpr_cookie_info_bar.moove-gdpr-light-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content h4,#moove_gdpr_cookie_info_bar.moove-gdpr-light-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content h5,#moove_gdpr_cookie_info_bar.moove-gdpr-light-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content h6,#moove_gdpr_cookie_info_bar.moove-gdpr-light-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content p,#moove_gdpr_cookie_info_bar.moove-gdpr-light-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content p a,#moove_gdpr_cookie_info_bar.moove-gdpr-light-scheme p{color:#202020}#moove_gdpr_cookie_info_bar.moove-gdpr-light-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content a,#moove_gdpr_cookie_info_bar.moove-gdpr-light-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button{text-decoration:underline;outline:none}#moove_gdpr_cookie_info_bar.moove-gdpr-dark-scheme{background-color:#202020;border-top:1px solid #fff}#moove_gdpr_cookie_info_bar.moove-gdpr-dark-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content h1,#moove_gdpr_cookie_info_bar.moove-gdpr-dark-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content h2,#moove_gdpr_cookie_info_bar.moove-gdpr-dark-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content h3,#moove_gdpr_cookie_info_bar.moove-gdpr-dark-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content h4,#moove_gdpr_cookie_info_bar.moove-gdpr-dark-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content h5,#moove_gdpr_cookie_info_bar.moove-gdpr-dark-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content h6,#moove_gdpr_cookie_info_bar.moove-gdpr-dark-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content p,#moove_gdpr_cookie_info_bar.moove-gdpr-dark-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content p a,#moove_gdpr_cookie_info_bar.moove-gdpr-dark-scheme p{color:#fff}#moove_gdpr_cookie_info_bar.moove-gdpr-dark-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content a,#moove_gdpr_cookie_info_bar.moove-gdpr-dark-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button{text-decoration:underline;outline:none;transition:all .2s ease}#moove_gdpr_cookie_info_bar.moove-gdpr-dark-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content a.mgbutton.focus-g,#moove_gdpr_cookie_info_bar.moove-gdpr-dark-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content a.mgbutton:hover,#moove_gdpr_cookie_info_bar.moove-gdpr-dark-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton.focus-g,#moove_gdpr_cookie_info_bar.moove-gdpr-dark-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton:hover{background-color:#fff}#moove_gdpr_cookie_info_bar.moove-gdpr-dark-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content .moove-gdpr-close-modal-button a{border-color:#fff;color:#fff}#moove_gdpr_cookie_info_bar.moove-gdpr-dark-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content .moove-gdpr-close-modal-button a.focus-g,#moove_gdpr_cookie_info_bar.moove-gdpr-dark-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content .moove-gdpr-close-modal-button a:hover{background-color:#fff;color:#202020}#moove_gdpr_cookie_info_bar:not(.gdpr-full-screen-infobar) .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content a.mgbutton.moove-gdpr-infobar-settings-btn,#moove_gdpr_cookie_info_bar:not(.gdpr-full-screen-infobar) .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton.moove-gdpr-infobar-settings-btn{background-color:transparent;box-shadow:inset 0 0 0 1px currentColor;opacity:.7;color:#202020}#moove_gdpr_cookie_info_bar:not(.gdpr-full-screen-infobar) .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content a.mgbutton.moove-gdpr-infobar-settings-btn.focus-g,#moove_gdpr_cookie_info_bar:not(.gdpr-full-screen-infobar) .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content a.mgbutton.moove-gdpr-infobar-settings-btn:hover,#moove_gdpr_cookie_info_bar:not(.gdpr-full-screen-infobar) .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton.moove-gdpr-infobar-settings-btn.focus-g,#moove_gdpr_cookie_info_bar:not(.gdpr-full-screen-infobar) .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton.moove-gdpr-infobar-settings-btn:hover{box-shadow:none;opacity:1;color:#fff;background-color:#202020}#moove_gdpr_cookie_info_bar:not(.gdpr-full-screen-infobar).moove-gdpr-dark-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content a.mgbutton.moove-gdpr-infobar-settings-btn,#moove_gdpr_cookie_info_bar:not(.gdpr-full-screen-infobar).moove-gdpr-dark-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton.moove-gdpr-infobar-settings-btn{background-color:transparent;box-shadow:inset 0 0 0 1px currentColor;opacity:.7;color:#fff}#moove_gdpr_cookie_info_bar:not(.gdpr-full-screen-infobar).moove-gdpr-dark-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content a.mgbutton.moove-gdpr-infobar-settings-btn.focus-g,#moove_gdpr_cookie_info_bar:not(.gdpr-full-screen-infobar).moove-gdpr-dark-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content a.mgbutton.moove-gdpr-infobar-settings-btn:hover,#moove_gdpr_cookie_info_bar:not(.gdpr-full-screen-infobar).moove-gdpr-dark-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton.moove-gdpr-infobar-settings-btn.focus-g,#moove_gdpr_cookie_info_bar:not(.gdpr-full-screen-infobar).moove-gdpr-dark-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton.moove-gdpr-infobar-settings-btn:hover{box-shadow:none;opacity:1;color:#202020;background-color:#fff}#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container{padding:10px 40px;position:static;display:inline-block}#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container i.gdpricon-cog-1,#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container span.gdpricon-cog-1{font-size:40px;width:60px;height:50px;line-height:50px;text-align:center;position:absolute;top:calc(50% - 25px);left:0;color:#fff}#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-close-cookie-popup{position:absolute;width:60px;height:50px;line-height:50px;text-align:center;top:calc(50% - 25px);right:0;text-decoration:none;outline:none;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center}#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-close-cookie-popup i,#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-close-cookie-popup span.gdpr-icon{width:28px;height:28px;line-height:26px;text-align:center;text-decoration:none;background-color:#fff;color:#424449;border-radius:50%;display:block;border:1px solid #fff;font-size:16px;position:relative}#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-close-cookie-popup:hover i,#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-close-cookie-popup:hover span.gdpr-icon{background-color:#424449;color:#fff}#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content{padding-left:30px;padding-right:30px;text-align:left;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;width:100%}#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content p,#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content p a{margin:0;font-size:14px;line-height:18px;font-weight:700;padding-bottom:0;color:#fff}#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content h1,#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content h2,#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content h3,#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content h4,#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content h5,#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content h6{font-size:22px;line-height:30px;margin-bottom:15px}#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content .moove-gdpr-close-modal-button a{display:inline-block;width:35px;height:35px;border:1px solid #202020;color:#202020;text-decoration:none;outline:none;line-height:35px;text-align:center;border-radius:50%;font-size:28px;padding-top:1px;transition:all .2s ease;margin-left:10px;margin-left:6vw}#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content .moove-gdpr-close-modal-button a.focus-g,#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content .moove-gdpr-close-modal-button a:hover{background-color:#202020;color:#fff}#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content a.mgbutton,#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton{font-size:14px;line-height:20px;color:#fff;font-weight:700;text-decoration:none;border-radius:150px;padding:8px 30px;transition:all .3s ease;border:none;display:inline-block;margin:3px 4px;white-space:nowrap;text-transform:none;letter-spacing:0;cursor:pointer}#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content a.mgbutton.focus-g,#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content a.mgbutton:hover,#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton.focus-g,#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton:hover{color:#fff;background-color:#202020}#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content a.mgbutton.change-settings-button,#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton.change-settings-button{background-color:#424449;color:#fff;border-color:transparent;cursor:pointer}#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content a.mgbutton.change-settings-button.focus-g,#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content a.mgbutton.change-settings-button:hover,#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton.change-settings-button.focus-g,#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton.change-settings-button:hover{border-color:#fff}#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content span.change-settings-button{text-decoration:underline;cursor:pointer;transition:all .2s ease}#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content .moove-gdpr-button-holder{padding-left:15px;padding-left:3vw}.gdpr_lightbox.moove_gdpr_cookie_modal_open #moove_gdpr_cookie_modal{content-visibility:visible}.gdpr_lightbox.moove_gdpr_cookie_modal_open .gdpr_lightbox-container{max-width:100%}.gdpr_lightbox.moove_gdpr_cookie_modal_open .gdpr_lightbox-close{opacity:0;visibility:hidden}#moove_gdpr_save_popup_settings_button{display:block;z-index:1001;position:fixed;background-color:rgba(0,0,0,.8);transition:all .3s ease;color:#fff;padding:0;text-align:center;height:40px;outline:none;font-weight:400;font-size:14px;line-height:20px;border-radius:0;border:none;text-decoration:none}#moove_gdpr_save_popup_settings_button:not(.gdpr-floating-button-custom-position){bottom:50px;left:50px}#moove_gdpr_save_popup_settings_button span{background-color:inherit;transition:all .3s ease}#moove_gdpr_save_popup_settings_button span.moove_gdpr_icon{display:-ms-inline-flexbox;display:inline-flex;line-height:40px;float:left;font-size:30px;min-width:40px;height:40px;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;text-align:center;z-index:15;position:relative;background-color:transparent}#moove_gdpr_save_popup_settings_button span.moove_gdpr_icon i,#moove_gdpr_save_popup_settings_button span.moove_gdpr_icon span.gdpr-icon{position:relative;top:0;font-weight:900;background-color:transparent}#moove_gdpr_save_popup_settings_button span.moove_gdpr_text{font:normal 12px Arial,sans-serif;text-transform:uppercase;white-space:nowrap;padding:0 15px 0 5px;top:0;left:0;position:relative;line-height:40px;display:none;overflow:hidden;z-index:5;background-color:transparent;text-decoration:none}#moove_gdpr_save_popup_settings_button:hover{background-color:#000}#moove_gdpr_save_popup_settings_button:hover span.moove_gdpr_text{display:block}#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-branding-cnt{padding-right:60px}#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-modal-footer-content .moove-gdpr-button-holder{-ms-flex-pack:start;justify-content:flex-start}#moove_gdpr_cookie_info_bar *{box-sizing:border-box}#moove_gdpr_cookie_info_bar.gdpr-full-screen-infobar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content .moove-gdpr-button-holder a.mgbutton{display:-ms-inline-flexbox;display:inline-flex;-ms-flex-align:center;align-items:center}#moove_gdpr_cookie_info_bar.gdpr-full-screen-infobar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content .moove-gdpr-button-holder a.mgbutton.mright{float:right}#moove_gdpr_cookie_info_bar.gdpr-full-screen-infobar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content .moove-gdpr-button-holder a.mgbutton.mgrey{background-color:#424449}#moove_gdpr_cookie_info_bar.gdpr-full-screen-infobar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content .moove-gdpr-button-holder a.mgbutton.mgrey:hover{background-color:#202020}@media (max-width:767px){#moove_gdpr_cookie_info_bar.gdpr-full-screen-infobar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content a.mgbutton,#moove_gdpr_cookie_info_bar.gdpr-full-screen-infobar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton{min-height:30px;font-weight:400}#moove_gdpr_cookie_modal li a .gdpr-svg-icon,#moove_gdpr_cookie_modal li button .gdpr-svg-icon{margin-right:0;text-align:center;width:25px;height:25px}#moove_gdpr_cookie_modal li a .gdpr-svg-icon svg,#moove_gdpr_cookie_modal li button .gdpr-svg-icon svg{height:25px}#moove_gdpr_cookie_info_bar .moove-gdpr-infobar-close-btn.moovegdpr-arrow-close:after,#moove_gdpr_cookie_info_bar .moove-gdpr-infobar-close-btn.moovegdpr-arrow-close:before,.gdpr-icon.moovegdpr-arrow-close:after,.gdpr-icon.moovegdpr-arrow-close:before,i.moovegdpr-arrow-close.moovegdpr-arrow-close:after,i.moovegdpr-arrow-close.moovegdpr-arrow-close:before{height:14px;top:calc(50% - 7px)}#moove_gdpr_cookie_info_bar .moove-gdpr-button-holder{-ms-flex-wrap:wrap;flex-wrap:wrap}#moove_gdpr_cookie_info_bar .moove-gdpr-infobar-close-btn{width:30px;height:30px;border:none}#moove_gdpr_cookie_info_bar .moove-gdpr-infobar-close-btn i{font-size:27px;height:25px}#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v1 .moove-gdpr-modal-right-content,#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v1 .moove-gdpr-tab-content,#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v1 .moove-gdpr-tab-main{min-height:40vh;max-height:calc(100vh - 180px)}.gdpr-fb-hide-mobile{display:none!important}#moove_gdpr_cookie_modal .moove-gdpr-modal-content{width:calc(100vw - 50px)}#moove_gdpr_cookie_modal .cookie-switch,#moove_gdpr_cookie_modal .switch{width:40px;height:24px}#moove_gdpr_cookie_modal .cookie-switch .cookie-slider:before,#moove_gdpr_cookie_modal .cookie-switch .slider:before,#moove_gdpr_cookie_modal .switch .cookie-slider:before,#moove_gdpr_cookie_modal .switch .slider:before{height:20px;width:20px}#moove_gdpr_cookie_modal .cookie-switch input:checked+.cookie-slider:before,#moove_gdpr_cookie_modal .cookie-switch input:checked+.slider:before,#moove_gdpr_cookie_modal .switch input:checked+.cookie-slider:before,#moove_gdpr_cookie_modal .switch input:checked+.slider:before{transform:translateX(16px)}#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-modal-title{padding-right:0;height:auto;margin-bottom:10px}#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-modal-title .tab-title{font-weight:700;font-size:22px}#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-modal-title .moove-gdpr-company-logo-holder{display:none}#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-modal-right-content{height:80vh}#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-modal-right-content .main-modal-content{max-height:calc(80vh - 155px)}#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-button-holder a.mgbutton,#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-modal-footer-content .moove-gdpr-button-holder button.mgbutton{margin-right:2px;margin-bottom:2px}#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-branding-cnt{position:relative;padding-right:10px;max-width:50%;width:auto}#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-branding-cnt a{font-weight:700;font-size:11px;padding-left:0;display:block}#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-branding-cnt a span,#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-branding-cnt a u{display:block;text-decoration:underline}#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-tab-main .moove-gdpr-tab-main-content{padding-right:0}#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-tab-main .moove-gdpr-tab-main-content p{margin-bottom:15px}#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-tab-main .moove-gdpr-tab-main-content .moove-gdpr-status-bar{position:relative;left:0;right:auto;width:100%}#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-tab-main .moove-gdpr-tab-main-content .moove-gdpr-status-bar .gdpr-cc-form-wrap,#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-tab-main .moove-gdpr-tab-main-content .moove-gdpr-status-bar form{text-align:left;margin-bottom:15px}#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-tab-main .moove-gdpr-tab-main-content .moove-gdpr-status-bar .gdpr-cc-form-wrap span.cookie-slider,#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-tab-main .moove-gdpr-tab-main-content .moove-gdpr-status-bar .gdpr-cc-form-wrap span.slider,#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-tab-main .moove-gdpr-tab-main-content .moove-gdpr-status-bar form span.cookie-slider,#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-tab-main .moove-gdpr-tab-main-content .moove-gdpr-status-bar form span.slider{width:40px;height:24px}#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-tab-main .moove-gdpr-tab-main-content .moove-gdpr-status-bar .gdpr-cc-form-wrap span.cookie-slider:after,#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-tab-main .moove-gdpr-tab-main-content .moove-gdpr-status-bar .gdpr-cc-form-wrap span.slider:after,#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-tab-main .moove-gdpr-tab-main-content .moove-gdpr-status-bar form span.cookie-slider:after,#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-tab-main .moove-gdpr-tab-main-content .moove-gdpr-status-bar form span.slider:after{left:45px;right:0;text-align:left;top:-3px}#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-tab-main h3.tab-title,#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-tab-main span.tab-title{padding-right:0;font-weight:700;font-size:16px;margin-bottom:10px}#moove_gdpr_cookie_modal .moove-gdpr-modal-content{max-height:500px;max-height:90vw;min-height:auto}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .cookie-switch .cookie-slider:after,#moove_gdpr_cookie_modal .moove-gdpr-modal-content .switch .slider:after{font-weight:800;font-size:12px;line-height:30px;min-width:130px}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-close-modal-button a,#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-close-modal-button button{display:inline-block;width:30px;height:30px;border:1px solid #202020;color:#202020;text-decoration:none;outline:none;line-height:30px;text-align:center;border-radius:50%;font-size:27px;padding-top:1px;transition:all .2s ease;margin-left:15px;margin-left:6vw;position:absolute;right:5px;top:5px}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-close{position:absolute;top:-15px;right:-15px;display:block;width:30px;height:30px;line-height:30px;text-decoration:none}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-close i,#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-close span.gdpr-icon{width:30px;height:30px;line-height:30px;font-size:30px}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-company-logo{padding-bottom:30px;background-size:contain;background-position:50%;margin-top:10px}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-company-logo-holder{margin-bottom:15px}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content{padding:10px;padding-top:30px;position:relative;top:0;left:0;text-align:center;height:140px;border-radius:0;border-top-left-radius:5px;border-top-right-radius:5px}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu{display:inline-block;margin:0 auto}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li{list-style:none;margin-bottom:20px;display:inline-block;float:left;margin:0 5px}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li a,#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li button{padding:5px}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li a i,#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li a span.gdpr-icon,#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li button i,#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li button span.gdpr-icon{margin:0;text-align:center;width:24px;font-size:24px}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li a span.gdpr-nav-tab-title,#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li button span.gdpr-nav-tab-title{display:none}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content .moove-gdpr-branding-cnt{top:3px;right:3px;left:auto;padding:0;bottom:auto;transform:scale(.8)}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content .moove-gdpr-branding-cnt a{text-align:right}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content .moove-gdpr-branding-cnt a span{display:block}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-right-content{width:100%;position:relative;padding:15px 10px;height:calc(90vh - 200px);border-radius:0;border-bottom-left-radius:5px;border-bottom-right-radius:5px}#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2{max-height:100%}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main h3.tab-title,#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main span.tab-title{font-weight:700;font-size:16px}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-status-bar{padding:0}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-tab-main-content{padding:0;position:relative;overflow:auto;max-height:calc(100% - 110px)}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-tab-main-content a,#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-tab-main-content li,#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-tab-main-content p{font-weight:400;font-size:14px;line-height:1.3}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-tab-main-content h1,#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-tab-main-content h2,#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-tab-main-content h3,#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-tab-main-content h4,#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-tab-main-content h5,#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-tab-main-content h6{font-weight:700;font-size:14px}#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v1 .moove-gdpr-tab-main{margin-bottom:55px}#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v1 .moove-gdpr-tab-main .moove-gdpr-tab-main-content{height:100%;max-height:calc(90vh - 320px)}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content{height:70px}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content:before{left:10px;right:10px;bottom:70px}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder{padding:0 10px}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder a.mgbutton,#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder button.mgbutton{margin:0;background-color:#fff;text-decoration:none;border-radius:150px;font-weight:700;font-size:12px;line-height:18px;padding:5px;transition:all .3s ease;border:1px solid #fff;color:#fff;min-width:110px;text-align:center;text-transform:none}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content{width:100%}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content .moove-gdpr-branding-cnt a,#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content .moove-gdpr-branding-cnt button{top:0;padding:5px 0}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-company-logo-holder img{max-height:40px}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-company-logo-holder{text-align:center}#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container{padding:15px}#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container i.gdpricon-cog-1,#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container span.gdpricon-cog-1{display:none}#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content{padding-left:0;padding-right:0;display:block;min-height:auto}#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content .moove-gdpr-cookie-notice{padding-left:4px;margin-bottom:10px}#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content .moove-gdpr-button-holder{padding-left:0}#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content a.mgbutton,#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton{font-size:12px;font-weight:700;padding:5px 20px}.moove-gdpr-branding-cnt a{padding:10px 0}}@media screen and (max-width:767px) and (orientation:landscape){#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-company-logo{margin-top:0;background-position:0}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content .moove-gdpr-branding-cnt a span{display:inline-block}#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-modal-right-content{height:600px;height:90vh}#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-modal-right-content .main-modal-content{max-height:500px;max-height:calc(80vh - 80px)}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-company-logo-holder{text-align:left;margin:0;display:inline-block;float:left;width:40%}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu{max-width:60%;float:right}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content{padding-top:30px;height:75px}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main h3.tab-title,#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main span.tab-title{margin-bottom:10px}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content{height:45px}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content:before{bottom:45px}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-tab-main-content{display:-ms-flexbox;display:flex;-ms-flex-flow:column;flex-flow:column;max-height:350px;max-height:calc(100% - 70px)}#moove_gdpr_cookie_modal{background:transparent;border-radius:5px}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-right-content{height:55vh}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content .moove-gdpr-branding-cnt a.moove-gdpr-branding{top:0;padding:0}#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v1 .moove-gdpr-tab-main .moove-gdpr-tab-main-content{max-height:calc(90vh - 220px)}#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-modal-right-content{padding-bottom:80px}}@media (min-width:768px){#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v1 .moove-gdpr-modal-right-content,#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v1 .moove-gdpr-tab-content,#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v1 .moove-gdpr-tab-main{height:100%}}@media (min-width:768px) and (max-width:999px){#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-right-content{padding:30px 20px}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content{height:120px}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder{padding:0 20px}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content:before{bottom:120px;left:20px;right:20px}#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-branding-cnt{padding-right:30px}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content{padding:30px 20px}#moove_gdpr_cookie_modal .moove-gdpr-modal-content{min-height:620px;transform:scale(.75)}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content .moove-gdpr-branding-cnt{left:20px;right:20px}#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content p,#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content p>a{font-size:13px}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li a,#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li button{padding:10px 15px;font-weight:700;font-size:12px}#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content{padding-left:20px;padding-right:20px}#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content .moove-gdpr-close-modal-button a,#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content .moove-gdpr-close-modal-button button{margin-left:15px;margin-left:5vw}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main h3.tab-title,#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main span.tab-title{font-weight:700;font-size:24px}#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container{padding:10px 20px}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder a.mgbutton,#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder button.mgbutton{min-width:auto;padding:7px 15px;font-size:13px;margin:4px 8px}#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-modal-footer-content .moove-gdpr-button-holder a.mgbutton,#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-modal-footer-content .moove-gdpr-button-holder button.mgbutton{padding:8px 15px}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-branding span{white-space:nowrap}#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-branding-cnt a{white-space:normal}}@media (min-width:1000px) and (max-width:1300px){#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-right-content{padding:40px 30px}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content{height:120px}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder{padding:0 30px}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content:before{bottom:120px;left:30px;right:30px}#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-branding-cnt{padding-right:30px}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content .moove-gdpr-branding-cnt{left:30px;right:30px}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content{padding:30px}#moove_gdpr_cookie_modal .moove-gdpr-modal-content{min-width:700px}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder a.mgbutton,#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder button.mgbutton{min-width:auto;padding:10px 30px;margin-left:8px;margin-right:8px}}@media (min-width:768px) and (max-height:700px){#moove_gdpr_cookie_modal .moove-gdpr-modal-content{min-height:600px;transform:scale(.7)}}@media (-ms-high-contrast:none),screen and (-ms-high-contrast:active){#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content{display:block;max-width:100%;text-align:center}#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content .moove-gdpr-button-holder{margin-top:10px}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-tab-main-content{display:block;max-width:100%}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li a span,#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li button span{display:block}}@media (-ms-high-contrast:active),(-ms-high-contrast:none){#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content{display:block;max-width:100%;text-align:center}#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content .moove-gdpr-button-holder{margin-top:10px}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-tab-main-content{display:block;max-width:100%}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li a span,#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li button span{display:block}}@media print{#moove_gdpr_cookie_info_bar,#moove_gdpr_cookie_modal,#moove_gdpr_save_popup_settings_button,.gdpr_cookie_settings_shortcode_content{display:none!important}body.moove_gdpr_overflow{overflow:auto}body.moove_gdpr_overflow .gdpr_lightbox{display:none!important}}#moove_gdpr_save_popup_settings_button span.moove_gdpr_icon svg{height:30px;width:auto}#moove_gdpr_save_popup_settings_button span.moove_gdpr_icon svg *{fill:currentColor}#moove_gdpr_cookie_info_bar .moove-gdpr-infobar-close-btn.moovegdpr-arrow-close,.gdpr-icon.moovegdpr-arrow-close,i.moovegdpr-arrow-close.moovegdpr-arrow-close{position:relative}#moove_gdpr_cookie_info_bar .moove-gdpr-infobar-close-btn.moovegdpr-arrow-close:after,#moove_gdpr_cookie_info_bar .moove-gdpr-infobar-close-btn.moovegdpr-arrow-close:before,.gdpr-icon.moovegdpr-arrow-close:after,.gdpr-icon.moovegdpr-arrow-close:before,i.moovegdpr-arrow-close.moovegdpr-arrow-close:after,i.moovegdpr-arrow-close.moovegdpr-arrow-close:before{position:absolute;content:" ";height:24px;width:1px;top:calc(50% - 12px);background-color:currentColor}#moove_gdpr_cookie_info_bar .moove-gdpr-infobar-close-btn.moovegdpr-arrow-close:before,.gdpr-icon.moovegdpr-arrow-close:before,i.moovegdpr-arrow-close.moovegdpr-arrow-close:before{transform:rotate(45deg)}#moove_gdpr_cookie_info_bar .moove-gdpr-infobar-close-btn.moovegdpr-arrow-close:after,.gdpr-icon.moovegdpr-arrow-close:after,i.moovegdpr-arrow-close.moovegdpr-arrow-close:after{transform:rotate(-45deg)}#moove_gdpr_cookie_info_bar .moove-gdpr-infobar-close-btn i.moovegdpr-arrow-close:after,#moove_gdpr_cookie_info_bar .moove-gdpr-infobar-close-btn i.moovegdpr-arrow-close:before,.gdpr-icon i.moovegdpr-arrow-close:after,.gdpr-icon i.moovegdpr-arrow-close:before,i.moovegdpr-arrow-close i.moovegdpr-arrow-close:after,i.moovegdpr-arrow-close i.moovegdpr-arrow-close:before{height:18px;top:calc(50% - 8px)}@media (max-width:767px){#moove_gdpr_cookie_info_bar .moove-gdpr-infobar-close-btn.moovegdpr-arrow-close:after,#moove_gdpr_cookie_info_bar .moove-gdpr-infobar-close-btn.moovegdpr-arrow-close:before,.gdpr-icon.moovegdpr-arrow-close:after,.gdpr-icon.moovegdpr-arrow-close:before,i.moovegdpr-arrow-close.moovegdpr-arrow-close:after,i.moovegdpr-arrow-close.moovegdpr-arrow-close:before{height:14px;top:calc(50% - 7px)}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content{display:-ms-flexbox;display:flex;padding:5px 0;-ms-flex-wrap:wrap;flex-wrap:wrap}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between;margin-bottom:10px}#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder a.mgbutton,#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder button.mgbutton,#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-button-holder a.mgbutton,#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-modal-footer-content .moove-gdpr-button-holder button.mgbutton{min-width:auto;padding:5px 15px}#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-branding-cnt a span,#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-branding-cnt a u{display:inline-block}#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-branding-cnt a{text-align:left;padding-left:10px}}@media (max-width:350px){#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder a.mgbutton,#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder button.mgbutton,#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-button-holder a.mgbutton,#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-modal-footer-content .moove-gdpr-button-holder button.mgbutton{padding:3px 12px}#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-branding-cnt{opacity:0}}