#social-hub-container {
	overflow: visible !important;
}

#social-hub-options {
	text-align: center;
	padding: 10px 0;
}

#social-hub-options .option-set {
	margin: 0;
}

.button.feed-type-btn,
.button.button-disabled.feed-type-btn,
.button.feed-type-btn:hover,
.button.feed-type-btn:focus {
	padding-left: 20px;
	padding-right: 20px;
	width: 30px;
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
	color: transparent;
	background-position: center center;
}

.button.feed-type-facebook,
.button-disabled.feed-type-facebook,
.button.feed-type-facebook:hover,
.button.feed-type-facebook:focus {
	background-image: url('../images/white_buttons/btn_tab_facebook.png');
}

.button.feed-type-twitter,
.button-disabled.feed-type-twitter,
.button.feed-type-twitter:hover,
.button.feed-type-twitter:focus {
	background-image: url('../images/white_buttons/btn_tab_twitter.png');
}

.button.feed-type-youtube,
.button-disabled.feed-type-youtube,
.button.feed-type-youtube:hover,
.button.feed-type-youtube:focus {
	background-image: url('../images/white_buttons/btn_tab_youtube.png');
}

.button.feed-type-instagram,
.button-disabled.feed-type-instagram,
.button.feed-type-instagram:hover,
.button.feed-type-instagram:focus {
	background-image: url('../images/white_buttons/btn_tab_instagram.png');
}



/* Post styles and responsivness. Breakpoints as per isotope JS */
.item {
	width: 100%;
	margin: 10px 0;
	border: 1px solid #e6e6e6;
	-webkit-box-shadow: 0 0 6px 0 #dfdfdf;
	box-shadow: 0 0 6px 0 #dfdfdf;
	padding: 0;
}

@media screen and (min-width: 540px) {
	#social-hub-container {
		margin: 0 -2% 0 0;
	}

    .item {
    	width: 48%;
    	margin: 10px calc(2%-1px) 10px 0;
    }
}

@media screen and (min-width: 1080px) {
	#social-hub-container {
		margin: 0 -3% 0 0;
	}
    .item {
    	width: 30.333%;
    	margin: 10px calc(3%-1px) 10px 0;
    }
}


.item .img-popup,
.item .iframe-popup {
	display: block;
}

.item a {
	-ms-word-break: break-all;
	word-break: break-all;
	word-break: break-word;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;
}

.item-text {
	padding: 65px 25px 20px;
}

.item.facebook .item-text {
	background: url('../images/grey_buttons/btn_tab_facebook.png') no-repeat 48% 10px ;
}

.item.twitter .item-text {
	background: url('../images/grey_buttons/btn_tab_twitter.png') no-repeat center 10px ;
}

.item.youtube .item-text {
	background: url('../images/grey_buttons/btn_tab_youtube.png') no-repeat center 10px ;
}

.item.instagram .item-text {
	background: url('../images/grey_buttons/btn_tab_instagram.png') no-repeat center 10px ;
}


.img-popup {
	display: block;
	text-align: center;
	max-height: 300px;
	overflow: hidden;
}

.post-img {
	margin: 0 auto 0;
	max-width: 100%;
	opacity: 1;
	transition: opacity 1s;
}

.post-img.pre isotope-itemload {
	opacity: 0;
}

.item-info {
	background-color: #f6f6f6;
	padding: 10px;
	position: relative;
	font-size: 1.3rem;
	line-height: 1;
	min-height: 55px;
}

.item-author {
	width: 70%;
	float: left;

	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row nowrap;
	        flex-flow: row nowrap;
	-ms-flex-line-pack: center;
	    align-content: center;
	-webkit-box-pack: left;
	-ms-flex-pack: left;
	        justify-content: left;
}

.author-img {
	margin: 0 10px 0 0;
	width: 35px;
	float: left;
}
.author-name {
	padding: 0 0 0 0;
	margin: 0 0 0 0px;
	display: block;

	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-flow: column wrap;
	        flex-flow: column wrap;
	-ms-flex-line-pack: center;
	    align-content: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.item-meta {
	float: right;
	width: 25%;
	text-align: right;

	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row wrap;
	        flex-flow: row wrap;
	-ms-flex-line-pack: center;
	    align-content: center;
	-webkit-box-pack: right;
	-ms-flex-pack: right;
	        justify-content: right;
	height: 100%;
	min-height: 36px;

}

.item .post-url {
	position: absolute;
	top: 0px;
	left: 0px;
	bottom: 0px;
	right: 0px;
	display: block;
	font-size: 1.6rem !important;
	padding: 12px 10px 12px !important;
	border-radius: 0;
	opacity: 0 !important;

	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row wrap;
	        flex-flow: row wrap;
	-ms-flex-line-pack: center;
	    align-content: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	        justify-content: center;
}

.item:hover .post-url {
	display: block;
	display: flex;

	font-size: 1.6rem;
	padding: 12px 10px 12px !important;
	opacity: 1 !important;
}

