@property --color1 {
  syntax: "<color>";
  inherits: false;
  initial-value: #144732;
}

@property --color2 {
	syntax: "<color>";
	inherits: false;
	initial-value: #C3D994;
}

@property --color3 {
	syntax: "<color>";
	inherits: false;
	initial-value: #DBB381;
}

@property --color4 {
	syntax: "<color>";
	inherits: false;
	initial-value: #8A683D;
}

html {
	height: 100%;
}

b, strong {
	font-weight: 400 !important;	
}

* {
	padding: 0;
	margin: 0;
	text-decoration: none;
}

.clear {
	clear: both;
}

img {
	max-width: 100%;
	height: auto;
}

body {
	font-size: 20px;
	color: #666666;
	font-family: 'Lato', sans-serif;
	font-weight: 300;

}

body.error_site {
	padding: 25px;
}

small {
	font-size: 12px;
}

/* Youtube responsive */

.ytContainer {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

.ytContainer iframe, .ytContainer object, .ytContainer embed {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
}

/* YT end */

.brline {
	width: 90%;
	height: 2px;
	background: #cccccc;
	margin: 25px 0;
}

#wrapper {
  width: 1200px;

  margin-left: auto;
  margin-right: auto;
  position: relative;
}


::-moz-selection { 
    background: #17C07F;
    color: #ffffff;
}

::selection {
    background: #17C07F;
    color: #ffffff;
}

.orangeLink {
    position: relative;
    display: inline-block;
    outline: none;
    color: var(--color1);
    text-decoration: none;
    font-weight: 400;
	padding: 0 5px;
	font-size: 1.25rem;
}

.orangeLink.small {
	font-size: 18px;
}

.orangeLink.fontSize18 {
	font-size: 18px !important;
	padding: 0 3px;
}

.orangeLink::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 0px;
	background: var(--color2);
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	-moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
	transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-8px);
	-moz-transform: translateY(-8px);
	transform: translateY(-8px);
}

.orangeLink:hover::after,
.orangeLink:focus::after {
	height: 3px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	transform: translateY(0px);
}

div#stickyHeader {
	-webkit-transition: all 1s;
    -moz-transition: all 1s;
    transition: all 1s;
}

body:not(.admin) header {
	width: 100%;
	height: 80px;
	position:relative;
	text-align:center;
	/*max-width: 1200px;*/
	background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
	-webkit-box-sizing: border-box; 
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-bottom: 1px solid #ccc;
	-webkit-box-shadow: 0px 6px 10px 0px rgba(0,0,0,0.25);
  -moz-box-shadow: 0px 6px 10px 0px rgba(0,0,0,0.25);
  box-shadow: 0px 4px 8px 0px rgba(0,0,0,0.1);
}

body:not(.admin) header .inner_header {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	flex-direction: row;
	justify-content: inherit;
	align-items: center;
	width: 100%;
}

div.logo img {
	width: 70px;
	height: auto;
}

.position-sticky {
  position: sticky !important;
}
.sticky-top {
  z-index: 1020;
  position: sticky;
  top: 0;
}

.menu-icon {
	margin-right: 10px;
}

a.menu-button {
    position: relative;
    z-index: 10;
	color: #154835;
    &:link,
    &:visited,
    &:hover,
    &:active {
      color: #154835;
      text-decoration: none;
      font-size: 20px;
    }
	display: flex;
	align-items: center;
	font-weight: bold;
}

a.menu-button input
{
  display: flex;
  width: 110px;
  height: 32px;
  position: absolute;
  cursor: pointer;
  opacity: 0;
  z-index: 2;
}

#menu li a {
	color: var(--color1);
}

#menu li {
  font-size: 18px;
  font-weight: bold;
  padding: 5px 0px;
}

#menu li ul li {
	font-weight: normal;
}

#menu {
  z-index: 1;
  padding: 100px 0 0 35px;
  text-align: left;
  list-style-type: none;
  ul {
    transition: all 0.25s ease-in;
    list-style-type: none;
    margin: 0;
    padding: 0;
	padding: 20px 0 0 20px;
  
    li {
      a {
        color: var(--color1);
        text-decoration: none;
      }
    }
  }
}

#menu {
  transition: all 0.2s ease-in;
  position: absolute;
  background: #C3D994;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  
  &.show {
    opacity: 1;
    visibility: visible;
  }
}

a.menu-button span
{
  display: flex;
  width: 29px;
  height: 3px;
  margin-bottom: 5px;
  position: relative;
  background: var(--color1);
  border-radius: 3px;
  z-index: 1;
  transform-origin: 5px 0px;
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

a.menu-button span:first-child
{
  transform-origin: 0% 0%;
}

a.menu-button span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

a.menu-button span:last-child
{
  margin-bottom: 0;
}

a.menu-button input:checked ~ div span:first-child 
{
  opacity: 1;
  transform: rotate(45deg) translate(1px, -1px);
}

a.menu-button input:checked ~ div span:nth-child(2) {
	opacity: 0;
}

a.menu-button input:checked ~ div span:nth-child(3)
{
  opacity: 1;
  transform: rotate(-45deg) translate(-2px, -1px);
}

main {
	width: 100%;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
	padding: 0 10px;
	overflow: hidden;
	flex: 1;
}

article {
  margin-bottom: 35px;
}

article .socials1 {
	display: flex;
}

article .socials1 a img {
	margin-right: 10px;
}

body.error_site h1, article h1, h2, h3, h4, .content-category h1, .content-category h2, .content-category h3, .content-category h4, .contact-author h1, .contact-author h2, .contact-author h3,
div.single-tag h1 {
  font-family: "Dosis", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 2rem;
  color: var(--color1);
  margin: 15px 0px;
	line-height: 1.3;
}

article h2, .content-category h2, .contact-author h2 {
	font-size: 1.5rem;
	margin: 10px 0px;
}

article h3, .content-category h3, .contact-author h3 {
	font-size: 1.25rem;
	margin: 10px 0px;
}

article .author-img {
	max-width: 50px;
	max-height: 50px;
	overflow: hidden;
	margin-right: 10px;
}

article .author-img img {
	width: 100%;
	height: auto;
	border-radius: 15%;
	box-sizing: border-box;
}

.special2 {
  line-height: 1.4;
  margin: 25px 15px;
  padding: 25px;
  box-sizing: border-box;
  border: 1px solid var(--color4);
	color: var(--color4);
}

.createdby {
  display: flex;
  margin: 10px 0px;
  font-size: 1rem;
	flex: 1 1 auto;
}

.article-info {
  display: flex;
  align-items: center;
}

.createdby a {
	color: var(--color1);
}

.createdby_2lines {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: initial;
}

.createdby_2lines span { font-weight: 500 }

article figure img {
	display: block;
}

article figure {
	position: relative;
	min-height: 250px;
}

article ul li {
	margin-left: 25px;
	list-style-type: square;
	margin-bottom: 0.75rem;
}

article ul li::marker {
	color: var(--color2);
}

article figure figcaption {
	font-size: 0.8rem;
  padding: 10px;
  position: absolute;
  bottom: 0;
  right: 0;
  color: #fff;
  background-color: rgba(152, 162, 133, 0.9);
  text-align: right;
}

article p {
	margin: 15px 0;
	font-size: 1.15rem;
	line-height: 1.4;
}

article p.lead {
	font-size: 1.25rem;
}

article ol {
  padding: 0 25px;
  box-sizing: border-box;
}

article ol li {
  margin-bottom: 15px;
  font-size: 1.1rem;
  line-height: 1.4;
}

aside.moduletable {
  margin: 15px;
  /*border-top: 2px solid var(--color3);*/
}

.moduletable h4, .contact-author h4 {
  color: var(--color4);
  font-size: 1.25rem;
  text-transform: uppercase;
	position: relative;
	margin: 25px 0;
}

.moduletable h4::after, .contact-author h4::after {
	content: '';
  position: absolute;
  top: 50%;
  left: 0;
  border-top: 2px solid var(--color4);
  background: black;
  width: 100%;
  transform: translateY(-50%);
}

.moduletable .module-title, .module-title {
  display: inline;
  background: #fff;
  z-index: 2;
  position: relative;
  padding-right: 15px;
}

.articleslatest {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  box-sizing: border-box;
  justify-content: space-between;
}

.item-thumb {
  max-width: 30%;
  margin-right: 15px;
	min-height: 75px;
	min-width: 100px;
}

.item-thumb img {
	display: inherit;
}

.articleslatest .articleslatest-item {
  flex: 1 1 100%;
  margin-bottom: 25px;
	display: flex;
}

.articleslatest .articleslatest-item a {
  text-decoration: none;
  color: #000;
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 500;
}

main .mod-breadcrumbs__wrapper {
  font-size: 0.85rem;
  margin: 15px 0px;
}

main .mod-breadcrumbs__wrapper a {
	
}

main .mod-breadcrumbs__wrapper ol {
	display: flex;
	flex-wrap: wrap;
}

li.breadcrumb-item a {
	color: var(--color4);
}

main .mod-breadcrumbs__wrapper ol li {
	padding: 5px;
  list-style-type: none;
  border-right: 1px solid var(--color3);
}

main .mod-breadcrumbs__wrapper ol li:last-of-type {
	border-right: none;
}

article .galleryWrapper {
  margin: 30px 0px;
}

article iframe {
	margin: 15px 0px;
}

article .galleryWrapper figure { text-align: center; }

article .galleryWrapper figure figcaption {
	font-size: 0.9rem;
  color: var(--color4);
  text-align: center;
  padding: 15px 0px;
  position: relative;
  background-color: white;
	border-bottom: 1px solid #cccccc;
}

article .galleryWrapper figure figcaption::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translate(-50%);
  width: 100px;
  height: 1px;
  background-color: var(--color4);
}

article .galleryWrapper figure figcaption .author {
  text-align: right;
  font-size: 0.75rem;
}

article .sponsored {
  font-size: 1rem;
  text-align: right;
}

footer {
	background-color: var(--color2);
  display: flex;
  flex-direction: row;
  padding: 20px;
	align-items: center;
  justify-content: space-around;
}

footer img {
	max-width: 50px;
}

footer .img {
	text-align: center;
	margin-bottom: 15px;
}

footer .footer-desc {
  max-width: 50%;
  font-size: 0.8rem;
  color: var(--color1);
}

footer ul li {
  list-style-type: none;
  font-size: 1rem;
  margin-bottom: 15px;
  text-align: center;
}

footer .footer-links {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

footer ul li a {
  font-size: 0.9rem;
  color: var(--color1);
	font-weight: 500;
}


.plantData {
  margin: 25px 0px;
	font-size: 1rem;
	border-collapse: collapse;
}

table.plantData thead tr {
  background: var(--color4);
  color: #ffffff;
}

table.plantData tr td:first-child {
  font-weight: 500;
  border-right: 1px solid #ccc;
}
table.plantData th, table.plantData td {
  text-align: left;
  padding: 12px;
  font-size: 1rem;
}
table.plantData tr:nth-child(2n) {
  background-color: #cccccc;
}

table.plantData tr:nth-child(2n) td:first-child {
  border-right-color: #fff;
}
table.plantData tr td:first-child {
  font-weight: 500;
  border-right: 1px solid #ccc;
  border-right-color: rgb(204, 204, 204);
}

table.plantData a {
	color: var(--color1);
	font-weight: 500;
}


.ccomment-comments-list {
  list-style-type: none;
}
.ccomment-meta {
  text-align: right;
  font-size: 0.85rem;
  color: #666;
	margin-bottom: 15px;
}
.ccomment-meta a {
	color: #666666;
}

.ccomment-author {
  font-weight: 500;
}

.ccomment-comments-list li {
  margin-bottom: 15px;
  padding-bottom: 15px;
  font-size: 1rem;
  line-height: 1.5rem;
  border-left: 1px solid var(--color3);
  padding-left: 25px;
}

.btn.btn-small.ccomment-quote.btn-link, .btn.btn-primary.ccomment-send, .btn.ccomment-cancel {
	margin-top: 15px;
  background: none;
  border: 1px solid var(--color4);
  border-radius: 5px;
  padding: 5px 12px;
  color: var(--color4);
  background: #fff;
  cursor: pointer
}

.btn.ccomment-cancel { font-size: 1.1rem }

.btn.btn-primary.ccomment-send {
	background: var(--color4);
	color: #ffffff;
	font-size: 1.1rem;
}

textarea:focus, input:focus{
    outline: none;
}

.js-ccomment-textarea.ccomment-textarea {
  border: 1px solid var(--color3);
  padding: 10px;
  width: 100%;
	height: 90px;
  box-sizing: border-box;
	font-size: 1rem;
	resize: none;
	margin-bottom: 10px;
	border-radius: 5px;
	font-family: inherit;
}

.ccomment-undergo-moderation {
  font-size: 0.9rem;
  margin-top: 25px;
}

.ccomment-undergo-moderation span {
	font-size: 0.75rem;
}

.ccomment-undergo-moderation a {
	color: #666666;
}

.ccomment-name {
  padding: 5px;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 10px;
  border: 1px solid var(--color3);
	font-size: 0.85rem;
	border-radius: 5px;
}

#ccomment .alert {
  padding: 15px;
  box-sizing: border-box;
  margin: 15px 0px;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color1);
}

#ccomment .ccomment-quote-text {
  border-left: 1px solid var(--color3);
  padding-left: 20px;
}

#ccomment .ccomment-quote-text-author {
  font-size: 0.85rem;
	margin-bottom: 10px;
}
#ccomment .ccomment-quote-text-body {
  font-style: italic;
  font-size: 0.9rem;
}

.c-info__content {
  margin-bottom: 35px;
	font-size: 1rem;
  line-height: 1.5rem;
}

.c-info__content ul {
	margin: 15px 25px;
}

.com-content-category-blog__item.blog-item {
  display: flex;
  flex: 1 1 100%;
  flex-direction: column;
  margin: 20px 0px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 15px;
	position: relative;
}


.com-content-category-blog__item.blog-item::after {
	content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translate(-50%);
  width: 100px;
  height: 1px;
  background-color: var(--color4);
}

.com-content-category-blog__item.blog-item a {
	text-decoration: none;
  color: var(--color1);
  font-size: 1.5rem;
  line-height: 1.4;
}

.com-content-category-blog__item.blog-item .introtext {
	font-size: 1rem;
  line-height: 1.3rem;
  margin-bottom: 10px;
}

.com-content-category-blog__pagination {
  margin: 35px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination {
  display: flex;
  list-style-type: none;
	flex-wrap: wrap;
}

.pagination li.disabled .page-item {
	color: var(--color3) !important;
}

.pagination li.active.page-item a {
  font-size: 3rem;
  display: block;
  color: var(--color4);
}

.pagination .page-item {
	  margin-bottom: 15px;
		display: flex;
  justify-content: center;
  align-items: center;
}

.pagination .page-item a {
	font-weight: 500;
  color: var(--color3);
  font-size: 1.5rem;
	padding: 6px 12px;
}

.contact-author .contact__user-fields img {
	max-width: 128px;
	height: auto;
	border-radius: 5px;
}

.contact-miscinfo {
  margin: 25px 0 35px 0;
  font-size: 1.1rem;
}

.contact-miscinfo ul {
	margin: 25px 0px 25px 15px;
	line-height: 1.4;
	list-style-type: none;
}

.contact-miscinfo ul li {
	margin-bottom: 10px;
}

.articleslatest-item.first-item {
	flex-direction: column;
}

.articleslatest-item.first-item .item-thumb {
	flex: 1 1 100%;
	max-width: 100%;
	margin: 0;
}

.articleslatest-item.first-item .item-title {
	margin: 10px 0px;
}

.articleslatest-item.first-item .item-title a {
	font-size: 1.25rem;
}

.gsc-input-box {
	padding-top: 0px !important;
	padding-bottom: 0px !important;
}

.gsc-search-button-v2 {
	padding: 6px 5px !important;
}

#___gcse_0 {
  display: flex;
  flex: 1;
  justify-content: end;
  padding-right: 20px;
}

aside ul.tags {
	list-style-type: none;
}

aside ul.tags li {
	background: var(--color4);
	padding: 5px 12px;
	font-size: 1rem;
	display: inline-block;
  border-radius: 5px;
}

aside ul.tags li::first-letter {
	text-transform: uppercase;
}

aside ul.tags li a {
	color: #ffffff;
}

div.single-tag h1 {
	text-transform: capitalize;
}

.tag__description {
	font-size: 1rem;
	line-height: 1.3;
}

.tag__description ul {
	margin: 15px 0px;
  padding: 0px 25px;
}

.tag__description ul li {
	margin-bottom: 15px;
}

.com-tags__items {
	margin: 25px 0px;
}

body.error_site div.logo { text-align: center; }

body.error_site div.logo img {
	width: 150px;
	height: auto;
}

body.error_site .homepage-back {
  margin: 25px;
  background: var(--color4);
  border-radius: 10px;
  padding: 15px;
  font-size: 1.4rem;
  text-align: center;
}

body.error_site .homepage-back a {
	color: #ffffff;
	font-weight: 500;
}

footer .footer-links .copy {
		font-size: 0.8rem;
		margin-top: 15px;
		text-align: center;
}

.pinterest-banner-homepage {
  margin: 25px 0px 50px 0px;
}

footer .socials {
	margin-top: 15px;
}

footer .follw_us_footer {
	margin: 15px 0px;
	font-size: 1.2rem;
	font-weight: 500;
}


article hr {
  border: none;
  height: 1px;
  background: var(--color4);
}

#contact-form #jform_spacer-lbl {
	font-size: 0.8rem;
  display: inline-block;
}

#contact-form {
	
}

#contact-form .form-control-feedback {
  font-size: 0.9rem;
  color: #884343;
}

#contact-form .control-label {
  display: inline-block;
  margin: 10px 0px 10px 0px;
}

#contact-form .contact_info {
	font-size: 0.8rem;
}

#contact-form .contact_info a {
	color: #666666;
}

#contact-form label {
  color: var(--color4);
}

#contact-form input, #contact-form textarea {
  border: 1px solid var(--color4);
  padding: 10px;
  display: inline-block;
  font-family: inherit;
  color: var(--color4);
	width: 250px;
}

#contact-form textarea {
	width: 100%;
	max-width: 320px;
}

.contact-form {
  margin-bottom: 100px;
}

#contact-form button {
  margin: 25px 0 25px 0;
  background: var(--color4);
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  border: none;
  padding: 8px 20px;
  border-radius: 5px;
}

.article-tldr {
  margin: 35px 0;
  --s: 50px;
  padding: 25px;
  border: 2px solid var(--color4);
  -webkit-mask: conic-gradient(at var(--s) var(--s),#0000 75%,#000 0) 0 0/calc(100% - var(--s)) calc(100% - var(--s)), linear-gradient(#000 0 0) content-box;
	font-size: 1rem;
}

.article-tldr li::marker {
  color: var(--color4);
}

body.kontakt div.contact__user-fields { display: none; }

@media only screen and (min-width: 768px) {

	body.view-featured .moduletable h4 {
		text-align: center;
		font-size: 1.4rem;
	}
	
	.articleslatest .articleslatest-item.first-item, .articleslatest .articleslatest-item.second-item {
		flex-direction: column;
		flex: 1 1 49%;
    width: 49%;
    max-width: 49%;
		align-self: inherit;
	}
	
	.articleslatest .articleslatest-item.first-item .item-thumb, .articleslatest .articleslatest-item.second-item .item-thumb {
		width: auto;
    overflow-y: clip;
    max-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
	}


	.com-content-category-blog__items.blog-items {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	
	.com-content-category-blog__item.blog-item {
		max-width: 48%;
	}
	
	.articleslatest .articleslatest-item {
		flex: 0 1 40%;
		flex-direction: row;
		max-width: 40%;
	}
	
	.gsc-input {
		width: 200px;
	}
	
	.articleslatest .articleslatest-item a {
		font-size: 1.25rem;
	}
	
	.articleslatest-item.first-item .item-title, .articleslatest-item.second-item .item-title {
		margin-top: 15px;
	}
	
	.articleslatest-item.first-item .item-title a, .articleslatest-item.second-item .item-title a {
		font-size: 1.4rem;
	}
	
	.articleslatest {
  justify-content: space-around;
	}

	.item-thumb {
		max-width: none;
		width: 200px;
    min-width: 200px;
		min-height: inherit;
	}
	
	.articleslatest-item.first-item .item-title { margin: auto; }
	
	.articleslatest-item.first-item .item-thumb {
		margin-right: inherit;
		flex: 0;
		margin-right: 15px;
	}
	
	.moduletable .module-title, .module-title {
		padding-left: 15px;
	}
	
	article figure.item-image {
		position: relative;
		min-height: 250px;
		max-height: 450px;
		overflow: hidden;
	}
	
	article figure.item-image img {
		transform: translate(0, -25%);
	}
	
	footer .footer-links {
		flex-direction: column;
	}
	
	footer .footer-links ul li {
		display: inline-block;
		margin: 5px;
	}
	
	#___gcse_0 {
  padding-right: 35px;
	}
}