.drag {
	box-shadow: inset 0 0 30px rgba(0,0,0,0.2);
	cursor: grab;
	background: url('images/irongrip.png');
	background-size: 150px 150px;
	cursor: -webkit-grab;
	cursor: -moz-grab;	
	overflow: hidden;
	margin: 0px auto;
	border-radius: 10px;	
}

.drag .item {
	width: 135px;
	height: 135px;
	display: inline-block;
	margin: 15px;
	cursor: pointer;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	transform-style: preserve-3d;
	perspective: 1000;
	-webkit-transform-style: preserve-3d;
	-webkit-perspective: 1000;
	-moz-transform-style: preserve-3d;
	-moz-perspective: 1000;
	-o-transform-style: preserve-3d;
	-o-perspective: 1000;
	-ms-transform-style: preserve-3d;
	-ms-perspective: 1000;
	
}

.drag .item .front, .drag .item .back {
	position: absolute;
	top: 0; left: 0;
	backface-visibility: hidden;
	transition: all 0.2s ease-in;
	-webkit-backface-visibility: hidden;
	-webkit-transition: all 0.2s ease-in;
	-moz-backface-visibility: hidden;
	-moz-transition: all 0.2s ease-in;
	-o-backface-visibility: hidden;
	-o-transition: all 0.2s ease-in;
	-ms-backface-visibility: hidden;
	-ms-transition: all 0.2s ease-in;
	box-shadow: 0 0 10px rgba(0,0,0,0.3);
	background-size: 135px 135px !important;
	border-radius: 5px;
	height: inherit;
	width: inherit;
}

.drag .item .front:hover {
	box-shadow: 0 0 10px rgba(0,0,0,0.1), inset 0px 0px 30px rgba(255,255,255,0.3);	
}

.drag .item .back {
	transform: rotateY(180deg);
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
	-o-transform: rotateY(180deg);
	-ms-transform: rotateY(180deg);
	background: url('images/bg.jpg');
	background-size: 100% 100%;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	border: 1px inset rgba(255,255,255,0.2);
	box-shadow: inset 0 0 0px 4px rgba(255,255,255,0.1);
	padding: 10px;
	font-family: Arial, sans-serif;
	color: #444;
	text-align: justify;
}

.drag .item .back a {
	color: #023f46;
	border-bottom: 2px solid #023f46;
	text-decoration: none;
	font-weight: bold;
}

.drag .item .back a:hover {
	color: #0c717c;	
	border-bottom: 2px solid #0c717c;
}

.drag .clicked .back {
	transform: rotateY(0deg);
	-webkit-transform: rotateY(0deg);
	-moz-transform: rotateY(0deg);
	-o-transform: rotateY(0deg);
	-ms-transform: rotateY(0deg);
}

.drag .clicked .front {
	transform: rotateY(-180deg);
	-webkit-transform: rotateY(-180deg);
	-moz-transform: rotateY(-180deg);
	-o-transform: rotateY(-180deg);	
	-ms-transform: rotateY(-180deg);
}

.drag .wrapper {
	float: left;
	white-space: nowrap;
}

.play-button {
	border: 7px solid rgba(255,255,255,0.3);
	width: 30px;
	border-radius: 80px;
	height: 45px;
	padding: 16px 25px;
	box-shadow: 0 0;
	font-size: 40px;
	margin: 10px 0 0 10px;
	color: rgba(255,255,255,0.3);
	transition: all 1s ease-in;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	-o-transition: all 0.2s ease-in;
	-ms-transition: all 0.2s ease-in;
	box-shadow: 0 0 20px rgba(0,0,0,0.1), inset 0 0 20px rgba(0,0,0,0.1);
}

.play-button:hover {
	border: 7px solid rgba(255,255,255,0.5);
	color: rgba(255,255,255,0.5);
}

@media only screen and (max-device-width: 480px) { 

	.drag {
		width: 100% !important;
		height: 100% !important;
		border-radius: 0;
		margin: 0 !important;
	}
	
	.drag .item {
		margin: 7px 11px;
		opacity: 1;
	}
	
}



/* =================== IGNORE BEYOND THIS POINT == */

body {
	padding: 0;
	margin: 0;
	background: url('images/groovepaper.png');
}

#header {
	width: 660px;
	margin: 0px auto;
	margin: 20px 0;
	text-transform: upper;
	margin: 0px auto;
	height: 115px;
}

#header #center {
	width: 300px;
	float: left;
	margin: 30px 0;
}

#header p {
	color: #aaa;	
	margin: 0;
}

#header #logo {
	float: right;
}

#header #logo a {
	background: url('logo.png');
	background-size: cover;
	width: 70px;
	display: block;
	height: 70px;	
	opacity: 0.7;
	margin: 20px 0 0 0;
}

#header #logo a:hover {
	opacity: 1;
}

#header h1 {
	color: #222;
	font-size: 30px;
	margin: 0;
}

#travel {
	padding: 10px;
	background: rgba(0,0,0,0.6);
	border-bottom: 2px solid rgba(0,0,0,0.2);
	text-decoration: none;
}

#travel a {
	text-decoration: none;
	font-family: Georgia;
	font-size: 1em;
	border-bottom: 1px solid #f9f9f9;
	color: #f9f9f9;
}


@media only screen and (max-device-width: 480px) { 

	#travel, #header {
		display: none;
	}	
}

