/*
 Theme Name:   Niramay Child
 Theme URI:    https://niramayayurveda.com/
 Description:  Global design system for Niramay Ayurvedic Hospital (OceanWP child).
 Author:       Niramay Ayurveda
 Author URI:   https://niramayayurveda.com/
 Template:     oceanwp
 License:      GNU General Public License v2 or later
 License URI:  https://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  niramay-child
*/

/* ==========================================================================
   1. Design tokens (Niramay Brand Style Guide)
   ========================================================================== */

:root {
	/* Primary */
	--color-primary: #0b5e2b;
	--color-primary-dark: #084a22;
	--color-accent-lime: #8cc63e;
	--color-accent-red: #e6392f;

	/* Secondary */
	--color-forest: #136a3a;
	--color-olive: #6fbf3a;
	--color-gold: #d4a017;
	--color-sandalwood: #eacfa8;

	/* Supporting */
	--color-mint: #c8e6c9;
	--color-aqua: #b3e5fc;
	--color-soft-leaf: #e8f5e9;
	--color-peach: #ffe8d6;
	--color-lavender: #ede7f6;

	/* Neutrals */
	--color-charcoal: #1e1e1e;
	--color-dark-grey: #4b4b4b;
	--color-medium-grey: #757575;
	--color-light-grey: #e0e0e0;
	--color-off-white: #f7f7f7;
	--color-white: #ffffff;

	/* Semantic */
	--color-text: #333333;
	--color-text-muted: var(--color-medium-grey);
	--color-heading: var(--color-primary);
	--color-heading-sub: var(--color-olive);
	--color-link: #0a7f3c;
	--color-link-hover: var(--color-forest);
	--color-border: var(--color-light-grey);
	--color-bg: var(--color-white);
	--color-bg-alt: var(--color-off-white);
	--color-error: #c62828;
	--color-success: var(--color-forest);

	/* Gradients */
	--gradient-green-healing: linear-gradient(135deg, #0b5e2b 0%, #8cc63e 100%);
	--gradient-nature-gold: linear-gradient(135deg, #d4a017 0%, #f6c653 100%);
	--gradient-herbal-fresh: linear-gradient(135deg, #136a3a 0%, #0b5e2b 100%);

	/* Typography — Plus Jakarta Sans headings; system UI body */
	--font-heading: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--font-mono: ui-monospace, "Cascadia Code", "Segoe UI Mono", Consolas, monospace;

	--fs-body: 16px;
	--fs-small: 14px;
	--fs-h6: clamp(1rem, 0.96rem + 0.2vw, 1.125rem);
	--fs-h5: clamp(1.125rem, 1.05rem + 0.35vw, 1.25rem);
	--fs-h4: clamp(1.25rem, 1.15rem + 0.5vw, 1.5rem);
	--fs-h3: clamp(1.5rem, 1.35rem + 0.75vw, 1.875rem);
	--fs-h2: clamp(1.875rem, 1.6rem + 1.25vw, 2.5rem);
	--fs-h1: clamp(2.25rem, 1.85rem + 1.75vw, 3.25rem);

	--lh-tight: 1.2;
	--lh-snug: 1.35;
	--lh-normal: 1.6;
	--lh-relaxed: 1.75;

	--fw-regular: 400;
	--fw-medium: 500;
	--fw-semibold: 600;
	--fw-bold: 700;

	/* Spacing scale */
	--space-1: 0.25rem;
	--space-2: 0.5rem;
	--space-3: 0.75rem;
	--space-4: 1rem;
	--space-5: 1.25rem;
	--space-6: 1.5rem;
	--space-8: 2rem;
	--space-10: 2.5rem;
	--space-12: 3rem;
	--space-16: 4rem;
	--space-20: 5rem;
	--space-24: 6rem;

	/* Layout */
	--container-max: 1300px;
	--container-padding: clamp(1rem, 3vw, 2rem);
	--section-padding-y: clamp(3rem, 6vw, 5rem);
	--header-height: 5rem;

	/* Radius */
	--radius-sm: 0.375rem;
	--radius-md: 0.5rem;
	--radius-lg: 0.75rem;
	--radius-xl: 1rem;
	--radius-pill: 9999px;

	/* Shadows & motion */
	--shadow-sm: 0 1px 2px rgb(11 94 43 / 6%);
	--shadow-md: 0 4px 12px rgb(11 94 43 / 8%);
	--shadow-lg: 0 12px 32px rgb(11 94 43 / 10%);
	--transition-fast: 150ms ease;
	--transition-base: 250ms ease;
	--ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
	--shadow-btn: 0 4px 14px rgb(11 94 43 / 20%);
	--shadow-btn-hover: 0 4px 18px rgb(11 94 43 / 34%);
	--focus-ring: 0 0 0 3px rgb(140 198 62 / 45%);
}

/* ==========================================================================
   2. Reset & base
   ========================================================================== */

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	font-size: 100%;
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	font-family: var(--font-body) !important;
	font-size: var(--fs-body) !important;
	font-weight: var(--fw-regular);
	line-height: var(--lh-normal) !important;
	color: var(--color-text);
	background-color: var(--color-bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   3. Typography
   ========================================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-heading);
	font-weight: var(--fw-semibold);
	line-height: var(--lh-snug);
	letter-spacing: -0.02em;
	color: var(--color-heading);
	margin: 0 0 var(--space-4);
}

h1 {
	font-size: var(--fs-h1);
	font-weight: var(--fw-bold);
	letter-spacing: -0.03em;
}

h2 {
	font-size: var(--fs-h2);
}

h3 {
	font-size: var(--fs-h3);
	color: var(--color-heading-sub);
}

h4 {
	font-size: var(--fs-h4);
}

h5 {
	font-size: var(--fs-h5);
}

h6 {
	font-size: var(--fs-h6);
	font-weight: var(--fw-medium);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

p {
	margin: 0 0 var(--space-4);
}

p:last-child {
	margin-bottom: 0;
}

strong,
b {
	font-weight: var(--fw-semibold);
	color: var(--color-charcoal);
}

em,
i {
	font-style: italic;
}

small {
	font-size: var(--fs-small);
	color: var(--color-text-muted);
}

blockquote {
	margin: 0 0 var(--space-6);
	padding: var(--space-4) var(--space-6);
	border-left: 4px solid var(--color-accent-lime);
	background-color: var(--color-soft-leaf);
	border-radius: 0 var(--radius-md) var(--radius-md) 0;
	font-size: 1.125em;
	line-height: var(--lh-relaxed);
	color: var(--color-dark-grey);
}

blockquote cite {
	display: block;
	margin-top: var(--space-3);
	font-size: var(--fs-small);
	font-style: normal;
	color: var(--color-text-muted);
}

code,
kbd,
samp {
	font-family: var(--font-mono);
	font-size: 0.9em;
	background: var(--color-off-white);
	padding: 0.15em 0.4em;
	border-radius: var(--radius-sm);
}

pre {
	font-family: var(--font-mono);
	font-size: var(--fs-small);
	line-height: var(--lh-relaxed);
	overflow-x: auto;
	margin: 0 0 var(--space-6);
	padding: var(--space-4);
	background: var(--color-charcoal);
	color: var(--color-off-white);
	border-radius: var(--radius-md);
}

pre code {
	background: none;
	padding: 0;
	color: inherit;
}

/* ==========================================================================
   4. Links & media
   ========================================================================== */

a {
	color: var(--color-link);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.15em;
	transition: color var(--transition-fast), text-decoration-color var(--transition-fast);
}

a:hover,
a:focus-visible {
	color: var(--color-link-hover);
	text-decoration-color: currentColor;
}

img,
svg,
video,
iframe {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

img {
	display: block;
}

svg:not(:root) {
	overflow: hidden;
}

video,
iframe {
	border: 0;
	border-radius: var(--radius-md);
}

/* Logo — https://localhost/niramay/wp-content/uploads/2025/03/Niramay-Logo-2024-1024x297.png */
.niramay-logo img,
.custom-logo-link img,
.niramay-new-home-header__logo img {
	width: auto;
	max-height: 3.5rem;
	height: auto;
	object-fit: contain;
}

@media (min-width: 48rem) {
	.niramay-logo img,
	.custom-logo-link img,
	.niramay-new-home-header__logo img {
		max-height: 4.25rem;
	}
}

/* ==========================================================================
   5. Lists
   ========================================================================== */

ul,
ol {
	margin: 0 0 var(--space-4);
	padding-left: 1.5em;
}

li {
	margin-bottom: var(--space-2);
}

li > ul,
li > ol {
	margin-top: var(--space-2);
	margin-bottom: 0;
}

ul {
	list-style-type: disc;
}

ol {
	list-style-type: decimal;
}

/* ==========================================================================
   6. Horizontal rule & tables
   ========================================================================== */

hr {
	border: 0;
	height: 1px;
	margin: var(--space-8) 0;
	background: var(--color-border);
}

table {
	width: 100%;
	border-collapse: collapse;
	margin: 0 0 var(--space-6);
	font-size: var(--fs-small);
}

thead {
	background: var(--color-soft-leaf);
}

th,
td {
	padding: var(--space-3) var(--space-4);
	text-align: left;
	border-bottom: 1px solid var(--color-border);
	vertical-align: top;
}

th {
	font-family: var(--font-heading);
	font-weight: var(--fw-semibold);
	color: var(--color-heading);
}

tbody tr:hover {
	background-color: var(--color-off-white);
}

/* ==========================================================================
   7. Buttons
   ========================================================================== */

.btn,
button[type="submit"],
input[type="submit"],
input[type="button"],
input[type="reset"] {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-2);
	font-family: var(--font-body);
	font-size: var(--fs-small);
	font-weight: var(--fw-semibold);
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
	border: 2px solid transparent;
	border-radius: var(--radius-pill);
	padding: 0.875rem 1.75rem;
	isolation: isolate;
	transition:
		color 0.35s var(--ease-premium),
		border-color 0.35s var(--ease-premium),
		box-shadow 0.4s var(--ease-premium),
		filter 0.4s var(--ease-premium);
}

.btn:focus-visible,
button:focus-visible,
input[type="submit"]:focus-visible {
	outline: none;
	box-shadow: var(--focus-ring);
}

/* Primary — light sweep + shadow depth (no transform — avoids layout shift) */
.btn-primary,
button[type="submit"],
input[type="submit"] {
	overflow: hidden;
	background: linear-gradient(145deg, var(--color-primary) 0%, var(--color-forest) 100%);
	color: var(--color-white);
	border-color: var(--color-primary);
	box-shadow: var(--shadow-btn);
}

.btn-primary::before,
button[type="submit"]::before {
	content: "";
	position: absolute;
	inset: -1px;
	border-radius: inherit;
	background: linear-gradient(
		105deg,
		transparent 38%,
		rgb(255 255 255 / 22%) 50%,
		transparent 62%
	);
	transform: translateX(-130%);
	transition: transform 0.65s var(--ease-premium);
	pointer-events: none;
}

.btn-primary:hover,
.btn-primary:focus-visible,
button[type="submit"]:hover,
input[type="submit"]:hover {
	color: var(--color-white);
	text-decoration: none;
	border-color: var(--color-forest);
	box-shadow: var(--shadow-btn-hover);
	filter: brightness(1.06) saturate(1.05);
}

.btn-primary:hover::before,
button[type="submit"]:hover::before {
	transform: translateX(130%);
}

.btn-primary:active,
button[type="submit"]:active,
input[type="submit"]:active {
	filter: brightness(0.98);
	box-shadow: 0 4px 14px rgb(11 94 43 / 26%);
}

input[type="submit"]:hover,
input[type="submit"]:focus-visible {
	background: linear-gradient(145deg, var(--color-primary-dark) 0%, var(--color-forest) 100%);
}

/* Secondary — lime fill, white label; deepens on hover */
.btn-secondary {
	background: linear-gradient(145deg, var(--color-accent-lime) 0%, var(--color-olive) 100%);
	color: var(--color-white);
	border-color: var(--color-olive);
	box-shadow: 0 3px 12px rgb(140 198 62 / 32%);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
	color: var(--color-white);
	text-decoration: none;
	border-color: var(--color-forest);
	background: linear-gradient(145deg, var(--color-olive) 0%, var(--color-forest) 100%);
	box-shadow:
		0 0 0 3px rgb(212 160 23 / 22%),
		var(--shadow-btn-hover);
	filter: brightness(1.03);
}

.btn-secondary:active {
	color: var(--color-white);
	background: linear-gradient(145deg, var(--color-forest) 0%, var(--color-primary) 100%);
	border-color: var(--color-primary);
	filter: brightness(0.98);
	box-shadow: 0 4px 14px rgb(11 94 43 / 26%);
}

/* Outline — green border; solid fill on hover (no sweep — avoids white-on-light flash) */
.btn-outline {
	background: rgb(255 255 255 / 94%);
	color: var(--color-primary);
	border-color: var(--color-primary);
	box-shadow: var(--shadow-sm);
	transition:
		color 0.35s var(--ease-premium),
		background 0.35s var(--ease-premium),
		border-color 0.35s var(--ease-premium),
		box-shadow 0.35s var(--ease-premium);
}

.btn-outline::after {
	content: none;
	display: none;
}

.btn-outline:hover,
.btn-outline:focus-visible {
	color: var(--color-white);
	text-decoration: none;
	background: linear-gradient(145deg, var(--color-primary) 0%, var(--color-forest) 100%);
	border-color: var(--color-forest);
	box-shadow: var(--shadow-btn-hover);
	filter: none;
}

.btn-outline:active {
	background: linear-gradient(145deg, var(--color-primary-dark) 0%, var(--color-forest) 100%);
	border-color: var(--color-primary-dark);
	box-shadow: 0 4px 14px rgb(11 94 43 / 26%);
}

/* Link — text CTA with underline reveal (no pill fill) */
.btn-link {
	gap: 0.5rem;
	padding: 0.5rem 0.25rem;
	font-weight: var(--fw-semibold);
	color: var(--color-primary);
	background: transparent;
	border-color: transparent;
	border-radius: 0;
	box-shadow: none;
}

.btn-link::before,
.btn-link::after {
	display: none;
}

.btn-link span {
	text-decoration: underline;
	text-decoration-color: rgb(11 94 43 / 35%);
	text-underline-offset: 0.2em;
	text-decoration-thickness: 1px;
	transition:
		color 0.35s var(--ease-premium),
		text-decoration-color 0.35s var(--ease-premium);
}

.btn-link:hover,
.btn-link:focus-visible {
	color: var(--color-forest);
	text-decoration: none;
	filter: none;
	box-shadow: none;
}

.btn-link:hover span,
.btn-link:focus-visible span {
	text-decoration-color: var(--color-accent-lime);
}

.btn-link:active {
	color: var(--color-primary-dark);
}

.btn:disabled,
.btn[aria-disabled="true"],
button:disabled,
input:disabled {
	opacity: 0.55;
	cursor: not-allowed;
	pointer-events: none;
	filter: none;
	box-shadow: none;
}

.btn:disabled::before,
.btn:disabled::after,
.btn[aria-disabled="true"]::before,
.btn[aria-disabled="true"]::after {
	display: none;
}

.btn-arrow::after {
	content: "→";
	display: inline-block;
	min-width: 1.1em;
	margin-left: var(--space-1);
	text-align: center;
	transition: opacity 0.35s var(--ease-premium);
}

.btn-primary.btn-arrow:hover::after,
.btn-primary.btn-arrow:focus-visible::after {
	opacity: 0.88;
}

.btn-outline.btn-arrow:hover::after,
.btn-outline.btn-arrow:focus-visible::after {
	opacity: 0.9;
}

/* Icon CTAs (calendar, call) — icon before label */
.btn--icon {
	gap: 0.625rem;
}

.btn__icon {
	display: block;
	width: 1.125rem;
	height: 1.125rem;
	flex-shrink: 0;
}

.btn--calendar::after,
.btn--call::after,
.btn-link::after {
	content: none;
	display: none;
}

.btn-outline .btn__icon,
.btn-secondary .btn__icon,
.btn-link .btn__icon {
	color: currentColor;
	transition: color 0.35s var(--ease-premium);
}

@media (prefers-reduced-motion: reduce) {
	.btn,
	.btn::before,
	.btn::after,
	.btn-arrow::after {
		transition-duration: 0.01ms !important;
	}

	.btn-primary:hover,
	.btn-secondary:hover,
	.btn-outline:hover,
	.btn-link:hover {
		filter: none;
	}
}

/* ==========================================================================
   8. Forms
   ========================================================================== */

label {
	display: block;
	margin-bottom: var(--space-2);
	font-size: var(--fs-small);
	font-weight: var(--fw-medium);
	color: var(--color-charcoal);
}

input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="button"]):not([type="reset"]):not([type="hidden"]),
textarea,
select {
	width: 100%;
	font-family: var(--font-body);
	font-size: var(--fs-body);
	line-height: var(--lh-normal);
	color: var(--color-text);
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	padding: 0.75rem 1rem;
	transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

textarea {
	min-height: 8rem;
	resize: vertical;
}

input::placeholder,
textarea::placeholder {
	color: var(--color-text-muted);
	opacity: 1;
}

input:focus,
textarea:focus,
select:focus {
	outline: none;
	border-color: var(--color-primary);
	box-shadow: var(--focus-ring);
}

input[type="checkbox"],
input[type="radio"] {
	accent-color: var(--color-primary);
	width: 1.125rem;
	height: 1.125rem;
	margin-right: var(--space-2);
	vertical-align: middle;
}

.field-checkbox,
.field-radio {
	display: flex;
	align-items: flex-start;
	gap: var(--space-2);
	margin-bottom: var(--space-3);
}

.field-checkbox label,
.field-radio label {
	margin-bottom: 0;
	font-weight: var(--fw-regular);
}

.is-invalid,
input:user-invalid,
textarea:user-invalid,
select:user-invalid {
	border-color: var(--color-error);
}

.is-valid {
	border-color: var(--color-success);
}

.form-hint {
	font-size: var(--fs-small);
	color: var(--color-text-muted);
	margin-top: var(--space-1);
}

.form-error {
	font-size: var(--fs-small);
	color: var(--color-error);
	margin-top: var(--space-1);
}

/* ==========================================================================
   9. Layout utilities
   ========================================================================== */

.container {
	width: 100%;
	max-width: var(--container-max);
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--container-padding);
	padding-right: var(--container-padding);
}

.section-padding {
	padding-top: var(--section-padding-y);
	padding-bottom: var(--section-padding-y);
}

.section-title {
	font-family: var(--font-heading);
	font-size: var(--fs-h2);
	font-weight: var(--fw-bold);
	text-align: center;
	margin-bottom: var(--space-6);
}

.section-title--left {
	text-align: left;
}

.section-subtitle {
	font-family: var(--font-body);
	font-size: var(--fs-body);
	font-weight: var(--fw-regular);
	color: var(--color-text-muted);
	max-width: 42rem;
	margin: calc(var(--space-2) * -1) auto var(--space-8);
	text-align: center;
	line-height: var(--lh-relaxed);
}

.text-center {
	text-align: center;
}

.text-left {
	text-align: left;
}

.text-right {
	text-align: right;
}

/* Spacing utilities */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-4 { margin-top: var(--space-4); }
.mb-4 { margin-bottom: var(--space-4); }
.mt-8 { margin-top: var(--space-8); }
.mb-8 { margin-bottom: var(--space-8); }
.py-4 { padding-top: var(--space-4); padding-bottom: var(--space-4); }
.py-8 { padding-top: var(--space-8); padding-bottom: var(--space-8); }

/* Flex utilities */
.flex {
	display: flex;
}

.flex-col {
	flex-direction: column;
}

.flex-wrap {
	flex-wrap: wrap;
}

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

.items-start {
	align-items: flex-start;
}

.justify-center {
	justify-content: center;
}

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

.gap-2 { gap: var(--space-2); }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }

/* Grid utilities */
.grid {
	display: grid;
	gap: var(--space-6);
}

.grid-2 {
	grid-template-columns: 1fr;
}

.grid-3 {
	grid-template-columns: 1fr;
}

@media (min-width: 40rem) {
	.grid-2 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 48rem) {
	.grid-3 {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* ==========================================================================
   10. Brand UI components
   ========================================================================== */

.chip {
	display: inline-flex;
	align-items: center;
	gap: var(--space-2);
	font-family: var(--font-body);
	font-size: var(--fs-small);
	font-weight: var(--fw-medium);
	padding: 0.35rem 0.85rem;
	border-radius: var(--radius-pill);
	background: var(--color-soft-leaf);
	color: var(--color-primary);
}

.chip--solid {
	background: var(--color-primary);
	color: var(--color-white);
}

.card {
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	padding: var(--space-6);
	box-shadow: var(--shadow-sm);
	transition: box-shadow var(--transition-base);
}

.card:hover {
	box-shadow: var(--shadow-md);
}

.bg-soft-leaf {
	background-color: var(--color-soft-leaf);
}

.bg-off-white {
	background-color: var(--color-off-white);
}

.bg-primary {
	background: var(--gradient-herbal-fresh);
	color: var(--color-white);
}

.text-muted {
	color: var(--color-text-muted);
}

.text-primary {
	color: var(--color-primary);
}

/* ==========================================================================
   11. New Home footer (template)
   ========================================================================== */

.niramay-new-home-footer {
	background: var(--color-primary);
	color: var(--color-white);
	padding: var(--space-8) 0;
}

.niramay-new-home-footer a {
	color: var(--color-white);
}

.niramay-new-home-footer__copy {
	margin: 0;
	font-size: var(--fs-small);
	text-align: center;
	opacity: 0.9;
}

/* ==========================================================================
   12. Accessibility & reduced motion
   ========================================================================== */

:focus-visible {
	outline: none;
	box-shadow: var(--focus-ring);
}

.skip-link.screen-reader-text:focus {
	clip: auto;
	width: auto;
	height: auto;
	padding: var(--space-3) var(--space-4);
	background: var(--color-primary);
	color: var(--color-white);
	z-index: 100000;
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

.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;
}

/* Visually hidden but available to assistive tech when focused */
.visually-hidden:not(:focus):not(:active) {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
}
