* {
	box-sizing: border-box;
}
body {
	font-family: sans-serif;
	font-size: 15px;
	color: #313131;
	background: #e1e3e4;
	overflow-x: hidden;
	margin: 0;
}
:before, :after {
	box-sizing: border-box;
}
.container {
	display: block;
}
.main-divider {
	width: 100%;
	height: 1px;
	background: white;
}
.filter {
	overflow: hidden; padding: 30px 20px 30px 20px;
	max-width: 900px;
	margin: 0 auto;
}
.filter:nth-child(1) {
	padding-bottom: 20px;
}
.filter:nth-child(2) {
	padding-top: 0;
}
main {
	max-width: 900px;
	margin: 0 auto;	
}
main #content {
	-webkit-transition: opacity .15s;
	transition: opacity .15s;
	padding: 30px 0 30px 0;
	opacity: 0;
	visibility: 0;
}
main #content.loaded {
	opacity: 1;
	visibility: 1;
}
main .column {
	display: inline-block;
	width: 33%;
	border-left: 5px solid #e1e3e4;
	border-right: 5px solid #e1e3e4;
	vertical-align: top;
}
main .box {
	background-color: #F4F4F4;
	border-top: 10px solid #e1e3e4;
	padding: 15px 15px 9px 15px;
	border-radius: 2px;
	position: relative;
}
main .box a.url {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	width: 100%;
	display: block;
	color: rgba(14, 171, 160, 1);
}
main .box .title {
	color: rgba(14, 171, 160, 1);
}
main .box .txt {
	font-size: 13px;
	 margin: 10px 0 10px 0; 
}
main .box .txt.snippet {
	font-family: Consolas,Courier New,monospace,sans-serif;
	background-color: #eee;
	padding: 5px;
	overflow: hidden;
	position: relative;
	-webkit-transition: background .1s ease-out;
	transition: background .1s ease-out;
	cursor: pointer;
	max-height: 306px;
}
main .box .txt.snippet:hover {
	background: rgba(0, 0, 0, 0.7);
}
main .box .txt.snippet:after {
	content: 'See full snippet';
	display: none;
	color: white;
	position: absolute;
	font-size: 1.4em;
	line-height: 0.7em;
	top: 50%;
	width: 100%;
	height: 100%;
	left: 0;
	text-align: center;
	text-transform: uppercase;
}
main .box .txt.snippet:hover:after {
	display: block;
}
main .box .tags {
	margin-top: 6px;
}
main .box .tags.standalone {
	margin-top: 0;
}
main .box a.tag {
	color: #313131;
	text-decoration: none;
	border-radius: 2px;
	background: #e1e3e4;
	display: inline-block;
	padding: 0 8px;
	margin: 0 6px 6px 0;
	line-height: 24px;
	font-size: 13px;
}
main .box a.tag.active {
	background: rgba(14, 171, 160, 1);
	color: #fff;
}
main .box .image {
	width: 100%;
}
.filter ul {
	list-style-type: none;
	margin: 0;
}
.filter li {
	position: relative;
	float: left;
	margin: 0 6px 6px 0;
	line-height: 24px;
	font-size: 13px;
	font-weight: 400;
}
.filter li a {
	background-color: #F4F4F4;
	display: block;
	height: 23px;
	padding: 0 10px;
	/*background: #d4d5d6;*/
	color: #313131;
	border-radius: 2px;
	-webkit-transition: background .1s ease-out, color .1s ease-out;
	transition: background .1s ease-out, color .1s ease-out;
	text-decoration: none;
}
.filter li a.active,
.filter li a.actual.active {
	background-color: #444;
	color: #fff;
	font-weight: 400;
}
.filter li a.actual {
	background-color: rgba(14, 171, 160, 1);
	color: #fff;
}
.filter li a[data-count]:not([data-count=""]):after {
	margin-left: 3px;
	content: '(' attr(data-count) ')';
	font-weight: 300;
}
.filter li.actual span {
	color: rgba(14, 171, 160, 1);
}
#spinner {
	text-align: center;
	opacity: 0;
	font-size: 26px;
	position: absolute;
	width: 100%;
	right: 0;
	left: 0;
	z-index: -1;
	display: inline-block;
	padding-top: 80px;
	color: #fff;
	-webkit-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}
#spinner.active {
	opacity: 1;
}
#spinner div {
	display: inline-block;
	width: 18px;
	height: 18px;
	border-radius: 100%;
	background-color: #fff;
	margin: 0 3px;
	-webkit-animation: bouncedelay 1.4s infinite ease-in-out both;
	animation: bouncedelay 1.4s infinite ease-in-out both;
}
#spinner .one {
	-webkit-animation-delay: -0.32s;
	animation-delay: -0.32s;
}
#spinner .two {
	-webkit-animation-delay: -0.16s;
	animation-delay: -0.16s;
}
@-webkit-keyframes bouncedelay{0%, 80%, 100%{-webkit-transform:scale(0)}40%{-webkit-transform:scale(1)}}@keyframes bouncedelay{0%, 80%, 100%{-webkit-transform:scale(0);transform:scale(0)}40%{transform:scale(1);-webkit-transform:scale(1)}}
#snippet-full-display {
	border-left: 5px solid #e1e3e4;
	border-right: 14px solid #e1e3e4;
	background-color: #F4F4F4;
	border-top: 10px solid #e1e3e4;
	padding: 15px;
	border-radius: 2px;
	position: relative;
}
#snippet-full-display .inner,
#snippet-full-display .inner-ta {
	font-family: Consolas,Courier New,monospace,sans-serif;
	background-color: #eee;
	padding: 5px;
	overflow: auto;
	font-size: 13px;
	border: none;
	resize: vertical;
	/*cursor: pointer;*/
}

#snippet-full-display .close {
	position: absolute;
	top: 0px;
	right: 8px;
	cursor: pointer;
}
#snippet-full-display .close:after,
#snippet-full-display .close:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 6px;
	width: 5px;
	height: 15px;
	margin-top: -7px;
	background: rgba(14, 171, 160, 1);
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}
#snippet-full-display .close:after {
	left: 1px;
	width: 15px;
	height: 5px;
	margin-top: -2px;
}
@media (min-width: 550px) and (max-width: 900px) {
	main .box {
		/*font-size: 13px;*/
	}
}
@media (min-width: 0) and (max-width: 551px) {
	main .column {
		width: 100%;
		padding: 0 10px;
	}	
}