html, body {
	margin: 0px;
	width: 100%;
	height: 100%;
}
body {
	user-select: none;
	min-width: 320px;
	background: rgb(192, 192, 192);
}
[v-cloak] {
	display: none;
}
.slide-container {
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	margin: auto;
	width: 660px;
	height: 500px;
	background: white;
}
.slides {
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	margin: 10px;
	overflow: hidden;
}
.slide-general {
	position: absolute;
	top: 0px;
	width: 100%;
	height: 100%;
	text-align: center;
	vertical-align: middle;
}
.slide-general img {
	max-width: 100%;
	max-height: 100%;
	min-height: 100%;
}
.slide-visible {
	opacity: 1;
	z-index: 1;
	transition: opacity .5s;
}
.slide-hidden {
	opacity: 0;
	z-index: 0;
	transition: opacity .5s;
}
.slide-to-left, .slide-to-right {
	position: absolute;
	top: 0px;
	bottom: 0px;
	margin: auto 0px;
	width: 34px;
	height: 36px;
	color: black;
	font-size: 40px;
	font-weight: bold;
	line-height: 30px;
	text-align: center;
	background: rgba(255, 255, 255, 0.3);
	cursor: pointer;
	z-index: 1;
	transform: translateX(0px);
	transition: transform .5s;
}
.slide-to-left {
	left: 0px;
}
.slide-to-right {
	right: 0px;
}
.slide-to-left-off {
	transform: translateX(-34px);
	transition: transform .5s;
}
.slide-to-right-off {
	transform: translateX(34px);
	transition: transform .5s;
}