.text-replace {
	overflow: hidden;
	/*color: transparent;*/
	text-indent: 100%;
	white-space: nowrap
}

.cd-top {
	position: fixed;
	bottom: 60px;
	right: 40px;
	display: inline-block;
	height: 82px;
	width: 46px;
	box-shadow: 0 0 10px rgba(0,0,0,0.05);
	background: url(../images/cd-top-arrow.svg) no-repeat center 50%;
	background-color: #bbdb3e;
	border-radius: 23px;
	opacity: 0;
	transition: opacity .2s linear;
	-moz-transition: opacity .2s linear;
	-webkit-transition: opacity .2s linear;
}


@media only screen and (max-width : 990px) {
	.cd-top {
		bottom: 120px;
	}
}

@media only screen and (max-width : 801px) {
	.cd-top {
		display: none;
	}
}

/*
.js .cd-top {
	visibility: hidden;
	opacity: 0;
	transition: opacity .3s, visibility .3s, background-color .3s
}

.js .cd-top--is-visible {
	visibility: visible;
	opacity: 1
}

.js .cd-top--fade-out {
	opacity: .5
}

.js .cd-top:hover {
	background-color: hsl(72, 86%, 86%);
	opacity: 1
}
*/