/*!***********************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./src/components/panel-body/style.scss ***!
  \***********************************************************************************************************************************************************/
/**
 * Panel Body Component Styles
 *
 * SCSS styles for the custom panel body component
 *
 * @package RedfoxThankYou
 * @since 1.0.0
 */
/**
 * Redfox Thank You Plugin - SCSS Mixins
 *
 * Reusable mixins for consistent styling across the plugin
 * These mixins should be generic and widely reusable
 *
 * @package RedfoxThankYou
 * @since 1.0.0
 */
/**
 * Flexbox layouts
 */
/**
 * Common flex shortcuts
 */
/**
 * Positioning
 */
/**
 * Size helper
 */
/**
 * Square helper
 */
/**
 * Circle helper
 */
/**
 * Margin helpers
 */
/**
 * Padding helpers
 */
/**
 * Remove spacing
 */
/**
 * Border helpers
 */
/**
 * Background helpers
 */
/**
 * Font helpers
 */
/**
 * Text truncation
 */
/**
 * Screen reader text
 */
/**
 * Transition helper
 */
/**
 * Hover effects
 */
/**
 * Focus states
 */
/**
 * Base button styles
 */
/**
 * Button base with common styles
 */
/**
 * Icon button
 */
/**
 * Input field base
 */
/**
 * Label styles
 */
/**
 * Card/Panel styles
 */
/**
 * Card with default padding
 */
/**
 * Dropdown/Popover styles
 */
/**
 * Visibility helpers
 */
/**
 * Responsive breakpoints
 */
/**
 * Container with responsive behavior
 */
/**
 * Fade animations
 */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  to {
    opacity: 0;
  }
}
/**
 * Slide animations
 */
@keyframes slideInUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/**
 * Clearfix for floated elements
 */
/**
 * Aspect ratio container
 */
/**
 * Scrollbar styling
 */
/**
 * CSS Triangle
 */
.redfox-thank-you-panel-body {
  border-top: 1px solid #ddd;
}
.redfox-thank-you-panel-body__header {
  position: relative;
}
.redfox-thank-you-panel-body__header--clickable {
  cursor: pointer;
}
.redfox-thank-you-panel-body__header--clickable:hover {
  background: #f0f0f0;
}
.redfox-thank-you-panel-body__title-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  padding: 12px 16px 12px 16px;
  min-height: 48px;
  outline: none;
}
.redfox-thank-you-panel-body__title-row:focus-visible {
  outline: 2px solid var(--wp-components-color-foreground, #1e1e1e);
  outline-offset: 2px;
}
.redfox-thank-you-panel-body__title-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  flex: 1;
  min-width: 0;
}
.redfox-thank-you-panel-body__icon {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  margin: 0 8px 0 0;
  color: #555;
}
.redfox-thank-you-panel-body__icon svg {
  width: 20px;
  height: 20px;
}
.redfox-thank-you-panel-body__title {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 !important;
  padding: 0 !important;
  color: #1e1e1e;
}
.redfox-thank-you-panel-body__controls {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 4px;
  margin-left: auto;
  flex-shrink: 0;
}
.redfox-thank-you-panel-body__responsive {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  visibility: hidden;
  opacity: 0;
  transition: visibility opacity ease-in-out;
}
.redfox-thank-you-panel-body__responsive .redfox-thank-you-responsive-button-group {
  margin: 0;
}
.redfox-thank-you-panel-body__responsive--show {
  visibility: visible;
  opacity: 1;
}
.redfox-thank-you-panel-body__actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 4px;
  visibility: hidden;
  opacity: 0;
  transition: visibility opacity ease-in-out;
}
.redfox-thank-you-panel-body__actions--show {
  visibility: visible;
  opacity: 1;
}
.redfox-thank-you-panel-body__toggle {
  color: #1e1e1e !important;
  background: transparent !important;
}
.redfox-thank-you-panel-body__toggle.components-button.is-small.has-icon:not(.has-text) {
  padding: 2px 2px 2px 2px;
}
.redfox-thank-you-panel-body__content {
  padding: 16px 16px 16px 16px;
  border-top: none;
}
.redfox-thank-you-panel-body__content > *:last-child {
  margin-bottom: 0 !important;
}
.redfox-thank-you-panel-body__content--parent-group .redfox-thank-you-panel-body {
  border-right: 1px solid #ddd;
  border-left: 1px solid #ddd;
}
.redfox-thank-you-panel-body__content--parent-group .redfox-thank-you-panel-body:last-child {
  border-bottom: 1px solid #ddd;
}
.redfox-thank-you-panel-body--is-open .redfox-thank-you-panel-body__header {
  border-bottom-color: #ddd;
}
.redfox-thank-you-panel-body:not(.redfox-thank-you-panel-body--is-open) .redfox-thank-you-panel-body__header {
  border-bottom: none;
}
.redfox-thank-you-panel-body:not(.redfox-thank-you-panel-body--collapsible) .redfox-thank-you-panel-body__header {
  border-bottom-color: #ddd;
}
.redfox-thank-you-panel-body:not(.redfox-thank-you-panel-body--collapsible) .redfox-thank-you-panel-body__title-row {
  cursor: default;
}
.redfox-thank-you-panel-body:not(.redfox-thank-you-panel-body--collapsible) .redfox-thank-you-panel-body__toggle {
  display: none;
}
.redfox-thank-you-panel-body--with-responsive .redfox-thank-you-panel-body__title-content {
  margin: 0 12px 0 0;
}
@media (max-width: 782px) {
  .redfox-thank-you-panel-body__title-row {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 8px;
    padding: 12px 16px 12px 16px;
  }
  .redfox-thank-you-panel-body__title-content {
    margin: 0 0 0 0;
  }
  .redfox-thank-you-panel-body__controls {
    margin-left: 0;
    justify-content: space-between;
  }
  .redfox-thank-you-panel-body__responsive {
    order: -1;
  }
  .redfox-thank-you-panel-body__actions {
    flex: 1;
    justify-content: flex-end;
  }
}
/*!************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./src/components/responsive-button-group/style.scss ***!
  \************************************************************************************************************************************************************************/
/**
 * Responsive Component Styles
 *
 * Styles for the responsive breakpoint dropdown component using MenuGroup
 *
 * @package RedfoxThankYou
 * @since 1.0.0
 */
/**
 * Redfox Thank You Plugin - SCSS Mixins
 *
 * Reusable mixins for consistent styling across the plugin
 * These mixins should be generic and widely reusable
 *
 * @package RedfoxThankYou
 * @since 1.0.0
 */
/**
 * Flexbox layouts
 */
/**
 * Common flex shortcuts
 */
/**
 * Positioning
 */
/**
 * Size helper
 */
/**
 * Square helper
 */
/**
 * Circle helper
 */
/**
 * Margin helpers
 */
/**
 * Padding helpers
 */
/**
 * Remove spacing
 */
/**
 * Border helpers
 */
/**
 * Background helpers
 */
/**
 * Font helpers
 */
/**
 * Text truncation
 */
/**
 * Screen reader text
 */
/**
 * Transition helper
 */
/**
 * Hover effects
 */
/**
 * Focus states
 */
/**
 * Base button styles
 */
/**
 * Button base with common styles
 */
/**
 * Icon button
 */
/**
 * Input field base
 */
/**
 * Label styles
 */
/**
 * Card/Panel styles
 */
/**
 * Card with default padding
 */
/**
 * Dropdown/Popover styles
 */
/**
 * Visibility helpers
 */
/**
 * Responsive breakpoints
 */
/**
 * Container with responsive behavior
 */
/**
 * Fade animations
 */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  to {
    opacity: 0;
  }
}
/**
 * Slide animations
 */
@keyframes slideInUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/**
 * Clearfix for floated elements
 */
/**
 * Aspect ratio container
 */
/**
 * Scrollbar styling
 */
/**
 * CSS Triangle
 */
.redfox-thank-you-responsive__dropdown {
  width: 100%;
}
.redfox-thank-you-responsive__dropdown .redfox-thank-you-responsive__toggle {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  outline: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  padding: 0 0 0 0;
  border-radius: 2px;
  transition: all 0.15s ease-in-out;
  background: transparent;
  color: #1e1e1e;
  min-height: 24px;
  min-width: 24px;
  border: 1px solid #ddd;
  width: 24px;
  height: 24px;
  padding: 2px 2px 2px 2px;
  border: none;
  background-color: transparent !important;
  display: block;
  color: #1e1e1e !important;
}
.redfox-thank-you-responsive__dropdown .redfox-thank-you-responsive__toggle:hover {
  background: #e0e0e0;
}
.redfox-thank-you-responsive__dropdown .redfox-thank-you-responsive__toggle:focus:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--wp-components-color-foreground, #1e1e1e);
}
.redfox-thank-you-responsive__dropdown .redfox-thank-you-responsive__toggle:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.redfox-thank-you-responsive__dropdown-content {
  border: 1px solid #ddd;
  border-radius: 2px;
  background: #fff;
  border-radius: 2px;
  position: absolute;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.13);
  min-width: 150px;
}
.redfox-thank-you-responsive__dropdown-content .components-menu-group {
  margin: 0 !important;
  padding: 0 !important;
}
.redfox-thank-you-responsive__dropdown-content .components-menu-item__button {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  width: 100%;
  padding: 8px 12px 8px 12px;
  position: relative;
}
.redfox-thank-you-responsive__dropdown-content .components-menu-item__button .components-menu-item__info {
  margin: 0 0 0 8px;
}
.redfox-thank-you-responsive__dropdown-content .redfox-thank-you-responsive__menu-item--selected.components-menu-item__button {
  background-color: var(--wp-components-color-foreground, #1e1e1e) !important;
  color: #fff !important;
}
.redfox-thank-you-responsive__dropdown-content .redfox-thank-you-responsive__menu-item--selected.components-menu-item__button::after {
  content: "";
  position: absolute;
  right: 12px;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27 fill=%27none%27%3E%3Cpath d=%27M18.3 5.71a.996.996 0 0 0-1.41 0L9 13.59l-3.89-3.89a.996.996 0 1 0-1.41 1.41l4.59 4.59c.39.39 1.02.39 1.41 0L18.3 7.12c.39-.39.39-1.02 0-1.41z%27 fill=%27white%27/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.redfox-thank-you-responsive__dropdown-content .redfox-thank-you-responsive__menu-item--selected.components-menu-item__button .components-menu-item__info {
  color: #fff !important;
}
.redfox-thank-you-responsive--with-labels .redfox-thank-you-responsive__toggle .components-button__content {
  justify-content: flex-start;
}
.components-panel__body .redfox-thank-you-responsive {
  margin-top: 0;
  margin-bottom: 12px;
}
/*!*************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./src/components/reset-button/style.scss ***!
  \*************************************************************************************************************************************************************/
/**
 * Reset Button Styles
 *
 * Universal styles for the reset button component.
 * Uses BEM naming convention and follows project standards.
 *
 * @package RedfoxThankYou
 * @since 1.0.0
 */
/**
 * Redfox Thank You Plugin - SCSS Mixins
 *
 * Reusable mixins for consistent styling across the plugin
 * These mixins should be generic and widely reusable
 *
 * @package RedfoxThankYou
 * @since 1.0.0
 */
/**
 * Flexbox layouts
 */
/**
 * Common flex shortcuts
 */
/**
 * Positioning
 */
/**
 * Size helper
 */
/**
 * Square helper
 */
/**
 * Circle helper
 */
/**
 * Margin helpers
 */
/**
 * Padding helpers
 */
/**
 * Remove spacing
 */
/**
 * Border helpers
 */
/**
 * Background helpers
 */
/**
 * Font helpers
 */
/**
 * Text truncation
 */
/**
 * Screen reader text
 */
/**
 * Transition helper
 */
/**
 * Hover effects
 */
/**
 * Focus states
 */
/**
 * Base button styles
 */
/**
 * Button base with common styles
 */
/**
 * Icon button
 */
/**
 * Input field base
 */
/**
 * Label styles
 */
/**
 * Card/Panel styles
 */
/**
 * Card with default padding
 */
/**
 * Dropdown/Popover styles
 */
/**
 * Visibility helpers
 */
/**
 * Responsive breakpoints
 */
/**
 * Container with responsive behavior
 */
/**
 * Fade animations
 */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  to {
    opacity: 0;
  }
}
/**
 * Slide animations
 */
@keyframes slideInUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/**
 * Clearfix for floated elements
 */
/**
 * Aspect ratio container
 */
/**
 * Scrollbar styling
 */
/**
 * CSS Triangle
 */
.redfox-thank-you-reset-button.components-button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  outline: none;
  min-width: auto;
  padding: 2px 2px 2px 2px;
  color: #1e1e1e !important;
  background-color: transparent !important;
  box-shadow: none;
}
.redfox-thank-you-reset-button.components-button:hover {
  box-shadow: none !important;
}
.redfox-thank-you-reset-button.components-button .dashicon,
.redfox-thank-you-reset-button.components-button .components-button__icon {
  margin: 0 0 0 0;
}
.redfox-thank-you-reset-button.components-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.redfox-thank-you-reset-button--small {
  padding: 2px 6px;
  font-size: 12px;
}
.redfox-thank-you-reset-button--compact {
  padding: 1px 4px;
  font-size: 11px;
}
.redfox-thank-you-reset-button--danger {
  color: #d94f4f;
}
.redfox-thank-you-reset-button--danger:hover:not(:disabled) {
  color: #b32d2e;
}

/*# sourceMappingURL=components.css.map*/