/**
 * Copyright since 2007 PrestaShop SA and Contributors
 * PrestaShop is an International Registered Trademark & Property of PrestaShop SA
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Academic Free License version 3.0
 * that is bundled with this package in the file LICENSE.md.
 * It is also available through the world-wide-web at this URL:
 * https://opensource.org/licenses/AFL-3.0
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to license@prestashop.com so we can send you a copy immediately.
 *
 * @author    PrestaShop SA and Contributors <contact@prestashop.com>
 * @copyright Since 2007 PrestaShop SA and Contributors
 * @license   https://opensource.org/licenses/AFL-3.0 Academic Free License version 3.0
 */
/**
 * Copyright since 2007 PrestaShop SA and Contributors
 * PrestaShop is an International Registered Trademark & Property of PrestaShop SA
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Academic Free License version 3.0
 * that is bundled with this package in the file LICENSE.md.
 * It is also available through the world-wide-web at this URL:
 * https://opensource.org/licenses/AFL-3.0
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to license@prestashop.com so we can send you a copy immediately.
 *
 * @author    PrestaShop SA and Contributors <contact@prestashop.com>
 * @copyright Since 2007 PrestaShop SA and Contributors
 * @license   https://opensource.org/licenses/AFL-3.0 Academic Free License version 3.0
 */
.ldpb-btn-group {
  display: inline-flex;
  justify-items: center;
  align-items: center;
  position: relative;
  transition: all 169ms;
  --ld-purple: #6b21a8;
}

.ldpb-btn-group:hover .ldpb-magicbutton-link,
.ldpb-btn-group:focus .ldpb-magicbutton-link {
  background-color: #5b1d8a;
  color: white;
  text-decoration: none;
}

.ldpb-btn-group:hover:has(.ldpb-magicbutton-edit:hover) .ldpb-magicbutton-glow,
.ldpb-btn-group:focus:has(.ldpb-magicbutton-edit:hover) .ldpb-magicbutton-glow {
  opacity: 1;
  animation: translateGradient 0.5s linear infinite;
}

.ldpb-btn-group .ldpb-magicbutton-glow {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: all 1000ms;
  opacity: 0.6;
  background: linear-gradient(90deg, #6366f1, #ec4899, #facc15, #6366f1);
  border-radius: 12px;
  filter: blur(4px);
  background-size: 200% 200%;
}

.ldpb-btn-group .ldpb-magicbutton-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: -0.169px;
  background-color: var(--ld-purple);
  background-image: linear-gradient(to right, var(--ld-purple), #8e44ad);
  text-decoration: none;
  padding: 6px 10px;
  font-weight: 600;
  color: white;
  transition: all 200ms ease-in-out;
  z-index: 1;
  gap: 4px;
}

.ldpb-btn-group .ldpb-magicbutton-link:first-child {
  transform-origin: right;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}

.ldpb-btn-group .ldpb-magicbutton-link:last-child {
  transform-origin: left;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

.ldpb-btn-group .ldpb-magicbutton-link.ldpb-magicbutton-delete {
  background: #dc2626;
  padding-left: 6px;
  padding-right: 8px;
}

.ldpb-btn-group .ldpb-magicbutton-link:hover {
  filter: brightness(1.3);
}

.ldpb-btn-group .ldpb-magicbutton-link:focus {
  color: white;
  text-decoration: none;
}

.ldpb-btn-group .ldpb-magicbutton-link.ldpb-magicbutton-enable {
  background: transparent;
  color: var(--ld-purple);
  border: 1px solid var(--ld-purple);
}

.ldpb-btn-group .ldpb-magicbutton-link.ldpb-magicbutton-enable:hover {
  transform: none;
  background: rgba(107, 33, 168, 0.1);
}

.ldpb-btn-group i.material-icons {
  font-size: 15px;
}

.ps-bo-rebrand .ldpb-btn-group .ldpb-magicbutton-link {
  border-radius: 0;
}

.ps-bo-rebrand .ldpb-btn-group .ldpb-magicbutton-glow {
  border-radius: 0;
}

.ps-bo-rebrand .ldpb-btn-group .ldpb-magicbutton-link:first-of-type {
  border-radius: 0;
}

.ps-bo-rebrand .ldpb-btn-group .ldpb-magicbutton-link:last-of-type {
  border-radius: 0;
}

@keyframes translateGradient {
  0% {
    background-position: 0% 0%;
  }

  100% {
    background-position: -200% 0%;
  }
}

.ldpb-toggle {
  display: inline-flex;
  cursor: pointer;
  user-select: none;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 1000;
  background-color: #8615cc;
  color: #fff;
  border-radius: 50%;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(102, 0, 103, 0.2);
  width: 48px;
  height: 48px;
  transition: all 0.2s ease;
}

.ldpb-toggle:hover {
  color: #fff;
}
.ldpb-toggle:active {
  color: #fff;
}

.ldpb-scale-hover:hover {
  transform: scale(1.1);
}
.ldpb-scale-hover:active {
  transform: scale(0.9);
}
/*# sourceMappingURL=front.css.map */