.list-social {
  display: flex;
  flex-wrap: wrap;
}
.list-social__item {
	border-radius: 50%;
	display: inline-block;
	background-color: #595959;
	margin-right: 5px;
}
.list-social__item:hover {
	background-color: var(--color-base-accent-1);
}
.list-social__item .icon {
  height: 16px;
  width: 16px;
}

.list-social__link {
  align-items: center;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
}
.list-social__link:hover {
	background-color: var(--color-base-accent-1);
    color: var(--color-base-background-1);
}
.menu-drawer .link--text.list-social__link:hover .icon{
  fill: var(--color-base-background-1);
}
@media only screen and (max-width: 989px) {
  .list-social {
    justify-content: center;
  }
}

