.ourchataskme {
  position: fixed;
  bottom: -60px;
  right: -60px;
  background: radial-gradient(circle at top left, #3c33ff 0%, #780abc 100%);
  color: white;
  width: 120px;
  height: 120px;
  text-align: left;
  padding: 25px;
  line-height: 100%;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 1002;
  opacity: 0.75;
}

.ourchataskme.topchatactive {
  -webkit-animation: blink1 2s linear infinite;
  animation: blink1 2s linear infinite;
}

@-webkit-keyframes blink1 {
  0% {
    background: red;
  }
  50% {
    background: indigo;
  }
  100% {
    background: red;
  }
}

@keyframes blink1 {
  0% {
    background: red;
  }
  50% {
    background: indigo;
  }
  100% {
    background: red;
  }
}

.ourchataskme:hover {
  background: radial-gradient(circle at top left, #3c33ff 0%, #780abc 100%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 1;
  -webkit-transform: scale(1.4);
          transform: scale(1.4);
}