.button {
	text-decoration: none;
	text-align: center;
	padding: 11px 17px;
	border: solid 1px #004F72;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	font: 16px Verdana, Geneva, sans-serif;
	font-weight: bold;
	color: #ffffff;
	background-color: #ff7b0f;
	background-image: -moz-linear-gradient(top, #ff7b0f 0%, #ff9b4a 100%);
	background-image: -webkit-linear-gradient(top, #ff7b0f 0%, #ff9b4a 100%);
	background-image: -o-linear-gradient(top, #ff7b0f 0%, #ff9b4a 100%);
	background-image: -ms-linear-gradient(top, #ff7b0f 0% ,#ff9b4a 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff9b4a', endColorstr='#ff9b4a',GradientType=0 );
	background-image: linear-gradient(top, #ff7b0f 0% ,#ff9b4a 100%);
	-webkit-box-shadow: 0px 0px 2px #bababa, inset 0px 0px 1px #ffffff;
	-moz-box-shadow: 0px 0px 2px #bababa, inset 0px 0px 1px #ffffff;
	box-shadow: 0px 0px 2px #bababa, inset 0px 0px 1px #ffffff;
}
.button:hover {
	padding: 11px 17px;
	border: solid 1px #004F72;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	font: 16px Verdana, Geneva, sans-serif;
	font-weight: bold;
	color: #ffffff;
	background-color: #969493;
	background-image: -moz-linear-gradient(top, #969493 0%, #d4b99b 100%);
	background-image: -webkit-linear-gradient(top, #969493 0%, #d4b99b 100%);
	background-image: -o-linear-gradient(top, #969493 0%, #d4b99b 100%);
	background-image: -ms-linear-gradient(top, #969493 0% ,#d4b99b 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d4b99b', endColorstr='#d4b99b',GradientType=0 );
	background-image: linear-gradient(top, #969493 0% ,#d4b99b 100%);
	-webkit-box-shadow: 0px 0px 2px #bababa, inset 0px 0px 1px #ffffff;
	-moz-box-shadow: 0px 0px 2px #bababa, inset 0px 0px 1px #ffffff;
	box-shadow: 0px 0px 2px #bababa, inset 0px 0px 1px #ffffff;
	opacity: 0.76;
	-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=76);
	filter: alpha(opacity=76);
}
.button:active {
	padding: 11px 32px;
	border: solid 1px #004F72;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	font: 16px Verdana, Geneva, sans-serif;
	font-weight: bold;
	color: #ffffff;
	background-color: #969493;
	background-image: -moz-linear-gradient(top, #969493 0%, #d4b99b 100%);
	background-image: -webkit-linear-gradient(top, #969493 0%, #d4b99b 100%);
	background-image: -o-linear-gradient(top, #969493 0%, #d4b99b 100%);
	background-image: -ms-linear-gradient(top, #969493 0% ,#d4b99b 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d4b99b', endColorstr='#d4b99b',GradientType=0 );
	background-image: linear-gradient(top, #969493 0% ,#d4b99b 100%);
	-webkit-box-shadow: 0px 0px 2px #bababa, inset 0px 0px 1px #ffffff;
	-moz-box-shadow: 0px 0px 2px #bababa, inset 0px 0px 1px #ffffff;
	box-shadow: 0px 0px 2px #bababa, inset 0px 0px 1px #ffffff;
}

.shop2 {
    font-size: 30px;
    top: 8px;
}

/* --------------------------------

 Modules - reusable parts of our design

 -------------------------------- */
.cd-container {
	width: 90%;
	max-width: 768px;
	margin: 2em auto;
}
.cd-container::after {
	/* clearfix */
	content: '';
	display: table;
	clear: both;
}

/* --------------------------------

 Main components

 -------------------------------- */

.cd-top {
	display: inline-block;
	height: 40px;
	width: 40px;
	position: fixed;
	bottom: 110px;
	right: 49px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
	/* image replacement properties */
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
	background: rgba(60, 165, 220, 0.8) url(../images/cd-top-arrow.png) no-repeat center 50%;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: opacity .3s 0s, visibility 0s .3s;
	-moz-transition: opacity .3s 0s, visibility 0s .3s;
	transition: opacity .3s 0s, visibility 0s .3s;
}
.cd-top.cd-is-visible, .cd-top.cd-fade-out, .no-touch .cd-top:hover {
	-webkit-transition: opacity .3s 0s, visibility 0s 0s;
	-moz-transition: opacity .3s 0s, visibility 0s 0s;
	transition: opacity .3s 0s, visibility 0s 0s;
}
.cd-top.cd-is-visible {
	/* the button becomes visible */
	visibility: visible;
	opacity: 1;
}
.cd-top.cd-fade-out {
	/* if the user keeps scrolling down, the button is out of focus and becomes less visible */
	opacity: .5;
}
.no-touch .cd-top:hover {
	background-color: #3CA5DC;
	opacity: 1;
}
@media only screen and (min-width: 768px) {
	.cd-top {
		right: 49px;
		bottom: 110px;
	}
}
@media only screen and (min-width: 1024px) {
	.cd-top {
		height: 60px;
		width: 60px;
		right: 130px;
		bottom: 30px;
	}
}

