/*
Theme Name: n3ws
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: n3ws
Tags:

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

n3ws is based on Underscores http://underscores.me/, (C) 2012-2016 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
	font-family: sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust:     100%;
	font-family: 'Open Sans', sans-serif;
	
}

body {
	margin: 0;
	
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
	display: block;
}

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden],
template {
	display: none;
}

a {
	background-color: transparent;
}

a:active,
a:hover {
	outline: 0;
}

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

mark {
	background: #ff0;
	color: #000;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 1em 40px;
}

hr {
	box-sizing: content-box;
	height: 0;
}

pre {
	overflow: auto;
}

code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
}

button {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled],
html input[disabled] {
	cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input {
	line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
}

optgroup {
	font-weight: bold;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

td,
th {
	padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
	color: #404040;
	font-family: sans-serif;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}

p {
	margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 15px;
	font-size: 0.9375rem;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
	box-sizing: border-box;
}

*,
*:before,
*:after { /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: inherit;
}

body {
	background-color: rgba(230,234,237,1); /* Fallback for when there is no custom background color defined. */
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
}

blockquote,
q {
	quotes: "" "";
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
	height: auto; /* Make sure images are scaled correctly. */
	max-width: 100%; /* Adhere to container width. */
}

figure {
	margin: 1em 0; /* Extra wide images within figure tags don't overflow the content area. */
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 15px 17px rgba(255, 255, 255, 0.5), inset 0 -5px 12px rgba(0, 0, 0, 0.05);
	color: rgba(0, 0, 0, .8);
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1;
	padding: .6em 1em .4em;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), inset 0 15px 17px rgba(255, 255, 255, 0.8), inset 0 -5px 12px rgba(0, 0, 0, 0.02);
}

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
	border-color: #aaa #bbb #bbb;
	box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5), inset 0 2px 5px rgba(0, 0, 0, 0.15);
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 3px;
}

select {
	border: 1px solid #ccc;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

textarea {
	width: 100%;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
	color: royalblue;
}

a:visited {
	color: purple;
}

a:hover,
a:focus,
a:active {
	color: midnightblue;
}

a:focus {
	outline: thin dotted;
}

a:hover,
a:active {
	outline: 0;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
	clear: both;
	display: block;
	float: left;
	width: 100%;
}

.main-navigation ul {
	display: none;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation li {
	float: left;
	position: relative;
}

.main-navigation a {
	display: block;
	text-decoration: none;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 1.5em;
	left: -999em;
	z-index: 99999;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul a {
	width: 200px;
}

.main-navigation ul ul li {

}

.main-navigation li:hover > a,
.main-navigation li.focus > a {
}

.main-navigation ul ul :hover > a,
.main-navigation ul ul .focus > a {
}

.main-navigation ul ul a:hover,
.main-navigation ul ul a.focus {
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: auto;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	left: 100%;
}

.main-navigation .current_page_item > a,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_ancestor > a,
.main-navigation .current-menu-ancestor > a {
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

@media screen and (min-width: 37.5em) {
	.menu-toggle {
		display: none;
	}
	.main-navigation ul {
		display: block;
	}
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
	outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
	table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
}

/* Make sure select elements fit in widgets. */
.widget select {
	max-width: 100%;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
	display: block;
}

.hentry {
	margin: 0 0 1.5em;
}

.byline,
.updated:not(.published) {
	display: none;
}

.single .byline,
.group-blog .byline {
	display: inline;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation, /* Older / Newer Posts Navigation (always hidden) */
.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
	display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}
/* BODY */
body {
	font-family: 'Open Sans', sans-serif;
}

/* URLS HREF */
	a, a:visited {
		color: rgba(231, 76, 60, 1);
		text-decoration: none;
		transition: all 0.5s ease 0s;
	}
	a:hover {
		color: rgba(231, 76, 60, 0.7);
		
	}

/* WIDTH */

.width {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
}

.padding {
	padding-left: 25px;
}

/* HEADER */

.site-header, .site-footer {
	background-color: rgba(17,37,60,1);
	color: rgba(255,255,255,1);
	background-image: url("img/background.jpg");
	background-size: cover;
	background-position: center center;
}
.site-header {
	min-height: 300px;
}

.site-header .top_nav {
	background-color: rgba(0,0,0,0.4);
	border-bottom: 1px solid rgba(255,255,255,0.15);
	height: 60px;
	width: 100%;
	position: relative;
	z-index: 1000;

}
.site-header .top_nav nav {
	padding-left: 10px;
}
.site-header .top_nav nav a {
	color: rgba(255,255,255,0.8);
	font-weight: 300;
	font-size: 20px;
	line-height: 60px;
	padding-right: 15px;
	padding-left: 15px;
	display: block;
	transition: all 0.5s ease 0s;
}
.site-header .top_nav nav a:hover {
	background-color: rgba(255,255,255,0.15);
	
}

.site-header .top_nav nav ul ul {
	
	top: 60px;
	
	
}
.site-header .top_nav nav ul ul li a {
	font-size: 16px;
}
.site-header .top_nav nav ul ul ul {
	top: 0px;
}
.site-header .top_nav nav ul ul li a {
	color: rgba(0,0,0,0.8);
	line-height: 40px;
	background-color: rgba(255,255,255,0.95);
}
.site-header .top_nav nav ul ul li a:hover {
	background-color: rgba(192, 57, 43,1.0);
	color: rgba(255,255,255,0.8);
	cursor: pointer;
}

/* LOGO UND CO */

.site-header .site-branding {
	margin: 0px;
	padding: 0px;
	margin-top: 45px;
	position: relative;
	height: 90px;
	display: block;
	
	
}
.site-header .site-branding .site-slogan {
	position: relative;
	float: left;
	width: 75%;
	height:90px;
	
}
.site-header .site-branding .site-slogan .text {
	position: absolute;
	bottom: 0px;
	left:0px;
	font-size: 20px;
	font-weight: 300;
	padding-left: 10px;
	max-width: 100%;
	padding-right: 200px;
}

.site-header .site-branding .site-title img, .site-header .site-branding .site-title {
	max-height: 90px;
	
	max-width: 100%;
	display: block;
	clear: both;
	float:left;
	
}
.site-header .site-branding .site-title a:hover img {
	
}

/* SOCIAL ICONS HEADER*/
.site-header .social-icons {
	position: absolute;
	bottom: 0px;
	right: 0px;
	float: right;
	padding-right: 15px;
	max-width: 200px;
}
.site-header .social-icons img {
	width: auto;
	height: 40px;
	padding-left: 10px;
}
.site-header .social-icons a {
	transition: all 0.5s ease 0s;
}
.site-header .social-icons a:hover {
	opacity: 0.5;
}

/* FOOTER */

.site-footer {
	margin-top:-60px;
	min-height: 200px;
	padding-top: 80px;
	
}

.site-footer .footer-content .third {
	width: 33%;
	float: left;
}

.site-footer a {
	color: rgba(255,255,255,0.5);
	transition: all 0.5s ease 0s;
	text-decoration: none;
}
.site-footer a:hover {
	color: rgba(255,255,255,0.8);
}

.site-footer .license {
	font-size: 70%;
	
}

.site-footer .right ul, .site-footer .right ul li {
	padding: 0px;
	margin: 0px;
	list-style-type: none;
}
/* CONTENT */
.content-bar {
	height: 60px;
	margin-top: -60px;
	background-color: rgba(192, 57, 43,1.0);
	width: 100%;
	color: rgba(255,255,255,1);
	font-size: 20px;
	text-transform: uppercase;
	line-height: 60px;
	font-weight: 700;
	position: relative;
}

.content-bar .title {
	width: 66.6%;
	float: left;
}
.content-bar .search {
	width: 33.3%;
	float: right;
	background-color: rgba(231, 76, 60,1.0);
	height: 100%;
	line-height: 55px;
	position: relative;
}

.content-bar .search input {
	border: none;
	border-radius: 0px;
	color: rgba(0,0,0,0.3);
	padding-left:8px;
	-webkit-appearance: none;
}
.content-bar .search input.search-field {
	width: 80%;
	font-weight: 300;
	
}
.content-bar .search input.search-submit {
	background-color: rgba(0,0,0,0);
	background-image: url("img/search.svg");
	background-size: 30px 30px;
	width: 30px;
	height: 30px;
	box-shadow: none;
	color: rgba(0,0,0,0);
	text-shadow: none;
	margin-left:12px;
	transition: all 0.5s ease 0s;
}
.content-bar .search input.search-submit:hover {
	opacity: 0.5;
	

}

.site-content {
	background-color: rgba(255,255,255,1);
	width: 100%; 
	margin: 0 auto;
	clear: both;
}



.left {
	width: 66.6%;
	float: left;
}

/* Article */
article {
	
}
article .title-section {
	position: relative;
	padding-top:10px;
	width: 100%;
}
article .title-info .top-box {
	background-color: rgba(230, 234, 237, 1);
	padding: 10px;
	padding-left: 15px;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 10px;

}
article .title-info {
	width:32%;
	float: right;
	padding-left: 16px;
}
article .post-thumbnail {
	
	width:68%;
	float: left;
}
article h1.entry-title {
	padding: 0px;
	margin: 0px;
	
	
}

.sd-social-icon .sd-content ul li[class*=share-] a, .sd-social-icon .sd-content ul li[class*=share-] a:hover, .sd-social-icon .sd-content ul li[class*=share-] div.option a {
	-webkit-border-radius: 0px !important;
	border-radius: 0px !important;
	padding: 10px !important;
	
}
.sharing-box {
	margin-top: 10px;
}

.sd-content ul li {
	margin:0px !important;
}
.tag-box {
	padding-bottom: 30px;
	clear: both;
	display: block;
	position: relative;
}
.tag-box .tag, .tag-box .other-tag {
	float: left;
	padding: 3px;
	padding-left: 5px;
	padding-right: 5px;
	margin-right: 5px;
	margin-bottom: 5px;
	font-weight: 700;
	text-transform: uppercase;
	background-color: rgba(230, 234, 237, 1);
	color: rgba(64,64,64,1);
	transition: all 0.5s ease 0s;	
}
.tag-box .tag:hover, .tag-box .other-tag:hover {
	opacity: 0.7;
}
.tag-box .tag {
	background-color: rgba(192, 57, 43,1.0);
	color: rgba(255,255,255,1);
}
.entry-content {
	margin: 0px;
}

/* Overview-POST MULTIPOST */

.main-content {
	padding-top:20px;
}
.multipost {
	float: left;
	width: 100%;
	padding-right:25px;
	padding-bottom:25px;
	position: relative;
}
.home .multipost {
	width: 100%;
}
.multipost-bottom {
	background-color: rgba(230,234,237,1);
	padding: 10px;	
	padding-top: 5px;
}
.multipost .multipost-thumbnail img {
	width: 100%;
}
.multipost .multipost-title {
	font-weight: 700;
	font-size: 20px;
	line-height: auto;
	padding: 0px;
	margin: 0px;
}
.multipost .multipost-title a {
	color:  rgba(231, 76, 60, 1);
	text-decoration: none;
}

.multipost .multipost-text a {
	color: rgba(231, 76, 60, 1);	
	font-weight: 700;
	text-decoration: none;
}

/* STARTPAGE */

.main-content {
	padding-bottom: 20px;
}
.main-content.left.home .latest {
	width: 100%;
}

/* GRID */
#grid[data-columns]::before {
	content: '2 .column.size-1of2';
}

/* These are the classes that are going to be applied: */
.column { float: left; }
.size-1of2 { width: 50%; }


@media screen and (max-width: 480px){
	#grid[data-columns]::before {
		content: '1 .column.size-1of1';
	}
}

@media screen and (min-width: 481px) and (max-width: 768px) {
	#grid[data-columns]::before {
		content: '2 .column.size-1of2';
	}
}
@media screen and (min-width: 769px) {
	#grid[data-columns]::before {
		content: '2 .column.size-1of2';
	}
}

/* Again, you’re free to use and define the classes: */
.column { float: left; }
.size-1of1 { width: 100%; }
.size-1of2 { width: 50%; }
.size-1of3 { width: 50%; }
.size-1of1:first-child { width: 100%; }

/* RECENT POSTS SIDEBAR*/
.recent-post {
	padding-top:20px;
}

.recent-post a {
	color:  rgba(231, 76, 60, 1);
	text-decoration: none;
	font-weight: 700;
	font-size: 20px;
	text-transform: uppercase;
}
/* SIDEBAR */

.widget-area {
	background-color: rgba(255,255,255,0);
	padding-right: 25px;
}
.right {
	width: 33.3%;
	float: right;
}

.widget-area h2 {
	color: rgba(0,0,0,0.8);
	height: 40px;
	line-height: 40px;
	
	text-transform: uppercase;
	font-size: 20px;
	margin: 0px;
	padding: 0px;
	margin-top:15px;
}
.widget-area ul, .widget-area li {
	margin: 0px;
	padding: 0px;
	
	list-style-type: none;
}
.widget-area li {
	padding: 5px;
	padding-left: 10px;
	background-color: rgba(230, 234, 237, 0.5);
	margin-bottom: 2px;
}
.widget-area li a{
	color: rgba(231, 76, 60, 1);
	transition: all 0.5s ease 0s;
	text-decoration: none;
}
.widget-area li a:hover{
	color: rgba(231, 76, 60, 0.5);
}
.clear {
	clear: both;
	height: 0px;
}
/* MOBILE BUTTON */
	button.menu-toggle {
		background-color: rgba(0,0,0,0);
		border: none;
		box-shadow: none;
		height:40px;
		width: 30px;
		margin-top:10px;
		margin-left:7px;
		background-image: url("img/menu-button.svg");
		background-size: 30px 40px;
		
	}
	.toggled button.menu-toggle {
		-ms-transform: rotate(90deg); /* IE 9 */
    -webkit-transform: rotate(90deg); /* Chrome, Safari, Opera */
    transform: rotate(90deg);
    background-image: url("img/close-button.svg");
    background-size: 30px 30px;
    background-repeat: no-repeat;

	}
	

@media screen and (max-width: 37.5em) {
	body {
		overflow-x: hidden;
	}
	.top_nav, .top_nav ul, .top_nav li  {
		height: 0px;
		transition: all 0.5s ease 0s;
	}
	.top_nav .toggled, .top_nav .toggled ul, .top_nav .toggled li  {
		height: auto;
		transition: all 0.5s ease 0s;
	}
	.top_nav .toggled {
		height: auto;
		transition: all 0.5s ease 0s;
		background-color: rgba(17,37,60,1);
		margin-bottom: 15px;
	}
	.top_nav .toggled ul {
		margin-left: -10px;
		margin-top: -40px;
		padding-bottom:10px;
		
	}
	.top_nav .toggled li {
		margin-left: 60px;
		margin-right: 60px;
		width: 90%;
		float: none;
		
		
		
	}
	.top_nav .toggled li a{
	height: 40px;
		line-height:40px;
		border-bottom: 1px rgba(255,255,255,0.15);
	}
	.top_nav .toggled .sub-menu {
		margin-top: -20px;
		margin-left: 0px;
		width: 100%;
		display: block;
		float: none;
	}
	.top_nav .toggled .sub-menu li, .top_nav .toggled .sub-menu li a {
		margin: 0px;
		width: 100%;
		
	}
	.top_nav .toggled .sub-menu li a {
		padding-left: 15px;
	}
}
	

/* EASTER EGG */
.grayscale {
	-webkit-filter: grayscale(1);
	filter: grayscale(1);
}

/* MEDIA QUERIES */

@media screen and (max-width: 1150px) {
	.site-header .site-branding .site-slogan {
		width: 70%;
	}
	
}
@media screen and (max-width: 1000px) {
	.site-header .site-branding .site-slogan {
		width: 65%;
	}
	.site-header .top_nav nav a {
		font-size: 16px;
	}
}
@media screen and (max-width: 850px) {
	.site-header .site-branding .site-slogan {
		width: 100%;
	}
	.site-header .top_nav nav a {
		font-size: 15px;
		padding-left: 10px;
		padding-right: 10px;
	}
	.site-header .site-branding .site-slogan .text {
		position: relative;
		padding:0px;
		padding-top:10px;
		padding-bottom:10px;
	}
	.site-header .site-branding .site-slogan {
		height: auto;
	}
	.site-header {
		min-height: 0px;
	}
	.content-bar {
		margin-top: 0px;
		
	}
	.content-bar .title, .content-bar .search {
		width: 100%;
	}
	.left, .right {
		width: 100%;
	}
	.site-header .social-icons img {
		height: 30px;
		display: block;
		padding-bottom: 5px;
	}
	.site-header .site-branding {
		margin-top: 20px;
	}
	.main-content.left.home {
	width: 100%;
}
.main-content.left {
	padding-bottom: 20px;
}
/*.main-content.left.home .multipost {
	width: 50%;
}
.main-content.left.home .latest {
	width: 100%;
}*/
article .title-info {
	width: 100%;
	padding-left: 0px;
	padding-right: 25px;
}
article .post-thumbnail {
	width: 100%;
	padding-right: 25px;
}
article h1.entry-title {
	padding-right: 25px;
	font-size: 150%;
	}	
article .entry-content {
	padding-right: 25px;
}
	
}
@media screen and (max-width: 600px) {
	.main-content.left.home .multipost {
		width: 100%;
	}
	.content-bar .title {
		display: none;	
	}
}
@media screen and (max-width: 380px) {
	.site-header .site-branding .site-title img, .site-header .site-branding .site-title {
		width: 90%;
	}
	
}


/* CUSTOM BACKGROUNDS */
.category-sport .site-header {
	background-image: url("img/background/background_sport.jpg");
}
.category-wirtschaft .site-header {
	background-image: url("img/background/background_wirtschaft.jpg");
}
.category-gaming .site-header {
	background-image: url("img/background/background_gaming.jpg");
}
.category-wissenschaft .site-header {
	background-image: url("img/background/background_wissenschaft.jpg");
}
.category-politik .site-header {
	background-image: url("img/background/background_politik.jpg");
}
.category-unterhaltung .site-header, .category-stars .site-header {
	background-image: url("img/background/background_unterhaltung.jpg");
}
.category-technik .site-header {
	background-image: url("img/background/background_technik.jpg");
}
.category-weihnachten .site-header {
	background-image: url("img/background/background_christmas.jpg");
}		
.category-medizin .site-header {
	background-image: url("img/background/background_medizin.jpg");
}		

/* CAPTIONS */
		
.wp-caption .wp-caption-text {
    font-size: 0.75em;
    font-weight: 700;
}	

.wp-caption-text {
    text-align: left;
}	

.wp-caption {
	padding-top: 6px;
	padding-left: 7px;
	padding-right: 7px;
	background-color: rgba(230, 234, 237, 0.5);
}

/* COOKIE BUTTONS */

#cookie-notice .button.wp-default {
	background-color: rgba(255,255,255,1);
	border: none;
	text-shadow: none;
	font-weight: 700;
	font-size: 1em;
	line-height:24px;
	border-radius: 0px;
	font-family: inherit;
	margin-bottom: 10px;
	max-width: 90%;
}
#cookie-notice {
	max-width: 100%;
}
.cookie-notice-container {
	max-width: 1100px;
	margin: 0 auto;
	
}
