/* Convert pixels to rem Mixin */
ul.social-links {
  padding-left: 0;
  display: flex;
}
ul.social-links.has-text-align-center {
  justify-content: center;
}
ul.social-links.has-text-align-right {
  justify-content: flex-end;
}
@media (max-width: 768px) {
  ul.social-links.has-text-align-right {
    justify-content: center;
  }
}
ul.social-links li {
  list-style-type: none;
}
ul.social-links .social-links__link {
  padding: 10px 20px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: var(--wp--preset--color--white);
  color: var(--wp--preset--color--primary);
  border: 2px solid var(--wp--preset--color--primary);
  border-radius: var(--wp--custom--border-radius--large);
  transition: all 0.5s ease-in-out;
}
ul.social-links .social-links__link:hover {
  border-color: var(--wp--preset--color--white);
  background: var(--wp--preset--color--secondary);
  color: var(--wp--preset--color--white);
}
ul.social-links .social-links__link:hover svg {
  fill: var(--wp--preset--color--white);
}
ul.social-links svg {
  fill: var(--wp--preset--color--text);
  width: 1.5rem;
  height: 1.5rem;
  transition: all 0.5s ease-in-out;
}

@media (max-width: 768px) {
  ul.social-links.has-text-align-right {
    justify-content: center !important;
  }
}
.editor-styles-wrapper ul.social-links a {
  pointer-events: none;
}

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