/* Beverley Leisure Homes — archive design tokens */

.bpg-archive {
	--bpg-action: #ca4440;
	--bpg-primary: #172945;
	--bpg-text: #000000;
	--bpg-text-muted: #444444;
	--bpg-filter-bg: #f2f2f2;
	--bpg-filter-field-border: 1px solid #0d070226;
	--bpg-white: #ffffff;
	--bpg-radius-card: 12px;
	--bpg-radius-control: 8px;
	--bpg-gap-grid: 40px;
	--bpg-columns: 3;
	--bpg-chevron-down: url("../images/icons/chevron-down.svg");
	--bpg-font-heading: "Aquavit", Georgia, "Times New Roman", serif;
	--bpg-font-body: "Geist", "Geist Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
	--bpg-text-xs: 12.6px;
	--bpg-text-s: 14px;
	--bpg-text-m: 16px;
	--bpg-text-l: 18px;
	--bpg-text-xl: 20px;
	--bpg-text-xxl: 26px;
	width: 100%;
	color: var(--bpg-text);
	font-family: var(--bpg-font-body);
	font-size: var(--bpg-text-m);
	line-height: 1.55;
}
body .bpg-archive *:focus-visible{
	outline: none !important;
	box-shadow: none !important;
}

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

/* Mobile filter toggle */
.bpg-archive__filter-toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	width: 100%;
	padding: 14px 18px;
	margin-bottom: 24px;
	border: 0;
	border-radius: var(--bpg-radius-card);
	background: var(--bpg-filter-bg);
	font-family: var(--bpg-font-body);
	font-size: var(--bpg-text-m);
	font-weight: 500;
	color: var(--bpg-text);
	cursor: pointer;
	outline: none;
	box-shadow: none;
}

.bpg-archive__filter-toggle span {
	flex: 1;
	text-align: left;
}

.bpg-archive__filter-chevron {
	flex-shrink: 0;
	width: 12px;
	height: 7px;
	transform-origin: center center;
	transition: transform 0.2s ease;
}

.bpg-archive__filter-toggle[aria-expanded="true"] .bpg-archive__filter-chevron {
	transform: rotate(180deg);
}

/* Filter bar */
.bpg-archive__filters {
	display: none;
	margin-bottom: 16px;
	background: var(--bpg-filter-bg);
	border-radius: var(--bpg-radius-card);
	overflow: visible;
}

.bpg-archive__filters.is-open {
	display: block;
}

.bpg-archive__filters-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px 20px;
	padding: 16px 20px;
	background: transparent;
	border-radius: 0;
	width: 100%;
	box-sizing: border-box;
	min-width: 0;
}

.bpg-archive__filters-controls {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px 16px;
	flex: 1 1 auto;
	min-width: 0;
}

.bpg-archive__active-filters {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin-bottom: 32px;
}

.bpg-archive__active-filters.is-empty {
	display: none;
}

.bpg-archive__filter-chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 36px;
	padding: 6px 10px 6px 14px;
	border-radius: var(--bpg-radius-control);
	background: var(--bpg-filter-bg);
	font-family: var(--bpg-font-body);
	font-size: var(--bpg-text-s);
	font-weight: 400;
	line-height: 1.4;
	color: var(--bpg-text);
}

.bpg-archive__filter-chip-label {
	white-space: nowrap;
}

.bpg-archive__filter-chip-remove {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: var(--bpg-text-muted);
	cursor: pointer;
	outline: none;
	box-shadow: none;
	transition: color 0.2s ease, background-color 0.2s ease;
}

.bpg-archive__filter-chip-remove:hover,
.bpg-archive__filter-chip-remove:focus-visible {
	color: var(--bpg-text);
	background: rgba(0, 0, 0, 0.06);
}

.bpg-archive__filter-chip-icon {
	display: block;
	flex-shrink: 0;
}

.bpg-archive__field--location {
	position: relative;
	width: 427px;
	max-width: 100%;
	flex: 1 1 240px;
	min-width: 200px;
}

.bpg-archive__field-icon {
	position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--bpg-text-muted);
    display: flex;
    pointer-events: none;
    z-index: 1;
    justify-content: center;
    align-items: center;
}

.bpg-archive__field--location .bpg-archive__select,
.bpg-archive__field--location .bpg-archive__input {
	box-sizing: border-box;
	width: 100%;
	height: 40px;
	min-height: 40px;
	padding: 0 16px 0 46px;
	border: var(--bpg-filter-field-border);
	border-radius: 0px;
	background-color: var(--bpg-white);
}

.bpg-archive__field--location .bpg-archive__select {
	padding-right: 32px;
	background-image: var(--bpg-chevron-down);
	background-repeat: no-repeat;
	background-size: 12px 7px;
	background-position: right 12px center;
}

.bpg-archive__field--location .bpg-archive__input {
	font-family: var(--bpg-font-body);
	font-size: var(--bpg-text-m);
	font-weight: 400;
	color: var(--bpg-text);
	outline: none;
	box-shadow: none;
	appearance: none;
}

.bpg-archive__field--location .bpg-archive__input::placeholder {
	color: var(--bpg-text-muted);
}

.bpg-archive__field--location .bpg-archive__input:focus,
.bpg-archive__field--location .bpg-archive__input:focus-visible {
	outline: none;
	box-shadow: none;
}

.bpg-archive__field--location .bpg-archive__input::-webkit-search-cancel-button {
	-webkit-appearance: none;
	appearance: none;
}

.bpg-archive__field-group--price,
.bpg-archive__field-group--beds,
.bpg-archive__field-group--amenities {
	width: auto;
	max-width: 100%;
	min-width: 100px;
	height: 40px;
	gap: 8px;
	flex-wrap: nowrap;
	flex: 0 1 auto;
}

.bpg-archive__field-group--amenities {
	min-width: 100px;
	flex: 0 1 160px;
	max-width: 200px;
}

.bpg-archive__field-group--amenities .bpg-archive__label {
	font-family: "Geist", "Geist Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 16px;
	font-weight: 400;
	font-style: normal;
	line-height: 1.5;
	letter-spacing: 0;
}

.bpg-archive__amenities-dropdown {
	position: relative;
	flex: 1;
	min-width: 0;
}

.bpg-archive__amenities-toggle {
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	width: 100%;
	min-width: 100px;
	height: 40px;
	min-height: 40px;
	padding: 8px 12px;
	border: var(--bpg-filter-field-border);
	border-radius: var(--bpg-radius-control);
	background-color: var(--bpg-white);
	font-family: var(--bpg-font-body);
	font-size: var(--bpg-text-m);
	font-weight: 400;
	line-height: 1.4;
	color: var(--bpg-text);
	cursor: pointer;
	outline: none;
	box-shadow: none;
}

.bpg-archive__amenities-toggle-text {
	flex: 1;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	text-align: left;
	color: var(--bpg-text-muted);
}

.bpg-archive__amenities-toggle-text.has-selection {
	color: var(--bpg-text);
}

.bpg-archive__amenities-chevron {
	flex-shrink: 0;
	width: 12px;
	height: 7px;
	transition: transform 0.2s ease;
}

.bpg-archive__amenities-toggle[aria-expanded="true"] .bpg-archive__amenities-chevron {
	transform: rotate(180deg);
}

.bpg-archive__amenities-panel {
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	z-index: 20;
	width: min(280px, 80vw);
	padding: 10px;
	border: var(--bpg-filter-field-border);
	border-radius: var(--bpg-radius-control);
	background: var(--bpg-white);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.bpg-archive__amenities-search-wrap {
	position: relative;
	margin-bottom: 8px;
}

.bpg-archive__amenities-search-icon {
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--bpg-text-muted);
	pointer-events: none;
}

.bpg-archive__amenities-search {
	box-sizing: border-box;
	width: 100%;
	height: 36px;
	padding: 0 12px 0 38px;
	border: var(--bpg-filter-field-border);
	border-radius: var(--bpg-radius-control);
	background: var(--bpg-white);
	font-family: var(--bpg-font-body);
	font-size: var(--bpg-text-s);
	color: var(--bpg-text);
	outline: none;
	appearance: none;
}

.bpg-archive__amenities-search::placeholder {
	color: var(--bpg-text-muted);
}

.bpg-archive__amenities-search:focus,
.bpg-archive__amenities-search:focus-visible {
	outline: none;
	box-shadow: none;
}

.bpg-archive__amenities-search::-webkit-search-cancel-button {
	-webkit-appearance: none;
	appearance: none;
}

.bpg-archive__amenities-options {
	display: flex;
	flex-direction: column;
	gap: 2px;
	max-height: 220px;
	overflow-y: auto;
}

.bpg-archive__amenities-option {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 10px;
	border-radius: 6px;
	font-family: var(--bpg-font-body);
	font-size: var(--bpg-text-s);
	line-height: 1.4;
	color: var(--bpg-text);
	cursor: pointer;
}

.bpg-archive__amenities-option:hover {
	background: rgba(0, 0, 0, 0.04);
}

.bpg-archive__amenities-option[hidden] {
	display: none;
}

.bpg-archive__amenities-option input {
	width: 16px;
	height: 16px;
	margin: 0;
	flex-shrink: 0;
	accent-color: var(--bpg-action);
	cursor: pointer;
}

.bpg-archive__field-group--price .bpg-archive__range,
.bpg-archive__field-group--beds .bpg-archive__range {
	flex: 1;
	min-width: 0;
	height: 40px;
	gap: 12px;
}

.bpg-archive__field-group--price .bpg-archive__select--compact,
.bpg-archive__field-group--beds .bpg-archive__select--compact {
	box-sizing: border-box;
	width: auto;
	min-width: 100px;
	height: 40px;
	min-height: 40px;
	padding: 8px 28px 8px 12px;
	border: var(--bpg-filter-field-border);
	border-radius:0px !important;
	background-color: var(--bpg-white);
	background-image: var(--bpg-chevron-down);
	background-repeat: no-repeat;
	background-size: 12px 7px;
	background-position: right 12px center;
	flex: 0 0 auto;
	font-family: "Geist", "Geist Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 16px;
	font-weight: 400;
	font-style: normal;
	line-height: 1.5;
	letter-spacing: 0;
	color: var(--bpg-text);
}

.bpg-archive__field-group--price .bpg-archive__label,
.bpg-archive__field-group--beds .bpg-archive__label {
	font-family: "Geist", "Geist Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 16px;
	font-weight: 400;
	font-style: normal;
	line-height: 1.5;
	letter-spacing: 0;
}

.bpg-archive__field-group--price .bpg-archive__range-sep,
.bpg-archive__field-group--beds .bpg-archive__range-sep {
	font-family: "Geist", "Geist Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 16px;
	font-weight: 400;
	font-style: normal;
	line-height: 1.5;
	letter-spacing: 0;
	color: var(--bpg-text);
}

.bpg-archive__field-group {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: nowrap;
}

.bpg-archive__label {
	font-family: var(--bpg-font-body);
	font-size: var(--bpg-text-m);
	font-weight: 500;
	color: var(--bpg-text);
	white-space: nowrap;
}

.bpg-archive__range {
	display: flex;
	align-items: center;
	gap: 10px;
}

.bpg-archive__range-sep {
	font-size: var(--bpg-text-s);
	font-weight: 400;
	color: var(--bpg-text-muted);
}

.bpg-archive__select {
	appearance: none;
	box-sizing: border-box;
	width: 100%;
	min-height: 48px;
	padding: 12px 32px 12px 16px;
	border: var(--bpg-filter-field-border);
	border-radius: var(--bpg-radius-control);
	background-color: var(--bpg-white);
	background-image: var(--bpg-chevron-down);
	background-repeat: no-repeat;
	background-size: 12px 7px;
	background-position: right 12px center;
	font-family: var(--bpg-font-body);
	font-size: var(--bpg-text-m);
	font-weight: 400;
	color: var(--bpg-text);
	cursor: pointer;
	outline: none;
	box-shadow: none;
}

.bpg-archive__select:focus,
.bpg-archive__select:focus-visible {
	outline: none;
	box-shadow: none;
}

.bpg-archive__select--compact {
	width: auto;
	min-width: 112px;
}

.bpg-archive__view-toggle {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 4px;
	flex: 0 0 auto;
	margin-left: 8px;
	padding-left: 16px;
	border-left: 1px solid #0d070226;
}

.bpg-archive__view-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 0;
	border-radius: var(--bpg-radius-control);
	background: transparent;
	color: var(--bpg-text-muted);
	cursor: pointer;
	transition: color 0.2s ease, background-color 0.2s ease;
}

.bpg-archive__view-btn svg {
	display: block;
	flex-shrink: 0;
	width: 20px;
	height: 20px;
}

.bpg-archive__view-btn:hover,
.bpg-archive__view-btn.is-active {
	color: var(--bpg-text);
	background: rgba(0, 0, 0, 0.06);
}

/* Results grid */
.bpg-archive__grid {
	display: grid;
	grid-template-columns: repeat(var(--bpg-columns), minmax(0, 1fr));
	gap: var(--bpg-gap-grid) 32px;
}

.bpg-archive__grid--view-list {
	grid-template-columns: 1fr;
	gap: 32px;
}

.bpg-archive__grid--view-list .bpg-card {
	display: grid;
	grid-template-columns: minmax(0, 340px) minmax(0, 1fr);
	gap: 28px;
	align-items: start;
}

.bpg-archive__grid--view-list .bpg-card__image-link {
	height: 100%;
}

.bpg-archive__grid--view-list .bpg-card__image,
.bpg-archive__grid--view-list .bpg-card__image--placeholder {
	min-height: 220px;
}

.bpg-archive__empty {
	grid-column: 1 / -1;
	padding: 40px 0;
	text-align: center;
	color: var(--bpg-text-muted);
}

/* Property card */
.bpg-card {
	display: flex;
	flex-direction: column;
}

.bpg-card__image-link {
	display: block;
	overflow: hidden;
	border-radius: var(--bpg-radius-card);
}

.bpg-card__image {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.bpg-card__image--placeholder {
	background: #e8e8e8;
	min-height: 200px;
}

.bpg-card__map-thumb {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 10;
	position: relative;
	overflow: hidden;
	pointer-events: none;
}

.bpg-card__map-thumb iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.bpg-archive__grid--view-list .bpg-card__map-thumb {
	aspect-ratio: auto;
	min-height: 220px;
	height: 100%;
}

.bpg-card__body {
	padding-top: 20px;
}

.bpg-card__title {
	margin: 0 0 12px;
	font-family: "Aquavit", Georgia, "Times New Roman", serif;
	font-size: 32px;
	font-weight: 600;
	font-style: normal;
	line-height: 1.2;
	letter-spacing: 0;
	color: var(--bpg-text);
	leading-trim: cap;
	text-box-trim: cap;
}

.bpg-card__title a {
	color: inherit;
	text-decoration: none;
}

.bpg-card__title a:hover {
	color: var(--bpg-primary);
}

.bpg-card__excerpt {
	margin: 0 0 16px;
	font-family: "Geist", "Geist Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 16px;
	font-weight: 400;
	font-style: normal;
	line-height: 1.5;
	letter-spacing: 0;
	color: var(--bpg-text);
}

.bpg-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 16px 24px;
	margin: 0 0 16px;
	padding: 0;
	list-style: none;
}

.bpg-card__meta-item {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: "Geist", "Geist Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 16px;
	font-weight: 400;
	font-style: normal;
	line-height: 1.5;
	letter-spacing: 0;
	color: var(--bpg-text);
}

.bpg-card__icon {
	flex-shrink: 0;
	color: var(--bpg-text);
}

.bpg-card__price {
	margin: 0 0 18px;
	font-family: "Aquavit", Georgia, "Times New Roman", serif;
	font-size: 20px;
	font-weight: 600;
	font-style: normal;
	line-height: 1.2;
	letter-spacing: 0;
	color: var(--bpg-text);
	leading-trim: cap;
	text-box-trim: cap;
}

.bpg-card__enquire {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--bpg-text);
	text-decoration: none;
}

.bpg-card__enquire > span:first-child {
	font-family: var(--bpg-font-body);
	font-size: var(--bpg-text-m);
	font-weight: 400;
	font-style: normal;
	line-height: 1;
	letter-spacing: 0;
}

.bpg-card__enquire-icon {
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
	line-height: 0;
}

.bpg-card__enquire-icon svg {
	display: block;
	width: 7px;
	height: 12px;
}

.bpg-card__enquire:hover {
	color: var(--bpg-text);
	opacity: 0.72;
}

/* Pagination */
.bpg-archive__pagination {
	margin-top: 48px;
}

.bpg-archive__pagination ul {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
	justify-content: center;
}

.bpg-archive__pagination a,
.bpg-archive__pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border-radius: var(--bpg-radius-control);
	font-family: var(--bpg-font-body);
	font-size: var(--bpg-text-s);
	font-weight: 600;
	text-decoration: none;
	color: var(--bpg-text);
	background: var(--bpg-filter-bg);
}

.bpg-archive__pagination .current {
	background: var(--bpg-primary);
	color: var(--bpg-white);
}

.bpg-archive.is-loading .bpg-archive__results {
	opacity: 0.55;
	pointer-events: none;
}

/* Desktop */
@media (min-width: 992px) {
	.bpg-archive__filter-toggle {
		display: none;
	}

	.bpg-archive__filters {
		display: block;
	}

	.bpg-archive__filters-inner {
		flex-wrap: nowrap;
		justify-content: space-between;
		align-items: center;
		gap: 16px 24px;
	}

	.bpg-archive__filters-controls {
		flex-wrap: nowrap;
		justify-content: space-between;
		gap: 12px 16px;
		flex: 1 1 auto;
		min-width: 0;
	}

	.bpg-archive__field--location {
		width: auto;
		flex: 1 1 240px;
		min-width: 200px;
		max-width: 360px;
	}

	.bpg-archive__field-group--price,
	.bpg-archive__field-group--beds {
		width: auto;
		min-width: 100px;
		flex: 0 0 auto;
		gap: 8px;
	}

	.bpg-archive__field-group--amenities {
		width: auto;
		min-width: 140px;
		flex: 0 0 180px;
		max-width: 200px;
		gap: 8px;
	}

	.bpg-archive__field-group--price .bpg-archive__select--compact,
	.bpg-archive__field-group--beds .bpg-archive__select--compact {
		width: 110px;
		min-width: 100px;
		max-width: 120px;
		flex: 0 0 110px;
		padding-right: 26px;
	}

	.bpg-archive__field-group--price .bpg-archive__range,
	.bpg-archive__field-group--beds .bpg-archive__range {
		gap: 6px;
		min-width: 0;
	}

	.bpg-archive__amenities-dropdown {
		min-width: 0;
		width: 100%;
	}

	.bpg-archive__amenities-toggle {
		min-width: 100px;
		width: 100%;
	}

	.bpg-archive__view-toggle {
		flex: 0 0 auto;
		margin-left: 0;
		padding-left: 20px;
		border-left: 1px solid #0d070226;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	.bpg-archive__filters-inner {
		gap: 12px 16px;
		padding: 14px 16px;
	}

	.bpg-archive__filters-controls {
		gap: 8px 12px;
	}

	.bpg-archive__field--location {
		flex-basis: 180px;
		min-width: 160px;
		max-width: 260px;
	}

	.bpg-archive__field-group--price .bpg-archive__select--compact,
	.bpg-archive__field-group--beds .bpg-archive__select--compact {
		width: 100px;
		min-width: 100px;
		max-width: 100px;
		flex-basis: 100px;
	}

	.bpg-archive__field-group--amenities {
		flex-basis: 150px;
		min-width: 130px;
		max-width: 160px;
	}

	.bpg-archive__view-toggle {
		padding-left: 14px;
	}

	.bpg-archive__label {
		font-size: 14px;
	}
}

/* Tablet */
@media (max-width: 991px) {
	.bpg-archive__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 32px 24px;
	}

	.bpg-archive__grid--view-list .bpg-card {
		grid-template-columns: 1fr;
	}
}

/* Mobile */
@media (max-width: 640px) {
	.bpg-archive {
		--bpg-text-xl: 18px;
		--bpg-text-l: 16px;
	}

	.bpg-card__title {
		font-size: 28px;
	}

	.bpg-archive__grid {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.bpg-archive__grid--view-list .bpg-card {
		grid-template-columns: 1fr;
	}

	.bpg-card__meta {
		flex-direction: column;
		gap: 10px;
	}

	.bpg-archive__filters-inner {
		flex-direction: column;
		align-items: stretch;
	}

	.bpg-archive__filters-controls {
		flex-direction: column;
		align-items: stretch;
		width: 100%;
	}

	.bpg-archive__field-group {
		flex-direction: column;
		align-items: flex-start;
		width: 100%;
		height: auto;
	}

	.bpg-archive__field--location {
		flex: 0 0 auto;
		height: auto;
		width: 100%;
	}

	.bpg-archive__amenities-dropdown {
		flex: 0 0 auto;
	}

	.bpg-archive__field-group--amenities,
	.bpg-archive__amenities-dropdown,
	.bpg-archive__amenities-toggle {
		width: 100%;
	}

	.bpg-archive__amenities-panel {
		width: 100%;
	}

	.bpg-archive__range {
		width: 100%;
	}

	.bpg-archive__select--compact {
		flex: 1;
		min-width: 0;
	}

	.bpg-archive__view-toggle {
		margin-left: 0;
		padding-left: 0;
		border-left: 0;
		align-self: flex-end;
	}
}

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