/* =========================================================
MARKET HEATMAP
========================================================= */

#mvSectorHeatmap{

display:grid;
grid-template-columns:repeat(auto-fill,minmax(90px,1fr));
gap:6px;

}

.mv-heatmap-cell{

display:flex;
flex-direction:column;
justify-content:center;
align-items:center;

height:70px;

font-size:12px;
font-weight:600;

color:#fff;

border-radius:6px;

cursor:pointer;

transition:transform .15s ease, box-shadow .15s ease;

}

.mv-heatmap-cell:hover{

transform:scale(1.05);

box-shadow:0 4px 12px rgba(0,0,0,.4);

}

.mv-heatmap-symbol{

font-size:13px;

}

.mv-heatmap-change{

font-size:11px;
opacity:.85;

}