.row {
    width: 100%;
    margin: 0;
}

.owl-stage-outer {
    height: 100vh;
}

.vh100 {
    height: 100vh;
}

.vh50 {
    height: 50vh;
    padding: 15px;
    position: relative;
}

.title {
    text-align: center;
    font-size: 2em;
    font-weight: bold;
    color: white;
}

.time-slider {
    height: 20px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 100;
}

.slider-left {
    position: absolute;
    left: 0;
    width: 0%;
    max-width: 50%;
    height: 20px;
    transition: all 0.7s;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,.16), 0 2px 10px 0 rgba(0,0,0,.12);
}

.slider-right {
    position: absolute;
    left: 50%;
    width: 0%;
    max-width: 50%;
    height: 20px;
    transition: all 0.7s;
    opacity: 0.8;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,.16), 0 2px 10px 0 rgba(0,0,0,.12);
}

.bg-chart {
    height: calc(100% - 48px);
    position: relative;
}

.none {
    position: absolute;
    left: 0;
    right: 0;
    top: 45%;
    text-align: center;
    color: white;
}

*  {
    -webkit-animation-duration : 0 ms  !important;
    animation-duration : 0 ms  !important;
    -webkit-animation-fill-mode : both  !important;
    animation-fill-mode : both  !important;
}


.fadeOut  {
    -webkit-animation-name : fadeOut  ;
    animation-name : fadeOut  ;
    animation-duration: 0ms !important;
}
.fadeIn {
    -webkit-animation-name : fadeOut  ;
    animation-name : fadeOut  ;
    animation-duration: 0ms !important;
}
@-webkit-keyframes  fadeOut  {
    0% {
        opacity : 0   ;
    }
    100% {
        opacity : 0   ;
    }
}
@keyframes  fadeOut  {
    0% {
        opacity : 0   ;
    }
    100% {
        opacity : 0   ;
    }
}
@-webkit-keyframes  fadeIn  {
    0% {
        opacity : 1   ;
    }
    100% {
        opacity : 1   ;
    }
}
@keyframes  fadeOut  {
    0% {
        opacity : 1   ;
    }
    100% {
        opacity : 1   ;
    }
}

* {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
}