.css-tab {
    background-color: var(--color-white);
    border: 1px solid rgba(6, 40, 73, 0.06);
    border-radius: 4px;
    overflow: hidden;
}

.css-tab-head {
    width: 100%;
    height: 31px;
    display: flex;
    background-color: rgba(41, 47, 137, 0.06);
    color: #fff;
    cursor: pointer;
}

    .css-tab-head a {
        height: 100%;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        color: var(--color-primary);
        font-size: 12px;
        font-weight: bold;
        cursor: pointer;
    }

        .css-tab-head a:hover, .css-tab-head a.active {
            background-color: var(--color-primary);
            color: var(--color-white);
        }

.css-tab-content {
    width: 100%;
}

.css-tab-content-item {
    display: none;
    animation: fadein .8s;
}

    .css-tab-content-item.active {
        display: block;
    }

.trading-info {
    padding: 0 10px;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    transition: all 0.3s ease;
    line-height: normal;
}

    .trading-info:hover {
        color: #d51317;
    }

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (min-width: 768px) {
    .css-tab.chart-section .chart-info {
        min-height: 106px;
    }

    .css-tab.stock-table {
        min-height: 300px;
    }
}
