/* eIDAS Solutions — design + animation layer */

/* =============================================
   DOT GRID
   ============================================= */

.eidas-dot-grid {
	position: relative;
	background-image: radial-gradient(rgba(114, 145, 255, 0.18) 1.5px, transparent 1.5px);
	background-size: 26px 26px;
	background-position: -6px -6px;
}

.eidas-dot-grid > .wp-block-group__inner-container,
.eidas-dot-grid > * {
	position: relative;
	z-index: 1;
}

/* =============================================
   HERO
   ============================================= */

.eidas-hero {
	overflow: hidden;
	background:
		radial-gradient(ellipse 80% 65% at 50% -5%,  rgba(58, 102, 255, 0.45), transparent 60%),
		radial-gradient(ellipse 35% 40% at 85% 55%,  rgba(110, 60, 255, 0.18), transparent 50%),
		radial-gradient(ellipse 25% 35% at 15% 70%,  rgba(42,  92, 255, 0.10), transparent 50%),
		linear-gradient(180deg, #141c2e 0%, #0e1420 70%);
	box-shadow: 0 40px 90px -35px rgba(6, 9, 16, 0.6);
	animation: eidas-hero-breathe 7s ease-in-out infinite;
}

/* Glowing orb that slowly pulses behind the headline */
.eidas-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 55% 45% at 50% 40%, rgba(58, 102, 255, 0.13), transparent 65%);
	animation: eidas-orb-pulse 7s ease-in-out infinite;
	pointer-events: none;
	z-index: 0;
}

@keyframes eidas-hero-breathe {
	0%, 100% { box-shadow: 0 40px 90px -35px rgba(6, 9, 16, 0.6), 0 0 80px -50px rgba(58, 102, 255, 0.15); }
	50%        { box-shadow: 0 40px 90px -35px rgba(6, 9, 16, 0.6), 0 0 140px -40px rgba(58, 102, 255, 0.40); }
}

@keyframes eidas-orb-pulse {
	0%, 100% { opacity: 0.6; transform: scale(1);    }
	50%        { opacity: 1;   transform: scale(1.12); }
}

/* Gradient text on the hero headline */
.eidas-hero h1.wp-block-heading {
	background: linear-gradient(135deg, #ffffff 5%, #ccd8ff 55%, #90aeff 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	position: relative;
}

/* Eyebrow badge — subtle pulsing border */
.eidas-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5em;
	padding: 0.45em 1em;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.14);
	color: #d7deff;
	animation: eidas-badge-glow 5s ease-in-out infinite;
}

@keyframes eidas-badge-glow {
	0%, 100% { border-color: rgba(255, 255, 255, 0.14); }
	50%        { border-color: rgba(160, 190, 255, 0.40); box-shadow: 0 0 14px rgba(100, 140, 255, 0.22); }
}

/* =============================================
   STEP NUMBERS
   ============================================= */

.eidas-step-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 999px;
	background: linear-gradient(135deg, #4a72ff 0%, #2a5cff 100%);
	color: #fff;
	font-weight: 700;
	font-size: 1.125rem;
	flex-shrink: 0;
	box-shadow: 0 4px 18px -4px rgba(42, 92, 255, 0.60);
}

/* =============================================
   CARDS
   ============================================= */

.eidas-card {
	border: 1px solid var(--wp--preset--color--border);
	border-radius: 16px;
	background: var(--wp--preset--color--white);
	box-shadow: 0 1px 3px rgba(14, 20, 32, 0.05);
	transition: box-shadow 0.28s ease, transform 0.28s ease, border-color 0.28s ease;
	position: relative;
}

/* Gradient overlay on hover */
.eidas-card::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 16px;
	background: linear-gradient(135deg, rgba(42, 92, 255, 0.055) 0%, rgba(110, 60, 255, 0.03) 100%);
	opacity: 0;
	transition: opacity 0.28s ease;
	pointer-events: none;
}

.eidas-card:hover {
	box-shadow: 0 20px 44px -12px rgba(14, 20, 32, 0.14), 0 0 0 1px rgba(42, 92, 255, 0.16);
	transform: translateY(-5px);
	border-color: rgba(42, 92, 255, 0.18);
}

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

/* Feature cards: center everything like step cards */
.eidas-card:not(.eidas-step-card) {
	text-align: center;
}

/* Feature icon container */
.eidas-card .eidas-card-icon {
	width: 2.5rem;
	height: 2.5rem;
	color: var(--wp--preset--color--primary);
	background: linear-gradient(135deg, rgba(42, 92, 255, 0.10) 0%, rgba(100, 60, 255, 0.06) 100%);
	border-radius: 10px;
	padding: 0.4rem;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: content-box;
	transition: background 0.28s ease, box-shadow 0.28s ease;
}

.eidas-card:hover .eidas-card-icon {
	background: linear-gradient(135deg, rgba(42, 92, 255, 0.18) 0%, rgba(100, 60, 255, 0.10) 100%);
	box-shadow: 0 4px 12px -4px rgba(42, 92, 255, 0.30);
}

/* Compliance columns: center as a group */
.eidas-compliance-inner {
	max-width: 960px;
	margin-left: auto !important;
	margin-right: auto !important;
}

/* Feature grid: always 4 columns, centered */
.eidas-features-grid {
	grid-template-columns: repeat(4, 1fr) !important;
	max-width: 960px;
	margin-left: auto !important;
	margin-right: auto !important;
}

@media (max-width: 700px) {
	.eidas-features-grid {
		grid-template-columns: repeat(2, 1fr) !important;
	}
}

@media (max-width: 420px) {
	.eidas-features-grid {
		grid-template-columns: 1fr !important;
	}
}

/* Platform architecture grid: always 3 columns, centered */
.eidas-platform-grid {
	grid-template-columns: repeat(3, 1fr) !important;
	max-width: 900px;
	margin-left: auto !important;
	margin-right: auto !important;
}

@media (max-width: 820px) {
	.eidas-platform-grid {
		grid-template-columns: 1fr !important;
	}
}

/* Center icon in feature cards */
.eidas-card:not(.eidas-step-card) .eidas-card-icon {
	margin-left: auto;
	margin-right: auto;
}

/* Step cards center-align */
.eidas-step-card {
	text-align: center;
}

.eidas-step-card .eidas-step-number {
	margin-left: auto;
	margin-right: auto;
}

/* Grid: auto-fit so 3 cards fill the row */
#hoe-het-werkt .wp-block-group.is-layout-grid,
#how-it-works .wp-block-group.is-layout-grid {
	grid-template-columns: repeat(auto-fit, minmax(min(16rem, 100%), 1fr)) !important;
}

/* =============================================
   PLATFORM BADGES
   ============================================= */

.eidas-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.35em;
	font-size: var(--wp--preset--font-size--small);
	font-weight: 600;
	padding: 0.2em 0.75em;
	border-radius: 999px;
	line-height: 1.8;
}

.eidas-badge.is-live {
	background: rgba(22, 182, 123, 0.12);
	color: #0d8f5e;
	box-shadow: 0 0 0 1px rgba(22, 182, 123, 0.28);
}

.eidas-badge.is-soon {
	background: rgba(91, 100, 114, 0.10);
	color: var(--wp--preset--color--text-muted);
}

.eidas-badge.is-beta {
	background: rgba(217, 119, 6, 0.12);
	color: #b45309;
	box-shadow: 0 0 0 1px rgba(217, 119, 6, 0.24);
}

/* =============================================
   BUTTONS
   ============================================= */

.wp-block-button__link {
	transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease,
		transform 0.18s ease, box-shadow 0.18s ease;
	position: relative;
	overflow: hidden;
}

/* Shimmer sweep on hover for filled buttons */
.wp-block-button:not(.is-style-outline) .wp-block-button__link::after {
	content: '';
	position: absolute;
	top: 0;
	left: -110%;
	width: 60%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
	transform: skewX(-18deg);
	transition: left 0.55s ease;
	pointer-events: none;
}

.wp-block-button:not(.is-style-outline) .wp-block-button__link:hover::after {
	left: 160%;
}

.wp-block-button:not(.is-style-outline) .wp-block-button__link:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 28px -8px rgba(14, 20, 32, 0.32);
}

.eidas-hero .wp-block-button:not(.is-style-outline) .wp-block-button__link {
	box-shadow: 0 8px 24px -8px rgba(42, 92, 255, 0.60);
}

.eidas-hero .wp-block-button:not(.is-style-outline) .wp-block-button__link:hover {
	box-shadow: 0 16px 36px -8px rgba(42, 92, 255, 0.72);
}

.wp-block-button.is-style-outline .wp-block-button__link:hover {
	background: var(--wp--preset--color--ink);
	color: #fff;
	transform: translateY(-2px);
}

/* =============================================
   COMPLIANCE LIST
   ============================================= */

.eidas-verified {
	color: var(--wp--preset--color--verified);
}

.eidas-compliance-list li {
	padding: 0.75rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.09);
	transition: padding-left 0.22s ease;
}

.eidas-compliance-list li:last-child {
	border-bottom: none;
}

.eidas-compliance-list li:hover {
	padding-left: 0.5rem;
}

/* =============================================
   HEADER (sticky + frosted glass)
   ============================================= */

.wp-block-template-part[data-area="header"],
header.wp-block-group.eidas-site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.90);
	backdrop-filter: saturate(180%) blur(12px);
	-webkit-backdrop-filter: saturate(180%) blur(12px);
	border-bottom: 1px solid var(--wp--preset--color--border);
}

/* =============================================
   SCROLL REVEAL
   ============================================= */

.eidas-reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
	            transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.eidas-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.eidas-reveal-group > * {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
	            transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.eidas-reveal-group.is-visible > *:nth-child(1) { transition-delay:   0ms; }
.eidas-reveal-group.is-visible > *:nth-child(2) { transition-delay: 110ms; }
.eidas-reveal-group.is-visible > *:nth-child(3) { transition-delay: 220ms; }
.eidas-reveal-group.is-visible > *:nth-child(4) { transition-delay: 330ms; }

.eidas-reveal-group.is-visible > * {
	opacity: 1;
	transform: translateY(0);
}

/* =============================================
   DEMO FLOW — Zie het in actie
   ============================================= */

.eidas-demo-flow {
	display: grid;
	grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
	gap: 1rem;
	align-items: start;
}

.eidas-demo-step {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
}

.eidas-demo-arrow {
	font-size: 1.75rem;
	color: var(--wp--preset--color--text-muted);
	align-self: center;
	margin-top: -2rem;
	padding: 0 0.5rem;
}

/* Step label under mockup */
.eidas-demo-step-label {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	max-width: 280px;
	text-align: left;
}

.eidas-demo-step-label strong {
	display: block;
	font-weight: 700;
	color: var(--wp--preset--color--body);
	margin-bottom: 0.2rem;
}

.eidas-demo-step-label p {
	font-size: var(--wp--preset--font-size--small);
	color: var(--wp--preset--color--text-muted);
	margin: 0;
}

.eidas-demo-step-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	min-width: 2rem;
	border-radius: 999px;
	background: linear-gradient(135deg, #4a72ff, #2a5cff);
	color: #fff;
	font-weight: 700;
	font-size: 0.875rem;
	box-shadow: 0 4px 12px -4px rgba(42, 92, 255, 0.5);
}

/* ---- QR modal inside browser ---- */
.eidas-mockup-content--modal {
	padding: 0.75rem;
	background: rgba(14, 20, 32, 0.45);
}

.eidas-mock-modal {
	background: #fff;
	border-radius: 10px;
	padding: 1rem;
	text-align: center;
	box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.eidas-mock-modal-title {
	font-size: 11px;
	font-weight: 700;
	color: var(--wp--preset--color--body);
	margin: 0 0 0.75rem;
}

.eidas-mock-modal-sub {
	font-size: 10px;
	color: var(--wp--preset--color--text-muted);
	margin: 0.6rem 0 0;
}

/* CSS QR code approximation */
.eidas-mock-qr {
	position: relative;
	width: 80px;
	height: 80px;
	margin: 0 auto;
	background-color: #fff;
	background-image:
		/* rows of dots simulating QR data */
		repeating-linear-gradient(0deg, transparent, transparent 5px, rgba(14,20,32,0.12) 5px, rgba(14,20,32,0.12) 6px),
		repeating-linear-gradient(90deg, transparent, transparent 5px, rgba(14,20,32,0.12) 5px, rgba(14,20,32,0.12) 6px);
	border: 2px solid #0e1420;
	border-radius: 4px;
}

/* Three finder-pattern corners of a real QR code */
.eidas-qr-corner {
	position: absolute;
	width: 18px;
	height: 18px;
	border: 3px solid #0e1420;
	border-radius: 3px;
}

.eidas-qr-corner--tl { top: 4px;  left: 4px;  }
.eidas-qr-corner--tr { top: 4px;  right: 4px; }
.eidas-qr-corner--bl { bottom: 4px; left: 4px; }

.eidas-qr-corner::after {
	content: '';
	position: absolute;
	inset: 3px;
	background: #0e1420;
	border-radius: 1px;
}

/* ---- Browser frame ---- */
.eidas-mockup-browser {
	width: 100%;
	max-width: 320px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 24px 60px -12px rgba(14, 20, 32, 0.22), 0 0 0 1px rgba(14, 20, 32, 0.08);
	overflow: hidden;
}

.eidas-mockup-bar {
	background: #f1f3f7;
	padding: 10px 14px;
	display: flex;
	align-items: center;
	gap: 6px;
	border-bottom: 1px solid #e4e8f0;
}

.eidas-dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
}

.eidas-dot--red    { background: #ff5f57; }
.eidas-dot--yellow { background: #febc2e; }
.eidas-dot--green  { background: #28c840; }

.eidas-mockup-url {
	flex: 1;
	background: #fff;
	border-radius: 5px;
	padding: 3px 10px;
	font-size: 11px;
	color: #7b8494;
	text-align: center;
	border: 1px solid #e4e8f0;
}

.eidas-mockup-content {
	padding: 1.25rem;
}

.eidas-mock-page-title {
	font-weight: 700;
	font-size: 1rem;
	color: var(--wp--preset--color--body);
	margin: 0 0 1rem;
}

.eidas-mock-label {
	font-size: 11px;
	font-weight: 600;
	color: var(--wp--preset--color--text-muted);
	margin: 0.75rem 0 0.3rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.eidas-mock-input {
	width: 100%;
	height: 34px;
	background: #f5f7fb;
	border: 1px solid #e4e8f0;
	border-radius: 7px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	padding: 0 10px;
	font-size: 12px;
	color: #333;
}

.eidas-mock-input--filled {
	background: rgba(22, 182, 123, 0.06);
	border-color: rgba(22, 182, 123, 0.4);
	color: #0e8f5e;
	font-weight: 500;
	justify-content: space-between;
}

.eidas-mock-verified {
	color: #16b67b;
	font-weight: 700;
	font-size: 13px;
}

.eidas-mock-or {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin: 1rem 0;
	color: var(--wp--preset--color--text-muted);
	font-size: 11px;
}

.eidas-mock-or::before,
.eidas-mock-or::after {
	content: '';
	flex: 1;
	height: 1px;
	background: #e4e8f0;
}

.eidas-mock-wallet-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	padding: 9px 14px;
	background: linear-gradient(135deg, #2a5cff, #1943d1);
	color: #fff;
	border-radius: 8px;
	font-size: 12px;
	font-weight: 600;
	box-shadow: 0 6px 16px -6px rgba(42, 92, 255, 0.55);
	box-sizing: border-box;
}

.eidas-mock-checkout-btn {
	margin-top: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 9px 14px;
	background: linear-gradient(135deg, #2a5cff, #1943d1);
	color: #fff;
	border-radius: 8px;
	font-size: 12px;
	font-weight: 600;
	box-shadow: 0 6px 16px -6px rgba(42, 92, 255, 0.55);
	box-sizing: border-box;
}

/* ---- Phone frame ---- */
.eidas-mockup-phone {
	width: 160px;
	background: #1a1a1a;
	border-radius: 32px;
	padding: 10px;
	box-shadow: 0 28px 60px -12px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255,255,255,0.06);
	position: relative;
}

.eidas-mockup-phone-notch {
	width: 50px;
	height: 5px;
	background: #333;
	border-radius: 999px;
	margin: 0 auto 8px;
}

.eidas-mockup-phone img {
	width: 100%;
	border-radius: 22px;
	display: block;
}

/* Responsive: collapse to vertical on smaller screens */
@media (max-width: 900px) {
	.eidas-demo-flow {
		grid-template-columns: 1fr;
		max-width: 360px;
		margin: 0 auto;
	}

	.eidas-demo-arrow {
		transform: rotate(90deg);
		align-self: center;
		margin: 0 auto;
	}

	.eidas-mockup-browser {
		max-width: 100%;
	}

	.eidas-mockup-phone {
		width: 180px;
	}
}

/* =============================================
   BLOG POST CARDS
   ============================================= */

.eidas-post-card {
	display: flex;
	flex-direction: column;
	border: 1px solid var(--wp--preset--color--border);
	border-radius: 14px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 1px 3px rgba(14, 20, 32, 0.05);
	transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.eidas-post-card:hover {
	box-shadow: 0 16px 32px -8px rgba(14, 20, 32, 0.12);
	transform: translateY(-3px);
	border-color: rgba(42, 92, 255, 0.22);
}

.eidas-post-card .wp-block-post-featured-image img {
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

/* Content area grows to fill the card so cards in a row line up evenly,
   and clamped title/excerpt lines stop ragged, uneven card heights. */
.eidas-post-card > .wp-block-group {
	display: flex;
	flex: 1;
	flex-direction: column;
}

.eidas-post-card .wp-block-post-date {
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-weight: 600;
}

.eidas-post-card .wp-block-post-title {
	margin-top: 0.5rem;
	line-height: 1.3;
}

.eidas-post-card .wp-block-post-title a {
	color: var(--wp--preset--color--ink);
	font-size: var(--wp--preset--font-size--medium);
	text-decoration: none;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.eidas-post-card .wp-block-post-title a:hover {
	color: var(--wp--preset--color--primary);
}

.eidas-post-card .wp-block-post-excerpt {
	margin-top: 0.5rem;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* =============================================
   LANGUAGE SWITCHER
   ============================================= */

.wp-block-polylang-language-switcher {
	display: flex;
	gap: 0.375rem;
	list-style: none;
	margin: 0;
	padding: 0;
	align-items: center;
}

.wp-block-polylang-language-switcher .lang-item a {
	display: inline-flex;
	align-items: center;
	padding: 0.3rem 0.75rem;
	border-radius: 999px;
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.03em;
	text-decoration: none;
	color: var(--wp--preset--color--text-muted);
	background: transparent;
	border: 1.5px solid transparent;
	transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.wp-block-polylang-language-switcher .lang-item a:hover {
	color: var(--wp--preset--color--body);
	background: var(--wp--preset--color--offwhite);
	border-color: var(--wp--preset--color--border);
}

.wp-block-polylang-language-switcher .current-lang a {
	color: var(--wp--preset--color--primary);
	background: rgba(42, 92, 255, 0.08);
	border-color: rgba(42, 92, 255, 0.22);
}

.wp-block-polylang-language-switcher .current-lang a:hover {
	background: rgba(42, 92, 255, 0.13);
	border-color: rgba(42, 92, 255, 0.35);
}

/* =============================================
   EIDAS EXPLAINER / FAQ
   ============================================= */

.eidas-faq {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	margin-top: 2.5rem;
}

.eidas-faq-item {
	padding: 1.5rem 1.75rem;
	background: var(--wp--preset--color--offwhite);
	border: 1px solid var(--wp--preset--color--border);
	border-radius: 14px;
}

.eidas-faq-item h3 {
	margin: 0 0 0.5rem;
	font-size: var(--wp--preset--font-size--medium);
	color: var(--wp--preset--color--body);
}

.eidas-faq-item p {
	margin: 0;
	color: var(--wp--preset--color--text-muted);
}

.eidas-faq-item a {
	color: var(--wp--preset--color--primary);
	text-decoration: underline;
	white-space: nowrap;
}

/* =============================================
   EIDAS TIMELINE
   ============================================= */

.eidas-timeline {
	position: relative;
	margin-top: 2.5rem;
	padding-left: 2.75rem;
}

.eidas-timeline::before {
	content: "";
	position: absolute;
	top: 0.4rem;
	bottom: 0.4rem;
	left: 0.75rem;
	width: 2px;
	background: var(--wp--preset--color--border);
}

.eidas-timeline-item {
	position: relative;
	padding-bottom: 2rem;
}

.eidas-timeline-item:last-child {
	padding-bottom: 0;
}

.eidas-timeline-dot {
	position: absolute;
	top: 0.3rem;
	left: -2.5rem;
	width: 1rem;
	height: 1rem;
	border-radius: 999px;
	background: linear-gradient(135deg, #4a72ff, #2a5cff);
	box-shadow: 0 4px 12px -4px rgba(42, 92, 255, 0.5);
}

.eidas-timeline-item.is-future .eidas-timeline-dot {
	background: #fff;
	border: 2px solid var(--wp--preset--color--primary);
	box-shadow: none;
}

.eidas-timeline-date {
	display: block;
	font-weight: 700;
	color: var(--wp--preset--color--body);
	margin-bottom: 0.2rem;
}

.eidas-timeline-item p {
	margin: 0;
	color: var(--wp--preset--color--text-muted);
}

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

@media (max-width: 599px) {
	.eidas-dot-grid {
		background-size: 20px 20px;
	}
}
