/* -------------------------------------------------- Mixins */
/*
<div class="progress-circle p{VALUE_OF_PROGRESS} {if VALUE_OF_PROGRESS > 50}over50{/if}">
	<span>{VALUE_OF_PROGRESS}%</span>
	<div class="left-half-clipper">
		<div class="first50-bar"></div>
		<div class="value-bar"></div>
	</div>
</div>
*/
/* ---------------------------------------------------------------------- */
/* -------------------------------------------------- Socialbar */
.socialBar {
  align-items: center;
  background: var(--primary);
  bottom: 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(5rem, 1fr));
  height: 3.5rem;
  justify-items: center;
  left: 0;
  position: fixed;
  width: 100%;
  z-index: 100;
}
@media (min-width: 768px) {
  .socialBar {
    bottom: 20rem;
    height: auto;
    left: auto;
    padding: 1rem 0;
    right: 0;
    width: 6rem;
  }
}
.socialBar.sticky {
  bottom: 0;
  transform: translateY(100%);
}
@media (min-width: 768px) {
  .socialBar.sticky {
    bottom: 20rem;
  }
}
.socialBar.sticky--in {
  transform: translateY(0);
  transition: transform 0.5s ease-out;
}
.socialBar.sticky--out {
  transform: translateY(100%);
  transition: transform 0.5s ease-out;
}
.socialBar a {
  align-items: center;
  background: #fff;
  border-radius: 50%;
  display: flex;
  height: 2.5rem;
  justify-content: center;
  width: 2.5rem;
}
@media (min-width: 768px) {
  .socialBar a {
    height: 4rem;
    width: 4rem;
  }
}
.socialBar i {
  color: var(--primary);
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .socialBar i {
    font-size: 2rem;
  }
}
/*# sourceMappingURL=socialBar.css.map */
