/**
* Block Name: socials
*/

section.socials {
  position: fixed;
  z-index: 999;
  right: 5px;
  top: 50%;
}

section.socials .nav_container {
  background: #ffffff;
  border: 1px solid #efefef;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  width: max-content;
  padding: 10px;
  border-radius: 20px;
}

section.socials .nav_container .social_link svg path {
  fill: var(--VogelGrau);
}

section.socials .nav_container .social_link:hover svg path {
  fill: var(--Grau);
}

@media (max-width: 992px) {
  section.socials {
    bottom: 0;
    top: auto;
    width: 100%;
    right: 0;
  }

  section.socials .nav_container {
    flex-direction: row !important;
    width: 100%;
    border-radius: 0;
    justify-content: space-around;
  }

  section.socials .nav_container .social_link svg {
    width: 20px;
    height: 20px;
  }
}
