@font-face {
font-family: "Roboto";
font-style: normal;
font-weight: 400;
font-stretch: normal;
font-display: auto;
src: url('roboto-regular.woff2') format('woff2');
font-display: swap;
}
@font-face {
font-family: "Roboto Slab";
font-style: normal;
font-weight: 700;
font-stretch: normal;
font-display: auto;
src: url('roboto-slab-bold.woff2') format('woff2');
font-display: swap;
}
:root {
	--bg: #eee;
	--bg-light: #f7f7f7;
	--text: #071013;
	--text-light: #727272;
	--highlight: #f9461c;
	--white: #fff;
}
body {
	background: var(--bg);
	color: var(--text);
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	font-weight: 400;
	margin: 0;
	padding: 0;
}
#hero {
	height: 116px;
	margin-top: 13px;
}	
h1, p.title {
	color: var(--highlight);
	display: inline;
	font-family: 'Roboto Slab', serif;
	font-size: 28px;
	font-weight: 700;
	margin: 0;
	overflow: hidden;
	padding: 0;
}
h2 {
	font-size: 16px;
	font-weight: 400;
	margin: 7px 0 0 0;
	padding: 0;
	text-align: center;
}
h3 {
	font-family: 'Roboto Slab', serif;
	font-size: 20px;
	font-weight: 700;
}
a {
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	color: var(--text);
	text-decoration: none;
}
a:visited {
	color: var(--text-light);
}
a:hover, a:hover, a:visited:hover {
	color: var(--highlight);
}
a.alt {
	text-decoration: underline;
}
.upvote {
	cursor: pointer;
}
img {
	height: 20px;
	width: 20px;
}
#wrapper {
	background: var(--white);
	margin: 0 auto;
	padding: 12px 32px;
	width: 708px;
}
#wrapper > div.column-one, #wrapper > div.column-two {
	float: left;
  	margin-right: 36px;
  	width: 336px;
}
#wrapper > div.column-two {
  	margin-right: 0;
}
.item {
	background: var(--bg-light);
	border-radius: 4px;
	margin: 0 -6px 12px -6px;
	padding: 0 6px;
    display: inline-block;
}
.none {
	display: none;
}
.item-left {
	display: block;
	float: left;
	padding: 6px 0;
	width: 290px;
}
.link {
	display: none;
}
.item-left:hover .link {
	display: inline;
}
.item-left:hover .name {
	display: none;
}
.item-right, .item-right-thumb {
	cursor: pointer;
	float: left;
	height: 19px;
	padding: 6px 0;
	text-align: right;
	width: 46px;
}
.item-right-thumb {
	cursor: auto;
}
.thumb-red {
	display: none;
}
.thumb-black {
	display: none;
}
.item-right:hover .thumb-red {
	display: inline;
}
.item-right:hover .count {
	display: none;
}
.clear {
	clear: both;
	overflow: hidden;
}
.ad {
	background: var(--bg-light);
	border-radius: 4px;
	height: 280px;
	margin: 1px -6px 11px;
	padding: 6px 6px 3px;
	width: 336px;
}
.voted {
	color: var(--visited);
}
.pulsate {
	font-weight: 700;
	color: var(--highlight);
    -webkit-animation-name: pulsate; 
    animation-name: pulsate;
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}
@-webkit-keyframes pulsate {
    0% {opacity: 1.0;}
    10% {opacity: 0.0;}
    20% {opacity: 0.6;}
    30% {opacity: 0.0;}
    40% {opacity: 0.6;}
    50% {opacity: 0.0;}
    60% {opacity: 0.6;}
    70% {opacity: 0.0;}
    80% {opacity: 0.6;}
    90% {opacity: 0.0;}
    100% {opacity: 1.0;}
}
@keyframes pulsate {
    0% {opacity: 1.0;}
    10% {opacity: 0.0;}
    20% {opacity: 0.6;}
    30% {opacity: 0.0;}
    40% {opacity: 0.6;}
    50% {opacity: 0.0;}
    60% {opacity: 0.6;}
    70% {opacity: 0.0;}
    80% {opacity: 0.6;}
    90% {opacity: 0.0;}
    100% {opacity: 1.0;}
}
p.footer {
	text-align: center;
}
p.footer a:visited {
	color: var(--text);
}
p.footer a:visited:hover {
	color: var(--highlight);
}

/* GDPR Styles */
#GDPR {
	background: var(--highlight);
	color: var(--white);
	margin: -12px 0 12px -32px;
	padding: 12px 32px;
	width: 100%;
}
#GDPR a {
	color: var(--white);
	text-decoration: underline;
}
#GDPR p {
	margin: 9px 0 0 0;
	padding: 0;
	text-align: left;
}
#GDPR br {
	display: none;
}
#GDPR .left {
	float: left;
	width: auto;
}
#GDPR .right {
	-webkit-appearance: none;
	background-color: var(--bg-light);
	border: none;
	border-radius: 4px;
	color: var(--text);
	cursor: pointer;
	float: right;
	font-size: 16px;
	height: 36px;
	margin: 2px -6px 0 0;
	padding: 0;
	text-align: center;
	width: 80px;

}
@media only screen and (max-width: 844px) {
	#wrapper {
		width: 336px;
	}
	#wrapper > div.column-one, #wrapper > div.column-two {
  		float: none;
  		margin-right: 0;
	}
	#hero {
		height: 100px;
		margin-top: 0;
	}
	#GDPR br.mobile {
		display: block;
	}
	#GDPR p {
		margin: 0;
		text-align: left;
	}
	#GDPR .left {
		width: 70%;
	}
	#GDPR .right {
		width: 30%;
	}
}
@media only screen and (max-width: 480px) {
	body {
		font-size: 14px;
	}
	#wrapper {
		margin: 0 auto;
		padding: 10px;
		width: 300px;
	}
	#wrapper > div.column-one, #wrapper > div.column-two {
  		width: 300px;
	}
	#hero {
		height: 94px;
	}
	h1, p.title {
		font-size: 25px;
		margin: 0;
	}
	h2 {
		font-size: 14px;
		margin: 10px 0 20px 0;
		padding: 0 5px;
		text-align: center;
	}
	.item {	
		margin: 0 0 8px 0;
		padding: 0;
	}
	.item-left {
		width: 245px;
		padding-left: 5px;
		padding-top: 7px;
	}
	.item-right, .item-right-thumb {
		width: 45px;
		padding-right: 5px;
	}
	.item-right {
		padding-top: 7px;
		padding-bottom: 4px;
	}
	img {
		height: 18px;
		width: 18px;
	}
	.ad {
		border-radius: 0;
		height: 250px;
		margin: 10px 0;
		padding: 0;
		width: 300px;
	}
	#GDPR {
		margin: -10px 0 10px -10px;
		padding: 10px;
	}
	#GDPR .right {
		font-size: 14px;
		height: 36px;
		margin: 0;
		padding: 0;
		text-align: center;
		width: 64px;
	}
}
@media (hover: none) {
	.item {
		margin-bottom: 8px;
	}
	.item-left {
		padding-top: 8px;
		padding-bottom: 0;
	}
    .item-left:hover .link {
		display: none;
	}
	.item-left:hover .name {
		display: inline;
	}
	.thumb-black {
		display: inline;
	}
	.count {
		display: none;
	}
	.item-right:hover .thumb-red {
		display: inline;
	}
	.item-right:hover .thumb-black {
		display: none;
	}
}