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

  li {
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    display: inline-block;
    height: 50px;
    list-style-type: none;
    margin: 0 15px 0 15px;
    position: relative;
    width: 50px;

    &:before {
      align-items: center;
      display: flex;
      font-size: 24px;
      height: 50px;
      justify-content: center;
      text-align: center;
      width: 50px;
    }

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

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

      &:before {
				font-family: dashicons;
				font-size: 24px;
				line-height: 2;
				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';
				}
			}
    }
  }
}
