/*
Theme Name: PixelsGrid Studio
Theme URI: https://pixelsgridstudio.com/
Template: kadence
Author: PixelsGrid Studio
Author URI: https://pixelsgridstudio.com/
Description: Kadence Theme is a lightweight yet full featured WordPress theme for creating beautiful fast loading and accessible websites, easier than ever. It features an easy to use drag and drop header and footer builder to build any type of header in minutes. It features a full library of gorgeous starter templates that are easy to modify with our intelligent global font and color controls. With extensive integration with the most popular 3rd party plugins, you can quickly build impressive ecommerce websites, course websites, business websites, and more.
Tags: translation-ready,accessibility-ready,two-columns,right-sidebar,left-sidebar,footer-widgets,blog,custom-logo,custom-background,custom-menu,rtl-language-support,editor-style,threaded-comments,custom-colors,featured-images,wide-blocks,full-width-template,theme-options,e-commerce
Version: 1.5.0.1782584112
Updated: 2026-06-27 18:15:12

*/

:root {
  --color-well: #050507;

  --rainbow-color-1: #ff8cb8;
  --rainbow-color-2: #c792ff;
  --rainbow-color-3: #6cb4ff;
  --rainbow-color-4: #8cffd4;
  --rainbow-color-5: #ffd27a;
}


.pg-btn .wp-block-button__link,
.kb-button.pg-btn {
  cursor: pointer;
  color: #fff ;
  background-color: #050507;
  isolation: isolate;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  position: relative;
  overflow: hidden;
  min-height: 50px;
  padding: 0 28px;
  transition: transform .15s, box-shadow .3s;
  box-shadow: 0 0 #0000;
  white-space: nowrap;
  border: 1.5px solid transparent;
  border-radius: 100px;
}

/* For Kadennce buttons only */
.pg-btn.wp-block-kadence-singlebtn {
  background:
    linear-gradient(var(--color-well), var(--color-well)) padding-box,
    conic-gradient(
      from var(--rainbow-angle),
      var(--rainbow-color-1),
      var(--rainbow-color-2),
      var(--rainbow-color-3),
      var(--rainbow-color-4),
      var(--rainbow-color-5),
      var(--rainbow-color-1)
    ) border-box !important;

  border: 1.5px solid transparent;  
}

.wp-block-button.pg-btn .wp-block-button__link::before,
.kb-button.pg-btn::before {
  content: "";
  border-radius: inherit;
  background: conic-gradient(
    from var(--rainbow-angle),
    var(--rainbow-color-1),
    var(--rainbow-color-2),
    var(--rainbow-color-3),
    var(--rainbow-color-4),
    var(--rainbow-color-5),
    var(--rainbow-color-1)
  );
  z-index: -2;
  animation: 4s linear infinite rainbow-spin;
  position: absolute;
  inset: -2px;
}

.wp-block-button.pg-btn .wp-block-button__link::after,
.kb-button.pg-btn::after {
  content: "";
  border-radius: inherit;
  background-color: var(--color-well);
  z-index: -1;
  transition: background-color .3s;
  position: absolute;
  inset: 1.5px;
}

.kb-button.pg-btn .kt-btn-inner-text,
.kb-button.pg-btn .kb-svg-icon-wrap {
  position: relative;
  z-index: 2;
  color: #fff !important;
}

.kb-button.pg-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor !important;
  transition: transform .2s ease;
}

.wp-block-button.pg-btn .wp-block-button__link:hover,
.kb-button.pg-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 34px -8px rgba(199,146,255,0.50);
}

.kb-button.pg-btn:hover svg {
  transform: translateX(3px);
}

@property --rainbow-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@keyframes rainbow-spin {
  to {
    --rainbow-angle: 360deg;
  }
}