.lightbox-view{
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0px;
	top: 0px;
	text-align: center;
	white-space: nowrap;
	z-index: 10;
	display: none;
}


.lightbox-view .bg{
	width: 140%;
	height: 140%;
	position: absolute;
	z-index: -1;
	background-color: rgba(0, 0, 0, 0.8);
	top: -20%;
	left: -20%;
}

.lightbox-view:before{
	content: '';
	display: inline-block;
	height: 100%;
	vertical-align: middle;
	margin-right: -.25em;
}

.lightbox-view .lightbox-container{
	position: relative;
	text-align: left;
	box-sizing: border-box;
	vertical-align: middle;
	display: inline-block;
	overflow: auto;
	
	margin-left: 5%;
	margin-right: 5%;
	max-height: 95%;
	cursor: auto;
	white-space: normal;
	transform: translateY(200px);
	transition: 600ms all cubic-bezier(0.6,0,0.2,1);
	transition-delay: 0ms;
	opacity: 0;
}

.lightbox-view.active .lightbox-container{
	transform: translateY(0px);
	transition: 600ms all cubic-bezier(0.6,0,0.2,1);
	transition-delay: 200ms;
	opacity: 1;
	overflow: hidden;
}

.lightbox-view .lightbox-container .light-type{
	width: 1000px;
}

.lightbox-view .cancel-btn{
	width: 40px;
	height: 40px;
	position: absolute;
	right: 20px;
	top: 20px;
	cursor: pointer;
}

.lightbox-view .cancel-btn:before{
	content: '';
	width: 100%;
	height: 1px;
	background-color: #fff;
	top: 20px;
	left: 0px;
	position: absolute;
	transform: rotate(45deg);
}

.lightbox-view  .cancel-btn:after{
	content: '';
	width: 100%;
	height: 1px;
	background-color: #fff;
	top: 20px;
	left: 0px;
	position: absolute;
	transform: rotate(-45deg);
}

.lightbox-view .lightbox-container .light-type .inner-content{
	width: 100%;
}

.lightbox-view .lightbox-container .video-container {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px; height: 0; overflow: hidden;
}
.lightbox-view .lightbox-container .video-container iframe,
.lightbox-view .lightbox-container .video-container object,
.lightbox-view .lightbox-container .video-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.lightbox-view .lightbox-container .pic-container .img{
	text-align: center;
	position: relative;
}

.lightbox-view .lightbox-container .pic-container .img .imgWrap{
	position: absolute;
	z-index: 3;
	top: 50%;
	left: 50%;
}

.lightbox-view .lightbox-container .pic-container .img .imgWrap .navigation{
	width: 30px;
	height: 30px;
	position: absolute;
	top: 50%;
	margin-top: -30px;
	cursor: pointer;
	opacity: 0;
	transition: 300ms all ease;
}

.lightbox-view .lightbox-container .pic-container .img.active .imgWrap .navigation{
	opacity: 1;
}

.lightbox-view .lightbox-container .pic-container .img .imgWrap .navigation:after{
	content: '';
	left: 0px;
	top: 15px;
	width: 70%;
	height: 1.5px;
	background-color: white;
	transform-origin: left center;
	transform: rotate(-45deg);
	position: absolute;
}

.lightbox-view .lightbox-container .pic-container .img .imgWrap .navigation:before{
	content: '';
	left: 0px;
	top: 15px;
	width: 70%;
	height: 1.5px;
	background-color: white;
	transform-origin: left center;
	transform: rotate(45deg);
	position: absolute;
}

.lightbox-view .lightbox-container .pic-container .img .imgWrap .navigation.leftBtn{
	left: 10px;
}

.lightbox-view .lightbox-container .pic-container .img .imgWrap .navigation.rightBtn{
	right: 10px;
	transform: scaleX(-1);
}

.lightbox-view .lightbox-container .pic-container .img .intro{
	width: 100%;
	background-color: #000;
	position: absolute;
	left: 0%;
	bottom: 0px;
	opacity: 0;
	transition: 500ms all ease;
	padding-left: 20px;
	padding-top: 20px;
	padding-bottom: 20px;
	padding-right: 20px;
	box-sizing: border-box;
}

.lightbox-view .lightbox-container .pic-container .img .intro .tags{
	position: absolute;
	left: 15px;
	top: 20px;
	z-index: 3;
}

.lightbox-view .lightbox-container .pic-container .img .intro .tags .tag{
	float: left;
	width: 60px;
	height: 25px;
	margin-left: 20px;
	position: relative;
	transition:300ms all ease;
}

.lightbox-view .lightbox-container .pic-container .img .intro .tags:hover .tag{
	margin-left: 40px;
}

.lightbox-view .lightbox-container .pic-container .img .intro .tags .tag .name{
	color: #fff;
	font-size: 13px;
	text-align: center;
	cursor: pointer;
	position: absolute;
	z-index: 2;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	padding-top: 3px;
	transition: 300ms all ease;
	transition-delay: 0ms;
	border: 1px solid #fff;
}

.lightbox-view .lightbox-container .pic-container .img .intro .tags .tag .detail{
	position: absolute;
	height: 200px;
	width: 150px;
	background-color: white;
	bottom: 0px;
	left: -50%;
	margin-left: -15px;
	margin-bottom: -5px;
	z-index: 2;
	padding: 10px;
	box-sizing: border-box;
	transition: 300ms all ease;
	transition-delay: 0ms;
	opacity: 0;
}

.lightbox-view .lightbox-container .pic-container .img .intro .tags .tag .detail a{
	text-decoration: none;
	width: 100%;
	height: 100%;
	display: block;
}

.lightbox-view .lightbox-container .pic-container .img .intro .tags .tag .detail .chapter_name{
	width: 100%;
	float: left;
	font-size: 14px;
	font-weight: bold;
	color: #000;
	margin-bottom: 20px;
	text-align: left;
}

.lightbox-view .lightbox-container .pic-container .img .intro .tags .tag .detail .chapter_info{
	width: 100%;
	float: left;
	font-size: 13px;
	color: #000;
	text-align: left;
}

.lightbox-view .lightbox-container .pic-container .img .intro .tags .tag .detail .chapter_info br{
	display: none;
}

.lightbox-view .lightbox-container .pic-container .img .intro .tags .tag:hover .name{
	color: #000;
	z-index: 3;
	transition-delay: 300ms;
}

.lightbox-view .lightbox-container .pic-container .img .intro .tags .tag:hover .detail{
	opacity: 1;
	transition-delay: 300ms;
}

.lightbox-view .lightbox-container .pic-container .img .intro .author{
	width: 100%;
	float: right;
	font-size: 14px;
	color: #fff;
	text-align: right;
	margin-bottom: 30px;
	box-sizing: border-box;
	min-height: 20px;
}

.lightbox-view .lightbox-container .pic-container .img .intro .text{
	width: 100%;
	float: left;
	font-size: 12px;
	color: #fff;
	text-align: left;
}

.lightbox-view .lightbox-container .pic-container .img.active .intro{
	opacity: 1;
}

.lightbox-view .lightbox-container .pic-container .img .socialmedia{
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 2;
	
}

.lightbox-view .lightbox-container .pic-container .img .socialmedia .icon{
	border-radius: 30px;
	width: 30px;
	height: 30px;
	display: inline-block;
	transition: 400ms all ease;
	box-sizing: border-box;
	margin-left: 2px;
	margin-right: 2px;
}

.lightbox-view .lightbox-container .pic-container .img .socialmedia .icon:hover{
	background-color: rgba(0,0,0,0.4);
}

.lightbox-view .lightbox-container .pic-container .img .socialmedia .icon a{
	color: white;
	margin-top: 1px;
	float: left;
	width: 100%;
	text-align: center;
}

.lightbox-view .lightbox-container .pic-container .img .scale{
	width: 30px;
	height: 30px;
	position: absolute;
	top: 10px;
	right: 10px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url(../../img/zoom_in_icon.svg);
	cursor: pointer;
	opacity: 0;
	transition: 300ms opacity ease;
/* 	transition: 300ms margin-left cubic-bezier(0.6,0,0.2,1); */
}

.lightbox-view .lightbox-container .pic-container .img.active .scale{
	opacity: 1;
}

.lightbox-view .lightbox-container .pic-container.zoom .img .scale{
	background-image: url(../../img/zoom_out_icon.svg);
}

/*
.lightbox-view .lightbox-container,
.lightbox-view .lightbox-container .light-type,
.lightbox-view .lightbox-container .light-type .inner-content,
.lightbox-view .lightbox-container .light-type .inner-content .pic-container,
*/
.lightbox-view .lightbox-container .light-type .inner-content .pic-container .img{
/*
	width: 1000px;
	height: 700px;
*/
}

.lightbox-view .lightbox-container .pic-container img{
/*
	max-height:100%;
	max-width: 100%;
*/
/*
	width: 100%;
	height: 100%;
*/
/* 	padding-bottom: 70px; */
/* 	box-sizing: border-box; */
/* 	transition: 300ms padding-bottom cubic-bezier(0.6,0,0.2,1); */
}

.lightbox-view .lightbox-container .pic-container.longPic .img .intro{
/* 	height: 120px; */
}

.lightbox-view .lightbox-container .pic-container.longPic .img img{
/* 	padding-bottom: 110px; */
}

.lightbox-view .lightbox-container .pic-container .img img{
	display: none;
}

.lightbox-view .lightbox-container .pic-container.zoom .img .intro{
	opacity: 0;
	pointer-events: none;
}

@media (max-width: 1200px) {
	.lightbox-view .lightbox-container .light-type{
		width: 970px;
	}
}
@media (max-width: 992px) {
	.lightbox-view .lightbox-container .light-type{
		width: 750px;
	}
}
@media (max-width: 768px) {
	.lightbox-view .lightbox-container,
	.lightbox-view .lightbox-container .light-type{
		width: 100%;
		padding-left: 15px;
		padding-right: 15px;
		box-sizing: border-box;
		margin-left: 0%;
		margin-right: 0%;
	}
	.lightbox-view .lightbox-container .pic-container .img .intro{
		display: none;
	}
	.lightbox-view .lightbox-container .pic-container .img .imgWrap .navigation{
		display: none;
	}
	.lightbox-view .lightbox-container .pic-container .img .scale{
		display: none;
	}
	.lightbox-view .lightbox-container .pic-container .img .socialmedia{
		display: none;
	}
}