#beforeafter{
	box-sizing: border-box;
	width: 490px;
	display: block;	
}

.container {
	box-sizing: border-box;
	display: block;
	position: relative;
	width: 494px;
	height: 331px;
	margin-bottom: 10px;
	padding: 0px;
	border: 2px solid #2d2727;
	margin-left: -2px;
}
.container .img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: 490px 100%;
}

.container .slider {
	position: absolute;
	-webkit-appearance: none;
	appearance: none;
	width: 100%;
	height: 100%;
	background: rgba(242, 242, 242, 0.1);
	outline: none;
	margin: 0;
	transition: all 0.2s;
	display: flex;
	justify-content: center;
	align-items: center;
}
.container .slider:hover {
	background: rgba(242, 242, 242, 0.0);
}
.container .slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 6px;
	height: 327px;
	background: white;
	cursor: pointer;
}
.container .slider::-moz-range-thumb {
	width: 6px;
	height: 327px;
	background: white;
	cursor: pointer;
}
.container .slider-button {
	pointer-events: none;
	position: absolute;
	width: 30px;
	height: 30px;
	border-radius: 80%;
	background-color: white;
	left: calc(20% - 18px);
	top: calc(50% - 18px);
	display: flex;
	justify-content: center;
	align-items: center;
}
.container .slider-button:after {
	content: "";
	padding: 3px;
	display: inline-block;
	border: solid #5d5d5d;
	border-width: 0 2px 2px 0;
	transform: rotate(-45deg);
}
.container .slider-button:before {
	content: "";
	padding: 3px;
	display: inline-block;
	border: solid #5d5d5d;
	border-width: 0 2px 2px 0;
	transform: rotate(135deg);
}
.credit{
	position:absolute;
	padding: 5px 10px 5px 10px;
	bottom:0px;
	right: 0px;	
	line-height: 14px;
	text-align: center;
	font-family: Tahoma;
	font-size: 14px;
	color: #fff;
	opacity: 0.8;
	background-color: #333;
	width: 140px;
	height: 14px;
}