.fixed-action-btn {
  position: fixed;
  right: -10px;
  bottom: 55px;
  padding-top: 15px;
  margin-bottom: 0;
  z-index: 9999;
}

.tiktok-btn {
  position: absolute;
  top: -45px;
  right: 25px;
  z-index: 2;
}

.tiktok-icon {
  display: inline-block;
  cursor: pointer;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  text-align: center;
  position: relative;
  color: #fff;
  background-color: #000000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.tiktok-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.tiktok-icon-inner {
  font-size: 28px !important;
  position: relative;
  top: 13px;
  left: 0;
}

@media (max-width: 576px) {
  .tiktok-icon {
    width: 48px;
    height: 48px;
  }
  .tiktok-icon-inner {
    font-size: 24px !important;
    top: 12px;
  }
}
.wisco {
  font-size: 30px !important;
  color: #fff;
  position: relative;
  top: 11px;
  left: 9px;
}
.cont_w {
  position: fixed;
  bottom: 15px;
  right: 10px;
}
.wslogo {
  background-color: #0dc143;
  position: absolute;
  top: 25px;
  right: 25px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
}
.hi-icon {
  display: inline-block;
  font-size: 0px;
  cursor: pointer;
  margin: 15px 30px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  text-align: center;
  position: relative;
  z-index: 1;
  color: #fff;
  background-color: #0dc143;
}

/* Effect 8 */
.hi-icon-effect-8 .hi-icon {
  background: rgba(255, 255, 255, 0.1);
  -webkit-transition:
    -webkit-transform ease-out 0.1s,
    background 0.2s;
  -moz-transition:
    -moz-transform ease-out 0.1s,
    background 0.2s;
  transition:
    transform ease-out 0.1s,
    background 0.2s;
  animation: sonarEffect 1.3s infinite;
}

.hi-icon-effect-8 .hi-icon:after {
  top: 0;
  left: 0;
  padding: 0;
  z-index: -1;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
  opacity: 0;
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
}

@-webkit-keyframes sonarEffect {
  0% {
    opacity: 0.3;
  }
  40% {
    opacity: 0.5;
    box-shadow:
      0 0 0 2px rgba(255, 255, 255, 0.1),
      0 0 10px 10px #0dc143,
      0 0 0 10px rgba(255, 255, 255, 0.5);
  }
  100% {
    box-shadow:
      0 0 0 2px rgba(255, 255, 255, 0.1),
      0 0 10px 10px #0dc143,
      0 0 0 10px rgba(255, 255, 255, 0.5);
    -webkit-transform: scale(1.5);
    opacity: 0;
  }
}
@-moz-keyframes sonarEffect {
  0% {
    opacity: 0.3;
  }
  40% {
    opacity: 0.5;
    box-shadow:
      0 0 0 2px rgba(255, 255, 255, 0.1),
      0 0 10px 10px #0dc143,
      0 0 0 10px rgba(255, 255, 255, 0.5);
  }
  100% {
    box-shadow:
      0 0 0 2px rgba(255, 255, 255, 0.1),
      0 0 10px 10px #0dc143,
      0 0 0 10px rgba(255, 255, 255, 0.5);
    -moz-transform: scale(1.5);
    opacity: 0;
  }
}
@keyframes sonarEffect {
  0% {
    opacity: 0.3;
  }
  40% {
    opacity: 0.5;
    box-shadow:
      0 0 0 2px rgba(255, 255, 255, 0.1),
      0 0 10px 10px #0dc143,
      0 0 0 10px rgba(255, 255, 255, 0.5);
  }
  100% {
    box-shadow:
      0 0 0 2px rgba(255, 255, 255, 0.1),
      0 0 10px 10px #0dc143,
      0 0 0 10px rgba(255, 255, 255, 0.5);
    transform: scale(1.5);
    opacity: 0;
  }
}