/*gotop*/
.cbbfixed {
	position: fixed;
	right: 10px;
	transition: bottom ease .3s;
	bottom: -200px;
	z-index: 99;
	cursor: pointer;
}

.cbbfixed .cbbtn {
	width: 60px;
	height: 75px;
	display: block;
	background-image: url(../images/top.png);
	background-repeat: no-repeat;
	background-size: cover;
}

.cbbfixed .gotop {
	transition: background-color ease .3s;
	margin-top: 1px;
}

/*Mobile*/
@media(min-width:0px) and (max-width:768px) {
	
	.cbbfixed {
		width: 30px;
		height: 25px;
		left: 50%;
		margin-left: -30px;
		z-index: 10;
	}
	
}