.chartindexmarket {
    width: 100%;
    height: 100%;
    background: rgb(14, 14, 14);
}
.time ul {
    display: flex;
    list-style: none;
    margin: 0px;
    width: 100%;
    padding: 0px;
    background: #eeee;
    overflow: hidden;
    /*padding: 0 20px; */
    border-radius: 4px;
    background: rgb(14, 14, 14);
}
.up {
    color: green;
}

.down {
    color: red;
}

.time ul li {
    cursor: pointer;
    text-align: center;
    flex: 1;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.2px;
    color: #616161;
}
.time-btn.active {
    background: #6d6d6d !important;
    border-radius: 4px;
    color: rgb(14, 14, 14);
}
#container {
    height: calc(100% - 28px);
}
.label {
    padding: 2px 4px;
    border-radius: 4px;
    display: block;
    text-align: left;
    display: flex;
    align-items: center;
    background: #deeef9;
    position: relative;
    font-family: SF Pro Display;
    font-size: 11px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    height: 20px;
    box-sizing: border-box;
    color: #004370;
}
.wr {
    box-sizing: border-box;
}
.label-custom-yaxis {
    color: #333;
    height: 16px;
    background-color: #f6f6f6;
    display: flex;
    align-items: center;
    padding: 0 3px;
    border-radius: 2px;
    font-family: "SF Pro Display";
    font-weight: 500;
    font-size: 10px;
    line-height: 16px;
    white-space: nowrap;
    width: auto;
    font-style: normal;
}
.label-custom-yaxis span {
    margin-left: 2px;
}
:root {
    --lightred: rgba(255, 40, 71, 1);
    --lightgray: rgba(32, 199, 128, 1);
}
.highcharts-candlestick-series .highcharts-point {
    stroke: var(--lightred);
    fill: var(--lightred);
}

.highcharts-candlestick-series .highcharts-point-up {
    stroke: var(--lightgray);
    fill: var(--lightgray);
}