/*
===================
Leggero CSS Styles
===================
Name: xubox
Author: zeuder
Version: 1.0
Module: style.css
-------------------
*/

@font-face { font-family: 'Nunito';
             src: url('Nunito-Regular.ttf')  format('truetype');
}
@font-face { font-family: 'Nunito';
             src: url('Nunito-Bold.ttf') format('truetype');
             font-weight: bold; }

@font-face { font-family: 'Rokkitt';
             src: url('Rokkitt-Regular.ttf')  format('truetype'); }

@font-face { font-family: 'Rokkitt';
             src: url('Rokkitt-Bold.ttf') format('truetype');
             font-weight: bold; }

@font-face { font-family: 'Rokkitt';
             src: url('Rokkitt-SemiBold.ttf') format('truetype');
             font-weight: 600; }

/*== GENERAL TAGS ==*/
*{ margin: 0; padding: 0;} /* reset all tags */
html{ font-size: 1em;}
body {

	font-size: 1em;
	font-family: Nunito, Arial, Sans-Serif;
	margin: 0 auto;
	text-align: center;
	display: flex;
	padding-top: 1.25rem;
	align-items: center;
	justify-content: center;
}
h1, h2, h3 {
	font-family: Rokkitt, Times, Serif;
}

p { margin: 0 0 1.5em 0; line-height: 1.5em; }
img { border: none }
blockquote {
	border-left: 5px solid #bbb;
	color: #888;
	margin: 0.5em;
	padding: 0 0 0 0.312em;
	width: 90%;
}

pre, code {
	font-family: 'Lucida Console', Monaco, monospace;
	font-size: 90%;
}

pre {
	background: #ededed;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	margin: 1em;
	overflow: auto;
	padding: 0.416em 0.833em;
	width: 90%;
	/* fix overflow in IE */
	height: auto !important; 
	height: 40px; 
	min-height: 40px;	
}

/* === FORMS === */
form { margin: 1em 0 }
fieldset {
	border: 1px solid #DDD;
	margin: 0 0 1em 0;
	padding: .5em;
}
legend {
	color: #333;
	font-style: oblique
}
input, textarea, select {
	font-family: Georgia;
	background: #fff;
	border: 1px solid #DDD;
	padding: .2em;
}

input:hover, input:focus, textarea:hover, textarea:focus { border: 1px solid #DDD;}

textarea {
	margin-top: .2em 0 1em 0;
	width: 90%;
}
/* ===== LINKS GENERAL ===== */
a{color: #ed7d2d; text-decoration: none}
a:hover {color: #8b0000;}

/* ===== HEADERS TAGS ===== */
h1,h2,h3,h4,h5,h6{
	line-height: 1.5em;
}
h1{font-size: 1.8em;}
h2{font-size: 1.6em;}
h3{font-size: 1.5em;}
h4{font-size: 1em;}
h5{font-size: 1em;}
h6{font-size: 1em;}


@media only screen and (orientation: landscape) {
  #rahmen {
    flex-basis: 1024px;
    flex-grow: 0;
  }
}

@media only screen and (orientation: portrait) {
  #rahmen {
	max-width: 800px;
  }
}

#rahmen {
	padding: 0 .5em;
}

#container{
	padding: .5em 0;
	text-align: left;
	display: flex;
}

@media only screen and (orientation: landscape) {
  #container {
	flex-direction: row;
  }
}

@media only screen and (orientation: portrait) {
  #container {
	flex-direction: column;
	justify-content: center;
  }
}

/*== HEADER ==*/
#top{
	height: 50px;
	padding: 1.5em 0 2.5em 0;
	background-image: url("../imgs/logo.svg"),linear-gradient(180deg, #637b7e 0%, #38484a 100%);
	background-repeat: no-repeat;
	background-position: 2.5% 50%;
	background-size: 3.41em, cover;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	box-shadow: 0 2px 10px rgba(2, 6, 23, 0.06);
	text-align: left;
}
#top span.subtitle{ padding-left: 6.5rem; }
#top a{color:white;}
#top a:hover{ color:#ed7d2d;}
/*== END HEADER ==*/

/*== MENU ==*/
#menu {
	height: 2rem;
	padding-left: 6.5rem;
	display: flex;
	justify-content: center;
}
#menu ul{ list-style: none;}
#menu li{	display: inline;}
#menu li a {
	color: #fff;
	display: block;
	float: left;
	font-size: .9em;
	font-weight: bold;
	padding: .5em;
}
#menu li a:hover{ color:#ed7d2d; text-decoration: underline;}
/*== END MENU ==*/

/*== MAIN ==*/
main {
 	float: left;
	margin-top: 1em;
	text-align: left;
}

main p {
	overflow-wrap: break-word;
	hyphens: auto;
}

section {
	margin-top: .3em;
}

@media only screen and (orientation: landscape) {
  main {
	width: 80%;
  }
}

@media only screen and (orientation: portrait) {
  main {
	width: 100%;
  }
}

.entry {
	background: #ed7d2d;
	color: black;
	background: linear-gradient(1deg, #fff 0%, #eee 100%);
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	box-shadow: 0 2px 10px rgba(2, 6, 23, 0.06);
	padding: 1rem;
	margin: 0 0 1.25rem 0;
	overflow: hidden;
}

.entry ul {
	list-style: none;
	line-height: 1.6em;
}

main ul, #main ol,#main dl{ list-style-position: inside; margin-bottom: 1.5em;}

ul.entry-footer{
	list-style: none;
	padding: 0;
	margin: 0 0 1rem 0;
	border-top: 1px solid #ff8c00;
	padding-top: .75rem;
	display: flex;
	flex-wrap: wrap;
	gap: .75rem 1.25rem;
	align-items: baseline;
	justify-content: space-between;
	color: #475569;
	font-size: .92rem;
}

}

.entry-footer li {
	margin: 0;
}

figure {
	margin: 0 0 1rem 0;
	display: block;
	box-sizing: border-box;
}

figure img {
	display: block;
	margin-bottom: 0px;
	margin-top: 1.5rem;
	max-width: 100%;
	height: auto;
}

figcaption, .bu {
	font-size: .8rem;
	text-align: right;
	color: #738e91;
}

/*== SIDEBAR ==*/
#sidebar {
	float: right;
	/* font-size: 0.75em;/*12px*/
	margin-top: 1.25rem;
	width: max(30%, 300px);
}

@media only screen and (orientation: portrait) {
  #sidebar {
	width: 100%;
  }
}

#sidebar h4 {
	border-bottom: 1px solid #DDD;
	color: #8b0000;
	font-family: Rokkitt, Times, Serif;
}
/* #sidebar div{ width: 200px;} */

#sidebar div {
	background: rgb(247, 240, 223);
	background: linear-gradient(180deg, #efaa7f 0%, #ed7d2d 100%);
	border: 1px solid #ed7d2d;
	border-radius: 14px;
	box-shadow: 0 2px 10px rgba(2, 6, 23, 0.06);
	padding: 1.25rem;
	margin: 0 0 1.25rem 0;
	overflow: hidden;
	margin-left: 0.5em;
}

#sidebar div.buttonbar {
	border: none;
	margin: 0;
	padding: 0;
	background: none;
	box-shadow: none;
}


#sidebar a{ color: #38484a;}
#sidebar a:hover{ color: #8b0000;}
#sidebar ul {
	list-style-type: none;
	margin: 0.5em 0;
	line-height: 1.6em;
}
/*== END SIDEBAR ==*/	
	
/*== FOOTEr ==*/
footer {
	clear: both;
	font-size: 0.9em;
	padding: 1em 0;
	text-align: center;
}
/*== END FOOTER ==*/

/*== Comments ==*/
main ol#comments li{
	background: #fdfdfd;
	border-top: 1px solid #eee;
	padding: .5em;
	margin-bottom: 1em;
}

/*== NOTIFICATION ==*/
main ul.msgs, ul.msgs { margin-top: 1em; margin-left: 0em; padding: 1em 2em}
.errors { background: #ffdddd; border-top: 1px solid; border-bottom: 1px solid; border-color: #ffbbbb; color: #901d1d;}
.errors a { color: #901d1d; font-weight: normal; text-decoration: underline;}
.notifications,.enabled { background: #ddffdd; border-top: 1px solid #bbffbb; border-bottom: 1px solid #bbffbb; color : #1d901d;}
.warnings { background: #fffdd5; border-top: 1px solid; border-bottom: 1px solid; border-color: #f8e674; color : #8a7802;}
.field-error { background: #fdd;	border: red 1px solid;}
/* MISC */
#widget-searchbox input{width: 90%;}
#widget-searchbox form {margin: 0; padding: 0;}
#widget-searchbox input[type="submit"], input[type="button"], .link-comments a, .readmore a, button:not(.leaflet-control):not(.pswp__button):not(.bb-button) {
	appearance: none;
	border: 1px solid rgba(139, 0, 0, .35);
	border-radius: 999px;
	background: linear-gradient(1deg, #b22222 0%, #ffb26f 100%);
	color: #ffffff;
	padding: .55rem 1rem;
	font-size: .75rem;
	font-weight: bold;
	cursor: pointer;
	text-decoration: none;
}
.readmore {overflow-wrap: normal; hyphens: none;}
.admincontrols { font-size: 75%; text-align: left;}
.buttonbar { text-align: left; clear: both; }
.buttonbar input { margin: 0 1em 0 0; padding: 0.2em 1.2em; text-align: center;}
.navigation { font-size: 90%; margin-bottom: 5em}
.alignleft { float: left }
.alignright { float: right }
.clearl{ clear: left;}
.clearr{ clear: right;}
.clear{ clear: both;}
hr {
	color: #e2e8f0;
	margin-bottom: .5em;
}
