/* album */

.album-card {
  width: 200px;
  float: left;
  margin:5px 5px;
  background-color: #FFF;
	border-radius: 5px;
	box-shadow: 0px 0px 3px 0px #555;
}

.album-card-img {
  width: 100%;
  height: 200px;
  background-position: center center;
  background-size: cover;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  cursor: pointer;
}

.album-card-body{
	width: 100%;
	padding: 8px 12px;
}

.album-card-title{
	width: 100%;
	margin-bottom: 2px;
	font-size: 1.2em;
	color: #333333;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.album-photo-card{
	position: relative;
	width:150px;
	height: 150px;
	margin: 5px;
	padding: 5px ;
	float:left;
	background-size: cover;
	background-position: center center;
	box-shadow: 0px 0px 3px 0px #555;
	background-color: #000;
}

.album-photo-card-body{
	width:100%;
	height: 110px;
	margin-top: 30px;
	cursor: pointer;
}

.album-photo-card-body.calbum-video::before{
	content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: 55px;
  left: 60px;
  border-top: 20px solid transparent;
  border-left: 35px solid rgba(255, 255, 255, 0.5);
  border-bottom: 20px solid transparent;
}

.kpop{
	position: fixed;
	display: none;
	top:0;
	left:0;
	right: 0;
	bottom: 0;
	padding: 10px 11px;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 2100;
}

.kpop-card{
	position: absolute;
	width:600px;
	max-width: 100%;
	top: 40%;
  left: 50%;
  padding: 10px;
  transform: translate(-50%, 0);
  z-index: 2001;
}

.gallary-head{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 100px;
	z-index: 2103;
}

.carousel-control-prev,
.carousel-control-next{
	z-index: 2102;
}

.photo-card{
	position: absolute;
	top:10px;
	left:10px;
	right: 10px;
	bottom: 10px;
  z-index: 2101;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.gallary-footer{
	position: absolute;
	top:10px;
	left: 10px;
	padding: 10px 15px;
	background-color: rgba(0, 0, 0, 0.5);
	border-radius: 5px;
	color: #FFF;
	z-index: 2102;
}

/* ////////////////////////////// Media Query ////////////////////////////// */

@media screen and (max-width: 991px) {
  

}

@media screen and (max-width: 720px) {

	.album-card {
	  width: 150px;
	  margin:5px 5px;
	}
	
	.album-card-img {
	  height: 150px;
	}
	
	.album-card-body{
	}
}


