//Widgets
.widget{

	.widget-title, h2{
		@include font-size(1.3);
		margin-bottom:1.5rem;
	}
 

	h3{
	@include font-size(1);
		a{
			color:$gray-800;

			&:hover{
				color:$red;
			}
		}
	}

	ul{
		margin:0;
		padding:0;
		list-style:none;
	}
	
}

.widget_categories, 
.widget_recent_entries, 
.widget_archive, 
.widget_nav_menu,
.widget_pages,
.widget_product_categories {

	ul{
		margin-top:-.5rem;
		a{
			&:before{
		 
				font-family: FontAwesome;
				margin-right:10px;
			}
		}
	}
}
.widget_categories, .widget_product_categories{
	ul{
		a{
			&:before{
				content: "\f07b";
				font-family: FontAwesome;
			}
		}
	}
}

.widget_recent_entries{
	ul{
		a{
			&:before{
				content: "\f02b";
			}
		}
	}
}

.widget_archive{
	ul{
		a{
			&:before{
				content: "\f187";
			}
		}
	}
}

.widget_nav_menu{
	ul{

		a{
			&:before{
				content: "\f0c1";
			}
		}

		ul{
			margin-left:.5rem;

			li:last-child{
				border-bottom:none;
				padding-bottom:0;
			}
		}
	}
}

.widget_pages{
	ul{
		a{
			&:before{
				content: "\f15b";
			}
		}
	}
}

.widget_recent_comments {

	ul{
		margin-top:-.5rem;
		span.comment-author-link{
			&:before{
		 		content: "\f075";
				font-family: FontAwesome;
				margin-right:10px;
			}
		}
	}
}


