header .icon {
	display: block;
	width: 50px;
	height: 50px;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
}

header .icon .i {
	display: none;
}

header .icon .counter {
	position: absolute;
	right: 4px;
	bottom: 10px;
	background: #C00;
	color: #FFF;
	height: 1.5em;
	line-height: 1.5em;
	font-size: 10px;
	padding: 0 0.5em;
	border-radius: 10px;
	text-align: center;
}

.icon.messages {
	background-image: url(../svg/mail.svg);
}

.icon.friends {
	background-image: url(../svg/friends.svg);
}

.icon.notices {
	background-image: url(../svg/bell.svg);
}

.icon.settings {
	background-image: url(../svg/settings.svg);
}

.icon.search {
	background-image: url(../svg/search.svg);
}

.icon.votes,
.icon.like {
		background-image: url(../svg/like.svg);
}

.icon.like.voted {
		background-image: url(../svg/liked.svg);
}

.icon.comment {
		background-image: url(../svg/comment.svg);
}

.icon.bookmark {
		background-image: url(../svg/bookmark.svg);
}

.icon.bookmark.added {
		background-image: url(../svg/bookmarked.svg);
}

.icon.eye {
		background-image: url(../svg/eye.svg);
}

.icon.complaint {
	background-image: url(../svg/complaint.svg);
}

.icon.h-dots {
	background-image: url(../svg/h-dots.svg);	
}

.icon.thumbs-up {
		background-image: url(../svg/thumbs-up.svg);
		background-position: center 0;
}

.icon.thumbs-down {
		background-image: url(../svg/thumbs-down.svg);
		background-position: center 7px;
}

.icon.reply {
		background-image: url(../svg/reply.svg);
		background-position: center center;
}

.icon.rating  {
		background-image: url(../svg/star.svg);
		background-position: 0 center;
		background-repeat: no-repeat;
}

.icon.magic {
	background-image: url(../svg/magic.svg);
	background-position: 0 center;
	background-repeat: no-repeat;
}

.button.icon {
	background-repeat: no-repeat;
	background-position: center;
	position: relative;	
}

header .icon.settings {
	width: 32px;
}

.info_bar .bar_item .icon {
	opacity: 0.4;
	width: 32px;
	height: 32px;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;	
}

.icon32 {
	opacity: 0.4;
	width: 32px;
	height: 32px;
	display: inline-block;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;	
}

.bgs32 {
	background-size: 32px;
}

.bgs66p {
	background-size: 66%;
}

.bgs75p {
	background-size: 75%;
}

.bgs100p {
	background-size: 100%;
}










.loader {
  border: 2px solid rgba(0, 82, 236, 0.25);
  border-top-color: #0052ec;
  border-radius: 50%;
  position: relative;
  background-color: transparent;
  animation: loader-rotate 1s linear infinite;
  top: 50%;
  margin: 0px; 
}

@keyframes loader-rotate {
  0% {
    transform: rotate(0); }
  100% {
    transform: rotate(360deg); } }