/**
 * ENKI - smoothscroll.css
 *
 * Document & Code @copyright by SteckDesign
 * Änderungen durch Dritte sind nicht erlaubt.
 */

/*-------------------------------------------------------------------------------------------*/
/*** Smoothscroll ***/
/*-------------------------------------------------------------------------------------------*/
#smoothscroll {
	height: 51px;
	width: 51px;
	position: fixed;
	bottom: 30px;
	right: 20px;
	text-indent: -9998px;
	display: none;
	background-image: url("up-arrow.png");
	background-size: 100% 100%;
	background-repeat: no-repeat;
}
@media (min-width: 480px) and (max-width: 767px) {
	#smoothscroll {
		height: 51px;
		width: 51px;
		position: fixed;
		bottom: 20px;
		right: 15px;
		text-indent: -9998px;
		display: none;
		background: url("up-arrow.png");
		background-size: 100% 100%;
		background-repeat: no-repeat;
	}
}

@media (min-width: 320px) and (max-width: 479px) {
	#smoothscroll {
		height: 40px;
		width: 40px;
		position: fixed;
		bottom: 20px;
		right: 15px;
		text-indent: -9998px;
		display: none;
		background: url("up-arrow.png");
		background-size: 100% 100%;
		background-repeat: no-repeat;
	}
}
