div.sticky_bar {
	position: fixed;
	top: 300px;
	right: -160px;
	width: 225px;
	z-index: 9999;
    -webkit-transition: 0.7s;
    transition: 0.7s;
}
div.sticky_bar:hover {
	right: 0px;
}
div.sticky_bar .item {
	height: 50px;
	width: 100%;
	margin: 0 0 2px 0;
	padding: 0 15px 0 45px;
	line-height: 50px;
	cursor: pointer;
	-webkit-transition-property: background-color;
    -webkit-transition-duration: 0.5s;
    -moz-transition-property: background-color;
    -moz-transition-duration: 0.5s;
    transition-property: background-color;
    transition-duration: 0.5s;
}
div.sticky_bar .item p,
div.sticky_bar .item a {
	color: white; 
	text-decoration: none;
	font-size: 12px; 
} 
div.sticky_bar .item.arrow {
	background: #5666b8 url(../img/sticky/arrow.png) no-repeat 14px 14px;
}
div.sticky_bar .item.phone {
	background: #373737 url(../img/sticky/phone.png) no-repeat 14px 14px;
}
div.sticky_bar .item.email {
	background: #373737 url(../img/sticky/mail.png) no-repeat 14px 14px;
}  
div.sticky_bar .item.phone:hover {
	background: #5666b8 url(../img/sticky/phone.png) no-repeat 14px 14px;
}
div.sticky_bar .item.email:hover {
	background: #5666b8 url(../img/sticky/mail.png) no-repeat 14px 14px;
}
@media (max-width: 991px) {
	div.sticky_bar {
		display: none;
	}
}