/* Goftino Mobile Widget Styles */
@keyframes slideInOut {
  0% {
    left: -100px;
  }
  0.33% {
    left: -4px;
  }
  2% {
    left: -4px;
  }
  2.33% {
    left: -100px;
  }
  100% {
    left: -100px;
  }
}

#goftino_mobile_widget {
  position: fixed;
  bottom: 234px;
  left: -100px;
  z-index: 1000;
  height: 48px;
  padding: 8px 16px;
  border-top-right-radius: 96px;
  border-bottom-right-radius: 96px;
  background-color: #f0ecfc;
  display: none;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  will-change: left;
  transform: translateZ(0);
  backface-visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#goftino_mobile_widget.ready {
  animation: slideInOut 150s ease-in-out infinite;
  opacity: 1;
}

#goftino_mobile_widget .icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

#goftino_mobile_widget .badge {
  position: absolute;
  top: -6px;
  left: -6px;
  min-width: 15px;
  height: 15px;
  padding: 0 5px;
  background-color: #e54e4e;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: white;
  text-align: center;
  font-size: 12px;
  line-height: 20px;
}

#goftino_mobile_widget .text {
  color: #673cdd;
  text-align: center;
  font-weight: 500;
  line-height: 24px;
  font-size: 14px;
  white-space: nowrap;
}

@media (min-width: 992px) {
  #goftino_mobile_widget {
    display: none !important;
  }
}

@media (max-width: 991px) {
  #goftino_mobile_widget {
    display: flex;
  }
}

