:root {
	--hbi-bg: #f7f5ef;
	--hbi-surface: #ffffff;
	--hbi-ink: #151716;
	--hbi-muted: #5f6866;
	--hbi-line: #d9d6cc;
	--hbi-steel: #66747a;
	--hbi-rust: #b95132;
	--hbi-rust-dark: #8f3920;
	--hbi-green: #16814b;
	--hbi-dark: #111513;
	--hbi-shadow: 0 18px 55px rgba(17, 21, 19, 0.12);
	--hbi-radius: 8px;
	--hbi-container: 1180px;
}

html {
	scroll-behavior: smooth;
}

body {
	background: var(--hbi-bg);
	color: var(--hbi-ink);
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	text-rendering: optimizeLegibility;
}

[dir="rtl"] body {
	font-family: Tahoma, Arial, Helvetica, sans-serif;
}

img,
video {
	display: block;
	max-width: 100%;
}

a {
	color: inherit;
	text-decoration: none;
}

p {
	margin: 0 0 1rem;
}

h1,
h2,
h3 {
	margin: 0;
	color: var(--hbi-ink);
	line-height: 1.08;
	letter-spacing: 0;
}

h1 {
	font-size: 4rem;
}

h2 {
	font-size: 2.25rem;
}

h3 {
	font-size: 1.2rem;
}

.hbi-container {
	width: min(var(--hbi-container), calc(100% - 40px));
	margin-inline: auto;
}

.hbi-skip-link,
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.hbi-skip-link:focus {
	z-index: 1000;
	width: auto;
	height: auto;
	margin: 0;
	clip: auto;
	padding: 0.75rem 1rem;
	background: var(--hbi-dark);
	color: #fff;
}

.hbi-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(247, 245, 239, 0.94);
	border-bottom: 1px solid rgba(21, 23, 22, 0.08);
	backdrop-filter: blur(14px);
}

.hbi-header__inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	min-height: 74px;
	gap: 1.25rem;
}

.hbi-brand {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	min-width: 0;
	font-weight: 800;
}

.hbi-brand__mark {
	display: inline-grid;
	width: 38px;
	height: 38px;
	place-items: center;
	border-radius: var(--hbi-radius);
	background: var(--hbi-rust);
	color: #fff;
	font-weight: 900;
}

.hbi-brand__text {
	max-width: 210px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.custom-logo {
	width: auto;
	max-height: 44px;
}

.hbi-nav__list {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.3rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.hbi-nav__list a {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	padding: 0.55rem 0.75rem;
	border-radius: var(--hbi-radius);
	color: var(--hbi-muted);
	font-weight: 700;
	white-space: nowrap;
}

.hbi-nav__list a:hover,
.hbi-nav__list .current-menu-item > a {
	background: rgba(185, 81, 50, 0.1);
	color: var(--hbi-rust-dark);
}

.hbi-header__actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 0.55rem;
}

.hbi-language {
	display: inline-flex;
	align-items: center;
	gap: 0.2rem;
	padding: 0.2rem;
	border: 1px solid var(--hbi-line);
	border-radius: var(--hbi-radius);
	background: rgba(255, 255, 255, 0.68);
}

.hbi-language__link {
	display: inline-grid;
	min-width: 34px;
	height: 32px;
	place-items: center;
	border-radius: 6px;
	color: var(--hbi-muted);
	font-size: 0.85rem;
	font-weight: 800;
}

.hbi-language__link.is-active {
	background: var(--hbi-dark);
	color: #fff;
}

.hbi-menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid var(--hbi-line);
	border-radius: var(--hbi-radius);
	background: #fff;
	cursor: pointer;
}

.hbi-menu-toggle__bar {
	display: block;
	width: 20px;
	height: 2px;
	margin: 4px auto;
	background: var(--hbi-ink);
}

.hbi-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0.72rem 1rem;
	border: 1px solid transparent;
	border-radius: var(--hbi-radius);
	font-weight: 800;
	line-height: 1.1;
	text-align: center;
	transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.hbi-button:hover {
	transform: translateY(-1px);
}

.hbi-button--small {
	min-height: 38px;
	padding: 0.58rem 0.85rem;
	font-size: 0.9rem;
}

.hbi-button--large {
	min-height: 50px;
	padding: 0.85rem 1.15rem;
}

.hbi-button--primary {
	background: var(--hbi-rust);
	color: #fff;
}

.hbi-button--primary:hover {
	background: var(--hbi-rust-dark);
}

.hbi-button--whatsapp,
.hbi-link--whatsapp {
	background: var(--hbi-green);
	color: #fff;
}

.hbi-button--ghost {
	border-color: rgba(255, 255, 255, 0.54);
	color: #fff;
	background: rgba(255, 255, 255, 0.08);
}

.hbi-main {
	min-height: 50vh;
}

.hbi-hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: calc(100svh - 132px);
	overflow: hidden;
	background: var(--hbi-dark);
}

.hbi-hero__video,
.hbi-hero__overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.hbi-hero__video {
	object-fit: cover;
}

.hbi-hero__overlay {
	background:
		linear-gradient(90deg, rgba(17, 21, 19, 0.9), rgba(17, 21, 19, 0.45)),
		linear-gradient(0deg, rgba(17, 21, 19, 0.2), rgba(17, 21, 19, 0.15));
}

[dir="rtl"] .hbi-hero__overlay {
	background:
		linear-gradient(270deg, rgba(17, 21, 19, 0.9), rgba(17, 21, 19, 0.45)),
		linear-gradient(0deg, rgba(17, 21, 19, 0.2), rgba(17, 21, 19, 0.15));
}

.hbi-hero__content {
	position: relative;
	z-index: 1;
	max-width: 760px;
	padding-block: 5rem;
	color: #fff;
}

.hbi-hero h1 {
	max-width: 760px;
	margin-block: 0.55rem 1rem;
	color: #fff;
}

.hbi-hero__text {
	max-width: 650px;
	color: rgba(255, 255, 255, 0.84);
	font-size: 1.12rem;
}

.hbi-kicker {
	margin: 0 0 0.75rem;
	color: var(--hbi-rust);
	font-size: 0.88rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0;
}

.hbi-hero .hbi-kicker {
	color: #f2a079;
}

.hbi-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.6rem;
}

.hbi-hero__proof {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
	margin-top: 2rem;
}

.hbi-hero__proof span {
	padding: 0.5rem 0.72rem;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: var(--hbi-radius);
	background: rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.88);
	font-size: 0.92rem;
	font-weight: 700;
}

.hbi-section {
	padding-block: 5.5rem;
}

.hbi-section--soft {
	background: #eeece4;
}

.hbi-section--split {
	background: #ffffff;
}

.hbi-section--quality {
	background: #f0eee7;
}

.hbi-section__head {
	max-width: 720px;
	margin-bottom: 2rem;
}

.hbi-section__head p {
	color: var(--hbi-muted);
	font-size: 1.05rem;
}

.hbi-product-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.hbi-product-grid--compact {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hbi-product-card {
	display: flex;
	min-width: 0;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid var(--hbi-line);
	border-radius: var(--hbi-radius);
	background: var(--hbi-surface);
	box-shadow: 0 8px 28px rgba(17, 21, 19, 0.06);
}

.hbi-product-card__image {
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: #d8d4c9;
}

.hbi-product-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 220ms ease;
}

.hbi-product-card:hover .hbi-product-card__image img {
	transform: scale(1.035);
}

.hbi-product-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 1rem;
}

.hbi-product-card__badge {
	display: inline-flex;
	align-self: flex-start;
	margin-bottom: 0.65rem;
	padding: 0.25rem 0.45rem;
	border-radius: 6px;
	background: rgba(102, 116, 122, 0.13);
	color: var(--hbi-steel);
	font-size: 0.78rem;
	font-weight: 800;
}

.hbi-product-card h3 {
	margin-bottom: 0.55rem;
}

.hbi-product-card p {
	color: var(--hbi-muted);
	font-size: 0.95rem;
}

.hbi-product-card__actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.7rem;
	margin-top: auto;
	padding-top: 0.75rem;
}

.hbi-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 0.55rem 0.7rem;
	border-radius: var(--hbi-radius);
	color: var(--hbi-rust-dark);
	font-weight: 800;
}

.hbi-link:hover {
	background: rgba(185, 81, 50, 0.1);
}

.hbi-link--whatsapp {
	color: #fff;
}

.hbi-split {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
	align-items: center;
	gap: 3rem;
}

.hbi-media-frame {
	width: 100%;
	aspect-ratio: 16 / 10;
	border: 0;
	border-radius: var(--hbi-radius);
	background: var(--hbi-dark);
	object-fit: cover;
	box-shadow: var(--hbi-shadow);
}

.hbi-split__content p {
	color: var(--hbi-muted);
}

.hbi-feature-list {
	display: grid;
	gap: 0.8rem;
	margin-top: 1.5rem;
}

.hbi-feature-list > div {
	padding-block: 0.8rem;
	border-top: 1px solid var(--hbi-line);
}

.hbi-feature-list strong {
	display: block;
	margin-bottom: 0.25rem;
}

.hbi-quality-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.hbi-quality-item {
	overflow: hidden;
	border: 1px solid var(--hbi-line);
	border-radius: var(--hbi-radius);
	background: #fff;
}

.hbi-quality-item img {
	width: 100%;
	aspect-ratio: 5 / 4;
	object-fit: cover;
}

.hbi-quality-item div {
	padding: 1rem;
}

.hbi-quality-item p {
	color: var(--hbi-muted);
}

.hbi-page-hero,
.hbi-product-hero {
	position: relative;
	overflow: hidden;
	background: var(--hbi-dark);
	color: #fff;
}

.hbi-page-hero {
	min-height: 360px;
	display: flex;
	align-items: center;
}

.hbi-page-hero--plain {
	background: #ffffff;
	color: var(--hbi-ink);
	border-bottom: 1px solid var(--hbi-line);
}

.hbi-page-hero__image,
.hbi-page-hero__shade {
	position: absolute;
	inset: 0;
}

.hbi-page-hero__image {
	background-position: center;
	background-size: cover;
}

.hbi-page-hero__shade {
	background: linear-gradient(90deg, rgba(17, 21, 19, 0.86), rgba(17, 21, 19, 0.45));
}

[dir="rtl"] .hbi-page-hero__shade {
	background: linear-gradient(270deg, rgba(17, 21, 19, 0.86), rgba(17, 21, 19, 0.45));
}

.hbi-page-hero__content {
	position: relative;
	z-index: 1;
	max-width: 760px;
	padding-block: 4.5rem;
}

.hbi-page-hero:not(.hbi-page-hero--plain) h1,
.hbi-page-hero:not(.hbi-page-hero--plain) p {
	color: #fff;
}

.hbi-term-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1.5rem;
}

.hbi-term-pills a {
	display: inline-flex;
	min-height: 38px;
	align-items: center;
	padding: 0.45rem 0.7rem;
	border: 1px solid var(--hbi-line);
	border-radius: var(--hbi-radius);
	background: #fff;
	color: var(--hbi-muted);
	font-weight: 800;
}

.hbi-product-hero {
	background: #ffffff;
	color: var(--hbi-ink);
}

.hbi-product-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
	align-items: center;
	gap: 3rem;
	padding-block: 4.5rem;
}

.hbi-product-hero__content p {
	max-width: 620px;
	color: var(--hbi-muted);
	font-size: 1.08rem;
}

.hbi-product-hero__actions {
	margin-top: 1.4rem;
}

.hbi-product-hero__image {
	margin: 0;
	overflow: hidden;
	border-radius: var(--hbi-radius);
	box-shadow: var(--hbi-shadow);
}

.hbi-product-hero__image img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.hbi-detail-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	gap: 2rem;
	align-items: start;
}

.hbi-detail-content,
.hbi-page-content,
.hbi-post-item {
	max-width: 820px;
}

.hbi-detail-content h2,
.hbi-page-content h1,
.hbi-page-content h2,
.hbi-post-item h2 {
	margin-bottom: 1rem;
}

.hbi-detail-content p,
.hbi-page-content p,
.hbi-post-item p {
	color: var(--hbi-muted);
}

.hbi-detail-panel {
	padding: 1.2rem;
	border: 1px solid var(--hbi-line);
	border-radius: var(--hbi-radius);
	background: #fff;
}

.hbi-detail-panel h3 {
	margin-top: 1.2rem;
	margin-bottom: 0.65rem;
}

.hbi-mini-specs {
	display: grid;
	gap: 0.65rem;
}

.hbi-mini-specs div {
	padding-bottom: 0.65rem;
	border-bottom: 1px solid var(--hbi-line);
}

.hbi-mini-specs span {
	display: block;
	color: var(--hbi-muted);
	font-size: 0.84rem;
	font-weight: 800;
}

.hbi-mini-specs strong {
	display: block;
}

.hbi-spec-list {
	margin: 0;
}

.hbi-spec-list dt {
	margin-top: 0.65rem;
	color: var(--hbi-muted);
	font-size: 0.84rem;
	font-weight: 800;
}

.hbi-spec-list dd {
	margin: 0;
	padding-bottom: 0.55rem;
	border-bottom: 1px solid var(--hbi-line);
}

.hbi-notice {
	padding: 1rem;
	border: 1px solid rgba(185, 81, 50, 0.24);
	border-radius: var(--hbi-radius);
	background: rgba(185, 81, 50, 0.08);
	color: var(--hbi-rust-dark);
	font-weight: 700;
}

.hbi-pagination {
	margin-top: 2rem;
}

.hbi-footer {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(rgba(34, 35, 34, 0.42), rgba(34, 35, 34, 0.42)),
		repeating-linear-gradient(0deg, #777 0, #878787 2px, #6d6d6d 4px, #8a8a8a 6px);
	color: #fff;
}

.hbi-footer::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.18);
	pointer-events: none;
}

.hbi-footer__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1.05fr 1.15fr 1fr;
	gap: 3.25rem;
	padding-block: 4.2rem 3.7rem;
}

.hbi-footer h2 {
	margin-bottom: 1.5rem;
	color: #fff;
	font-size: 1.55rem;
	text-transform: uppercase;
}

.hbi-footer p,
.hbi-footer a,
.hbi-footer span {
	color: rgba(255, 255, 255, 0.88);
}

.hbi-footer-logo {
	display: inline-flex;
	align-items: center;
	gap: 0.8rem;
	margin-bottom: 1.45rem;
}

.hbi-footer-logo__mark {
	display: inline-grid;
	width: 96px;
	height: 96px;
	place-items: center;
	border: 3px solid #35208f;
	border-radius: 50%;
	color: #35208f;
	background: rgba(255, 255, 255, 0.18);
	font-size: 3.4rem;
	font-weight: 900;
	line-height: 1;
}

.hbi-footer-logo__text {
	max-width: 220px;
	color: #fff;
	font-size: 1.15rem;
	font-weight: 900;
}

.hbi-footer__copyright {
	margin-top: 1rem;
	font-weight: 700;
}

.hbi-social {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.35rem;
}

.hbi-social a {
	display: inline-grid;
	width: 42px;
	height: 42px;
	place-items: center;
	border-radius: 50%;
	background: #fff;
	color: #35414a;
	font-weight: 900;
}

.hbi-footer-contact {
	display: grid;
	gap: 0.9rem;
}

.hbi-footer-contact__row {
	display: grid;
	grid-template-columns: 78px minmax(0, 1fr);
	gap: 0.9rem;
	align-items: start;
	font-size: 1.02rem;
}

[dir="rtl"] .hbi-footer-contact__row {
	grid-template-columns: minmax(0, 1fr) 78px;
}

.hbi-footer-contact__label {
	color: #fff;
	font-weight: 900;
}

.hbi-latest-list {
	display: grid;
	gap: 1.15rem;
}

.hbi-latest-item {
	display: grid;
	grid-template-columns: 76px minmax(0, 1fr);
	gap: 1rem;
	align-items: center;
	min-width: 0;
}

[dir="rtl"] .hbi-latest-item {
	grid-template-columns: minmax(0, 1fr) 76px;
}

.hbi-latest-item__date {
	display: grid;
	width: 76px;
	height: 76px;
	place-items: center;
	background: #d90909;
	color: #fff;
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
}

.hbi-latest-item__date span,
.hbi-latest-item__date strong {
	display: block;
	color: #fff;
}

.hbi-latest-item__date span {
	font-size: 0.95rem;
	font-weight: 900;
}

.hbi-latest-item__date strong {
	font-size: 2rem;
}

.hbi-latest-item__body {
	display: grid;
	gap: 0.2rem;
	min-width: 0;
}

.hbi-latest-item__body strong,
.hbi-latest-item__body span {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.hbi-latest-item__body strong {
	color: #fff;
	font-size: 1.05rem;
	text-transform: uppercase;
}

.hbi-back-top {
	position: absolute;
	top: 2.6rem;
	right: 2.5rem;
	z-index: 2;
	display: inline-grid;
	width: 58px;
	height: 58px;
	place-items: center;
	background: #000;
	color: #fff;
	font-size: 2rem;
	font-weight: 900;
}

[dir="rtl"] .hbi-back-top {
	right: auto;
	left: 2.5rem;
}

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

.hbi-post-list {
	display: grid;
	gap: 1rem;
}

.hbi-post-item {
	padding: 1.25rem;
	border: 1px solid var(--hbi-line);
	border-radius: var(--hbi-radius);
	background: #fff;
}

@media (max-width: 980px) {
	h1 {
		font-size: 3rem;
	}

	h2 {
		font-size: 2rem;
	}

	.hbi-header__inner {
		grid-template-columns: auto auto 1fr;
	}

	.hbi-menu-toggle {
		display: inline-block;
		order: 3;
		justify-self: end;
	}

	.hbi-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		display: none;
		padding: 0.75rem 20px 1rem;
		border-bottom: 1px solid var(--hbi-line);
		background: var(--hbi-bg);
	}

	.hbi-menu-open .hbi-nav {
		display: block;
	}

	.hbi-nav__list {
		display: grid;
		justify-content: stretch;
		gap: 0.25rem;
	}

	.hbi-nav__list a {
		justify-content: flex-start;
		background: #fff;
	}

	[dir="rtl"] .hbi-nav__list a {
		justify-content: flex-end;
	}

	.hbi-header__actions {
		justify-self: end;
	}

	.hbi-header__actions .hbi-button--whatsapp {
		display: none;
	}

	.hbi-product-grid,
	.hbi-quality-grid,
	.hbi-product-grid--compact {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hbi-split,
	.hbi-product-hero__inner,
	.hbi-detail-layout {
		grid-template-columns: 1fr;
	}

	.hbi-detail-panel {
		order: -1;
	}

	.hbi-footer__grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.hbi-back-top {
		top: 1.25rem;
		right: 1.25rem;
	}

	[dir="rtl"] .hbi-back-top {
		right: auto;
		left: 1.25rem;
	}
}

@media (max-width: 680px) {
	body {
		font-size: 15px;
	}

	h1 {
		font-size: 2.35rem;
	}

	h2 {
		font-size: 1.75rem;
	}

	.hbi-container {
		width: min(100% - 28px, var(--hbi-container));
	}

	.hbi-header__inner {
		min-height: 66px;
		gap: 0.65rem;
	}

	.hbi-brand__mark {
		width: 34px;
		height: 34px;
	}

	.hbi-brand__text {
		max-width: 145px;
		font-size: 0.95rem;
	}

	.hbi-language__link {
		min-width: 30px;
		height: 30px;
	}

	.hbi-hero {
		min-height: calc(100svh - 116px);
	}

	.hbi-hero__content {
		padding-block: 3rem;
	}

	.hbi-hero__text {
		font-size: 1rem;
	}

	.hbi-hero__actions,
	.hbi-product-card__actions {
		align-items: stretch;
		flex-direction: column;
	}

	.hbi-button,
	.hbi-link {
		width: 100%;
	}

	.hbi-hero__proof {
		gap: 0.45rem;
	}

	.hbi-hero__proof span {
		font-size: 0.85rem;
	}

	.hbi-section {
		padding-block: 3.5rem;
	}

	.hbi-product-grid,
	.hbi-quality-grid,
	.hbi-product-grid--compact {
		grid-template-columns: 1fr;
	}

	.hbi-page-hero {
		min-height: 300px;
	}

	.hbi-page-hero__content,
	.hbi-product-hero__inner {
		padding-block: 3rem;
	}

	.hbi-footer__grid {
		padding-block: 3.3rem 2.8rem;
	}

	.hbi-footer-contact__row,
	[dir="rtl"] .hbi-footer-contact__row {
		grid-template-columns: 1fr;
		gap: 0.15rem;
	}

	.hbi-latest-item,
	[dir="rtl"] .hbi-latest-item {
		grid-template-columns: 64px minmax(0, 1fr);
	}

	.hbi-latest-item__date {
		width: 64px;
		height: 64px;
	}

	.hbi-latest-item__date strong {
		font-size: 1.55rem;
	}

	.hbi-back-top,
	[dir="rtl"] .hbi-back-top {
		top: 1rem;
		right: 1rem;
		left: auto;
		width: 48px;
		height: 48px;
	}
}
