﻿@charset "UTF-8";

/* General */

html, body {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;	
}

body {
	text-align: left;
	color: #636363;
	font-family: 'Helvetica Neue', Helvetica;
	font-size: 12px;
	line-height: 1.7;
	position: relative;
}

a {
	text-decoration: none;
	color: #a2a2a2;
}

a:hover {
	text-decoration: none;
}

/* Typography */

h1 {
	color: #000;
	font-size: 1.7em;
	font-weight: normal;
}

h2 {
	color: #515151;
	font-size: 1.4em;
	font-weight: normal;
}

h3 {
	color: #232323;
	font-size: 1.2em;
	font-weight: normal;
}

strong {
	font-weight: bold;
}

.center {
	text-align: center;
}

/* The Feed */

#feed_preview {
	position: relative;
	width: 100%;
	min-height: 100%;
}

#feed_wrapper {
	min-height: 100%;
	position: relative;
	padding-bottom: 70px;
	opacity: 0;
}

#feed_wrapper.noFeeds, #feed_wrapper.noMoreFeeds ul {
	padding-bottom: 0 !important;
}

#feed_wrapper.rtl {
	direction: rtl;
}

#hasFeedsWrapper {
	padding-top: 50px;
}

#hasFeedsWrapper.noTitle {
	padding-top: 0;
}

#feed_wrapper ul {
	margin-bottom: 0;
	padding-bottom: 40px !important;
	position: relative;
	-webkit-transform: translate3d(0,0,0);
	-moz-transform: translate3d(0,0,0);
	-ms-transform: translate3d(0,0,0);
	-o-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

#feed_wrapper.normal ul {
	height: auto !important;
}

#feed_wrapper ul li {
	overflow: hidden;
	text-overflow: ellipsis;
	opacity: 1;
	-webkit-transform: translate3d(0px, 0px, 0px);
    -moz-transform:  translate3d(0px, 0px, 0px);
    -ms-transform:  translate3d(0px, 0px, 0px);
    transform: translate3d(0px, 0px, 0px);
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-ms-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

#feed_wrapper ul li.new {
    -webkit-transform:  translate3d(0px, 50px, 0);
    -moz-transform: translate3d(0px, 50px, 0);
    -ms-transform: translate3d(0px, 50px, 0);
    transform: translate3d(0px, 50px, 0);
    opacity: 0;
}

#feed_wrapper > div > p {
	padding: 70px 20px 20px;
	text-align: center;
}

#feed_wrapper .desc {
	word-wrap: break-word;
}

/* Title icon */

#feed_wrapper > h2 {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

#feed_wrapper > h2 img {
	height: 18px;
	margin: 0 5px -3px 0;
}

#feed_wrapper.rtl > h2 img {
	margin: 0 0 -3px 5px;
}

/* Refresh button */

#feed_wrapper .freshmaker {
	position: absolute;
	right: 15px;
	top: 15px;
	width: 17px;
	height: 18px;
	opacity: 0.5;
	background: no-repeat center;
	cursor: pointer;
	z-index: 5;
}

#feed_wrapper .freshmaker:hover {
	opacity: 0.9;
}

/* Tabs */

#sources {
	position: fixed;
	bottom: 0;
	width: 100%;
	text-align: center;
	z-index: 100;
	direction: ltr;
}

#sources .source {
	display: inline-block;
	width: 30px;
	height: 30px;
	padding: 5px;
	border-radius: 3px;
	margin: 0 5px; 
	cursor: pointer;
	background: rgba(0,0,0,0.85);
	box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

#sources .source > span {
	display: block;
	width: 100%;
	height: 100%;
	opacity: 0.5;
	background: no-repeat center center;
	-webkit-background-size: contain;
	-moz-background-size: contain;
	-ms-background-size: contain;
	background-size: contain;
}

#sources .source:hover span {
	opacity: 0.85;
}

#sources .source.active span {
	opacity: 1;
}

/* Responsive Handlers */

#feed_wrapper.resp {
	padding-bottom: 160px;
}

#feed_wrapper.resp #hasFeedsWrapper {
	position: relative;
	padding-top: 70px;
}

#feed_wrapper.resp #hasFeedsWrapper.noTitle {
	padding-top: 20px;
}

#feed_wrapper.resp ul > li {
	width: 300px;
	margin: 0;
}

/* Credits */

#feederninja_credits_side {
	position: fixed;
	z-index: 101;
	display: block;
	width: 100px; 
	height: 105px;
	right: 0; 
	bottom: 0; 
	background: url(../images/ribbon_small_light.png) no-repeat; 
	opacity: 0.85;
	-webkit-transition: opacity 0.3s ease 0s;
	-moz-transition: opacity 0.3s ease 0s;
	-ms-transition: opacity 0.3s ease 0s;
	transition: opacity 0.3s ease 0s;
}

#feederninja_credits_side.light {
	background: url(../images/ribbon_small.png) no-repeat; 
}

#feederninja_credits_side:hover {
	opacity: 1;
}

/* Loaders */

.loader {			
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -22px 0 0 -16px;
	background: url(../images/viewer_loader.gif) no-repeat center #fff;
	width: 32px;
	height: 32px;
	border-radius: 50em;
	box-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

#moreFeedsLoader {
	top: auto;
	bottom: 60px;
	position: fixed;
}

/* Scroller */

#ascrail2000 {
	right: 2px !important;
	z-index: 100 !important;
}

#ascrail2000 > div {
	border: none !important;
}

#ascrail2000-hr {
	display: none !important;
}

/* Social */

#feed_wrapper .social {
	text-align: left;
	height: 30px;
	margin-top: 10px;
}

#feed_wrapper .social > * {
	display: inline-block;
	margin: 0 10px 0 0;
}

#feed_wrapper .social a {
	opacity: 0.85;
	display: inline-block;
	color: #666;
	margin-top: 5px;
	-webkit-transition: opacity 0.2s ease 0s;
	-moz-transition: opacity 0.2s ease 0s;
	-ms-transition: opacity 0.2s ease 0s;
	transition: opacity 0.2s ease 0s;
}

#feed_wrapper .social a:hover {
	opacity: 1;
	text-decoration: none;
}

#feed_wrapper .social a span {
	float: left;
	margin-top: 6px;
}

#feed_wrapper .social a .icon {
	background: url(../images/social.png) no-repeat center top;
	width: 26px;
	height: 30px;
	margin-top: 0;
}

#feed_wrapper .social a.twitter_share .icon {
	background-position: left 2px;
	margin-right: 5px;
}

/* RTL Support */

#feed_wrapper.rtl .social {
	text-align: right;
}

#feed_wrapper.rtl .social a {
	margin: 0 0 0 10px;
}