/*body {
	background-image: url(back.jpg);
	background-repeat: repeat;
}*/

.led {
	animation: fade 600ms infinite;
	-webkit-animation: fade 600ms infinite;
}

.site-content-wrapper {
	touch-action: pan-y pinch-zoom;
}  

@keyframes fade {
	from {
		opacity: 1.0;
	}

	50% {
		opacity: 0.4;
	}

	to {
		opacity: 1.0;
	}
}

@-webkit-keyframes fade {
	from {
		opacity: 1.0;
	}

	50% {
		opacity: 0.4;
	}

	to {
		opacity: 1.0;
	}
}

.gameboy {
	/*box-shadow: 0 0 10px 2px rgba(0, 0, 0, 1);*/
}

.gameboy .controls {
	display: none;
}

#xbenKeyboardTable {
	outline: none;
}

.xben-btn {
	display: inline-block;
	width: 70px;
	outline: 0;
	overflow: hidden;
	position: relative;
	transition: .3s;
	cursor: pointer;
	user-select: none;
	height: 70px;
	text-align: center;
	line-height: 70px;
	font-size: 20px;
	background: #4f50db;
	color: #fff;
	border-radius: 50%;
	margin: 10px 30px;
	opacity: 0.8;
	box-shadow: 0 0 10px 1px rgba(0,0,0,1);
}

.xben-btn > span:after {
	content: '';
	position: absolute;
	background: transparent;
	border-radius: 50%;
	width: 100%;
	padding-top: 100%;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) scale(1);
}

.xben-btn:active {
	background: #4f50db;
}

.xben-btn > input[type=checkbox] {
	display: none
}

.xben-btn > input[type=checkbox] + span:after {
	animation: ripple-in 1s;
}

.xben-btn > input[type=checkbox]:checked + span:after {
	animation: ripple-out 1s;
}

@keyframes ripple-in {
	from {
		transform: translate(-50%, -50%) scale(0);
		background: rgba(0, 0, 0, .25);
	}

	to {
		transform: translate(-50%, -50%) scale(1);
		background: transparent;
	}
}

@keyframes ripple-out {
	from {
		transform: translate(-50%, -50%) scale(0);
		background: rgba(0, 0, 0, .25);
	}

	to {
		transform: translate(-50%, -50%) scale(1);
		background: transparent;
	}
}

.xben-save-modal .save-img {
	width: 70px;
	height: 70px;
	background-color: #f6f6f6;
	border-radius: 6px;
	display: inline-block;
	vertical-align: top;
	margin-right: 10px;
}

.xben-save-modal .save-img>img {
	width: 100%;
	height: 100%;
	border-radius: 6px;
}

.xben-save-modal .save-info {
	vertical-align: top;
	display: inline-block;
	width: 200px;
}

.xben-save-modal .xben-save-btn, .xben-save-modal .xben-read-btn {
	float: right;
	margin-left: 10px;
}

.xben-save-modal .xben-read-btn {
	display: none;
}

.table td, .table th,.table thead th {
	border: 0;
}