﻿.marquee {
    width: 95%;
    height: 2rem;
    font-size: 1.3rem;
    overflow: hidden;
    position: relative;
}

    .marquee span {
        position: absolute;
        width: 100%;
        height: 1.5rem;
        will-change: transform;
        animation: scroll-right 15s linear 1;
    }

@keyframes scroll-left {
    0% {
        -moz-transform: translateX(100%);
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }

    100% {
        -moz-transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

@keyframes scroll-right {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(100%);
    }
}



.wrapper .tooltip-left {
    left: 0px;
}

.wrapper .tooltip-right {
    right: 0px;
}

.wrapper .tooltip-left, .wrapper .tooltip-right {
    position: absolute;
    top: 0;
    font-size: 14px;
    background: #ffffff;
    color: #ffffff;
    padding: 5px 8px;
    border-radius: 5px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .icon:hover .tooltip-left, .wrapper .icon:hover .tooltip-right {
    top: -45px;
    opacity: 1;
    z-index: 1;
    visibility: visible;
    pointer-events: auto;
}

.wrapper .stream:hover .tooltip-left {
    background: #1877F2;
    color: #ffffff;
    left: 0px;
}

.wrapper .stream:hover .tooltip-right {
    background: #1877F2;
    color: #ffffff;
    right: 0px;
}

.Icon-Gray {
    filter: grayscale();
}

    .Icon-Gray:hover {
        animation: Icon-Select 1s;
        transform: scale(0.6) matrix(-1, 1, 0, 1, 0, 0);
    }

@keyframes Icon-Select {
    0% {
        transform: scale(0.8) matrix(-1, 0.5, 0, 1, 0, 0);
    }

    100% {
        transform: scale(0.6) matrix(-1, 1, 0, 1, 0, 0);
    }
}

.fixed_header {
}

    .fixed_header tbody {
        display: block;
        width: 100%;
        overflow: auto;
        height: 225px;
    }

    .fixed_header thead tr {
        display: block;
    }

    .fixed_header thead {
    }

    .fixed_header th, .fixed_header td {
        text-align: left;
        width: 66px;
    }

.ig i {
    opacity: 0;
    animation: showArrow 2.0s infinite;
}

    .ig i:nth-child(1) {
        animation-delay: 0.4s;
    }

    .ig i:nth-child(2) {
        animation-delay: 0.8s;
    }

    .ig i:nth-child(3) {
        animation-delay: 1.2s;
    }

    .ig i:nth-child(4) {
        animation-delay: 1.6s;
    }

    .ig i:nth-child(5) {
        animation-delay: 2.0s;
    }

@keyframes showArrow {
    0%, 20%, 100% {
        opacity: 0;
    }

    40% {
        opacity: 1;
    }
}
