/**
 * HRD Live Market Prices — front-end styles.
 * Scoped under .hrd-wf to avoid theme collisions. Elementor controls
 * (colors, typography, spacing, radius, background) override these via
 * generated selectors, so these are sensible defaults only.
 */

.hrd-wf {
	--hrd-wf-up: #16c784;
	--hrd-wf-down: #ea3943;
	--hrd-wf-muted: #8a8f98;
	box-sizing: border-box;
}

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

.hrd-wf-item {
	display: flex;
	align-items: center;
	gap: 12px;
	background: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 12px;
}

/* Identity + figures shared bits ----------------------------------------- */
.hrd-wf-icon img {
	display: block;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	object-fit: contain;
}

.hrd-wf-identity {
	display: flex;
	flex-direction: column;
	line-height: 1.25;
	min-width: 0;
}

.hrd-wf-name {
	font-weight: 600;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.hrd-wf-symbol {
	font-size: 0.8em;
	color: var(--hrd-wf-muted);
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.hrd-wf-figures {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	margin-left: auto;
	line-height: 1.3;
}

.hrd-wf-price {
	font-weight: 700;
	font-variant-numeric: tabular-nums;
}

.hrd-wf-delta {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 0.85em;
	font-variant-numeric: tabular-nums;
}

.hrd-wf-arrow {
	font-size: 0.75em;
}

/* Trend colors ----------------------------------------------------------- */
.hrd-wf-trend-up {
	color: var(--hrd-wf-up);
}

.hrd-wf-trend-down {
	color: var(--hrd-wf-down);
}

.hrd-wf-trend-flat {
	color: var(--hrd-wf-muted);
}

/* List ------------------------------------------------------------------- */
.hrd-wf-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

/* Grid (card + glass) ---------------------------------------------------- */
.hrd-wf-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}

.hrd-wf-card,
.hrd-wf-glass {
	flex-wrap: wrap;
}

/* Glassmorphism ---------------------------------------------------------- */
.hrd-wf-layout-glass {
	padding: 4px;
}

.hrd-wf-glass {
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.25);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.hrd-wf-glass .hrd-wf-name,
.hrd-wf-glass .hrd-wf-price {
	color: #ffffff;
}

/* Compact ---------------------------------------------------------------- */
.hrd-wf-compact {
	padding: 6px 10px;
	gap: 8px;
	font-size: 0.9em;
	border: none;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	border-radius: 0;
	background: transparent;
}

.hrd-wf-compact .hrd-wf-identity {
	flex-direction: row;
	align-items: baseline;
	gap: 6px;
}

/* Table ------------------------------------------------------------------ */
.hrd-wf-table {
	width: 100%;
	border-collapse: collapse;
}

.hrd-wf-table th,
.hrd-wf-table td {
	padding: 12px 14px;
	text-align: left;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.hrd-wf-table th {
	font-size: 0.8em;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--hrd-wf-muted);
}

.hrd-wf-table .hrd-wf-col-price,
.hrd-wf-table .hrd-wf-col-change,
.hrd-wf-table .hrd-wf-col-percent {
	text-align: right;
	font-variant-numeric: tabular-nums;
}

.hrd-wf-asset-cell {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.hrd-wf-asset-cell .hrd-wf-symbol {
	margin-left: 2px;
}

/* Ticker / Marquee ------------------------------------------------------- */
.hrd-wf-ticker-viewport {
	overflow: hidden;
	width: 100%;
}

.hrd-wf-ticker-track {
	display: flex;
	flex-wrap: nowrap;
	gap: 12px;
	width: max-content;
	animation: hrd-wf-marquee var(--hrd-wf-ticker-duration, 30s) linear infinite;
}

.hrd-wf-layout-ticker[data-pause-on-hover="true"] .hrd-wf-ticker-track:hover {
	animation-play-state: paused;
}

.hrd-wf-ticker-item {
	flex: 0 0 auto;
	white-space: nowrap;
}

.hrd-wf-ticker-item .hrd-wf-figures {
	flex-direction: row;
	align-items: baseline;
	gap: 8px;
	margin-left: 8px;
}

@keyframes hrd-wf-marquee {
	from {
		transform: translateX(0);
	}
	to {
		/* Two identical passes are rendered, so -50% loops seamlessly. */
		transform: translateX(-50%);
	}
}

@media (prefers-reduced-motion: reduce) {
	.hrd-wf-ticker-track {
		animation: none;
	}
}

/* Notice / fallback ------------------------------------------------------ */
.hrd-wf-notice {
	padding: 16px;
	border: 1px dashed rgba(0, 0, 0, 0.15);
	border-radius: 8px;
	color: var(--hrd-wf-muted);
	text-align: center;
}

.hrd-wf-notice-detail {
	margin-top: 6px;
	opacity: 0.75;
}

/* Responsive ------------------------------------------------------------- */
@media (max-width: 767px) {
	.hrd-wf-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 479px) {
	.hrd-wf-grid {
		grid-template-columns: 1fr;
	}
}

/* =======================================================================
 * PREMIUM DARK SKINS — Compact Cards + Advanced Chart
 * All classes prefixed hrd-market- / hrd- and scoped to .hrd-market-widget.
 * ===================================================================== */

.hrd-market-widget {
	--market-bg: #050b14;
	--card-bg: linear-gradient(180deg, #111827 0%, #0b1220 100%);
	--card-bg-soft: #0f172a;
	--border-color: rgba(148, 163, 184, 0.16);
	--border-hover: rgba(148, 163, 184, 0.34);
	--text-color: #e5e7eb;
	--muted-color: #8b95a7;
	--positive-color: #00d09c;
	--negative-color: #ff4560;
	--positive-glow: rgba(0, 208, 156, 0.16);
	--negative-glow: rgba(255, 69, 96, 0.16);
	--neutral-glow: rgba(148, 163, 184, 0.14);
	--hrd-chart-line-width: 2;

	color: var(--text-color);
	direction: ltr;
	font-family: inherit;
	box-sizing: border-box;
}

.hrd-market-widget *,
.hrd-market-widget *::before,
.hrd-market-widget *::after {
	box-sizing: border-box;
}

/* Grid ------------------------------------------------------------------ */
.hrd-market-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 16px;
}

.hrd-market-skin-advanced .hrd-market-grid {
	grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
}

/* ---------------------------------------------------------- Compact card */
.hrd-market-card {
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	gap: 14px;
	min-height: 150px;
	padding: 20px;
	background: var(--card-bg);
	border: 1px solid var(--border-color);
	border-radius: 18px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 18px 40px rgba(0, 0, 0, 0.22);
	transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.hrd-market-widget:not(.hrd-market-no-hover) .hrd-market-card:hover {
	transform: translateY(-4px);
	border-color: var(--border-hover);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 24px 50px rgba(0, 0, 0, 0.34);
}

.hrd-market-card-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.hrd-market-change-badge {
	font-size: 12px;
	font-weight: 600;
	line-height: 1;
	padding: 5px 9px;
	border-radius: 999px;
	background: var(--neutral-glow);
	color: var(--muted-color);
	white-space: nowrap;
}

.hrd-market-card.is-positive .hrd-market-change-badge {
	background: var(--positive-glow);
	color: var(--positive-color);
}

.hrd-market-card.is-negative .hrd-market-change-badge {
	background: var(--negative-glow);
	color: var(--negative-color);
}

.hrd-market-symbol-wrap {
	display: flex;
	align-items: baseline;
	gap: 1px;
	min-width: 0;
}

.hrd-market-symbol {
	font-size: 15px;
	font-weight: 700;
	color: var(--text-color);
	letter-spacing: 0.01em;
}

.hrd-market-pair {
	font-size: 12px;
	font-weight: 500;
	color: var(--muted-color);
}

.hrd-market-price {
	font-size: 26px;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: #ffffff;
	font-variant-numeric: tabular-nums;
}

.hrd-market-sparkline {
	margin-top: auto;
	width: 100%;
	height: 48px;
	color: var(--muted-color);
}

.hrd-market-card.is-positive .hrd-market-sparkline {
	color: var(--positive-color);
}

.hrd-market-card.is-negative .hrd-market-sparkline {
	color: var(--negative-color);
}

.hrd-market-sparkline svg {
	display: block;
	width: 100%;
	height: 100%;
	overflow: visible;
}

.hrd-sparkline-line {
	fill: none;
	stroke: currentColor;
	stroke-width: var(--hrd-chart-line-width, 2);
	stroke-linecap: round;
	stroke-linejoin: round;
}

.hrd-sparkline-fill {
	stroke: none;
}

/* --------------------------------------------------------- Advanced card */
.hrd-advanced-card {
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 22px 22px 16px;
	background: radial-gradient(120% 130% at 50% 0%, #0d1726 0%, #070d16 62%);
	border: 1px solid var(--border-color);
	border-radius: 22px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 24px 60px rgba(0, 0, 0, 0.35);
	transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.hrd-market-widget:not(.hrd-market-no-hover) .hrd-advanced-card:hover {
	transform: translateY(-4px);
	border-color: var(--border-hover);
}

.hrd-advanced-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
}

.hrd-asset-info {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
}

.hrd-asset-icon img {
	display: block;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: contain;
}

.hrd-asset-symbol {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
	color: #ffffff;
	letter-spacing: 0.01em;
}

.hrd-asset-subtitle {
	margin: 3px 0 0;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--muted-color);
}

.hrd-chart-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 9px;
	color: var(--muted-color);
	background: rgba(148, 163, 184, 0.10);
	border: 1px solid var(--border-color);
	flex: 0 0 auto;
}

.hrd-advanced-price-row {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 12px;
}

.hrd-advanced-price {
	font-size: 34px;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: #ffffff;
	font-variant-numeric: tabular-nums;
}

.hrd-advanced-change {
	font-size: 15px;
	font-weight: 600;
	font-variant-numeric: tabular-nums;
	color: var(--muted-color);
}

.hrd-advanced-card.is-positive .hrd-advanced-change {
	color: var(--positive-color);
}

.hrd-advanced-card.is-negative .hrd-advanced-change {
	color: var(--negative-color);
}

.hrd-advanced-chart {
	position: relative;
	width: 100%;
	height: 220px;
	color: var(--muted-color);
}

.hrd-advanced-card.is-positive .hrd-advanced-chart {
	color: var(--positive-color);
}

.hrd-advanced-card.is-negative .hrd-advanced-chart {
	color: var(--negative-color);
}

.hrd-advanced-chart svg {
	display: block;
	width: 100%;
	height: 100%;
	overflow: visible;
}

.hrd-chart-line {
	fill: none;
	stroke: currentColor;
	stroke-width: var(--hrd-chart-line-width, 2);
	stroke-linecap: round;
	stroke-linejoin: round;
	filter: drop-shadow(0 0 6px currentColor);
}

.hrd-chart-fill {
	stroke: none;
}

.hrd-chart-labels {
	display: flex;
	justify-content: space-between;
	gap: 6px;
	font-size: 11px;
	color: var(--muted-color);
	font-variant-numeric: tabular-nums;
}

/* Notice / fallback (premium) ------------------------------------------- */
.hrd-market-notice {
	padding: 18px 20px;
	border: 1px dashed var(--border-color);
	border-radius: 16px;
	background: var(--card-bg-soft);
	color: var(--muted-color);
	text-align: center;
}

.hrd-market-notice-detail {
	margin-top: 6px;
	opacity: 0.7;
}

/* Responsive ------------------------------------------------------------ */
@media (max-width: 767px) {
	.hrd-market-skin-advanced .hrd-market-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 479px) {
	.hrd-market-grid {
		grid-template-columns: 1fr;
	}
	.hrd-market-price {
		font-size: 23px;
	}
	.hrd-advanced-price {
		font-size: 28px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hrd-market-card,
	.hrd-advanced-card {
		transition: none;
	}
}

/* =======================================================================
 * TABLE SKIN (premium dark, responsive)
 * ===================================================================== */
.hrd-market-skin-table .hrd-market-table-wrap {
	background: var(--card-bg);
	border: 1px solid var(--border-color);
	border-radius: 18px;
	overflow: hidden;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 18px 40px rgba(0, 0, 0, 0.22);
}

.hrd-market-skin-table .hrd-table-scroll {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.hrd-market-table {
	width: 100%;
	min-width: 520px;
	border-collapse: collapse;
	color: var(--text-color);
}

.hrd-market-skin-table .hrd-table-stack .hrd-market-table {
	min-width: 0;
}

.hrd-market-table thead th {
	padding: 14px 18px;
	text-align: right;
	font-size: 11px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	white-space: nowrap;
	color: var(--muted-color);
	background: rgba(148, 163, 184, 0.05);
	border-bottom: 1px solid var(--border-color);
}

.hrd-market-table thead .hrd-col-market {
	text-align: left;
}

.hrd-market-table tbody td {
	padding: 14px 18px;
	text-align: right;
	white-space: nowrap;
	vertical-align: middle;
	font-variant-numeric: tabular-nums;
	border-bottom: 1px solid var(--border-color);
}

.hrd-market-table tbody td.hrd-col-market {
	text-align: left;
}

.hrd-market-table tbody tr:last-child td {
	border-bottom: none;
}

.hrd-market-table tbody tr {
	transition: background .2s ease;
}

.hrd-market-widget:not(.hrd-market-no-hover) .hrd-market-table tbody tr:hover {
	background: rgba(148, 163, 184, 0.06);
}

.hrd-market-table-asset {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
}

.hrd-market-table-id {
	display: flex;
	flex-direction: column;
	line-height: 1.3;
	min-width: 0;
}

.hrd-market-table-id strong {
	font-weight: 500;
	color: #ffffff;
}

.hrd-market-table-id .hrd-market-pair {
	color: var(--muted-color);
	font-weight: 400;
}

.hrd-market-table-sub {
	font-size: 11px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--muted-color);
	white-space: nowrap;
}

.hrd-market-table .hrd-col-price {
	color: #ffffff;
	font-weight: 500;
}

.hrd-positive { color: var(--positive-color); }
.hrd-negative { color: var(--negative-color); }
.hrd-neutral  { color: var(--muted-color); }

.hrd-market-trend-icon { font-size: 11px; }

.hrd-market-mini-chart {
	display: inline-block;
	width: 120px;
	height: 36px;
	color: var(--muted-color);
	vertical-align: middle;
}

.hrd-market-table tr.is-positive .hrd-market-mini-chart { color: var(--positive-color); }
.hrd-market-table tr.is-negative .hrd-market-mini-chart { color: var(--negative-color); }

.hrd-market-mini-chart svg {
	display: block;
	width: 100%;
	height: 100%;
	overflow: visible;
}

.hrd-market-nochart { color: var(--muted-color); }

/* Local icon styles (no external icon library) ------------------------- */
.hrd-market-icon-img {
	display: block;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	object-fit: contain;
}

.hrd-market-icon-mono {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(148, 163, 184, 0.16);
	color: var(--text-color);
	font-weight: 500;
	font-size: 0.78em;
	line-height: 1;
}

/* Table — stacked-card responsive mode --------------------------------- */
@media (max-width: 600px) {
	.hrd-market-skin-table .hrd-table-stack .hrd-market-table thead {
		position: absolute;
		width: 1px;
		height: 1px;
		padding: 0;
		margin: -1px;
		overflow: hidden;
		clip: rect(0 0 0 0);
		border: 0;
	}
	.hrd-market-skin-table .hrd-table-stack .hrd-market-table,
	.hrd-market-skin-table .hrd-table-stack .hrd-market-table tbody,
	.hrd-market-skin-table .hrd-table-stack .hrd-market-table tr,
	.hrd-market-skin-table .hrd-table-stack .hrd-market-table td {
		display: block;
		width: 100%;
	}
	.hrd-market-skin-table .hrd-table-stack .hrd-market-table tr {
		padding: 6px 0;
		border-bottom: 1px solid var(--border-color);
	}
	.hrd-market-skin-table .hrd-table-stack .hrd-market-table tr:last-child {
		border-bottom: none;
	}
	.hrd-market-skin-table .hrd-table-stack .hrd-market-table td {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 12px;
		padding: 7px 18px;
		border: none;
		text-align: right;
	}
	.hrd-market-skin-table .hrd-table-stack .hrd-market-table td::before {
		content: attr(data-label);
		color: var(--muted-color);
		font-size: 11px;
		text-transform: uppercase;
		letter-spacing: 0.05em;
		text-align: left;
	}
	.hrd-market-skin-table .hrd-table-stack .hrd-market-table td.hrd-col-market {
		justify-content: flex-start;
		padding-top: 12px;
	}
	.hrd-market-skin-table .hrd-table-stack .hrd-market-table td.hrd-col-market::before {
		display: none;
	}
	.hrd-market-skin-table .hrd-table-stack .hrd-market-mini-chart {
		width: 100px;
	}
}

/* =======================================================================
 * TICKER SKIN (premium dark, seamless marquee, RTL/LTR safe)
 * ===================================================================== */
.hrd-market-skin-ticker {
	--hrd-ticker-gap: 28px;
}

.hrd-market-ticker-wrap {
	position: relative;
	width: 100%;
	max-width: 100%;
	overflow: hidden;
	padding: 12px 0;
	direction: ltr;
	background: var(--card-bg);
	border: 1px solid var(--border-color);
	border-radius: 18px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 18px 40px rgba(0, 0, 0, 0.22);
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.hrd-market-ticker-track {
	display: flex;
	flex-wrap: nowrap;
	width: max-content;
	animation: hrdMarketTicker var(--hrd-ticker-duration, 30s) linear infinite;
	will-change: transform;
}

.hrd-market-ticker-wrap[data-direction="rtl"] .hrd-market-ticker-track {
	animation-direction: reverse;
}

.hrd-market-ticker-wrap[data-pause="true"]:hover .hrd-market-ticker-track {
	animation-play-state: paused;
}

.hrd-market-ticker-list {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
}

.hrd-market-ticker-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-right: var(--hrd-ticker-gap, 28px);
	padding: 4px 0;
	white-space: nowrap;
	direction: ltr;
}

.hrd-market-ticker-icon {
	display: inline-flex;
}

.hrd-market-ticker-icon .hrd-market-icon-img,
.hrd-market-ticker-icon .hrd-market-icon-mono {
	width: 20px;
	height: 20px;
}

.hrd-market-ticker-symbol {
	font-size: 14px;
	font-weight: 500;
	color: #ffffff;
}

.hrd-market-ticker-symbol .hrd-market-pair {
	color: var(--muted-color);
	font-weight: 400;
}

.hrd-market-ticker-price {
	font-size: 14px;
	color: var(--text-color);
	font-variant-numeric: tabular-nums;
}

.hrd-market-ticker-change {
	font-style: normal;
	font-size: 13px;
	font-weight: 500;
	font-variant-numeric: tabular-nums;
	color: var(--muted-color);
}

.hrd-market-ticker-item.is-positive .hrd-market-ticker-change { color: var(--positive-color); }
.hrd-market-ticker-item.is-negative .hrd-market-ticker-change { color: var(--negative-color); }

@keyframes hrdMarketTicker {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
	.hrd-market-ticker-track {
		animation: none;
	}
}

/* Live update flash ----------------------------------------------------- */
.hrd-market-widget .hrd-flash {
	animation: hrd-wf-flash 0.7s ease;
}

@keyframes hrd-wf-flash {
	0%   { background-color: rgba(148, 163, 184, 0.28); }
	100% { background-color: transparent; }
}

@media (prefers-reduced-motion: reduce) {
	.hrd-market-widget .hrd-flash {
		animation: none;
	}
}

/* =======================================================================
 * TRADINGVIEW SKINS (official embeds — load from tradingview.com)
 * ===================================================================== */
.hrd-market-skin-tv .hrd-market-grid {
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.hrd-market-skin-tv .hrd-market-tv-item {
	height: 360px;
	border: 1px solid var(--border-color);
	border-radius: 14px;
	overflow: hidden;
	background: var(--card-bg-soft);
}

.hrd-market-skin-tv .hrd-market-tv-item-auto {
	height: auto;
}

.hrd-market-skin-tv .hrd-market-tv-item .tradingview-widget-container {
	display: flex;
	flex-direction: column;
	height: 100%;
	width: 100%;
}

.hrd-market-skin-tv .hrd-market-tv-item .tradingview-widget-container__widget {
	flex: 1 1 auto;
	min-height: 0;
}

.hrd-market-tv-single {
	width: 100%;
	max-width: 100%;
}

.hrd-market-tv-single-overview {
	height: 500px;
}

.hrd-market-tv-single-overview .tradingview-widget-container,
.hrd-market-tv-single-overview .tradingview-widget-container__widget {
	height: 100%;
}

@media (max-width: 479px) {
	.hrd-market-skin-tv .hrd-market-grid {
		grid-template-columns: 1fr;
	}
}
