<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#socials-wrapper {
  min-height: 0 !important;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-box-direction: normal;
  -moz-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: left;
  -moz-box-pack: left;
  -ms-flex-pack: left;
  -webkit-justify-content: left;
  justify-content: left;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
#socials-wrapper &gt; .title {
  padding-right: 16px;
  font-family: var(--default-font-family);
  margin-bottom: 0;
  color: #1b1b1b;
  font-weight: 400;
  letter-spacing: var(--default-letter-spacing);
  text-decoration: none;
  font-size: 14px;
  line-height: 24px;
}
#socials-wrapper &gt; .socials {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-box-direction: normal;
  -moz-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 8px;
}
#socials-wrapper &gt; .socials &gt; .social-link {
  cursor: pointer;
  text-indent: -9999px;
  width: 32px;
  height: 32px;
  position: relative;
  border-radius: 50px;
}
#socials-wrapper &gt; .socials &gt; .social-link:hover:after {
  -moz-transform: translateY(-50%) translateX(-50%) scale(1.2);
  -o-transform: translateY(-50%) translateX(-50%) scale(1.2);
  -ms-transform: translateY(-50%) translateX(-50%) scale(1.2);
  -webkit-transform: translateY(-50%) translateX(-50%) scale(1.2);
  transform: translateY(-50%) translateX(-50%) scale(1.2);
}
#socials-wrapper &gt; .socials &gt; .social-link:after {
  content: "";
  text-indent: 0;
  color: #1b1b1b;
  width: 32px;
  height: 32px;
  -moz-transform: translateY(-50%) translateX(-50%);
  -o-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  position: absolute;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  transition: 200ms ease all;
}
@media (prefers-reduced-motion: reduce) {
  #socials-wrapper &gt; .socials &gt; .social-link:after {
    transition: none;
  }
}
#socials-wrapper &gt; .socials &gt; .social-link.social-facebook:after {
  content: "";
  display: inline-block;
  background-image: url("/assets/images/icons/fb-round-black.png");
  background-image: url("/assets/images/icons/fb-round-black.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
#socials-wrapper &gt; .socials &gt; .social-link.social-linkedin:after {
  content: "";
  display: inline-block;
  background-image: url("/assets/images/icons/linkedin-round-black.png");
  background-image: url("/assets/images/icons/linkedin-round-black.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
#socials-wrapper &gt; .socials &gt; .social-link.social-x:after {
  content: "";
  display: inline-block;
  background-image: url("/assets/images/icons/x-round-black.png");
  background-image: url("/assets/images/icons/x-round-black.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
</pre></body></html>