.icon_links {
  position: fixed;
  height: 110px;
  min-width: 200px;
  z-index: 1030;
}
.icon_links.position2 {
  right: 40px;
  top: 100px;
}
.icon_links.position4 {
  right: 40px;
  bottom: 25px;
}
.icon_links.position4.fbfound {
  bottom: 100px;
}
.icon_links .icon.featured {
  width: 100%;
  position: relative;
  display: block;
  height: 50px;
  margin-bottom: 5px;
}
.icon_links .icon.featured a {
  color: #fff;
}
.icon_links .icon.featured:after {
  content: "";
  display: block;
  clear: both;
}
.icon_links .icon.featured .fahold {
  background: #62aBFF;
  width: 50px;
  height: 50px;
  float: right;
  border-radius: 50%;
}
.icon_links .icon.featured .fahold i, .icon_links .icon.featured .fahold svg {
  width: 80%;
  font-size: 25px;
  text-align: center;
  margin-top: 10px;
  margin-left: 5px;
}
.icon_links .icon.featured .calltoaction {
  display: none;
}
.icon_links .icon_wrapper {
  --background: #62ABFF;
  --icon-color: #414856;
  --shape-color-01: #B8CBEE;
  --shape-color-02: #7691E8;
  --shape-color-03: #FDD053;
  --width: 50px;
  --height: 50px;
  --border-radius: var(--height);
  width: var(--width);
  height: var(--height);
  position: relative;
  border-radius: var(--border-radius);
  display: flex;
  float: right;
  justify-content: center;
  align-items: center;
  /*
  > svg {
    width: 300px;
    height: 300px;
    position: absolute;
    z-index: 1;
    transform: scale(0);
    .shape {
      fill: none;
      stroke: none;
      stroke-width: 3px;
      stroke-linecap: round;
      stroke-linejoin: round;
      transform-origin: 50% 20%;
    }
  }*/
}
.icon_links .icon_wrapper .btnx {
  background: var(--background);
  width: var(--width);
  height: var(--height);
  position: relative;
  z-index: 3;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(65, 72, 86, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: plus-animation-reverse 0.5s ease-out forwards;
  font-size: 28px;
  /*
  &::before,
  &::after {
    content: "";
    display: block;
    position: absolute;
    border-radius: 4px;
    background: #fff;
  }*/
}
.icon_links .icon_wrapper .btnx::before {
  width: 4px;
  height: 28px;
}
.icon_links .icon_wrapper .btnx::after {
  width: 28px;
  height: 4px;
}
.icon_links .icon_wrapper .tooltip {
  width: 90px;
  height: 75px;
  border-radius: 70px;
  position: absolute;
  background: #fff;
  z-index: 2;
  padding: 0 15px;
  box-shadow: 0 10px 30px rgba(65, 72, 86, 0.05);
  opacity: 0;
  top: 0;
  display: flex;
  border: 1px solid #000;
  justify-content: space-around;
  align-items: center;
  transition: opacity 0.15s ease-in, top 0.15s ease-in, width 0.15s ease-in;
  font-size: 30px;
}
.icon_links .icon_wrapper .tooltip > svg {
  width: 100%;
  height: 26px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  cursor: pointer;
}
.icon_links .icon_wrapper .tooltip > svg .icon {
  fill: none;
  stroke: var(--icon-color);
  stroke-width: 2px;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.4;
  transition: opacity 0.3s ease;
}
.icon_links .icon_wrapper .tooltip > svg:hover .icon {
  opacity: 1;
}
.icon_links .icon_wrapper .tooltip::after {
  content: "";
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 3px;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  position: absolute;
  left: 50%;
  margin-left: -10px;
  bottom: -11px;
  transform: rotate(45deg);
  z-index: 0;
}
.icon_links .icon_wrapper input {
  height: 100%;
  width: 100%;
  border-radius: var(--border-radius);
  cursor: pointer;
  position: absolute;
  z-index: 5;
  opacity: 0;
}
.icon_links .icon_wrapper input:checked ~ svg {
  animation: pang-animation 1.2s ease-out forwards;
}
.icon_links .icon_wrapper input:checked ~ svg .shape:nth-of-type(1) {
  transform: translate(4px, 30%) rotate(40deg);
}
.icon_links .icon_wrapper input:checked ~ svg .shape:nth-of-type(2) {
  transform: translate(-3px, 30%) rotate(80deg);
}
.icon_links .icon_wrapper input:checked ~ svg .shape:nth-of-type(3) {
  transform: translate(-11px, 30%) rotate(120deg);
}
.icon_links .icon_wrapper input:checked ~ svg .shape:nth-of-type(4) {
  transform: translate(16px, 30%) rotate(160deg);
}
.icon_links .icon_wrapper input:checked ~ svg .shape:nth-of-type(5) {
  transform: translate(-20px, 30%) rotate(200deg);
}
.icon_links .icon_wrapper input:checked ~ svg .shape:nth-of-type(6) {
  transform: translate(-24px, 30%) rotate(240deg);
}
.icon_links .icon_wrapper input:checked ~ svg .shape:nth-of-type(7) {
  transform: translate(22px, 30%) rotate(280deg);
}
.icon_links .icon_wrapper input:checked ~ svg .shape:nth-of-type(8) {
  transform: translate(-3px, 30%) rotate(320deg);
}
.icon_links .icon_wrapper input:checked ~ svg .shape:nth-of-type(9) {
  transform: translate(0px, 30%) rotate(360deg);
}
.icon_links .icon_wrapper input:checked ~ .btnx {
  animation: plus-animation 0.5s ease-out forwards;
}
.icon_links .icon_wrapper input:checked ~ .tooltip {
  width: 190px;
  height: 70px;
  animation: stretch-animation 1s ease-out forwards 0.15s;
  top: -90px;
  opacity: 1;
}
.icon_links.position2 .icon_wrapper .tooltip::after {
  content: "";
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 3px;
  border-top: 1px solid #000;
  border-left: 1px solid #000;
  border-bottom: 0px;
  border-right: 0px;
  position: absolute;
  left: 50%;
  margin-left: -10px;
  bottom: 60px;
  transform: rotate(45deg);
  z-index: 0;
}
.icon_links.position2 .icon_wrapper input:checked ~ .tooltip {
  width: 190px;
  height: 70px;
  animation: stretch-animation 1s ease-out forwards 0.15s;
  top: 70px;
  opacity: 1;
}
.icon_links.position2 .icon_wrapper .tooltip.count2, .icon_links.position4 .icon_wrapper .tooltip.count2 {
  width: 120px !important;
}
.icon_links.position2 .icon_wrapper .tooltip.count3, .icon_links.position4 .icon_wrapper .tooltip.count3 {
  right: -20px;
}
.icon_links.position2 .icon_wrapper .tooltip.count3:after, .icon_links.position4 .icon_wrapper .tooltip.count3:after {
  left: 77% !important;
}

@keyframes pang-animation {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.1);
    opacity: 0;
  }
}
@keyframes plus-animation {
  0% {
    transform: rotate(0) scale(1);
  }
  20% {
    transform: rotate(60deg) scale(0.93);
  }
  55% {
    transform: rotate(35deg) scale(0.97);
  }
  80% {
    transform: rotate(48deg) scale(0.94);
  }
  100% {
    transform: rotate(45deg) scale(0.95);
  }
}
@keyframes plus-animation-reverse {
  0% {
    transform: rotate(45deg) scale(0.95);
  }
  20% {
    transform: rotate(-15deg);
  }
  55% {
    transform: rotate(10deg);
  }
  80% {
    transform: rotate(-3deg);
  }
  100% {
    transform: rotate(0) scale(1);
  }
}
@keyframes stretch-animation {
  0% {
    transform: scale(1, 1);
  }
  10% {
    transform: scale(1.1, 0.9);
  }
  30% {
    transform: scale(0.9, 1.1);
  }
  50% {
    transform: scale(1.05, 0.95);
  }
  100% {
    transform: scale(1, 1);
  }
}

/*# sourceMappingURL=icon_links.css.map */
