.svg-funnel-js .svg-funnel-js__labels .svg-funnel-js__label .label__percentage {
  font-size: 30px;
  font-weight: 700;
  color: #9896dc;
}

.svg-funnel-js .svg-funnel-js__labels .svg-funnel-js__label .label__value {
  font-size: 50px;
  color: #fff;
  line-height: 18px;
  margin-bottom: 25px;
}

.svg-funnel-js .svg-funnel-js__labels .svg-funnel-js__label .label__title {
  font-size: 18px;
  font-weight: 700;
  color: #ff860a;
}

body {
  background-color: #1d1e22;
  overflow-x: hidden;
}

#app {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.funnels {
  height: 800px;
  margin-top: 16px;
}

.funnel:not(.svg-funnel-js--vertical) {
  transition: transform 0.3s ease;
  transform: translateY(60px);
}

.controls {
  display: flex;
  margin-top: 36px;
}

button {
  background-color: #21FFA2;
  color: #393862;
  border-radius: 4px;
  border: none;
  padding: 12px 24px;
  margin: 0 5px;
  font-size: 16px;
  outline: 0;
  cursor: pointer;
}

button:hover {
  background: #05DF9D;
}

.appear-enter-active, .appear-leave-active {
  transition: all 0.7s ease-in-out;
}

.appear-enter-to, .appear-leave {
  max-width: 100%;
  max-height: 100%;
  opacity: 1;
}

.appear-enter, .appear-leave-to {
  max-width: 0;
  max-height: 0;
  opacity: 0;
}

.fade-enter-active, .fade-leave-active {
  transition: all 0.3s ease;
}

.fade-enter-to, .fade-leave {
  opacity: 1;
}

.fade-enter, .fade-leave-to {
  opacity: 0;
}

.repos {
  position: fixed;
  margin-top: -72px;
  top: 50%;
  right: 0;
  display: flex;
  flex-direction: column;
  width: 220px;
}
@media screen and (max-width: 960px) {
  .repos {
    display: none;
  }
}
.repos .repo {
  background-color: #21FFA2;
  color: #393862;
  font-family: "Open Sans", sans-serif;
  border-radius: 10px 0 0 10px;
  display: flex;
  padding: 8px 12px;
  align-items: center;
  margin: 8px 0;
  text-decoration: none;
  transform: translateX(20px);
  transition: transform 0.3s ease;
}
.repos .repo:hover {
  background: #05DF9D;
  transform: translateX(0);
}
.repos .repo i {
  font-size: 36px;
  margin-right: 12px;
}