/**
 * Social Share
 */
.entry-share {
	.theme-heading {
    	float: left;
	    margin: 0;
	    line-height: 40px;

	    .text:before,
	    .text:after {
	    	display: none !important;
	    }
    }

	ul {
		float: right;
		margin: 0;
	    padding: 0;
	    list-style: none;

		li {
		    float: left;

			a {
				display: inline-block;
				position: relative;
			    color: #bbb;
				border: 1px solid #e9e9e9;
				width: 40px;
				height: 40px;
				line-height: 40px;
				font-size: 14px;
	   			margin-right: 12px;
				text-align: center;
			    border-radius: 50%;
			}

			&:last-child a {
				margin-right: 0;
			}

			&.twitter a:hover {
			    color: #00aced;
				border-color: #00aced;
			}

			&.facebook a:hover {
			    color: #3b5998;
				border-color: #3b5998;
			}

			&.googleplus a:hover {
			    color: #dd4b39;
				border-color: #dd4b39;
			}

			&.linkedin a:hover {
			    color: #3399CC;
				border-color: #3399CC;
			}

			&.pinterest a:hover {
			    color: #cb2027;
				border-color: #cb2027;
			}
		}
	}
}

.single-post .entry-share {
	margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #f1f1f1;
}

/*------------------------------------*
	Phone Landscape
*------------------------------------*/
@media only screen and (max-width: 480px) {
	.entry-share .theme-heading { float: none; margin: 0 0 20px; line-height: 1; text-align: center; }
	.entry-share ul { float: none; text-align: center; }
	.entry-share ul li { float: none; display: inline-block; }
}