.cptchpls_img.cptchpls_reduce{
	cursor: default;
	position: relative;
	z-index: 10;
	transition: 300ms ease-in-out;
}
.cptchpls_left.cptchpls_reduce {
	/* move to the right and increase the size of image */
	transform: translateX(100%) scale(3, 3);
}
.cptchpls_right.cptchpls_reduce {
	/* move to the left and increase the size of image */
	transform: translateX(-100%) scale(3, 3);
}
.cptchpls_center.cptchpls_reduce {
	/* increase the size of image */
	transform: scale(3, 3);
}
.cptchpls_reload_button.cptchpls_active {
	opacity: 0.7;
	animation: cptchpls_rotation 800ms infinite linear;
}
@keyframes cptchpls_rotation {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(359deg); }
}