/****************************
  general BBL2 Gallery
****************************/
.bbl2-gallery {
	position: relative;
	overflow: hidden;
	font-size: 0;
	line-height: 0;
	background: #eee;
	white-space: nowrap;
	text-align: center;
}
.bbl2-gallery .gal-item {
	display: inline-block;
	position: relative;
	width: 33.33%;
	padding-top: 33.33%;
	-webkit-transition: margin 0.3s;
	        transition: margin 0.3s;
}
.bbl2-gallery .gal-item .img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: 50% 30%; /*middle center-top*/
	cursor: pointer;
}
.bbl2-gallery .gal-item .img::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 50%;
	padding-top: 50%;
	font-family: "ETModules";
	content: "T";
	color: #333;
	font-size: 15px;
	line-height: 0;
	background: rgba(255,255,255,0.7);
	opacity: 0;
	-webkit-transition: all 0.3s;
	        transition: all 0.3s;
}
.bbl2-gallery .gal-item .img:hover::after {
	opacity: 1;
	font-size: 30px;
}
.bbl2-gallery .nav {
	position: absolute;
	top: 0;
	height: 100%;
	font-size: 20px;
	width: 2.2em;
	z-index: 2;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0.5;
	cursor: pointer;
	-webkit-transition: all 0.3s;
	        transition: all 0.3s;
}
.bbl2-gallery .nav.hidden {
	display: none;
}
.bbl2-gallery .nav:hover {
	opacity: 1;
	background: rgba(0,0,0,0.2);
}
.bbl2-gallery .nav.left {
	left: 0;
}
.bbl2-gallery .nav.right {
	right: 0;
}
.bbl2-gallery .nav .divi-icon {
	color: #fff;
	line-height: 1em;
}
.bbl2-gallery .nav.left.hide {
	left: -3em;
}
.bbl2-gallery .nav.right.hide {
	right: -3em;
}

/****************************
  BBL2 Lightbox
****************************/
.bbl2-lightbox-open {
	overflow: hidden !important;
}
.bbl2-lightbox {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.85);
	z-index: 111111;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	font-size: 16px;
}
.bbl2-lightbox .close-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.bbl2-lightbox .content-box {
	position: relative;
	flex-grow: 1;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: stretch;
}
.bbl2-lightbox .content {
	position: relative;
	width: 100%;
}
.bbl2-lightbox .content .content-img {
	width: 100%;
	height: 100%;
	background-size: contain;
	background-position: 50% 50%; /*middle center*/
	background-repeat: no-repeat;
}
.bbl2-lightbox .content .img-btn-list {
	position: absolute;
	width: 30vw;
	height: 10vw;
	margin-left: -15vw;
	bottom: 0;
	left: 50%;
	font-size: 6vw;
	line-height: 10vw;
	text-align: center;
	opacity: 0;
}
.bbl2-lightbox .content .img-btn-list:hover {
	opacity: 1;
}
.bbl2-lightbox .content .img-btn-list .btn {
	color: #fff;
	text-shadow: 0 0 3px rgba(0,0,0,.7);
	opacity: 0.5;
	padding: 0 1em;
}
.bbl2-lightbox .content .img-btn-list .btn:hover {
	opacity: 1;
}
.bbl2-lightbox .navbar {
	width: 100%;
	background: #000;
	padding: 1px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
.bbl2-lightbox .navbar .nav-item {
	position: relative;
	flex-shrink: 0;
	flex-grow: 0;
	height: 42px;
	width: 42px;
	margin: 1px;
	background-size: cover;
	cursor: pointer;
	opacity: 0.5;
}
.bbl2-lightbox .navbar .nav-item.thumb-vid {
	background: transparent;
	display: flex;
	justify-content: center;
	align-items: center;
}
.bbl2-lightbox .navbar .nav-item.thumb-vid .icon {
	position: relative;
	color: #fff;
	font-size: 26px;
	line-height: 1em;
	width: 1em;
	height: 1em;
}
.bbl2-lightbox .navbar .nav-item.thumb-vid .icon > span {
	position: relative;
}
.bbl2-lightbox .navbar .nav-item.thumb-vid .icon::before {
	position: absolute;
	content: '';
	width: 89%;
	height: 89%;
	top: 9%;
	left: 9%;
	background: #f00;
	border-radius: 50%;
}
.bbl2-lightbox .navbar .nav-item:hover,
.bbl2-lightbox .navbar .nav-item.active {
	opacity: 1;
}
.bbl2-lightbox .controls {
	position: absolute;
	top: 25%;
	height: 50%;
	width: 2em;
	font-size: 2em;
	line-height: 1em;
	color: #fff;
	text-shadow: 0 0 3px rgba(0,0,0,.7);
	text-align: center;
	opacity: 0.7;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
}
.bbl2-lightbox .controls.hidden,
body.kmi-modal-open .bbl2-lightbox .controls {
	display: none;
}
.bbl2-lightbox .controls:hover {
	opacity: 1;
}
.bbl2-lightbox .controls.prev {
	left: 0;
}
.bbl2-lightbox .controls.prev::after {
	content: "";
	width: 100%;
}
.bbl2-lightbox .controls.next {
	right: 0;
}
.bbl2-lightbox .controls.next::after {
	content: "";
	width: 100%;
}
.bbl2-lightbox .controls.close {
	right: 0;
	top: 0;
	height: 2em;
	line-height: 2em;
}
.bbl2-lightbox .controls.close::after {
	content: "";
	width: 100%;
}
.bbl2-lightbox .content .content-vid {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.bbl2-lightbox .content .content-vid .vid-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
.bbl2-lightbox .content .content-vid .yt-frame-w {
	position: relative;
	width: 85%;
	max-width: 720px;
}
.bbl2-lightbox .content .content-vid .yt-frame-h {
	position: relative;
	width: 100%;
	padding-top: 57%;
}
.bbl2-lightbox .content .content-vid .yt-content {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
.bbl2-lightbox .content .content-vid .yt-content iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
body.bbl2-lightbox-open .kmi_feed {
	max-width: 38em;
}
body.bbl2-lightbox-open .kmi-feed-modal {
	background: transparent;
}
@media all and (max-width: 870px) {
	body.bbl2-lightbox-open .kmi_feed {
		max-width: 28em;
	}
	body.bbl2-lightbox-open .kmi_feed .content .item {
		width: 12em;
		height: 12em;
		margin: 0.2em;
	}
	body.bbl2-lightbox-open .kmi_feed .content .item .video-overlay {
		line-height: 3em;
	}
	body.bbl2-lightbox-open .kmi_feed .content .item .overlay .user .pic-circle {
		width: 4em;
		height: 4em;
		border-radius: 100%;
		background: #fff;
		box-shadow: 0 0 3px rgba(0,0,0,0.3);
		position: relative;
	}
	body.bbl2-lightbox-open .kmi_feed .content .item .overlay .user .name {
		font-size: 1em;
	}
}
/****************************
  Sponsors - Full Width
****************************/
.sponsor-banner {
	position: absolute;
	width: 100%;
	height: 100%;
	top:0;
	left:0;
	background: #fff;
	overflow: hidden;
}
.sponsor-banner .sponsor-item {
	position: absolute;
	padding: 5% 0;
	width: 100%;
	height: 100%;
	top:0;
	left:0;
	display: none;
}
.sponsor-item .img {
	width: 100%;
	height: 100%;
}