/*Base Styling*/

.ch-grid {
	margin: 20px 0 0 0;
	padding: 0;
	list-style: none;
	display: block;
	text-align: center;
	width: 100%;
}

.ch-grid:after,
.ch-item:before {
	content: '';
    display: table;
}

.ch-grid:after {
	clear: both;
}

.ch-grid li {
	width: 220px;
	height: 220px;
	display: inline-block;
	margin: 20px;
}

.ch-item {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	position: relative;
	box-shadow: 0 1px 2px rgba(0,0,0,0.1);
	cursor: default;
}

.ch-info-wrap,
.ch-info{
	position: absolute;
	width: 180px;
	height: 180px;
	border-radius: 50%;
	transition: all 0.4s ease-in-out;
}

/*Wrapper Perspective*/

.ch-info-wrap {
	top: 20px;
	left: 20px;
	background: #f9f9f9 url(../images/bg.jpg);
	box-shadow:
		0 0 0 20px rgba(255,255,255,0.2),
		inset 0 0 3px rgba(115,114, 23, 0.8);
	perspective: 800px;
}

/*Info Element Transform Style*/

.ch-info {
	transform-style: preserve-3d;
}

/*Front and Backface Transition with Backface Hidden for Flip*/

.ch-info > div {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background-position: center center;
	transition: all 0.6s ease-in-out;
}

/*Transform Origin for Open Down*/

.ch-info .ch-info-front {
	transform-origin: 50% 100%;
	z-index: 100;
	box-shadow:
		inset 2px 1px 4px rgba(0,0,0,0.1);
}

/*Background of Description*/

.ch-info .ch-info-back {
	background: rgba(230,132,107,0);
}

/*Background Images and Styling*/

.ch-img-1 {
	background-image: url(../img/Babymetal.jpg);
}

.ch-img-2 {
	background-image: url(../img/Dethklok.jpg);
}

.ch-img-3 {
	background-image: url(../img/Pantera.jpg);
}

.ch-img-4 {
  background-image: url(../img/Metallica.jpg);
}

.ch-info h3 {
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 14px;
	margin: 0 25px;
	padding: 45px 0 0 0;
	height: 70px;
	font-family: 'Open Sans', Arial, sans-serif;
	text-shadow:
		0 0 1px #fff,
		0 1px 2px rgba(0,0,0,0.3);
}

.ch-info p {
	color: #fff;
	padding: 10px 5px;
	font-style: italic;
	margin: 0 30px;
	font-size: 12px;
	border-top: 1px solid rgba(255,255,255,0.5);
}

.ch-info p a {
	display: block;
	color: rgba(255,255,255,0.7);
	font-style: normal;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 9px;
	letter-spacing: 1px;
	padding-top: 4px;
	font-family: 'Open Sans', Arial, sans-serif;
}

.ch-info p a:hover {
	color: rgba(255,242,34, 0.8);
}

/*Hover Rotate Front, Animate Box Shadow, Back Fade*/

.ch-item:hover .ch-info-front {
	transform: rotate3d(1,0,0,-180deg);
	box-shadow:
		inset 0 0 5px rgba(255,255,255,0.2),
		inset 0 0 3px rgba(0,0,0,0.3);
}

.ch-item:hover .ch-info-back {
	background: rgba(138,7,7, 0.85);
}
