.custom-icon {
    font-weight: normal;
    font-style: normal;
    font-size: 1.5rem;
    width: 30px;
    line-height: 1;
    visibility: hidden;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    vertical-align: middle;
    margin-left: 5px;
    margin-right: 5px;
}
.custom-icon::before {
      content: "";
      position: relative;
      display: inline-block;
      visibility: visible;
      width: 30px;
      height: 30px;
      mask-position: 50% 50% !important;
      mask-size: contain !important;
      -webkit-mask-position: 50% 50% !important;
      -webkit-mask-size: contain !important;
      mask-repeat: no-repeat !important;
      -webkit-mask-repeat: no-repeat !important;
      background-color: var(--color--light-50);;
    }
.custom-icon.bluesky::before {
   -webkit-mask: url('/themes/custom/beoncosup/images/bluesky.svg');
   mask: url('/themes/custom/beoncosup/images/bluesky.svg');
}
.custom-icon.threads::before {
    -webkit-mask: url('/themes/custom/beoncosup/images/threads.svg');
    mask: url('/themes/custom/beoncosup/images/threads.svg');
}
.custom-icon.linkedin::before {
    -webkit-mask: url('/themes/custom/beoncosup/images/linkedin-squared.svg');
    mask: url('/themes/custom/beoncosup/images/linkedin-squared.svg');
}
.custom-icon.facebook::before {
    -webkit-mask: url('/themes/custom/beoncosup/images/facebook-squared.svg');
    mask: url('/themes/custom/beoncosup/images/facebook-squared.svg');
    background-image: none;
}