/**
 * GULA - smoothscroll.css
 *
 * Document & Code @copyright by SteckDesign
 * Änderungen durch Dritte sind nicht erlaubt.
 */
.smooth-scroll {
    width: 50px;
    height: 50px;
    position: fixed;
	display: none;
    background-color: #1C1C1C;
    bottom: 20px;
    right: 15px;
    z-index: 10;
	border-radius: 50%;
}
	@media (min-width: 768px) { 
		.smooth-scroll {
			width: 50px;
			height: 50px;
			position: fixed;
			display: none;
			background-color: #1C1C1C;
			bottom: 40px;
			right: 15px;
			z-index: 10;
			border-radius: 50%;
		}
	}

.triangle {
    position: absolute;
    margin: auto;
	top: 50%;
	margin-top: -4px;
    left: 0;
    right: 0;
    width: 20px;
    height: 20px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
    border-right: 2px solid #BABABA;
    border-bottom: 2px solid #BABABA;
}
