/* CSS for custom styles */
* {
  /* font-family: 'SF Pro Text', sans-serif; */
  letter-spacing: 0px !important;
}

.v-btn--disabled {
  cursor: not-allowed !important;
  pointer-events: all !important;
}

input::placeholder {
  color: rgba(0, 0, 0, 0.25);
  font-family: 'SF Pro Display', sans-serif !important;
  font-size: 14px;
  font-weight: 400;
  text-align: left;
}

/* Animated Triangle Styling */
.animated-triangle {
  animation: triangleMotion 3s ease-in-out infinite;
  transform-origin: center;
}

/* Triangle Animation Keyframes */
@keyframes triangleMotion {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }

  25% {
    transform: rotate(20deg) scale(1.05);
  }

  50% {
    transform: rotate(-20deg) scale(1.1);
  }

  75% {
    transform: rotate(20deg) scale(1.05);
  }
}

.survey-text-box p {
  font-family: Inter, sans-serif;
  font-weight: 500;
  text-align: left;
  color: white;
  margin-bottom: 20px;
}

/* Common Tooltip Styles */
.tooltip-wrapper {
  position: relative;
  display: inline-block;
}

.tooltip {
  visibility: hidden;
  background-color: rgba(200, 200, 200, 0.9);
  color: #000;
  text-align: center;
  padding: 4px 8px;
  border-radius: 4px;
  position: absolute;
  z-index: 1001;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro', 'Helvetica Neue', Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.tooltip-wrapper:hover .tooltip {
  visibility: visible;
  opacity: 1;
}

.tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: rgba(200, 200, 200, 0.9) transparent transparent transparent;
}

.tagcont-tooltip {
  animation: tooltipFade 0.15s ease-out;
  transform-origin: bottom center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@keyframes tooltipFade {
  from {
    opacity: 0;
    transform: translateY(-120%) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(-125%) scale(1);
  }
}

/* Specific tooltip positioning */
.tooltip-wrapper.right-icons .tooltip {
  left: 50%;
  transform: translateX(-50%);
}

.tooltip-wrapper:not(.right-icons) .tooltip {
  left: 65%;
  transform: translateX(-50%);
}

.iframe-mask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.025);
  cursor: pointer;
  z-index: 10;
}

.wb-header {
  display: none !important;
}

.wb-drag {
  display: none !important;
}

.wb-body {
  top: 0 !important;
  padding-top: 0 !important;
}

.wb, .wb * {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.wb {
  border-radius: 0.75rem !important;
  overflow: hidden !important;
}

.wb-body {
  border-radius: 0.75rem !important;
  overflow: hidden !important;
}

.winbox {
  border-radius: 12px !important;
  overflow: hidden !important;
}

div[id^="vuewinbox-"] {
  border-radius: 12px !important;
  overflow: hidden !important;
}

.wb-naked,
.wb-naked .wb-body {
  border: none !important;
  box-shadow: none !important;
}

.wb-n {
  display: none !important;
}
