.live {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 22px;
    background-color: #eee
}

.live-down {
    animation: live-down 1.5s ease-in-out infinite;
}


@keyframes live-down {
    0% {
        background: #ff626280;
    }

    50% {
        background: #ff626240;
    }

    100% {
        background: #ff626280;
    }

}

.live-up {
    animation: live-up 1.5s ease-in-out infinite;
}

@keyframes live-up {
    0% {
        background: #89ff8999;
    }

    50% {
        background: #89ff8920;
    }

    100% {
        background: #89ff8999;
    }
}



.change-red {
    animation-name: change-red;
    animation-duration: 0.7s;
}

@keyframes change-red {
    from {
        background: #ff626280;
    }

    to {
        background: transparent;
    }
}

.change-green {
    animation-name: change-green;
    animation-duration: 0.7s;
}

@keyframes change-green {
    from {
        background: #89ff8980;
    }

    to {
        background: transparent;
    }
}

.change-gray {
    animation-name: change-gray;
    animation-duration: 0.7s;
}

@keyframes change-gray {
    from {
        background: #f2f2f2;
    }

    to {
        background: transparent;
    }
}

.green {
    color: green !important;
}

.red {
    color: red !important;
}

.black {
    color: #000;
}

.header-bar-c::-webkit-scrollbar {
    display: none;
    /* Safari and Chrome */
}

.header-bar-c {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
}

.header-bar {
    width: 1130px;
    margin: auto !important;
}


.header-bar .main {
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 5px;
    background: #f9f9f9;
    box-shadow: 0 0 5px #ccc;
    height: 125px;
}

.header-bar .main .main-rate {
    margin-bottom: 5px;
}

.header-bar .main .large {
    font-size: 30px;
    font-weight: bolder;
    max-width: 350px;
    overflow: hidden;
}

.header-bar .main .symbol {
    font-size: 30px;
    font-weight: bolder;
    max-width: 350px;
    overflow: hidden;
}

.header-bar .main .currency-unit {
    font-size: 14px;
    font-weight: bolder;
    display: block;
    margin-bottom: 5px;
}

.header-bar .meta-rates {
    height: 24px
}

.market {
    height: 20px;
    margin-top: 5px;
    margin-bottom: 5px;
    text-align: center;
}

.open {
    color: green;
}

.closed {
    color: red;
}

.text-end {
    text-align: right !important;
}