.event-icon-wrapper {
  display: inline-block;
  position: fixed;
  z-index: 130000;
  right: 15px;
  bottom: 30px;
  opacity: 1;
  visibility: visible;
  transition-property: opacity, visibility;
  transition-duration: 0.5s;
  transition-timing-function: ease-in-out;
}
@media all and (min-width: 641px) and (max-width: 960px) {
  .event-icon-wrapper {
    right: 20px;
  }
}
@media screen and (max-width: 640px) {
  .event-icon-wrapper {
    right: 5px;
  }
}
.event-icon-wrapper.transparent {
  opacity: 0;
  visibility: hidden;
}

.icon-img-container {
  --default-linear-gradient: linear-gradient(270deg, #008cd6, #2cdd95);
  position: relative;
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-img-container.linear-gradient-003cff {
  --default-linear-gradient: linear-gradient(270deg, #008cd6, #003cff);
}
@media screen and (max-width: 1920px) {
  .icon-img-container {
    width: 7.8125vw;
  }
}
@media screen and (max-width: 1024px) {
  .icon-img-container {
    width: 100px;
  }
}
@media screen and (max-width: 960px) {
  .icon-img-container {
    width: 120px;
  }
}
@media screen and (max-width: 640px) {
  .icon-img-container {
    width: 100px;
  }
}
.icon-img-container .img-ribbon {
  display: block;
  max-width: 100%;
  width: 100%;
}
.icon-img-container::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 90%;
  height: 90%;
  border-radius: 999px;
  filter: blur(0.5vw);
  background: var(--default-linear-gradient);
  animation: eventIcon-glowmation 10s linear infinite;
}
@keyframes eventIcon-glowmation {
  0% {
    background-position: 0% 50%;
    background-size: 150% 150%;
  }
  12.5% {
    background-size: 70% 30%;
  }
  25% {
    background-size: 100% 50%;
  }
  37.5% {
    background-size: 70% 30%;
  }
  50% {
    background-position: 100% 50%;
    background-size: 30% 30%;
  }
  62.5% {
    background-size: 30% 70%;
  }
  75% {
    background-size: 50% 100%;
  }
  87.5% {
    background-size: 30% 70%;
  }
  100% {
    background-position: 0% 50%;
    background-size: 150% 150%;
  }
}
/*# sourceMappingURL=../../map/Module/StickyIcon/BaseStyle.css.map */
