/* DfT Traffic Map Explorer front-end styles. All selectors are namespaced. */
.dftm-app {
	--dftm-accent: #005ea5;
	--dftm-accent-dark: #003f73;
	--dftm-accent-pale: #eaf4fb;
	--dftm-border: #d5d9de;
	--dftm-text: #1f2933;
	--dftm-muted: #5f6b76;
	--dftm-surface: #fff;
	--dftm-surface-alt: #f5f7f9;
	--dftm-shadow: 0 12px 34px rgba(16, 24, 40, 0.12);
	position: relative;
	width: 100%;
	margin: 1.5rem 0;
	color: var(--dftm-text);
	font: inherit;
	line-height: 1.5;
	isolation: isolate;
}


@supports (color: color-mix(in srgb, #000 50%, #fff)) {
	.dftm-app {
		--dftm-accent-dark: color-mix(in srgb, var(--dftm-accent) 78%, #000);
		--dftm-accent-pale: color-mix(in srgb, var(--dftm-accent) 10%, #fff);
	}
}

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

.dftm-app button,
.dftm-app input,
.dftm-app select {
	font: inherit;
}

.dftm-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1.25rem;
	margin-bottom: 1rem;
}

.dftm-heading-group {
	max-width: 70rem;
}

.dftm-title {
	margin: 0;
	font-size: clamp(1.6rem, 2.7vw, 2.35rem);
	line-height: 1.16;
	letter-spacing: -0.025em;
}

.dftm-intro {
	max-width: 65ch;
	margin: 0.55rem 0 0;
	color: var(--dftm-muted);
}

.dftm-summary {
	min-width: 7.5rem;
	padding: 0.65rem 0.9rem;
	border: 1px solid var(--dftm-border);
	border-radius: 0.75rem;
	background: var(--dftm-surface-alt);
	text-align: right;
}

.dftm-summary__number,
.dftm-summary__label {
	display: block;
}

.dftm-summary__number {
	font-size: 1.5rem;
	font-weight: 750;
	line-height: 1;
	font-variant-numeric: tabular-nums;
}

.dftm-summary__label {
	margin-top: 0.25rem;
	font-size: 0.78rem;
	color: var(--dftm-muted);
}

.dftm-filters {
	display: grid;
	grid-template-columns: minmax(13rem, 1.7fr) repeat(4, minmax(9rem, 1fr));
	gap: 0.75rem;
	align-items: end;
	margin-bottom: 1rem;
	padding: 1rem;
	border: 1px solid var(--dftm-border);
	border-radius: 0.85rem;
	background: var(--dftm-surface-alt);
}

.dftm-field {
	min-width: 0;
}

.dftm-field label {
	display: block;
	margin-bottom: 0.3rem;
	font-size: 0.78rem;
	font-weight: 700;
	color: #35404b;
}

.dftm-field input,
.dftm-field select {
	width: 100%;
	min-height: 2.6rem;
	margin: 0;
	padding: 0.5rem 0.65rem;
	border: 1px solid #aeb6bf;
	border-radius: 0.45rem;
	background: #fff;
	color: var(--dftm-text);
	box-shadow: none;
}

.dftm-field input:focus,
.dftm-field select:focus,
.dftm-button:focus-visible,
.dftm-map-button:focus-visible,
.dftm-result__button:focus-visible,
.dftm-marker:focus-visible,
.dftm-map:focus-visible,
.dftm-data-note summary:focus-visible,
.dftm-history-table summary:focus-visible {
	outline: 3px solid #ffbf47;
	outline-offset: 2px;
}

.dftm-filter-actions {
	display: flex;
	align-items: end;
}

.dftm-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.55rem;
	padding: 0.52rem 0.85rem;
	border: 1px solid var(--dftm-accent);
	border-radius: 0.45rem;
	background: var(--dftm-accent);
	color: #fff;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
}

.dftm-button:hover {
	background: var(--dftm-accent-dark, #003f73);
	color: #fff;
	text-decoration: none;
}

.dftm-button--secondary {
	border-color: #9ba5af;
	background: #fff;
	color: #26313c;
}

.dftm-button--secondary:hover {
	border-color: #66717d;
	background: #eef1f4;
	color: #18212a;
}

.dftm-button--small {
	min-height: 2.2rem;
	padding: 0.4rem 0.65rem;
	font-size: 0.82rem;
}

.dftm-button:disabled,
.dftm-map-button:disabled {
	cursor: not-allowed;
	opacity: 0.55;
}

.dftm-workspace {
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(19rem, 0.85fr);
	min-height: var(--dftm-map-height, 680px);
	overflow: hidden;
	border: 1px solid var(--dftm-border);
	border-radius: 0.9rem;
	background: var(--dftm-surface);
	box-shadow: var(--dftm-shadow);
}

.dftm-app--map-only .dftm-workspace {
	grid-template-columns: minmax(0, 1fr);
}

.dftm-map-column,
.dftm-map-shell,
.dftm-map {
	min-width: 0;
	min-height: 0;
}

.dftm-map-shell {
	position: relative;
	height: var(--dftm-map-height, 680px);
	overflow: hidden;
	background: #dce4e9;
}

.dftm-map {
	position: absolute;
	inset: 0;
	overflow: hidden;
	background: #dce4e9;
	cursor: grab;
	touch-action: none;
	user-select: none;
}

.dftm-map--dragging {
	cursor: grabbing;
}

.dftm-tile-pane,
.dftm-marker-pane,
.dftm-user-pane {
	position: absolute;
	inset: 0;
	will-change: transform;
}

.dftm-tile-pane {
	z-index: 1;
}

.dftm-marker-pane {
	z-index: 3;
	pointer-events: none;
}

.dftm-user-pane {
	z-index: 4;
	pointer-events: none;
}

.dftm-map-tile {
	position: absolute;
	width: 256px;
	height: 256px;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	box-shadow: none !important;
	user-select: none;
}

.dftm-marker {
	position: absolute;
	width: 1.55rem;
	height: 1.55rem;
	margin: -0.775rem 0 0 -0.775rem;
	padding: 0;
	border: 2px solid #fff;
	border-radius: 50%;
	box-shadow: 0 2px 7px rgba(0, 0, 0, 0.38);
	transform-origin: center;
	pointer-events: auto;
	cursor: pointer;
	transition: transform 120ms ease, box-shadow 120ms ease;
}

.dftm-marker:hover,
.dftm-marker:focus-visible {
	z-index: 7;
	transform: scale(1.28);
	box-shadow: 0 3px 11px rgba(0, 0, 0, 0.45);
}

.dftm-marker--low,
.dftm-legend-dot--low {
	background: #2b8cbe;
}

.dftm-marker--mid,
.dftm-legend-dot--mid {
	background: #f59e0b;
}

.dftm-marker--high,
.dftm-legend-dot--high {
	background: #c93756;
}

.dftm-marker--none,
.dftm-legend-dot--none {
	background: #707b86;
}

.dftm-marker--selected {
	z-index: 8;
	width: 2rem;
	height: 2rem;
	margin: -1rem 0 0 -1rem;
	border-width: 4px;
	box-shadow: 0 0 0 4px rgba(255, 191, 71, 0.85), 0 3px 12px rgba(0, 0, 0, 0.48);
}

.dftm-marker--cluster {
	width: 2.3rem;
	height: 2.3rem;
	margin: -1.15rem 0 0 -1.15rem;
	border: 3px solid rgba(255, 255, 255, 0.96);
	background: var(--dftm-accent);
	color: #fff;
	font-size: 0.72rem;
	font-weight: 800;
	font-variant-numeric: tabular-nums;
}

.dftm-user-location {
	position: absolute;
	width: 1rem;
	height: 1rem;
	margin: -0.5rem 0 0 -0.5rem;
	border: 3px solid #fff;
	border-radius: 50%;
	background: #155eef;
	box-shadow: 0 0 0 8px rgba(21, 94, 239, 0.2), 0 2px 7px rgba(0, 0, 0, 0.35);
}

.dftm-map-toolbar {
	position: absolute;
	top: 0.7rem;
	left: 0.7rem;
	z-index: 8;
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
	max-width: calc(100% - 1.4rem);
	pointer-events: none;
}

.dftm-map-toolbar__group {
	display: inline-flex;
}

.dftm-map-button {
	min-height: 2.35rem;
	padding: 0.38rem 0.62rem;
	border: 1px solid #aab3bc;
	border-radius: 0.38rem;
	background: rgba(255, 255, 255, 0.96);
	color: #202a34;
	font-size: 0.82rem;
	font-weight: 700;
	box-shadow: 0 1px 5px rgba(0, 0, 0, 0.16);
	pointer-events: auto;
	cursor: pointer;
}

.dftm-map-button:hover {
	background: #f0f3f5;
}

.dftm-map-toolbar__group .dftm-map-button:first-child {
	border-radius: 0.38rem 0 0 0.38rem;
}

.dftm-map-toolbar__group .dftm-map-button:last-child {
	border-left: 0;
	border-radius: 0 0.38rem 0.38rem 0;
}

.dftm-zoom-in,
.dftm-zoom-out {
	width: 2.35rem;
	padding: 0;
	font-size: 1.25rem;
	line-height: 1;
}

.dftm-map-status {
	position: absolute;
	left: -10000px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.dftm-map-legend {
	position: absolute;
	left: 0.65rem;
	bottom: 1.95rem;
	z-index: 6;
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem 0.7rem;
	max-width: calc(100% - 1.3rem);
	padding: 0.4rem 0.55rem;
	border-radius: 0.38rem;
	background: rgba(255, 255, 255, 0.94);
	color: #26313c;
	font-size: 0.7rem;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.14);
}

.dftm-map-legend span {
	display: inline-flex;
	align-items: center;
	gap: 0.28rem;
}

.dftm-legend-dot {
	display: inline-block;
	width: 0.68rem;
	height: 0.68rem;
	border: 1px solid #fff;
	border-radius: 50%;
	box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.22);
}

.dftm-attribution {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 6;
	padding: 0.14rem 0.35rem;
	background: rgba(255, 255, 255, 0.9);
	color: #27313a;
	font-size: 0.62rem;
}

.dftm-attribution a {
	color: #174f79;
}

.dftm-panel {
	position: relative;
	height: var(--dftm-map-height, 680px);
	overflow: auto;
	border-left: 1px solid var(--dftm-border);
	background: #fff;
	scrollbar-gutter: stable;
}

.dftm-results-view,
.dftm-details-view,
.dftm-map-details {
	min-height: 100%;
	padding: 1rem;
}

.dftm-map-details {
	position: absolute;
	top: 4rem;
	right: 0.75rem;
	bottom: 2rem;
	z-index: 9;
	width: min(25rem, calc(100% - 1.5rem));
	min-height: 0;
	overflow: auto;
	border: 1px solid var(--dftm-border);
	border-radius: 0.75rem;
	background: rgba(255, 255, 255, 0.98);
	box-shadow: var(--dftm-shadow);
}

.dftm-panel-heading {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0.7rem;
	padding-bottom: 0.8rem;
	border-bottom: 1px solid var(--dftm-border);
}

.dftm-panel-heading h3,
.dftm-detail-title,
.dftm-details-view h4,
.dftm-map-details h4 {
	margin: 0;
	line-height: 1.25;
}

.dftm-panel-heading h3 {
	font-size: 1.2rem;
}

.dftm-result-count {
	margin: 0.2rem 0 0;
	color: var(--dftm-muted);
	font-size: 0.76rem;
}

.dftm-results {
	margin: 0;
	padding: 0;
	list-style: none;
}

.dftm-result {
	margin: 0;
	border-bottom: 1px solid #e1e5e9;
}

.dftm-result__button {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0.82rem 0.25rem;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: var(--dftm-text);
	text-align: left;
	cursor: pointer;
}

.dftm-result__button:hover {
	background: var(--dftm-accent-pale, #eaf4fb);
}

.dftm-result--selected .dftm-result__button {
	padding-left: 0.65rem;
	border-left: 4px solid var(--dftm-accent);
	background: var(--dftm-accent-pale, #eaf4fb);
}

.dftm-result__top {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 0.65rem;
}

.dftm-result__road {
	font-size: 0.95rem;
}

.dftm-result__value {
	font-weight: 800;
	font-variant-numeric: tabular-nums;
	white-space: nowrap;
}

.dftm-result__meta,
.dftm-result__link,
.dftm-result__distance {
	display: block;
	margin-top: 0.2rem;
	color: var(--dftm-muted);
	font-size: 0.74rem;
}

.dftm-result__distance {
	color: #315d3e;
	font-weight: 650;
}

.dftm-show-more {
	width: 100%;
	margin-top: 0.8rem;
}

.dftm-empty {
	padding: 1rem 0.2rem;
	color: var(--dftm-muted);
}

.dftm-detail-loading {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.65rem;
	min-height: 12rem;
	color: var(--dftm-muted);
}

.dftm-detail-header {
	display: flex;
	align-items: flex-start;
	gap: 0.7rem;
	margin-bottom: 0.85rem;
}

.dftm-detail-heading-group {
	min-width: 0;
}

.dftm-detail-title {
	font-size: 1.25rem;
	overflow-wrap: anywhere;
}

.dftm-detail-subtitle {
	margin: 0.25rem 0 0;
	color: var(--dftm-muted);
	font-size: 0.77rem;
}

.dftm-detail-back {
	min-width: 2.35rem;
	min-height: 2.35rem;
	padding: 0.35rem 0.5rem;
	font-size: 0.72rem;
}

.dftm-detail-hero {
	margin-bottom: 0.9rem;
	padding: 0.9rem;
	border-left: 5px solid var(--dftm-accent);
	border-radius: 0.45rem;
	background: var(--dftm-accent-pale, #eaf4fb);
}

.dftm-detail-hero__label,
.dftm-detail-hero__value,
.dftm-detail-hero__meta {
	display: block;
}

.dftm-detail-hero__label {
	font-size: 0.76rem;
	font-weight: 700;
}

.dftm-detail-hero__value {
	margin: 0.18rem 0;
	font-size: 2rem;
	line-height: 1;
	font-variant-numeric: tabular-nums;
}

.dftm-detail-hero__meta {
	color: var(--dftm-muted);
	font-size: 0.75rem;
}

.dftm-facts {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.55rem;
	margin: 0 0 1rem;
}

.dftm-fact {
	padding: 0.65rem;
	border: 1px solid #e0e4e8;
	border-radius: 0.42rem;
	background: #fafbfc;
}

.dftm-fact dt {
	margin-bottom: 0.2rem;
	color: var(--dftm-muted);
	font-size: 0.68rem;
	font-weight: 750;
	letter-spacing: 0.025em;
	text-transform: uppercase;
}

.dftm-fact dd {
	margin: 0;
	font-size: 0.79rem;
	overflow-wrap: anywhere;
}

.dftm-measures,
.dftm-history {
	margin-top: 1.1rem;
}

.dftm-measures h4,
.dftm-history h4 {
	margin-bottom: 0.65rem;
	font-size: 0.95rem;
}

.dftm-measure-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.45rem;
}

.dftm-measure-card {
	padding: 0.55rem;
	border: 1px solid #e0e4e8;
	border-radius: 0.4rem;
	background: #fff;
}

.dftm-measure-card--selected {
	border-color: var(--dftm-accent);
	box-shadow: inset 0 0 0 1px var(--dftm-accent);
}

.dftm-measure-card__label,
.dftm-measure-card__value {
	display: block;
}

.dftm-measure-card__label {
	min-height: 2.1em;
	color: var(--dftm-muted);
	font-size: 0.68rem;
}

.dftm-measure-card__value {
	margin-top: 0.2rem;
	font-size: 1rem;
	font-variant-numeric: tabular-nums;
}

.dftm-chart-wrap {
	width: 100%;
	overflow: hidden;
	border: 1px solid #e0e4e8;
	border-radius: 0.45rem;
	background: #fff;
}

.dftm-chart {
	display: block;
	width: 100%;
	height: auto;
	min-height: 12rem;
}

.dftm-chart__grid {
	stroke: #dfe4e8;
	stroke-width: 1;
}

.dftm-chart__label {
	fill: #5c6873;
	font-size: 12px;
}

.dftm-chart__line {
	stroke: var(--dftm-accent);
	stroke-width: 4;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.dftm-chart__point {
	fill: #fff;
	stroke: var(--dftm-accent);
	stroke-width: 3;
}

.dftm-history-table {
	margin-top: 0.65rem;
}

.dftm-history-table summary,
.dftm-data-note summary {
	font-weight: 700;
	cursor: pointer;
}

.dftm-table-scroll {
	max-height: 22rem;
	overflow: auto;
	margin-top: 0.55rem;
	border: 1px solid var(--dftm-border);
	border-radius: 0.4rem;
}

.dftm-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.76rem;
}

.dftm-table th,
.dftm-table td {
	padding: 0.48rem;
	border-bottom: 1px solid #e4e7ea;
	text-align: left;
	vertical-align: top;
}

.dftm-table thead th {
	position: sticky;
	top: 0;
	z-index: 1;
	background: #eef2f5;
}

.dftm-table tbody tr:last-child th,
.dftm-table tbody tr:last-child td {
	border-bottom: 0;
}

.dftm-detail-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	margin-top: 1.1rem;
}

.dftm-detail-actions .dftm-button {
	flex: 1 1 9rem;
	font-size: 0.75rem;
}

.dftm-data-note {
	margin-top: 0.85rem;
	padding: 0.7rem 0.85rem;
	border: 1px solid var(--dftm-border);
	border-radius: 0.55rem;
	background: var(--dftm-surface-alt);
	font-size: 0.82rem;
}

.dftm-data-note p {
	margin: 0.55rem 0 0;
}

.dftm-loading {
	position: absolute;
	inset: 0;
	z-index: 30;
	display: none;
	align-items: center;
	justify-content: center;
	border-radius: 0.9rem;
	background: rgba(255, 255, 255, 0.68);
	backdrop-filter: blur(1px);
}

.dftm-app--loading .dftm-loading {
	display: flex;
}

.dftm-spinner {
	display: inline-block;
	width: 2rem;
	height: 2rem;
	border: 3px solid #cbd3da;
	border-top-color: var(--dftm-accent);
	border-radius: 50%;
	animation: dftm-spin 750ms linear infinite;
}

.dftm-map-error {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 12;
	width: min(28rem, calc(100% - 2rem));
	padding: 1rem;
	border: 1px solid #b42318;
	border-radius: 0.5rem;
	background: #fff4f2;
	color: #7a271a;
	font-weight: 700;
	text-align: center;
	transform: translate(-50%, -50%);
}

.dftm-error {
	padding: 0.75rem;
	border-left: 4px solid #b42318;
	background: #fff4f2;
	color: #7a271a;
}

.dftm-visually-hidden {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	margin: -1px !important;
	padding: 0 !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.dftm-app:fullscreen,
.dftm-app--fullscreen-fallback {
	width: 100vw;
	height: 100vh;
	margin: 0;
	padding: 1rem;
	overflow: auto;
	background: #fff;
}

.dftm-app:fullscreen .dftm-workspace,
.dftm-app--fullscreen-fallback .dftm-workspace {
	min-height: calc(100vh - 9rem);
}

.dftm-app:fullscreen .dftm-map-shell,
.dftm-app:fullscreen .dftm-panel,
.dftm-app--fullscreen-fallback .dftm-map-shell,
.dftm-app--fullscreen-fallback .dftm-panel {
	height: calc(100vh - 9rem);
}

.dftm-app--fullscreen-fallback {
	position: fixed;
	inset: 0;
	z-index: 999999;
}

.dftm-no-scroll {
	overflow: hidden !important;
}

@keyframes dftm-spin {
	to { transform: rotate(360deg); }
}

@media (max-width: 1200px) {
	.dftm-filters {
		grid-template-columns: repeat(4, minmax(9rem, 1fr));
	}

	.dftm-field--search {
		grid-column: span 2;
	}
}

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

	.dftm-workspace {
		grid-template-columns: minmax(0, 1fr);
		overflow: visible;
	}

	.dftm-map-shell {
		height: min(var(--dftm-map-height, 680px), 66vh);
		min-height: 25rem;
	}

	.dftm-panel {
		height: auto;
		max-height: 38rem;
		border-top: 1px solid var(--dftm-border);
		border-left: 0;
	}

	.dftm-app:fullscreen .dftm-workspace,
	.dftm-app--fullscreen-fallback .dftm-workspace {
		display: grid;
		grid-template-rows: minmax(20rem, 1fr) minmax(12rem, 0.6fr);
		height: calc(100vh - 8rem);
	}

	.dftm-app:fullscreen .dftm-map-shell,
	.dftm-app--fullscreen-fallback .dftm-map-shell,
	.dftm-app:fullscreen .dftm-panel,
	.dftm-app--fullscreen-fallback .dftm-panel {
		height: 100%;
		min-height: 0;
		max-height: none;
	}
}

@media (max-width: 600px) {
	.dftm-header {
		align-items: stretch;
		flex-direction: column;
	}

	.dftm-summary {
		align-self: flex-start;
		text-align: left;
	}

	.dftm-filters {
		grid-template-columns: minmax(0, 1fr);
	}

	.dftm-field--search {
		grid-column: auto;
	}

	.dftm-map-shell {
		min-height: 23rem;
	}

	.dftm-map-toolbar {
		right: 0.55rem;
		left: 0.55rem;
	}

	.dftm-map-button {
		min-height: 2.1rem;
		padding: 0.32rem 0.45rem;
		font-size: 0.7rem;
	}

	.dftm-zoom-in,
	.dftm-zoom-out {
		width: 2.1rem;
	}

	.dftm-map-legend {
		display: none;
	}

	.dftm-panel-heading {
		align-items: stretch;
		flex-direction: column;
	}

	.dftm-panel-heading .dftm-export {
		align-self: flex-start;
	}

	.dftm-facts,
	.dftm-measure-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.dftm-map-details {
		top: 3.6rem;
		bottom: 1.4rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.dftm-marker,
	.dftm-spinner {
		transition: none;
		animation: none;
	}
}

@media (forced-colors: active) {
	.dftm-marker,
	.dftm-user-location {
		border: 2px solid ButtonText;
		background: ButtonFace;
	}

	.dftm-marker--selected {
		outline: 4px solid Highlight;
	}
}

@media print {
	.dftm-filters,
	.dftm-map-toolbar,
	.dftm-map,
	.dftm-map-legend,
	.dftm-attribution,
	.dftm-loading,
	.dftm-export,
	.dftm-show-more {
		display: none !important;
	}

	.dftm-workspace {
		display: block;
		min-height: 0;
		border: 0;
		box-shadow: none;
	}

	.dftm-panel {
		height: auto;
		max-height: none;
		overflow: visible;
		border: 0;
	}
}
