/*
*/



@media screen and (min-width: 600px) {
	.back-to-top {
		border: #30404f solid 1px;
		border-radius: 100%;
		box-sizing: border-box;
		position: fixed;
		bottom: 20px;
		right: 20px;
		width: 41px;
		height: 41px;
		opacity: 1;
	}
	
	
	.back-to-top:hover {
		opacity: 0.5;
	}
	.back-to-top:before, .back-to-top:after {
	  position: absolute;
	  left: 19px;
	  top: 12px;
	  content: ' ';
	  height: 14px;
	  width: 1px;
	  background-color: #30404f;
	}
	.back-to-top:before {
	  transform: rotate(45deg);
	  margin: 0 0 0 -5px;
	}
	.back-to-top:after {
	  transform: rotate(-45deg);
	  margin: 0 0 0 5px;
	}
}


