
/*!******************************************************!*\
  !*** ../src/elements/social-media/social-media.scss ***!
  \******************************************************/
/*******************************
 * Buttons
 ******************************/
/*
 * Applies the complete set of button styles with all desired style variations.
 * This mixin is normally applied to form buttons or links with
 * the desired button classes eg. .button.style-xxx.
 */
/*
 * Contains styles that all of the buttons have in common.
 * Some button styles might opt out or override some of these styles.
 * One benefit of this approach is that all of the buttons will be consistently
 * configurable with the CSS variables defined below.
 */
/*******************************
 * Button Styles
 *
 * Styles should define the way the buttons look. Depending on the project,
 * you may need to optimize each style based on the section / element that
 * a button is used in. For that purpose you can use the predefined CSS
 * variables to easily overwrite the desired colors based on your need.
 ******************************/
/*******************************
 * Inputs
 ******************************/
.social-media-icons {
  --buttons-gap: 1.25rem;
  --button-size: 1.875rem;
  --icon-size: 1.875rem;
  --icon-color: var(--page-color);
  --icon-color-hover: var(--page-color-lighter);
  --icon-color-active: var(--page-color-darker);
}
@container theme style(--theme: dark) {
  .social-media-icons {
    --icon-color: var(--white);
    --icon-color-hover: var(--white);
    --icon-color-active: var(--white);
  }
}
.social-media-icons:where([data-query-theme="3871037065"]) {
  --icon-color: var(--white);
  --icon-color-hover: var(--white);
  --icon-color-active: var(--white);
}
.social-media-icons {
  display: flex;
  gap: var(--buttons-gap);
  flex-wrap: wrap;
  align-items: center;
  margin-block: 1rem;
}
@media print {
  .social-media-icons {
    display: none;
  }
}
.social-media-icons .social-media-button {
  position: relative;
  width: var(--button-size);
  height: var(--button-size);
  display: flex;
  align-items: center;
  justify-content: center;
  transition-duration: 150ms;
  transition-property: background-color, color, border-color;
  color: var(--icon-color);
  border-radius: 0.25rem;
}
.social-media-icons .social-media-button:hover {
  color: var(--icon-color-hover);
}
.social-media-icons .social-media-button:active {
  color: var(--icon-color-active);
}
.social-media-icons .social-media-icon {
  max-width: var(--icon-size);
  max-height: var(--icon-size);
}

/*# sourceMappingURL=css-wpce--social-media.css.map*/