﻿.slider {
    z-index: 1070;
    position: absolute;
    width: 100%;
    height: 10px;
    overflow-x: hidden;
    top: 87px;
    display: none;
}

.sliderPos {
    top: 0px !important;
}

.line {
    position: absolute;
    opacity: 0.4;
    background: #ff3d26;
    width: 100%;
    height: 10px;
}

.subline {
    position: absolute;
    background: #5b2e90;
    height: 10px;
}

.inc {
    animation: increase 2s infinite;
}

.dec {
    animation: decrease 4s 0.6s infinite;
}

@keyframes increase {
    from {
        left: -5%;
        width: 5%;
    }

    to {
        left: 100%;
        width: 100%;
    }
}

@keyframes decrease {
    from {
        left: -80%;
        width: 80%;
    }

    to {
        left: 110%;
        width: 10%;
    }
}