/*a {
    color: #ffffff;
    outline: none; }
  
a:hover {
    color: #f5f4f4;
    outline: none; }*/
.social-btn {
  /*position: relative;*/
  display: flex;
  justify-content: center;
  align-items: center;
  filter: url(#goo);
  transform-style: preserve-3d;

  bottom: 5%;
  position: fixed;
  margin: 1em;
  right: 25px;
}

.social-btn span {
    
  position: absolute;
  --size: 55px;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f36e20;
  cursor: pointer;
   /*
  display: flex;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  color: white;
  margin: 20px auto 0;
  box-shadow: 0px 5px 11px -2px rgba(0, 0, 0, 0.18), 0px 4px 12px -7px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  -webkit-transition: all .1s ease-out;
  transition: all .1s ease-out;
  position: relative;
   */
}

.social-btn .button {
  --size: 55px;
  width: var(--size);
  height: var(--size);
  background: #f36e20;
  /*transition: all 2s ease-in-out;*/
  transition: all 1s ease-in-out;
}

.social-btn .button i {
  font-size: 30px;
  color: black;
}

.social-btn.active .button {
  transform: rotate(360deg);
}

.social-btn.active span:not(:last-child) {
  /*animation: animate 1.5s ease-in-out forwards;*/
  animation: animate .5s ease-in-out forwards;
  --delay: calc((5 - var(--i)) * 0.2s);
  animation-delay: var(--delay);
}

@keyframes animate {
  0% {
    width: 55px;
    height: 55px;
    transform: translateY(0);
  }
  25% {
    width: 55px;
    height: 55px;
    transform: translateY(-30px);
  }
  65% {
    width: 55px;
    height: 55px;
    transform: translateY(calc((var(--i) * -75px) - 20px));
    background: #f36e20;
    color: white;
    font-size: 0;
    color: #f36e20;
  }

  100% {
    width: 55px;
    height: 55px;
    transform: translateY(calc((var(--i) * -75px) - 20px));
    background: var(--bg);
    color: var(--clr);
    font-size: 22px;
  }
}

.social-btn.in-active span:not(:last-child) {
  /*animation: animate3 1.5s ease-in-out forwards;*/
  animation: animate3 .5s ease-in-out forwards;
  /* --delay: calc(var(--i) * .02s);
  animation-delay: var(--delay); */
  /* animation-direction: reverse; */
}

@keyframes animate3 {
  0% {
    width: 55px;
    height: 55px;
    transform: translateY(calc((var(--i) * -75px) - 20px));
    background: var(--bg);
    color: var(--clr);
    font-size: 22px;
  }
  35% {
    width: 55px;
    height: 55px;
    transform: translateY(calc((var(--i) * -75px) - 20px));
    background: #f36e20;
    color: white;
    font-size: 0;
    color: #f36e20;
  }
  75% {
    width: 55px;
    height: 55px;
    transform: translateY(-30px);
  }
  100% {
    width: 55px;
    height: 55px;
    transform: translateY(0);
  }
}

@keyframes animate2 {
  0% {
    width: 55px;
    height: 55px;
    transform: translateY(calc((var(--i) * -75px) - 20px));
  }
  40% {
    width: 55px;
    height: 55px;
    transform: translateY(-30px);
  }
  100% {
    width: 55px;
    height: 55px;
    transform: translateY(0);
  }
}

svg {
  width: 0;
  height: 0;
}