@-webkit-keyframes bounceIn {
    0% {
      opacity: 0;
    }

    70% {
      opacity: 0;
    }

    100% {
      opacity: 1
    }
  }

  @keyframes bounceIn {
    0% {
      opacity: 0;
    }

    70% {
      opacity: 0;
    }

    100% {
      opacity: 1
    }
  }


  .d3-tip.animate {
    animation: bounceIn .7s linear;
    -webkit-animation: bounceIn .7s linear;
  }


.d3-tip {
  line-height: 1;
  font-weight: bold;
  padding: 12px;
  background: rgba(248, 248, 248, 1);
  color: #222;
  border-radius: 2px;
  box-shadow: -10px 10px 5px rgba(100,100,100,0.6);
}

/* Creates a small triangle extender for the tooltip */
.d3-tip:after {
  box-sizing: border-box;
  display: inline;
  font-size: 20px;
  width: 100%;
  line-height: 1;
  color: rgba(248, 248, 248, 1);
  position: absolute;
  pointer-events: none;
}

/* Eastward tooltips */
.d3-tip.e:after {
  content: "\25C0";
  margin: -8px 0 0 0;
  top: 50%;
  left: -12px;
}

.d3-tip.se:after {
  content: "\25C0";
  margin: -8px 0 0 0;
  top: 20px;
  left: -12px;
}

.d3-tip.ne:after {
  content: "\25C0";
  margin: -8px 0 0 0;
  bottom: 20px;
  left: -12px;
}

/* END D3 TIP  */

/* FLOWCHART  */

.node text.node-percentage, .node text.node-percentage-spacer {
    stroke-width: 0.65;
}
.node text.node-percentage {
    stroke: #000000 !important;
    font-size: 11px;
}

.node text.node-percentage-spacer {
    fill: #000000 !important;
    font-size: 13px;
}

/* END FLOWCHART  */

.spinner {
  margin: 100px auto;
  width: 400px;
  height: 100px;
  text-align: center;
  font-size: 10px;
}

.spinner > div {
	margin-left:10px;
  background-color: rgba(26, 173, 208, .5);
  height: 100%;
  width: 10px;
  display: inline-block;

  -webkit-animation: stretchdelay 1.2s infinite ease-in-out;
  animation: stretchdelay 1.2s infinite ease-in-out;
}

.spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.spinner .rect3 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

.spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.spinner .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

@-webkit-keyframes stretchdelay {
  0%, 40%, 100% { -webkit-transform: scaleY(0.0) }
  20% { -webkit-transform: scaleY(1.0) }
}

@keyframes stretchdelay {
  0%, 40%, 100% {
    transform: scaleY(0.0);
    -webkit-transform: scaleY(0.0);
  }  20% {
    transform: scaleY(1.0);
    -webkit-transform: scaleY(1.0);
  }
}
