.floatingIcon {
  display: block;
  position: fixed;
  width: 160px;
  text-align: center;
  bottom: 90px;
  right: 30px;
  font-size: 15px;
  border: none;
  outline: none;
  color: white;
  cursor: pointer;
  padding: 10px 10px;
  z-index: 9999;
  visibility: visible;
}

.floatingIcon.active {
  visibility: hidden;
}

.floatingIcon img {
  filter: drop-shadow(0px 0px 3px #555);
  -webkit-filter: drop-shadow(0px 0px 3px #555);
  transition: all 0.1s;
}

.floatingIcon img:hover {
  transform: scale(1.05);
}

.floatingIcon figcaption {
  color: #000000;
  margin: 10px auto;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.5px;
}
.floatingIcon figcaption span {
  text-shadow: 0 0 2px #0000, 0 0 2px #000, 0 0 2px #0000, 0 0 2px #000,
    0 0 2px #0000, 0 0 2px #000, 0 0 2px #0000, 0 0 2px #000;
  color: #ffffff;
}

.floatingIcon .floatingIcon__close {
  display: block;
  margin-left: auto;
  font-size: 20px;
  color: #000000;
  text-shadow: 0px 0px 3px #777;
  background: transparent;
  border: 0;
}

@media (min-width: 996px) {
  .floatingIcon .floatingIcon__close {
    padding: 0;
  }
}

/*animation*/
.vert-move {
  -webkit-animation: mover 1s infinite alternate;
  animation: mover 1s infinite alternate;
}

@-webkit-keyframes mover {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}
@keyframes mover {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}
