/* ==========================================================================
   The Burning Fire — the room
   Build / craft / buy columns and the stores frame on the right.
   ========================================================================== */

div#buildBtns, div#craftBtns, div#buyBtns {
	position: absolute;
	top: 56px;
}

div#buildBtns { left: 0; }
div#craftBtns { left: 150px; }
div#buyBtns   { left: 300px; }

div#buildBtns:before,
div#craftBtns:before,
div#buyBtns:before {
	content: attr(data-legend);
	position: relative;
	display: block;
	top: -8px;
	margin-bottom: 4px;
}

/* ---- Stores & weapons frames ------------------------------------------- */

div#storesContainer {
	position: absolute;
	top: 0;
	right: 0;
}

div#stores,
div#weapons {
	position: relative;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--bg-panel);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.02) inset;
	cursor: default;
	padding: 9px 12px 7px;
	width: 200px;
	box-sizing: content-box;
}

div#stores  { z-index: 10; }
div#weapons { margin-top: 18px; right: 0; }

/* The legend sits in a notch punched through the top border. */
div#stores:before,
div#weapons:before {
	position: absolute;
	background: var(--bg);
	content: attr(data-legend);
	left: 10px;
	top: -0.72em;
	padding: 0 7px;
	line-height: 1.4;
}

div.storeRow {
	position: relative;
	padding: 1px 0;
}
