:root {
  --primary-color: #20bad1;
  --secondary-color: #eff7f8;
}

.pulse {
  -webkit-animation-name: pulse;
  /* Safari 4.0 - 8.0 */
  -webkit-animation-duration: 2s;
  /* Safari 4.0 - 8.0 */
  -webkit-animation-iteration-count: infinite;
  /* Safari 4.0 - 8.0 */
  -webkit-animation-timing-function: ease-in-out;
  animation-name: pulse;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

.help {
  position: fixed;
  right: 25px;
  bottom: 20px;
  z-index: 99;
}
.help__wrap {
  position: relative;
}
.help__icon {
  cursor: pointer;
  background-color: #25d366;
  padding: 10px;
  display: inline-block;
  border-radius: 100%;
}

svg.whatsapp-ico {
  fill: #fff;
}

.help__smilechat {
  width: 35px;
  color: #fff;
  display: inline-block;
}
.help__content {
  transition: all 0.5s ease-in-out;
  width: 300px;
  box-shadow: 0px 3px 15px #cecece;
  border-radius: 5px;
  background-color: #f7f7f7;
  position: absolute;
  bottom: 110%;
  right: 0;
  opacity: 0.5;
  transform-origin: 90% 105%;
  -webkit-transform-origin: 90% 105%;
  -ms-transform-origin: 90% 105%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}
.help__content:before {
  content: " ";
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #f7f7f7;
  position: absolute;
  bottom: -8px;
  right: 20px;
}
.help__content.reveal {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  bottom: 110%;
  opacity: 1;
  height: auto;
  overflow: visible;
}
.help__header {
  border-radius: 5px 5px 0 0;
  background-color: var(--primary-color);
  color: #fff;
  padding: 10px;
}
.help__row {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #cecece;
  padding: 10px 10px 15px 10px;
}
.help__row:last-child {
  border: none;
}
.help__row:hover {
  background-color: #fff;
  color: var(--primary-color);
}
.help__row:hover .help__col-subtitle {
  color: var(--primary-color);
}
.help__col-icon {
  flex-shrink: 0;
  margin-right: 10px;
  font-size: 24px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.help__col-text span {
  display: block;
}
.help__col-title {
  margin-bottom: 5px;
  font-size: 16px;
}
.help__col-subtitle {
  font-size: 12px;
  color: rgba(51, 51, 51, 0.7);
}

.icon-wa {
  background-color: #25d366;
  color: #fff;
  border-radius: 100%;
  padding: 0px 0 2px 1px;
}

.icon-tele {
  background-color: #0088cc;
  color: #fff;
  border-radius: 100%;
  font-size: 18px;
  padding: 0px 2px 1px 0px;
}

.genfotowa img{
  border-radius: 100%;
}
.help__col-text {
  line-height: 1.1;
}

@media screen and (max-width: 767px) {
  .help {
    right: 15px;
    bottom: 15px;
    font-size: 12px;
  }

  .help__smilechat {
    width: 24px;
  }

  .help__icon {
    padding: 10px 10px 6px 10px;
  }

  .help__col-title {
    font-size: 14px;
  }

  .help__col-subtitle {
    font-size: 11px;
  }

  .help__col-icon {
    font-size: 22px;
    width: 30px;
    height: 30px;
  }

  .icon-wa {
    padding: 0;
  }

  .icon-tele {
    font-size: 18px;
  }

  .help__content:before {
    right: 12px;
  }
}