/* stylelint-disable order/order */
/* stylelint-enable order/order */
/*
* Used to add the CSS Grid properties for the 12-column grid.
*
* @return string  The CSS Grid properties for the 12-column grid.
*/
/****************
 * Fonts
 *
 * The font settings are defined via the gulp figma task creates variables in the css/__base-includes/figma/_figma-font-styles.scss file based on the Figma file. Additional variables are defined here.
 ****************/
/****************
 * Colors
 *
 * The primary colors are defined via the gulp figma task creates variables in the css/__base-includes/figma/_figma-color-variables.scss file based on the Figma file. Additional variables are defined here.
 ****************/
/****************
 * Effects
 ****************/
/****************
 * Grid Settings
 ****************/
/*
This file can be used for optional additions to the Figma-generated font style mixins in the figma/_figma-font-styles.scss file.

For example, if you want to add styles to the @overline mixin, just create a mixin here called @overline-custom and that CSS will be added to the primary mixin:

@mixin overline-custom() {
	font-weight: 700;
}
*/
.share-icons {
  margin-left: auto;
}
.share-icons--small .share-icons__inner {
  margin-left: -0.25rem;
}
@media (min-width: 48rem) {
  .share-icons--small .share-icons__inner {
    margin-right: -0.25rem;
    margin-left: auto;
  }
}
.share-icons--small .share-icons__link {
  flex: 0 0 2rem;
  width: 2rem;
  height: 2rem;
  margin: 0 0.25rem;
}
.share-icons--small .share-icons__link span {
  font-size: 1rem;
}
@media (min-width: 48rem) {
  .share-icons {
    justify-content: flex-end;
    margin-right: -0.5rem;
  }
}
.share-icons__title {
  margin-right: auto;
  margin-bottom: 0.5rem;
  margin-left: 0;
}
.share-icons__inner {
  display: flex;
  justify-content: flex-start;
  margin-left: -0.5rem;
}
.share-icons__link {
  display: flex;
  flex: 0 0 3rem;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  margin: 0 0.5rem;
  text-decoration: none;
  border: 1px solid #0737cf;
  border-radius: 50%;
  background: transparent;
  transition: border-color 0.2s linear;
}
.share-icons__link:hover, .share-icons__link:focus {
  border-color: #4bc031;
}
.share-icons__link span {
  color: #0d0d0d;
  font-size: 1.5rem;
}