/* #region "../src/elements/social-media/social-media.scss" */
/*
- type: css
*/
/*******************************
 * 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: 0.75rem;
  --button-size: 1.5rem;
  --icon-size: 1.5rem;
  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: 125ms;
  transition-property: background-color, color, border-color;
  color: var(--text-color);
  border-radius: 0.25rem;
}
:root.no-focus-visible .social-media-icons .social-media-button:focus {
  outline: 2px solid var(--focus-color, var(--primary));
  outline-offset: var(--focus-offset, 3px);
}

.social-media-icons .social-media-button:focus:not(:focus-visible) {
  outline: none;
}
.social-media-icons .social-media-button:focus-visible {
  outline: 2px solid var(--focus-color, var(--primary));
  outline-offset: var(--focus-offset, 3px);
}
.social-media-icons .social-media-button:hover {
  color: var(--primary);
}
.social-media-icons .social-media-button:active {
  color: var(--primary-darker-1);
}
.social-media-icons .social-media-icon {
  max-width: var(--icon-size);
  max-height: var(--icon-size);
}
/* #endregion "../src/elements/social-media/social-media.scss" */

head{--webpack--css-wpce--social-media:&\.\.\/src\/elements\/social-media\/social-media\.scss;}
/*# sourceMappingURL=css-wpce--social-media.css.map*/