.background_color_grey {
    background-color: #f4f5f7;
}

.major-data-block {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    height: 100%;
}

.tase-chart-col {
    display: flex;
    flex-direction: column;
}

.tase-chart-col > .major-data-block {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tase-chart-col .tase-chart-wrap {
    flex: 1;
}

.tase-chart-wrap {
    position: relative;
    height: 100%;
    min-height: 320px;
}

#tase-price-chart {
    height: 100%;
}

#tv-attr-logo {
  display: none !important;
}

.tase-chart-loader {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tase-chart-loader::after {
    content: '';
    width: 36px;
    height: 36px;
    border: 3px solid rgba(37, 99, 235, 0.2);
    border-top-color: #2563eb;
    border-radius: 50%;
    animation: tase-spin 0.7s linear infinite;
}

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

.tase-price,
.tase-change,
.tase-turnover {
    font-weight: bold;
    display: inline-flex;
    align-items: center;
}

.tase-positive { color: #16a34a; }
.tase-negative { color: #dc2626; }

.tase-arrow {
    display: inline-block;
    margin-inline-start: 2px;
    font-style: normal;
    margin-top: -6px;
}