:root {
  --btn-neon-color: #0ff;
  --btn-cyberpunk-color: #ff00ff;
  --btn-shift-color1: #ff6b8b;
  --btn-shift-color2: #ffaa00;
  --btn-shift-color3: #36d1dc;
  --btn-shift-color4: #6c63ff;
  --btn-shift-color5: #ff6b8b;
}

/* Advanced Buttons Frontend Styles */
.sv-button-wrapper,
.sv-modern-button-wrapper {
  display: inline-block;
}

/* Base Button Styles */
.sv-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--titleFont);
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  outline: none;
  text-transform: none;
  line-height: 1.4;
}
.sv-buttonsvg path {
  color: inherit;
  fill: inherit;
}
.sv-button i {
  color: inherit;
  fill: inherit;
}

.sv-btn-filled {
  background: var(--btnBgColor);
  color: var(--btnColor);
}

.sv-btn-outline {
  background: transparent;
  color: var(--btnColor2);
  border: 1px solid var(--btnColor2);
}

.sv-btn-icon-filled {
  position: relative;
  padding-left: 52px !important;
}
.sv-btn-icon-filled .sv-button-icon {
  padding: 12px 16px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--btnBgColor);
  color: var(--btnColor);
  border-radius: 8px;
  transition: var(--transition);
  transition: all 0.4s ease;
  position: absolute;
  left: 0;
}
.sv-btn-icon-filled:hover {
  padding-right: 52px !important;
}
.sv-btn-icon-filled:hover .sv-button-icon {
  left: calc(100% - 48px);
}

/* Button Styles */
.sv-btn-gradient {
  background: linear-gradient(90deg, #4a6bff, #ff6b8b);
  color: white;
  border: none;
  transition: var(--transition);
}

.sv-btn-gradient:hover {
  background: linear-gradient(90deg, #ff6b8b, #4a6bff);
  color: white;
}

.sv-btn-neon {
  background-color: transparent;
  color: var(--btn-neon-color);
  border: 2px solid var(--btn-neon-color);
  box-shadow: 0 0 10px var(--btn-neon-color), inset 0 0 10px var(--btn-neon-color);
  text-shadow: 0 0 5px var(--btn-neon-color);
}

.sv-btn-neon:hover {
  background-color: var(--btn-neon-color);
  color: #000;
  box-shadow: 0 0 20px var(--btn-neon-color), inset 0 0 20px var(--btn-neon-color);
}

.sv-btn-3d {
  background-color: #4a6bff;
  color: white;
  border: none;
  border-radius: 8px;
  box-shadow: 0 6px 0 rgba(74, 107, 255, 0.5), 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.1s ease;
}

.sv-btn-3d:hover {
  transform: translateY(2px);
  box-shadow: 0 4px 0 rgba(74, 107, 255, 0.5), 0 8px 16px rgba(0, 0, 0, 0.1);
  color: white;
}

.sv-btn-3d:active {
  transform: translateY(6px);
  box-shadow: 0 0px 0 rgba(74, 107, 255, 0.5), 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Button Shapes */
.sv-btn-square {
  border-radius: 8px;
}

.sv-btn-rounded {
  border-radius: 30px;
}

.sv-btn-pill {
  border-radius: 50px;
}

.sv-btn-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

/* Button Sizes */
.sv-btn-small:not(.sv-btn-circle) {
  padding: 8px 16px;
  font-size: 14px;
}

.sv-btn-medium:not(.sv-btn-circle) {
  padding: 12px 28px;
  font-size: 16px;
}

.sv-btn-large:not(.sv-btn-circle) {
  padding: 16px 36px;
  font-size: 18px;
}

.sv-btn-xlarge:not(.sv-btn-circle) {
  padding: 20px 45px;
  font-size: 20px;
}

/* Animation Effects */
.sv-animation-grow:hover {
  transform: scale(1.1);
}

.sv-animation-shrink:hover {
  transform: scale(0.95);
}

.sv-animation-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.sv-animation-pulse {
  animation: sv-pulse 2s infinite;
}

.sv-animation-pulse-hover:hover {
  animation: sv-pulse 2s infinite;
}

@keyframes sv-pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.sv-animation-bounce {
  animation: sv-bounce 2s infinite;
}

@keyframes sv-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.sv-animation-shake:hover {
  animation: sv-shake 0.5s;
}

@keyframes sv-shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-5px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(5px);
  }
}
.sv-animation-rotate:hover {
  animation: sv-rotate 0.5s;
}

@keyframes sv-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Ripple Effect */
.sv-animation-ripple {
  position: relative;
  overflow: hidden;
}

.sv-animation-ripple:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%);
  transform-origin: 50% 50%;
}

.sv-animation-ripple:focus:not(:active)::after {
  animation: sv-ripple 1s ease-out;
}

@keyframes sv-ripple {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }
  100% {
    transform: scale(20, 20);
    opacity: 0;
  }
}
/* Progress Effect */
.sv-animation-progress {
  position: relative;
  overflow: hidden;
}

.sv-animation-progress:after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.7s ease;
}

.sv-animation-liquid-fill:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transition: top 0.6s ease;
}

/* Modern Button Styles */
.sv-modern-button {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 1;
}

/* Modern Button Effects */
.sv-modern-neon-pulse {
  background: transparent;
  color: var(--btn-neon-color);
  border: 2px solid var(--btn-neon-color);
  box-shadow: 0 0 15px var(--btn-neon-color), inset 0 0 15px var(--btn-neon-color);
  animation: sv-neon-pulse 2s infinite;
}

@keyframes sv-neon-pulse {
  0%, 100% {
    box-shadow: 0 0 15px var(--btn-neon-color), inset 0 0 15px var(--btn-neon-color);
  }
  50% {
    box-shadow: 0 0 30px var(--btn-neon-color), inset 0 0 30px var(--btn-neon-color);
  }
}
.sv-modern-glitch:hover {
  animation: sv-glitch 0.3s infinite;
}

@keyframes sv-glitch {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-2px, 2px);
  }
  40% {
    transform: translate(-2px, -2px);
  }
  60% {
    transform: translate(2px, 2px);
  }
  80% {
    transform: translate(2px, -2px);
  }
  100% {
    transform: translate(0);
  }
}
.sv-modern-liquid-fill {
  color: white;
  border: 2px solid #36d1dc;
  position: relative;
}

.sv-modern-liquid-fill::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #36d1dc;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.sv-modern-liquid-fill:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.sv-modern-liquid-fill:hover {
  color: #2d2b55;
}

.sv-modern-morphing {
  background: linear-gradient(45deg, #6c63ff, #36d1dc);
  color: white;
  border-radius: 50px 10px 50px 10px;
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.sv-modern-morphing:hover {
  border-radius: 10px 50px 10px 50px;
  transform: scale(1.05) rotate(2deg);
}

.sv-modern-cyberpunk {
  background: #000;
  color: #ff00ff;
  border: 2px solid #ff00ff;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
  position: relative;
}

.sv-modern-glass-morph {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.sv-modern-glass-morph:hover {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
}

.sv-modern-wave {
  background: #6c63ff;
  color: white;
  overflow: hidden;
}

.sv-modern-wave span {
  position: relative;
  z-index: 1;
}

.sv-modern-wave::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.sv-modern-wave:hover::before {
  width: 300px;
  height: 300px;
}

.sv-modern-gradient-shift,
.sv-modern-gradient-shift-hover:hover {
  background: linear-gradient(90deg, var(--btn-shift-color1) 0%, var(--btn-shift-color2) 25%, var(--btn-shift-color3) 50%, var(--btn-shift-color4) 75%, var(--btn-shift-color5) 100%);
  background-size: 400% 400%;
  color: white;
  animation: sv-gradient-shift 3s ease infinite;
}

@keyframes sv-gradient-shift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
.sv-modern-aurora,
.sv-modern-aurora-hover:hover {
  background: linear-gradient(45deg, var(--btn-shift-color1), var(--btn-shift-color2), var(--btn-shift-color3), var(--btn-shift-color4), var(--btn-shift-color5));
  background-size: 400% 400%;
  color: white;
  animation: sv-aurora 8s ease infinite;
}

@keyframes sv-aurora {
  0%, 100% {
    background-position: 0% 50%;
  }
  25% {
    background-position: 100% 50%;
  }
  50% {
    background-position: 100% 100%;
  }
  75% {
    background-position: 0% 100%;
  }
}
/* Particle Effect */
.sv-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
}

/* End of Advanced Buttons Frontend Styles *//*# sourceMappingURL=sv-buttons.css.map */