/* =========================================================================
   RealtorGates Vision360 - Dashboard + Editor
   ========================================================================= */

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

/* Ensure the hidden attribute always wins over component display rules. */
[hidden] { display: none !important; }

body.rgv {
	margin: 0;
	font-family: var(--rgv-font);
	color: var(--rgv-ink);
	background: var(--rgv-bg);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	line-height: 1.5;
}

.rgv-wrap { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 24px; }

a { color: var(--rgv-navy); }

/* ---- Topbar ---- */
.rgv-topbar {
	background: var(--rgv-navy);
	background: linear-gradient(180deg, var(--rgv-navy) 0%, var(--rgv-navy-dark) 100%);
	color: #fff;
	box-shadow: var(--rgv-shadow);
}
.rgv-topbar__inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.rgv-brand { display: inline-flex; align-items: center; text-decoration: none; }
.rgv-brand__logo { max-height: 38px; width: auto; display: block; }
.rgv-brand__mark { font-size: 22px; font-weight: 800; letter-spacing: .3px; color: #fff; }
.rgv-brand__mark span { color: var(--rgv-gold); }
.rgv-topbar__nav { display: flex; gap: 22px; align-items: center; }
.rgv-link-muted { color: rgba(255,255,255,.82); text-decoration: none; font-size: 14px; font-weight: 500; }
.rgv-link-muted:hover { color: #fff; }

/* ---- Main ---- */
.rgv-main { padding-top: 36px; padding-bottom: 64px; }

/* ---- Welcome ---- */
.rgv-welcome {
	display: flex; align-items: center; justify-content: space-between;
	gap: 24px; margin-bottom: 28px; flex-wrap: wrap;
}
.rgv-welcome__title { font-size: 26px; font-weight: 800; margin: 0 0 4px; color: var(--rgv-navy); }
.rgv-welcome__sub { margin: 0; color: var(--rgv-ink-soft); }

/* ---- Buttons ---- */
.rgv-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	font: inherit; font-weight: 600; font-size: 14px;
	padding: 11px 18px; border-radius: 999px; border: 1px solid transparent;
	cursor: pointer; text-decoration: none; transition: all .16s ease;
	white-space: nowrap; line-height: 1;
}
.rgv-btn:disabled, .rgv-btn[disabled] { opacity: .45; cursor: not-allowed; }
.rgv-btn--gold { background: var(--rgv-gold); color: #1c1403; }
.rgv-btn--gold:hover { background: var(--rgv-gold-dark); }
.rgv-btn--navy { background: var(--rgv-navy); color: #fff; }
.rgv-btn--navy:hover { background: var(--rgv-navy-dark); }
.rgv-btn--ghost { background: #fff; color: var(--rgv-navy); border-color: var(--rgv-grey-200); }
.rgv-btn--ghost:hover { border-color: var(--rgv-navy); }
.rgv-btn--quiet { background: transparent; color: var(--rgv-grey-600); border-color: transparent; }
.rgv-btn--quiet:hover { color: #b42318; }
.rgv-btn--whatsapp { background: #25D366; color: #06351b; }
.rgv-btn--whatsapp:hover { background: #1eb858; }
.rgv-btn__plus { font-size: 17px; font-weight: 700; }

/* ---- Cards grid ---- */
.rgv-grid {
	display: grid; gap: 22px;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.rgv-card {
	background: var(--rgv-surface); border: 1px solid var(--rgv-grey-100);
	border-radius: var(--rgv-radius); overflow: hidden; box-shadow: var(--rgv-shadow-sm);
	transition: box-shadow .18s ease, transform .18s ease;
	display: flex; flex-direction: column;
}
.rgv-card:hover { box-shadow: var(--rgv-shadow); transform: translateY(-2px); }
.rgv-card__cover {
	position: relative; aspect-ratio: 16/10; background-size: cover; background-position: center;
	background-color: var(--rgv-navy);
	display: flex; align-items: center; justify-content: center;
}
.rgv-card__placeholder { color: rgba(255,255,255,.5); font-size: 34px; font-weight: 800; letter-spacing: 1px; }
.rgv-card__body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.rgv-card__title { font-size: 17px; font-weight: 700; margin: 0; color: var(--rgv-navy); }
.rgv-card__addr { margin: 0; color: var(--rgv-ink-soft); font-size: 13.5px; }
.rgv-card__meta { margin: 0 0 6px; color: var(--rgv-grey-400); font-size: 12.5px; }
.rgv-card__actions { display: flex; gap: 10px; margin-top: auto; }
.rgv-card__actions .rgv-btn { flex: 1; }
.rgv-card__hint { margin: 6px 0 0; font-size: 12px; color: var(--rgv-grey-400); }

/* ---- Status pills ---- */
.rgv-pill {
	position: absolute; top: 12px; left: 12px;
	font-size: 11.5px; font-weight: 700; letter-spacing: .3px;
	padding: 5px 11px; border-radius: 999px; color: #fff;
	background: var(--rgv-grey-400); backdrop-filter: blur(4px);
}
.rgv-pill--draft { background: var(--rgv-status-draft); }
.rgv-pill--rg_private { background: var(--rgv-status-private); }
.rgv-pill--publish { background: var(--rgv-status-publish); }
.rgv-pill--rg_archived { background: var(--rgv-status-archived); }

/* ---- Copy row ---- */
.rgv-copyrow { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.rgv-copy {
	font: inherit; font-size: 12.5px; font-weight: 600;
	padding: 7px 12px; border-radius: 8px; cursor: pointer;
	background: var(--rgv-grey-50); border: 1px solid var(--rgv-grey-100); color: var(--rgv-navy);
	transition: all .15s ease;
}
.rgv-copy:hover:not(:disabled) { background: var(--rgv-navy); color: #fff; border-color: var(--rgv-navy); }
.rgv-copy:disabled { opacity: .4; cursor: not-allowed; }
.rgv-copy.is-copied { background: var(--rgv-status-publish); color: #fff; border-color: var(--rgv-status-publish); }

/* ---- Empty state ---- */
.rgv-empty {
	background: #fff; border: 1px dashed var(--rgv-grey-200); border-radius: var(--rgv-radius-lg);
	padding: 64px 24px; text-align: center; color: var(--rgv-ink-soft);
}
.rgv-empty__icon {
	width: 84px; height: 84px; margin: 0 auto 18px; border-radius: 50%;
	background: var(--rgv-navy); color: var(--rgv-gold);
	display: flex; align-items: center; justify-content: center;
	font-size: 26px; font-weight: 800;
}
.rgv-empty h2 { margin: 0 0 6px; color: var(--rgv-navy); }
.rgv-empty p { margin: 0 0 20px; }

/* ---- Footer ---- */
.rgv-foot {
	margin-top: 48px; padding-top: 22px; border-top: 1px solid var(--rgv-grey-100);
	display: flex; gap: 18px; align-items: center; color: var(--rgv-grey-400); font-size: 13px;
}
.rgv-foot a { color: var(--rgv-grey-600); text-decoration: none; }
.rgv-foot a:hover { color: var(--rgv-navy); }

/* =========================================================================
   Editor
   ========================================================================= */
.rgv-editor-main { max-width: 820px; }
.rgv-editor-head { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.rgv-editor-head h1 { font-size: 24px; font-weight: 800; color: var(--rgv-navy); margin: 0; }
.rgv-editor-head .rgv-pill { position: static; }

.rgv-form { display: flex; flex-direction: column; gap: 20px; }
.rgv-form-card { padding: 22px 22px 24px; }
.rgv-form-card__title { font-size: 16px; font-weight: 700; color: var(--rgv-navy); margin: 0 0 4px; }
.rgv-form-card__hint { margin: 0 0 16px; color: var(--rgv-ink-soft); font-size: 13.5px; }

.rgv-field { display: block; margin-bottom: 16px; }
.rgv-field:last-child { margin-bottom: 0; }
.rgv-field__label { display: block; font-size: 13px; font-weight: 600; color: var(--rgv-ink-soft); margin-bottom: 7px; }
.rgv-field__label em { color: #b42318; font-style: normal; }
.rgv-field input, .rgv-field textarea {
	width: 100%; font: inherit; font-size: 15px; color: var(--rgv-ink);
	padding: 11px 13px; border: 1px solid var(--rgv-grey-200); border-radius: var(--rgv-radius-sm);
	background: #fff; transition: border-color .15s ease, box-shadow .15s ease;
}
.rgv-field input:focus, .rgv-field textarea:focus {
	outline: none; border-color: var(--rgv-navy);
	box-shadow: 0 0 0 3px rgba(11,37,69,.10);
}
.rgv-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }

/* ---- Cover ---- */
.rgv-cover {
	position: relative; aspect-ratio: 16/9; border-radius: var(--rgv-radius-sm);
	background: var(--rgv-grey-50); background-size: cover; background-position: center;
	border: 1px dashed var(--rgv-grey-200); overflow: hidden;
}
.rgv-cover__overlay {
	position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
	background: rgba(11,37,69,.04);
}

/* ---- Nadir patch ---- */
.rgv-nadir { display: flex; align-items: center; gap: 18px; }
.rgv-nadir__preview {
	width: 92px; height: 92px; flex: 0 0 auto; border-radius: 50%;
	background-color: var(--rgv-navy); background-size: cover; background-position: center;
	border: 1px solid var(--rgv-grey-200);
}
.rgv-nadir__controls { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }

/* ---- Uploader ---- */
.rgv-uploader__drop {
	border: 2px dashed var(--rgv-grey-200); border-radius: var(--rgv-radius);
	padding: 32px 20px; text-align: center; color: var(--rgv-ink-soft);
	cursor: pointer; transition: all .15s ease; background: var(--rgv-grey-50);
}
.rgv-uploader__drop:hover, .rgv-uploader__drop.is-drag {
	border-color: var(--rgv-gold); background: #fffaf0; color: var(--rgv-navy);
}
.rgv-uploader__icon { display: block; font-size: 30px; font-weight: 800; color: var(--rgv-navy); margin-bottom: 8px; }
.rgv-uploader__drop p { margin: 0 0 4px; }
.rgv-uploader__drop small { color: var(--rgv-grey-400); }

/* ---- Scenes ---- */
.rgv-scenes { list-style: none; margin: 16px 0 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.rgv-scene {
	display: flex; align-items: center; gap: 14px;
	background: var(--rgv-grey-50); border: 1px solid var(--rgv-grey-100);
	border-radius: var(--rgv-radius-sm); padding: 10px 12px;
}
.rgv-scene__thumb {
	width: 64px; height: 44px; border-radius: 6px; background-size: cover; background-position: center;
	flex: 0 0 auto; background-color: var(--rgv-navy);
}
.rgv-scene__room { flex: 1; font: inherit; font-size: 14px; padding: 9px 11px; border: 1px solid var(--rgv-grey-200); border-radius: 8px; }
.rgv-scene__room:focus { outline: none; border-color: var(--rgv-navy); box-shadow: 0 0 0 3px rgba(11,37,69,.1); }
.rgv-scene__default { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--rgv-ink-soft); white-space: nowrap; cursor: pointer; }
.rgv-scene__remove {
	border: none; background: transparent; color: var(--rgv-grey-400); font-size: 22px; line-height: 1;
	cursor: pointer; padding: 4px 8px; border-radius: 6px;
}
.rgv-scene__remove:hover { color: #b42318; background: #fdecec; }
.rgv-scene.is-uploading { opacity: .6; }
.rgv-scene { cursor: pointer; }
.rgv-scene__room { cursor: text; }
.rgv-scene.is-selected { border-color: var(--rgv-gold); box-shadow: 0 0 0 2px rgba(200,161,75,.4); background: #fffaf0; }
.rgv-scene__handle { flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center; width: 22px; align-self: stretch; color: var(--rgv-grey-400); cursor: grab; touch-action: none; }
.rgv-scene__handle:hover { color: var(--rgv-navy); }
.rgv-scene__handle svg { fill: currentColor; }
.rgv-scene.is-reordering { opacity: .55; outline: 2px dashed var(--rgv-gold); }

/* ---- Live editor preview + doorway arrows ---- */
.rgv-preview {
	margin-top: 18px; border: 1px solid var(--rgv-grey-100); border-radius: var(--rgv-radius);
	overflow: hidden; background: #fff;
}
.rgv-preview__stage { position: relative; height: 380px; }
/* Pannellum adds .pnlm-container to this element and forces height:100%;
   keep it absolutely filling the fixed-height stage so it never collapses. */
.rgv-preview__pano { position: absolute; inset: 0; width: 100%; height: 100%; background: var(--rgv-navy); }
.rgv-preview__pano.is-arming { cursor: crosshair; }
.rgv-preview__hint {
	position: absolute; left: 12px; bottom: 12px; margin: 0; z-index: 5;
	background: rgba(8,27,51,.74); color: #fff; font-size: 12.5px; font-weight: 600;
	padding: 7px 12px; border-radius: 999px; pointer-events: none; max-width: calc(100% - 24px);
}
.rgv-preview__bar {
	display: flex; align-items: center; justify-content: space-between; gap: 12px;
	padding: 12px 14px; border-top: 1px solid var(--rgv-grey-100); flex-wrap: wrap;
}
.rgv-preview__room { font-size: 13.5px; font-weight: 700; color: var(--rgv-navy); }
.rgv-preview__tools { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.rgv-preview__select {
	font: inherit; font-size: 13px; padding: 8px 10px; border: 1px solid var(--rgv-grey-200);
	border-radius: 8px; background: #fff; color: var(--rgv-ink);
}
.rgv-preview .rgv-btn { padding: 8px 14px; font-size: 13px; }
.rgv-arrows {
	list-style: none; margin: 0; padding: 12px 14px; display: flex; flex-wrap: wrap; gap: 8px;
	border-top: 1px dashed var(--rgv-grey-100);
}
.rgv-arrows__empty { color: var(--rgv-grey-400); font-size: 12.5px; }
.rgv-arrow-chip {
	display: inline-flex; align-items: center; gap: 6px;
	background: var(--rgv-grey-50); border: 1px solid var(--rgv-grey-200); border-radius: 999px;
	padding: 5px 6px 5px 12px; font-size: 12.5px; font-weight: 600; color: var(--rgv-navy);
}
.rgv-arrow-chip__x {
	border: none; background: transparent; color: var(--rgv-grey-400); font-size: 16px; line-height: 1;
	cursor: pointer; padding: 2px 7px; border-radius: 50%;
}
.rgv-arrow-chip__x:hover { color: #b42318; background: #fdecec; }

/* Arrow hotspots inside the preview (same look as the live tour) */
.pnlm-hotspot.rgv-arrow-hotspot { background: none !important; width: 0 !important; height: 0 !important; }
.rgv-arrow {
	position: absolute; left: 0; top: 0; transform: translate(-50%, -50%);
	display: flex; flex-direction: column; align-items: center; gap: 6px; cursor: pointer;
}
.rgv-arrow__disc {
	width: 46px; height: 46px; border-radius: 50%;
	background: rgba(200,161,75,.94); color: #1c1403;
	display: flex; align-items: center; justify-content: center;
	border: 2px solid #fff; box-shadow: 0 6px 18px rgba(0,0,0,.35);
	animation: rgv-arrow-pulse 2.4s ease-out infinite;
}
.rgv-arrow__label {
	font-size: 12px; font-weight: 700; color: #fff; background: rgba(8,27,51,.82);
	padding: 3px 9px; border-radius: 999px; white-space: nowrap;
}
.rgv-arrow--edit .rgv-arrow__label { opacity: 1; }
@keyframes rgv-arrow-pulse {
	0%   { box-shadow: 0 6px 18px rgba(0,0,0,.35), 0 0 0 0 rgba(200,161,75,.5); }
	70%  { box-shadow: 0 6px 18px rgba(0,0,0,.35), 0 0 0 14px rgba(200,161,75,0); }
	100% { box-shadow: 0 6px 18px rgba(0,0,0,.35), 0 0 0 0 rgba(200,161,75,0); }
}

/* ---- Floor plan (editor) ---- */
.rgv-floorplan { border: 1px solid var(--rgv-grey-100); border-radius: var(--rgv-radius); overflow: hidden; background: #fff; }
.rgv-floorplan__empty { padding: 32px 20px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 8px; background: var(--rgv-grey-50); }
.rgv-floorplan__empty small { color: var(--rgv-grey-400); }
.rgv-floorplan__stage { position: relative; line-height: 0; }
.rgv-floorplan__stage.is-arming { cursor: crosshair; }
.rgv-floorplan__stage img { display: block; width: 100%; height: auto; }
.rgv-floorplan__pins { position: absolute; inset: 0; pointer-events: none; }
.rgv-fp-pin { position: absolute; transform: translate(-50%, -50%); display: flex; flex-direction: column; align-items: center; gap: 3px; line-height: 1; pointer-events: auto; cursor: grab; touch-action: none; }
.rgv-fp-pin.is-dragging { cursor: grabbing; z-index: 5; }
.rgv-fp-pin.is-dragging .rgv-fp-pin__dot { transform: scale(1.25); }
.rgv-fp-pin__dot { width: 16px; height: 16px; border-radius: 50%; background: var(--rgv-navy); border: 2px solid #fff; box-shadow: 0 2px 6px rgba(0,0,0,.35); }
.rgv-fp-pin__label { font-size: 11px; font-weight: 700; color: #fff; background: rgba(8,27,51,.82); padding: 2px 7px; border-radius: 999px; white-space: nowrap; }
.rgv-fp-pin.is-current .rgv-fp-pin__dot { background: var(--rgv-gold); transform: scale(1.18); }
.rgv-floorplan__bar { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 14px; border-top: 1px solid var(--rgv-grey-100); flex-wrap: wrap; line-height: 1.4; }
.rgv-floorplan__hint { font-size: 12.5px; color: var(--rgv-ink-soft); }
.rgv-floorplan__tools { display: flex; gap: 8px; flex-wrap: wrap; }
.rgv-floorplan .rgv-btn { padding: 8px 14px; font-size: 13px; }

/* ---- Disclaimer ---- */
.rgv-disclaimer { font-size: 12.5px; color: var(--rgv-grey-400); margin: -4px 2px 0; }

/* ---- Action bar ---- */
.rgv-actionbar {
	position: sticky; bottom: 0; z-index: 5;
	display: flex; align-items: center; justify-content: space-between; gap: 12px;
	background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
	border: 1px solid var(--rgv-grey-100); border-radius: var(--rgv-radius);
	padding: 14px 16px; box-shadow: var(--rgv-shadow);
}
.rgv-actionbar__right { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---- Share box ---- */
.rgv-share { background: #fff; border: 1px solid var(--rgv-grey-100); border-radius: var(--rgv-radius); padding: 22px; }
.rgv-share__row { margin-bottom: 14px; }
.rgv-share__row:last-child { margin-bottom: 0; }
.rgv-share__row label { display: block; font-size: 13px; font-weight: 600; color: var(--rgv-ink-soft); margin-bottom: 7px; }
.rgv-share__copy { display: flex; gap: 8px; }
.rgv-share__copy input {
	flex: 1; font: inherit; font-size: 13px; padding: 10px 12px;
	border: 1px solid var(--rgv-grey-200); border-radius: 8px; background: var(--rgv-grey-50); color: var(--rgv-ink-soft);
}

/* ---- Toast ---- */
.rgv-toast {
	position: fixed; left: 50%; bottom: 28px; transform: translateX(-50%) translateY(20px);
	background: var(--rgv-navy); color: #fff; padding: 12px 22px; border-radius: 999px;
	font-size: 14px; font-weight: 600; box-shadow: var(--rgv-shadow-lg);
	opacity: 0; pointer-events: none; transition: all .25s ease; z-index: 9999;
}
.rgv-toast.is-show { opacity: 1; transform: translateX(-50%) translateY(0); }
.rgv-toast.is-error { background: #b42318; }

/* ---- Responsive ---- */
@media (max-width: 720px) {
	.rgv-wrap { padding: 0 16px; }
	.rgv-welcome { flex-direction: column; align-items: flex-start; }
	.rgv-welcome .rgv-btn { width: 100%; }
	.rgv-grid2 { grid-template-columns: 1fr; }
	.rgv-actionbar { flex-direction: column; align-items: stretch; }
	.rgv-actionbar__right { justify-content: stretch; }
	.rgv-actionbar__right .rgv-btn { flex: 1; }
	.rgv-scene { flex-wrap: wrap; }
	.rgv-scene__room { flex: 1 1 100%; order: 3; }
}

/* =========================================================================
   Sign-in page (Vision360 home)
   ========================================================================= */
body.rgv-login {
	margin: 0; min-height: 100vh; display: flex; align-items: center; justify-content: center;
	background:
		radial-gradient(ellipse at top left, rgba(200,161,75,.12), transparent 55%),
		radial-gradient(ellipse at bottom right, rgba(11,37,69,.10), transparent 55%),
		linear-gradient(180deg, var(--rgv-bg) 0%, #f3eee4 100%);
	padding: 24px;
}
.rgv-login__wrap { width: 100%; max-width: 440px; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.rgv-login__card {
	width: 100%; background: #fff; border: 1px solid var(--rgv-grey-100);
	border-radius: var(--rgv-radius-lg); padding: 36px 32px; box-shadow: var(--rgv-shadow-lg);
}
.rgv-login__brand { text-align: center; margin-bottom: 22px; }
.rgv-login__mark { font-size: 30px; font-weight: 800; letter-spacing: .4px; color: var(--rgv-navy); display: inline-block; }
.rgv-login__mark span { color: var(--rgv-gold); margin-left: 2px; }
.rgv-login__tag { margin: 6px 0 0; font-size: 13px; color: var(--rgv-grey-400); letter-spacing: .2px; }
.rgv-login__title { font-size: 20px; font-weight: 700; color: var(--rgv-navy); margin: 0 0 18px; text-align: left; }

.rgv-login__error {
	background: #fdecec; color: #b42318; border: 1px solid #f6c7c7;
	padding: 11px 14px; border-radius: var(--rgv-radius-sm);
	font-size: 13.5px; margin-bottom: 16px;
}

.rgv-login__form { display: flex; flex-direction: column; gap: 14px; }
.rgv-login__field { display: block; }
.rgv-login__label { display: block; font-size: 13px; font-weight: 600; color: var(--rgv-ink-soft); margin-bottom: 7px; }
.rgv-login__form input[type="text"], .rgv-login__form input[type="password"] {
	width: 100%; font: inherit; font-size: 15px; color: var(--rgv-ink);
	padding: 12px 14px; border: 1px solid var(--rgv-grey-200); border-radius: var(--rgv-radius-sm);
	background: #fff; transition: border-color .15s ease, box-shadow .15s ease;
}
.rgv-login__form input[type="text"]:focus, .rgv-login__form input[type="password"]:focus {
	outline: none; border-color: var(--rgv-navy); box-shadow: 0 0 0 3px rgba(11,37,69,.10);
}
.rgv-login__remember { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--rgv-ink-soft); margin: 2px 0; }
.rgv-login__submit { width: 100%; padding: 13px 18px; font-size: 15px; margin-top: 6px; }
.rgv-login__forgot { display: block; text-align: center; margin-top: 12px; font-size: 13px; color: var(--rgv-ink-soft); text-decoration: none; }
.rgv-login__forgot:hover { color: var(--rgv-navy); }
.rgv-login__foot { margin: 0; font-size: 12.5px; color: var(--rgv-grey-400); letter-spacing: .2px; }
