.stock-ticker-parent {
    height: 47px;
    overflow: hidden;
}

.stock-ticker {
    display: inline-block;
    white-space: nowrap;
    animation: floatText 30s infinite linear;
    /* padding-left: 100%; */
    &:hover {
        animation-play-state: paused;
    }
}

@keyframes floatText {
    from {transform: translateX(0%);}
    to {transform: translateX(-100%);}
}

.stock-ticker-reverse {
    display: inline-block;
    white-space: nowrap;
    animation: floatTextReverse 30s infinite linear;
    transform: translateX(-100%);
    &:hover {
        animation-play-state: paused;
    }
}

@keyframes floatTextReverse {
    from {transform: translateX(-100%)}
    to {transform: translateX(0%)};
}

.stock-ticker-alerts {
    display: inline-block;
    white-space: nowrap;
    animation: floatTextAlerts 15s infinite linear;
    /* padding-left: 100%; */
    &:hover {
        animation-play-state: paused;
    }
}

@keyframes floatTextAlerts {
    from {transform: translateX(100%);}
    to {transform: translateX(-100%);}
}

.stock-ticker-alerts-reverse {
    display: inline-block;
    white-space: nowrap;
    animation: floatTextAlertsReverse 15s infinite linear;
    transform: translateX(-100%);
    &:hover {
        animation-play-state: paused;
    }
}

@keyframes floatTextAlertsReverse {
    from {transform: translateX(-100%)}
    to {transform: translateX(100%)};
}

.top-list-table {
    display: inline-flex;
    cursor: pointer;
}

.top-list-table, .top-list-header-cell, .top-list-body-cell, .alert-table {
    border: none;
}

.top-list-body-row {
    padding-right: 10px;
}

.alert-body-row {
    padding-right: 10px;
}

.td-symbol-plus {
    height: 47px;
    width: 167px;
    padding: 5px;
    border: 1px solid gray !important;
}

.td-symbol-plus-alert {
    height: 47px;
    width: 202px;
    padding: 5px;
    border: 1px solid gray !important;
}

.alert-table-ticker {
    display: inline-flex;
    cursor: pointer;
}

.alert-table-reverse {
    justify-content: flex-end;
}

.ticker-header-highs {
    background-image: linear-gradient(to right, green , transparent);
    display: none;
}

.ticker-header-lows {
    background-image: linear-gradient(to right, red , transparent);
    display: none;
}

.compare-count-ticker {
    width: 100%;
    border-collapse: collapse;
    line-height: 1;
}

.compare-count-bar {
    width: 100%;
    height: 30px;
    display: none;
}

.compare-count-bar-highs {
    background-color: green;
    width: 50%;
    box-shadow: 
        inset 0px 15px 8px -10px grey,
        inset 0px -15px 8px -10px grey;
}

.compare-count-label-highs {
    text-align: center;
    vertical-align: middle;
    line-height: 30px !important;
}

.compare-count-bar-lows {
    background-color: red;
    width: 50%;
    box-shadow: 
        inset 0px 15px 8px -10px grey,
        inset 0px -15px 8px -10px grey;
}

.compare-count-label-lows {
    text-align: center;
    vertical-align: middle;
    line-height: 30px !important;
}

.compare-count-bar-stacked {
    width: 10%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.compare-count-bar-highs-stacked {
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        linear-gradient(to right, darkgreen, lime, darkgreen);
    height: 50%;
}

.compare-count-label-highs-stacked {
    line-height: 1 !important;
}

.compare-count-bar-lows-stacked {
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        linear-gradient(to right, darkred, lightcoral, darkred);
    height: 50%;
}

.compare-count-label-lows-stacked {
    line-height: 1 !important;
}
