.social-nav-menu {
  ul, & {
    margin: 0;
    padding: 0;
  }

  li {
    background-color: rgba($color-black, 0.1);
    border-radius: 3.125rem;
    display: inline-block;
    height: 3.125rem;
    list-style-type: none;
    margin: 0 1rem 0 1rem;
    position: relative;
    width: 3.125rem;

    &:before {
      align-items: center;
      display: flex;
      font-size: 1.5rem;
      height: 3.125rem;
      justify-content: center;
      text-align: center;
      width: 3.125rem;
    }

    a {
      text-decoration: none;
      display: inline-block;
      font-size: 0;
      height: 3.125rem;
      line-height: 0;
      min-width: 3.125rem;
      width: 100%;
      background-size: 1.5rem 1.5rem !important;
      filter: grayscale(100%);
      transition: transform ease-in-out 400ms;

      &:hover {
        background: transparent !important;
        filter: grayscale(0%);
        transform: scale(1.25);
      }

      &:before {
				font-size: 1.5rem;
				line-height: 2;
				font-family: dashicons;
				position: relative;
			}

			&[href*="facebook"] {
				&:before {
					content: '\f304';
				}
			}

			&[href*="twitter"] {
				&:before {
					content: '\f301';
				}
			}

			&[href*="instagram"] {
				&:before {
					content: '\f12d';
				}
			}

			&[href*="youtube"] {
				&:before {
					content: '\f19b';
				}
			}

			&[href*="github"] {
				&:before {
					content: '\f475';
				}
			}

			&[href*="linkedin"] {
				&:before {
					content: '\f18d';
				}
			}

			&[href*="reddit"] {
				&:before {
					content: '\f195';
				}
			}

			&[href*="twitch"] {
				&:before {
					content: '\f199';
				}
			}

			&[href*="pinterest"] {
				&:before {
					content: '\f192';
				}
			}

			&[href*="mailto:"] {
				&:before {
					content: '\f465';
				}
			}
    }
  }
}
