/* CSS Document */
.fixspin {
	position: fixed;
	bottom: 5%;
	right: 0%;
	background-color:transparent;
	z-index:99999;
}
.arrow-text {
  font-weight: bold;
}
.arrow-img{
	float:right;
}
.arrow-img > img{
	width:50px;
	height:50px;
}
.arrow_box {
	float:left;
	position: relative;
	background: #000;
	border-radius:5px;
	margin-right:20px;
}
.arrow_box h1 {
	margin: 0;
	padding: 5px 10px;
	color:#fff;
}
.arrow_box{
  margin: 0;
  padding: 5px 10px;
  color:#fff;
  line-height:2.5;
  margin-right:15px;
}
.arrow-img, .arrow_box{
  box-shadow: 0 3px 10px 0px #000;
}
.arrow_box:after, .arrow_box:before {
	left: 100%;
	top: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}
.arrow_box:after {
	border-left-color: #000;
	border-width: 10px;
	margin-top: -10px;
}
.arrow_box:before {
	border-left-color: #000;
	border-width: 10px;
	margin-top: -10px;
}




@media only screen and (max-width: 767px){
	.fixspin{display:none; }
}

