.popular-tags {
	list-style-type: none;
	margin: 0 0 rem(-6px);
	padding: 0;
	font-size: $font-size-sm;
	
	& > li {
		display: inline-block;
		margin-right: rem(3px);
		margin-bottom: rem(6px);
		
		& a {
			padding: rem(2px) rem(12px);
			border-radius: $border-radius-lg * 4;
			border: 2px solid rgba($white, .5);
			color: $white;
			display: block;
			
			&:hover,
			&:focus {
				text-decoration: none;
				color: $white;
				border-color: $white;
			}
			& .fa {
				font-size: rem(6px);
				margin-right: rem(3px);
				margin-left: rem(-3px);
				position: relative;
				top: rem(-3px);
			}
		}
	}
}