.compare-search {
    width: 100%;
    display: flex;
    justify-content: center;
    height: 100px;
    align-items: center;
}

.compare-search-bar {
    height: 45px;
    width: 250px;
    background-color: var(--input-bg-color);
    padding-left: 10px;
    padding-right: 12px;
    border-radius: 10px;
    cursor: pointer;
    padding-right: 10px;
    border: 0.03em var(--input-border-color) solid;
    display: flex;
    align-items: center;
}

.light-theme .compare-search-bar {
    box-shadow: 0px 1.5px 0px rgba(0, 0, 0, 0.05);
}

.compare-search-bar img {
    height: 20px;
}

.compare-search-bar span {
    margin-left: 10px;
    font-weight: 200;
    color: var(--input-text-color);
}

.compare-chart {
    width: 100%;
    display: flex;
}

.compare-table {
    width: 400px;
}

.chart-legend {
    float: right;
    justify-content: center;
    align-items: center;
    display: flex;
}

.legend-item {
    font-size: 11pt;
    font-weight: 300;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
}

.legend-color {
    width: 10px;
    height: 10px;
    border-radius: 4px;
    margin-right: 5px;
}

.s-card {
    background-color: var(--card-bg-color);
    border-radius: 8px;
    padding-top: 8px;
    overflow: hidden;
}

.s-w {
    width: 100%;
}

.f-charts-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 0px;
    padding-left: 10px;
    padding-right: 10px;
}

.f-chart-container {
    width: calc(33.3% - 13px);
}

.f-chart-container .s-card {
    height: 300px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.symbol-detail-chart .bcard {
    height: 100%;
    min-height: 450px;
}

.symbol-detail-chart {
    flex: 1;
    margin-left: 0px !important;
    margin-right: 0px !important;
    margin-bottom: 20px;
}

.fin-sum-chart {
    width: 100%;
    height: 100%;
}

.s-chart-title {
    color: var(--primary-color);
    font-size: 12pt;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
    padding-top: 5px;
    margin-bottom: 5px;
}

.trc {
    text-align: center !important;
}

.ttsh {
    display: flex;
    flex-direction: column;
}

.ttst {
    color: var(--secondary-color);
    font-size: 10pt;
}


.simple-spinner-holder {
    display: flex;
    padding: 20px;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.simple-spinner {
    width: 20px;
    height: 20px;
    border-width: 1;
    margin-right: 5px;
    color: var(--primary-color);
}

#search-spinner {
    width: 20px;
    height: 20px;
    border-width: 1;
    margin-right: 5px;
    color: var(--primary-color);
    display: none;
}

@media screen and (max-width: 1200px) {

    .f-chart-container {
        width: 100%;
        margin-bottom: 20px;
    }

    .compare-table {
        width: 100%;
        margin-top: 20px;
    }

    .compare-chart {
        flex-direction: column;
    }

    .f-charts-container {
        flex-direction: column;
    }
}