/*********************************************
 * CUSTOM STYLES
 *********************************************/


.reveal .footer {
    position: relative;
    height: 10em;
    text-align: center;
}
.reveal .footer p {
    position: absolute;
    margin: 0;
    top: 150%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, 0);
    line-height: 1.2;
    font-size: 0.5em;
}

.reveal .left {
    margin: 10px 0 15px 20px;
    //text-align: left;
    float: left;
    z-index: -10;
    width: 48%;
}

.reveal .right {
    margin: 10px 0 15px 20px;
    //text-align: left;
    float: right;
    z-index: -10;
    width: 48%;
}

.reveal .slide-number {
  font-size: 24pt;
  //color: #ffffff;
}

.card-title {
    font-size: 1.0em;;
    text-align: left
}

.card-text {
    font-size: 0.6em;
    text-align: left;
}

.card {
    margin: auto auto;
    padding: auto auto;
}


.card-body {
    margin-left: 10px;
}

@keyframes fade {
    0%, 20% {
        opacity: 100%;
    }
    80%, 100% {
        opacity: 0%;
    }
}

@keyframes show {
    0% {
        opacity: 0%;
    }
    50% {
        opacity: 100%;
    }
    100% {
        opacity: 100%;
    }
}


@keyframes slide_up {
    from {
        opacity: 0%;
        transform: scaleY(0.9);
    }
    to {
        opacity: 100%;
        transform: scaleY(1);
    }
}

@keyframes focus {
    0% {
        opacity: 100%;
        background-color: white;
    }
    100% {
        opacity: 100%;
        background-color: red;
    }
}

.led {
    width: auto;
    height: 10vh;
    overflow: hidden;
    transition: all 0.5s;
}
.led:hover {
    background-color: rgba(255, 255, 255, 0.95);
    transform: scale(2.5);
    z-index: 1;
}

.ledC:hover {
    margin-top: -10vh;
}

.left-align {
    text-align: left;
}

.chartDiv {
    width: 1200px;
    height: 200px;
    margin: 0 auto;
    z-index: 0;
    transition: all 0.5s;
}

.chartDiv:hover, .chartDiv:active {
    z-index: 10;
    height: 600px;
}

.chartMid:hover, .chartMid:active {
    margin-top: -200px;
}

.chartBot:hover, .chartBot:active {
    margin-top: -400px;
}

.blinkFade {
    animation: fade ease-out 2s infinite alternate;
}

.blinkFadeSpin {
    animation: fade ease-out 2s infinite alternate, fa-spin 1s infinite;
}

.blinkFade-reverse {
    animation: fade ease-out 2s 2s infinite alternate;
}

.disabled {
    color: #bbb;
}

@keyframes shakeRot {
    0%, 10%, 40%, 50% {
        transform: rotate(0);
    }
    25%, 30% {
        transform: rotate(10deg);
    }
    22%, 27%, 32% {
        transform: rotate(-10deg);
    }
}

@keyframes shakeUp {
    0%, 10%, 40%, 50% {
        transform: translateY(0);
    }
    25%, 30% {
        transform: translateY(10px);
    }
    22%, 27%, 32% {
        transform: translateY(-10px);
    }
}

.shakeRot {
    animation: shakeRot ease-out 2s infinite;
}

.shakeUp {
    animation: shakeUp ease-out 2s infinite 1s;
}

.blinkShake {
    animation: fade ease-out 2s infinite alternate, shakeRot ease-in-out 0.5s infinite;
}

@keyframes animateIn {
  0% {
    opacity: 0;
    transform: translateY(-8px);
  }
  100% {
    opacity: 1;
  }
}

.reveal li {
  animation-name: animateIn;
  animation-duration: 650ms;
  animation-delay: calc(var(--animation-order) * 200ms);
  animation-fill-mode: both;
  animation-timing-function: ease-in-out;
}

body{
  background: #F1F1F1;
}

.timeline{
  counter-reset: year 03;
  position: relative;
}

.timeline li{
  list-style: none;
  float: left;
  width: 20%;
  position: relative;
  text-align: center;
  //text-transform: uppercase;
}

ul.timeline:nth-child(1){
  color: #4caf50;
}

.timeline li:before{
  counter-increment: year;
  content: counter(year);
  width: 50px;
  height: 50px;
  border: 3px solid #4caf50;
  border-radius: 50%;
  display: block;
  text-align: center;
  line-height: 50px;
  margin: 0 auto 10px auto;
  background: #F1F1F1;
  color: #000;
  transition: all ease-in-out .3s;
  cursor: pointer;
}

.timeline li:after{
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: grey;
  top: 25px;
  left: -50%;
  z-index: -999;
  transition: all ease-in-out .3s;
}

.timeline li:first-child:after{
  content: none;
}
.timeline li.active{
  color: #555555;
}
.timeline li.active:before{
  background: #4caf50;
  color: #F1F1F1;
}

.timeline li.active + li:after{
  background: #4caf50;
}
