.gotoshop{
	position: absolute;
	width: 100%;
	max-width: 280px;
	top:10px;
	right: 0;
	color: #fff;
	font-weight: bold;
	/*box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.25);*/
	background: rgb(227,0,0);
    background: linear-gradient(90deg, rgba(227,0,0,1) 0%, rgba(119,28,48,0.6867121848739496) 100%);
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 4px;
	padding-bottom: 4px;
	cursor: pointer;
	font-size: 18px;
	text-decoration: none;
	z-index:2;
	border-radius:2px;
	border:2px solid #fff;
	text-align: center;
	transition: 1s;
}
.gotoshop::before{
	content: ">";
	height: 100%;
	width: 30px;
	line-height: 30px;
	left: 0;
	top: 0;
	position: absolute;
	border-right: 2px solid #fff;
	text-align: center;
	font-size: 18px;
}
.gotoshop:hover{
	background: rgb(119,28,48);
    background: linear-gradient(90deg, rgba(119,28,48,0.6867121848739496) 0%, rgba(227,0,0,1) 100%);
}

@media screen and (max-width: 640px){
	.gotoshop{
		top:-50px;
		left:0px;
		max-width: 170px;
	}
}