@charset "UTF-8";

/* =========================================================
   LEGACY STYLE – CLEAN (YOOtheme-friendly)
   Cél: a régi template-ek “komponens + layout” stílusai maradjanak,
        de a globális tipó/reset NEM írja felül a YOOtheme-et.
   Érintett oldalak (functions.php alapján): Kertek + garden single,
        months.php (vetési naptár), newgarden.php, plants/pests sheet.
   ========================================================= */

/* ---------------------------------------------------------
   0) Alap változók (legacy színek)
---------------------------------------------------------- */
:root {
  --kk-green: #71bb55;
  --kk-green-dark: #4d920a;
  --kk-pink: #ce637a;
  --kk-gray-100: #f6f6f6;
  --kk-gray-200: #f8f7f4;
  --kk-gray-300: #ddd;
  --kk-border: #ccc;
  --kk-text: #333;
}

/* Ne okozzon vízszintes scrollt a legacy 100vw-s megoldások miatt
   (a full-width kifeszítést amúgy már külön override-okban kezeled) */
body {
  overflow-x: hidden;
}

/* -------------------------
   1) Legacy layout utilok
-------------------------- */
.clearfix {
  clear: both;
}

.wrap {
  width: 90%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.wrap.center {
  text-align: center;
}

.wrap.mini {
  max-width: 660px;
}

/* A régi template-ek gyakran “section” köré épülnek.
   Itt NEM adunk globális tipót, csak minimális spacinget. */
section {
  padding: 60px 0;
  text-align: left;
}

/* Háttérszekciók – markup-szintű (gray/green/white) */
section.gray {
  background: var(--kk-gray-200);
}

section.white {
  background: #fff;
}

section.green {
  background: var(--kk-green);
  color: #fff;
  text-align: center;
}

section.green a,
section.green h1,
section.green h2,
section.green h3,
section.green h4,
section.green p {
  color: #fff;
}

section .wrap {
    margin: auto;
    max-width: 1140px;
    text-align: left;
    width: 90%;
}

section .wrap.garden.badge {
    background: url(../img/badge.png) no-repeat 100%;
    background-size: 170px
}


/* -------------------------
   2) Linkek és “legacy button” (tipó nélkül)
-------------------------- */
a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

p a {
  color: var(--kk-green);
  text-decoration: underline;
}

.button {
  display: inline-block;
  height: 50px;
  line-height: 50px;
  padding: 0 12px;
  width: 200px;
  text-align: center;
  font-weight: 700;
  border-radius: 10px;
  background: #fff;
  color: var(--kk-green);
}

.button:hover {
  background: var(--kk-green);
  color: #fff;
}

.inlinebutton {
  display: inline-block;
  height: 30px;
  line-height: 30px;
  min-width: 200px;
  padding: 0 30px;
  text-align: center;
  text-decoration: none;
  background: #fff;
  color: var(--kk-green);
  font-weight: 700;
}

.inlinebutton:hover {
  background: var(--kk-green-dark);
  color: #fff;
}

/* -------------------------
   3) KERTEK: lista + “rect” kártya + térkép lista alapok
-------------------------- */
.rect {
  display: block;
  position: relative;
  box-sizing: border-box;
  border: 1px solid var(--kk-border);
  padding: 10px 10px 6px;
  margin-bottom: 10px;
  background: #fff;
}

.rect p {
  color: var(--kk-border);
  font-size: 14px;
  margin: 0;
}

.rect:hover,
.rect.eliminated:hover {
  background: var(--kk-green);
  border-color: var(--kk-green);
}

.rect:hover h3,
.rect:hover p,
.rect:hover:after,
.rect.eliminated:hover h3,
.rect.eliminated:hover p,
.rect.eliminated:hover:after {
  color: #fff;
}

.rect.eliminated {
  padding-bottom: 25px;
}

.rect.eliminated h3 {
  color: var(--kk-border);
  font-weight: 500;
}

.rect.eliminated:after {
  content: "megszűnt kert";
  position: absolute;
  color: var(--kk-pink);
  font-weight: 700;
}

.rect.eliminated:hover {
  background: var(--kk-pink);
  border-color: var(--kk-pink);
}

/* Régi scrollbar-stílus a bal oldali listához (ha még használod) */
.gardens .garden-map-list::-webkit-scrollbar {
  width: 10px;
  border-radius: 5px;
}

.gardens .garden-map-list::-webkit-scrollbar-track {
  background-color: var(--kk-gray-200);
  border-radius: 5px;
}

.gardens .garden-map-list::-webkit-scrollbar-thumb {
  background-color: var(--kk-green);
  border-radius: 5px;
  cursor: pointer;
}

/* -------------------------
   4) SINGLE GARDEN: titlebar + adat táblák + cikk layout
-------------------------- */
section.gray.titlebar {
  padding: 0;
}

section .wrap.garden {
  max-width: 940px;
  width: calc(90% - 200px);
  padding: 60px 200px 60px 0;
  text-align: left;
}

section .wrap.garden h1 {
  display: inline-block;
  line-height: 50px;
  margin: 10px 20px 20px 0;
  text-align: left;
  }

section .wrap.garden a.map {
  display: inline-block;
  height: 28px;
  line-height: 28px;
  padding: 0 10px;
  background: #fff;
  color: var(--kk-green);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  vertical-align: middle;
}

section .wrap.garden a.map:hover {
  background: var(--kk-green);
  color: #fff;
}

section .wrap.garden p.garden-closed {
  color: var(--kk-pink);
  font-weight: 700;
  margin-right: 10px;
}

section.garden-thumb {
  margin-bottom: 50px;
}

section.gray.data {
  margin-top: -50px;
}

table.garden-data {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}

table.garden-data tr td {
  padding: 0 8px;
  border-left: 3px solid var(--kk-border);
  vertical-align: top;
}

table.garden-block {
  margin: 10px 0 60px;
  width: 100%;
  border-collapse: collapse;
}

article.garden-article {
  margin-top: 20px;
}

article.garden-article .garden-article-left {
  float: left;
  width: 200px;
}

article.garden-article .garden-article-left h3 {
  text-align: right;
}

article.garden-article .garden-article-right {
  margin-left: 230px;
}

article.garden-article .garden-article-right p {
  margin-bottom: 5px;
}

/* -------------------------
   5) Többhasábos cikkek (ha maradt ilyen legacy markup)
-------------------------- */
article.col {
  column-count: 3;
  column-gap: 60px;
  margin: 80px auto;
}

article p {
  margin-bottom: 15px;
}

article span.box {
  display: block;
  padding: 30px;
  text-align: center;
  background: #e0f2cf;
}

/* -------------------------
   6) Reszponzív finomhangolások – csak layout
-------------------------- */
@media screen and (max-width: 1025px) {
  article.garden-article .garden-article-left {
    float: none;
    width: auto;
  }

  article.garden-article .garden-article-left h3 {
    text-align: left;
  }

  article.garden-article .garden-article-right {
    margin-left: 0;
  }

  section .wrap.garden {
    width: 90%;
    padding: 40px 0;
  }
}

@media screen and (max-width: 750px) {
  .wrap {
    overflow: hidden;
  }

  section {
    padding: 50px 0;
  }

  article.col {
    column-count: 2;
    column-gap: 30px;
    margin: 50px auto;
  }

  article span.box {
    padding: 15px;
  }
}

/* =========================================================
   VETÉSI NAPTÁR (months.php) – LEGACY (eredeti selectorokkal)
   ========================================================= */

#menu-honapok {
  list-style: none;
  margin-bottom: 50px;
  text-align: center;
}

#menu-honapok li {
  border: 1px solid #ccc;
  display: inline-block;
  height: 30px;
  margin: 10px 4px;
}

#menu-honapok li.current-menu-item,
#menu-honapok li:hover {
  background: #71bb55;
  border-color: #71bb55;
}

#menu-honapok li.current-menu-item a,
#menu-honapok li:hover a {
  color: #fff;
}

#menu-honapok li a {
  color: #ccc;
  display: block;
  font-size: 12px;
  font-weight: 500;
  line-height: 30px;
  padding: 0 10px;
  text-transform: uppercase;
}

.month .meta {
  border-bottom: 20px solid #fff;
  border-left: 20px solid #fff;
  float: right;
  position: relative;
  width: 330px;
}

.month .meta span.download {
  color: #aaa;
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 30px;
  margin-bottom: 10px;
  text-align: center;
  text-transform: uppercase;
}

.month .meta span.download a {
  color: #71bb55;
  display: inline-block;
  text-decoration: underline;
  text-transform: uppercase;
}

.month .plant-of-month {
  background: #eee;
  padding: 30px;
  position: relative;
  width: 270px;
}

.month .plant-of-month a {
  display: block;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 99;
}

.month .plant-of-month h3 {
  border: 0;
  font-size: 20px;
  font-weight: 400;
  margin: 0;
  padding: 0;
  text-align: center;
}

.month .plant-of-month p {
  font-size: 14px;
  margin-top: 20px;
}

.month .plant-of-month .thumb {
  background-size: cover;
  border-radius: 50px;
  height: 100px;
  margin: 20px auto 10px;
  width: 100px;
}

.month article ul {
  list-style: disc;
  margin-bottom: 20px;
}

.month article ul li {
  display: list-item;
  margin: 5px 20px;
  text-align: left;
}

.month h3 {
  border-top: 1px solid #ccc;
  margin-top: 30px;
  padding-top: 20px;
}

.month ul {
  list-style: none;
  text-align: left;
}

.month ul li {
  display: inline-block;
  margin: 30px 20px;
  position: relative;
  text-align: center;
}

.month ul li .thumb {
  background: #eee;
  background-size: cover;
  border-radius: 40px;
  display: block;
  height: 80px;
  width: 80px;
}

.month ul li .thumb span {
  font-size: 12px;
  left: -10px;
  line-height: 16px;
  max-height: 40px;
  overflow: hidden;
  position: absolute;
  text-transform: uppercase;
  top: 86px;
  width: calc(100% + 20px);
}

.month ul li .thumb:hover span {
  color: #71bb55;
}


/* =========================================================
   PLANT-SHEET / PEST-SHEET – LEGACY (legacy-style-b.css alapján)
   ========================================================= */

.all-pest ul,
.all-plant ul {
	text-align: left
}

.all-pest ul li,
.all-plant ul li {
	border-bottom: 1px solid #eee;
	margin-bottom: 20px;
	padding-bottom: 10px
}

.all-pest ul li span,
.all-plant ul li span {
	color: #ccc;
	display: inline-block;
	font-size: 14px;
	font-weight: 700;
	height: 18px;
	line-height: 18px;
	margin-bottom: 3px;
	margin-right: 10px;
	text-align: center;
	text-transform: uppercase;
	width: 30px;
	width: 18px
}

.all-pest ul li a,
.all-plant ul li a {
	border: 1px solid #ccc;
	color: #ccc;
	display: inline-block;
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	margin-bottom: 10px;
	margin-right: 5px;
	padding: 5px 10px
}

.all-pest ul li a.active,
.all-pest ul li a:hover,
.all-plant ul li a.active,
.all-plant ul li a:hover {
	background: #71bb55;
	border-color: #71bb55;
	color: #fff
}

.pest-sheet .loader,
.plant-sheet .loader {
	padding: 10px 0;
	text-align: center;
	width: calc(100% - 60px)
}

.pest-sheet .loader i,
.plant-sheet .loader i {
	color: #ccc
}

.pest-sheet .pest-sheet-chars,
.pest-sheet .plant-sheet-chars,
.plant-sheet .pest-sheet-chars,
.plant-sheet .plant-sheet-chars {
	float: left;
	min-height: 500px;
	width: 30px
}

.pest-sheet .pest-sheet-chars a,
.pest-sheet .plant-sheet-chars a,
.plant-sheet .pest-sheet-chars a,
.plant-sheet .plant-sheet-chars a {
	color: #ccc;
	display: block;
	font-size: 14px;
	font-weight: 700;
	height: 18px;
	line-height: 18px;
	margin-bottom: 3px;
	text-align: center;
	text-transform: uppercase;
	width: 18px
}

.pest-sheet .pest-sheet-chars a.pest-sheet-char__selected,
.pest-sheet .pest-sheet-chars a.plant-sheet-char__selected,
.pest-sheet .plant-sheet-chars a.pest-sheet-char__selected,
.pest-sheet .plant-sheet-chars a.plant-sheet-char__selected,
.plant-sheet .pest-sheet-chars a.pest-sheet-char__selected,
.plant-sheet .pest-sheet-chars a.plant-sheet-char__selected,
.plant-sheet .plant-sheet-chars a.pest-sheet-char__selected,
.plant-sheet .plant-sheet-chars a.plant-sheet-char__selected {
	background: #71bb55;
	color: #fff
}

.pest-sheet .pest-sheet-pests,
.pest-sheet .plant-sheet-plants,
.plant-sheet .pest-sheet-pests,
.plant-sheet .plant-sheet-plants {
	float: left;
	min-height: 500px;
	width: 260px
}

.pest-sheet .pest-sheet-pests ul,
.pest-sheet .plant-sheet-plants ul,
.plant-sheet .pest-sheet-pests ul,
.plant-sheet .plant-sheet-plants ul {
	list-style: none
}

.pest-sheet .pest-sheet-pests ul li,
.pest-sheet .plant-sheet-plants ul li,
.plant-sheet .pest-sheet-pests ul li,
.plant-sheet .plant-sheet-plants ul li {
	margin-bottom: 10px
}

.pest-sheet .pest-sheet-pests ul li a,
.pest-sheet .plant-sheet-plants ul li a,
.plant-sheet .pest-sheet-pests ul li a,
.plant-sheet .plant-sheet-plants ul li a {
	border: 1px solid #ccc;
	color: #ccc;
	display: inline-block;
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	margin-right: 30px;
	padding: 5px 10px
}

.pest-sheet .pest-sheet-pests ul li a.active,
.pest-sheet .pest-sheet-pests ul li a:hover,
.pest-sheet .plant-sheet-plants ul li a.active,
.pest-sheet .plant-sheet-plants ul li a:hover,
.plant-sheet .pest-sheet-pests ul li a.active,
.plant-sheet .pest-sheet-pests ul li a:hover,
.plant-sheet .plant-sheet-plants ul li a.active,
.plant-sheet .plant-sheet-plants ul li a:hover {
	background: #71bb55;
	border-color: #71bb55;
	color: #fff
}

.pest-sheet .pest-sheet-content,
.pest-sheet .plant-sheet-content,
.plant-sheet .pest-sheet-content,
.plant-sheet .plant-sheet-content {
	margin-left: 290px
}

.pest-sheet .thumb,
.plant-sheet .thumb {
	background-color: #eee;
	background-size: cover;
	border-radius: 55px;
	float: left;
	height: 110px;
	margin-right: 25px;
	width: 110px
}

.pest-sheet h1,
.plant-sheet h1 {
	display: block;
	float: left;
	font-size: 32px;
	line-height: 40px;
	margin: 35px 0 55px;
	max-width: 320px;
	text-align: left
}

.pest-sheet .data,
.plant-sheet .data {
	float: right;
	font-size: 16px;
	line-height: 40px;
	padding-left: 20px;
	padding-top: 36px
}

.pest-sheet .data.left h5,
.plant-sheet .data.left h5 {
	width: 70px
}

.pest-sheet .data h5,
.plant-sheet .data h5 {
	display: block;
	float: left;
	font-size: 14px;
	font-weight: 400;
	line-height: 16px;
	margin-right: 10px;
	padding-top: 2px;
	text-align: right;
	text-transform: none;
	width: 100px
}

.pest-sheet .data b,
.plant-sheet .data b {
	font-size: 20px
}

.pest-sheet table,
.plant-sheet table {
	border-collapse: collapse;
	margin-bottom: 20px;
	table-layout: fixed;
	width: 100%
}

.pest-sheet table.pest-actions__mobile,
.pest-sheet table.plant-actions__mobile,
.plant-sheet table.pest-actions__mobile,
.plant-sheet table.plant-actions__mobile {
	display: none
}

.pest-sheet table tr th,
.plant-sheet table tr th {
	border: 1px solid #ccc;
	height: 24px;
	padding: 2px;
	text-align: center
}

.pest-sheet table tr th:first-child,
.plant-sheet table tr th:first-child {
	border: 0;
	width: 120px
}

.pest-sheet table tr td,
.pest-sheet table tr th,
.plant-sheet table tr td,
.plant-sheet table tr th {
	border: 1px solid #ccc;
	height: 24px;
	line-height: 24px;
	padding: 2px
}

.pest-sheet table tr td:first-child,
.pest-sheet table tr th:first-child,
.plant-sheet table tr td:first-child,
.plant-sheet table tr th:first-child {
	font-size: 12px;
	font-weight: 500;
	padding-right: 10px;
	text-align: right;
	text-transform: uppercase
}

.pest-sheet table tr td span,
.pest-sheet table tr th span,
.plant-sheet table tr td span,
.plant-sheet table tr th span {
	background: #71bb55;
	color: #fff;
	display: block;
	font-weight: 500;
	height: 100%
}

.pest-sheet span.download,
.plant-sheet span.download {
	color: #aaa;
	display: block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1px;
	margin: 25px 0 20px;
	text-transform: uppercase
}

.pest-sheet span.download a,
.plant-sheet span.download a {
	color: #71bb55;
	text-decoration: underline;
	text-transform: uppercase
}

.pest-sheet .pest-articles-left,
.pest-sheet .plant-articles-left,
.plant-sheet .pest-articles-left,
.plant-sheet .plant-articles-left {
	float: left;
	margin-right: 40px;
	text-align: left;
	width: 250px
}

.pest-sheet .pest-articles-left ul,
.pest-sheet .plant-articles-left ul,
.plant-sheet .pest-articles-left ul,
.plant-sheet .plant-articles-left ul {
	list-style: none;
	text-align: right
}

.pest-sheet .pest-articles-left ul li,
.pest-sheet .plant-articles-left ul li,
.plant-sheet .pest-articles-left ul li,
.plant-sheet .plant-articles-left ul li {
	color: #ccc;
	cursor: pointer;
	font-weight: 700;
	margin-bottom: 10px;
	padding-bottom: 5px;
	text-transform: uppercase
}

.pest-sheet .pest-articles-left ul li:hover,
.pest-sheet .plant-articles-left ul li:hover,
.plant-sheet .pest-articles-left ul li:hover,
.plant-sheet .plant-articles-left ul li:hover {
	color: #71bb55
}

.pest-sheet .pest-articles-left ul li.pest-article__selected,
.pest-sheet .pest-articles-left ul li.plant-article__selected,
.pest-sheet .plant-articles-left ul li.pest-article__selected,
.pest-sheet .plant-articles-left ul li.plant-article__selected,
.plant-sheet .pest-articles-left ul li.pest-article__selected,
.plant-sheet .pest-articles-left ul li.plant-article__selected,
.plant-sheet .plant-articles-left ul li.pest-article__selected,
.plant-sheet .plant-articles-left ul li.plant-article__selected {
	color: #111;
	position: relative
}

.pest-sheet .pest-articles-left ul li.pest-article__selected h4,
.pest-sheet .pest-articles-left ul li.plant-article__selected h4,
.pest-sheet .plant-articles-left ul li.pest-article__selected h4,
.pest-sheet .plant-articles-left ul li.plant-article__selected h4,
.plant-sheet .pest-articles-left ul li.pest-article__selected h4,
.plant-sheet .pest-articles-left ul li.plant-article__selected h4,
.plant-sheet .plant-articles-left ul li.pest-article__selected h4,
.plant-sheet .plant-articles-left ul li.plant-article__selected h4 {
	color: #71bb55
}

.pest-sheet .pest-articles-left ul li.pest-article__selected h4:hover,
.pest-sheet .pest-articles-left ul li.plant-article__selected h4:hover,
.pest-sheet .plant-articles-left ul li.pest-article__selected h4:hover,
.pest-sheet .plant-articles-left ul li.plant-article__selected h4:hover,
.plant-sheet .pest-articles-left ul li.pest-article__selected h4:hover,
.plant-sheet .pest-articles-left ul li.plant-article__selected h4:hover,
.plant-sheet .plant-articles-left ul li.pest-article__selected h4:hover,
.plant-sheet .plant-articles-left ul li.plant-article__selected h4:hover {
	text-decoration: none
}

.pest-sheet .pest-articles-left ul li.pest-article__selected h4:after,
.pest-sheet .pest-articles-left ul li.plant-article__selected h4:after,
.pest-sheet .plant-articles-left ul li.pest-article__selected h4:after,
.pest-sheet .plant-articles-left ul li.plant-article__selected h4:after,
.plant-sheet .pest-articles-left ul li.pest-article__selected h4:after,
.plant-sheet .pest-articles-left ul li.plant-article__selected h4:after,
.plant-sheet .plant-articles-left ul li.pest-article__selected h4:after,
.plant-sheet .plant-articles-left ul li.plant-article__selected h4:after {
	color: #71bb55;
	content: "\f0da";
	font-family: Fontawesome;
	font-size: 18px;
	position: absolute;
	right: -14px
}

.pest-sheet .pest-articles-left ul li p,
.pest-sheet .plant-articles-left ul li p,
.plant-sheet .pest-articles-left ul li p,
.plant-sheet .plant-articles-left ul li p {
	display: none
}

.pest-sheet .pest-articles-left ul li h4,
.pest-sheet .plant-articles-left ul li h4,
.plant-sheet .pest-articles-left ul li h4,
.plant-sheet .plant-articles-left ul li h4 {
	text-align: right
}

.pest-sheet .pest-articles-left ul li h4:hover,
.pest-sheet .plant-articles-left ul li h4:hover,
.plant-sheet .pest-articles-left ul li h4:hover,
.plant-sheet .plant-articles-left ul li h4:hover {
	text-decoration: underline
}

.pest-sheet .pest-articles-right,
.pest-sheet .plant-articles-right,
.plant-sheet .pest-articles-right,
.plant-sheet .plant-articles-right {
	float: right;
	width: calc(100% - 290px)
}

.pest-sheet .pest-articles-right article,
.pest-sheet .plant-articles-right article,
.plant-sheet .pest-articles-right article,
.plant-sheet .plant-articles-right article {
	text-align: left
}


/* =========================================================
   RESPONSIVE – legacy-style-b.css alapján (csak sheet részek)
   ========================================================= */

@media screen and (max-width:1025px) {

	.pest-sheet,
	.plant-sheet {
		padding-top: 0
	}

	.pest-sheet .loader,
	.plant-sheet .loader {
		width: 100%
	}

	.pest-sheet .loader i,
	.plant-sheet .loader i {
		font-size: 18px
	}

	.pest-sheet .pest-sheet-chars,
	.pest-sheet .plant-sheet-chars,
	.plant-sheet .pest-sheet-chars,
	.plant-sheet .plant-sheet-chars {
		-webkit-overflow-scrolling: touch;
		float: none;
		height: 50px;
		margin: 20px 0;
		min-height: auto;
		overflow-x: scroll;
		padding: 10px 0;
		transition: transform .3s ease-in-out, opacity .2s ease-in-out;
		white-space: nowrap;
		width: auto
	}

	.pest-sheet .pest-sheet-chars::-webkit-scrollbar,
	.pest-sheet .pest-sheet-chars::-webkit-scrollbar-thumb,
	.pest-sheet .pest-sheet-chars::-webkit-scrollbar-track,
	.pest-sheet .plant-sheet-chars::-webkit-scrollbar,
	.pest-sheet .plant-sheet-chars::-webkit-scrollbar-thumb,
	.pest-sheet .plant-sheet-chars::-webkit-scrollbar-track,
	.plant-sheet .pest-sheet-chars::-webkit-scrollbar,
	.plant-sheet .pest-sheet-chars::-webkit-scrollbar-thumb,
	.plant-sheet .pest-sheet-chars::-webkit-scrollbar-track,
	.plant-sheet .plant-sheet-chars::-webkit-scrollbar,
	.plant-sheet .plant-sheet-chars::-webkit-scrollbar-thumb,
	.plant-sheet .plant-sheet-chars::-webkit-scrollbar-track {
		opacity: 0
	}

	.pest-sheet .pest-sheet-chars.pest-sheet-chars__staged,
	.pest-sheet .pest-sheet-chars.plant-sheet-chars__staged,
	.pest-sheet .plant-sheet-chars.pest-sheet-chars__staged,
	.pest-sheet .plant-sheet-chars.plant-sheet-chars__staged,
	.plant-sheet .pest-sheet-chars.pest-sheet-chars__staged,
	.plant-sheet .pest-sheet-chars.plant-sheet-chars__staged,
	.plant-sheet .plant-sheet-chars.pest-sheet-chars__staged,
	.plant-sheet .plant-sheet-chars.plant-sheet-chars__staged {
		opacity: 0;
		transform: translateX(25vw)
	}

	.pest-sheet .pest-sheet-chars a,
	.pest-sheet .plant-sheet-chars a,
	.plant-sheet .pest-sheet-chars a,
	.plant-sheet .plant-sheet-chars a {
		display: inline-block;
		font-size: 18px;
		height: 18px;
		margin: 5px;
		padding: 9px;
		width: 18px
	}

	.pest-sheet .pest-sheet-chars a.pest-sheet-char__selected,
	.pest-sheet .pest-sheet-chars a.plant-sheet-char__selected,
	.pest-sheet .plant-sheet-chars a.pest-sheet-char__selected,
	.pest-sheet .plant-sheet-chars a.plant-sheet-char__selected,
	.plant-sheet .pest-sheet-chars a.pest-sheet-char__selected,
	.plant-sheet .pest-sheet-chars a.plant-sheet-char__selected,
	.plant-sheet .plant-sheet-chars a.pest-sheet-char__selected,
	.plant-sheet .plant-sheet-chars a.plant-sheet-char__selected {
		font-size: 24px
	}

	.pest-sheet .pest-sheet-plants,
	.pest-sheet .plant-sheet-plants,
	.plant-sheet .pest-sheet-plants,
	.plant-sheet .plant-sheet-plants {
		float: none;
		min-height: auto;
		width: auto
	}

	.pest-sheet .pest-sheet-plants ul,
	.pest-sheet .plant-sheet-plants ul,
	.plant-sheet .pest-sheet-plants ul,
	.plant-sheet .plant-sheet-plants ul {
		text-align: center
	}

	.pest-sheet .pest-sheet-plants ul li,
	.pest-sheet .plant-sheet-plants ul li,
	.plant-sheet .pest-sheet-plants ul li,
	.plant-sheet .plant-sheet-plants ul li {
		display: inline-block
	}

	.pest-sheet .pest-sheet-plants ul li a,
	.pest-sheet .plant-sheet-plants ul li a,
	.plant-sheet .pest-sheet-plants ul li a,
	.plant-sheet .plant-sheet-plants ul li a {
		font-size: 16px;
		margin-right: 0;
		text-transform: uppercase
	}

	.pest-sheet .pest-sheet-content,
	.pest-sheet .plant-sheet-content,
	.plant-sheet .pest-sheet-content,
	.plant-sheet .plant-sheet-content {
		margin-left: 0;
		margin-top: 20px
	}
}

@media screen and (max-width:750px) {

	.pest-sheet .thumb,
	.plant-sheet .thumb {
		float: none;
		margin: auto
	}

	.pest-sheet h1,
	.plant-sheet h1 {
		float: none;
		font-size: 24px;
		margin: 30px 0 10px;
		max-width: 600px;
		text-align: center
	}

	.pest-sheet .data,
	.plant-sheet .data {
		float: none;
		width: auto
	}

	.pest-sheet .data h5,
	.plant-sheet .data h5 {
		margin-left: calc(50% - 110px);
		width: 100px
	}

	.pest-sheet .data.left h5,
	.plant-sheet .data.left h5 {
		width: 100px
	}

	.pest-sheet .data b,
	.plant-sheet .data b {
		font-size: 24px
	}

	.pest-sheet table.pest-actions__desktop,
	.pest-sheet table.plant-actions__desktop,
	.plant-sheet table.pest-actions__desktop,
	.plant-sheet table.plant-actions__desktop {
		display: none
	}

	.pest-sheet table.pest-actions__mobile,
	.pest-sheet table.plant-actions__mobile,
	.plant-sheet table.pest-actions__mobile,
	.plant-sheet table.plant-actions__mobile {
		display: table;
		margin-top: 30px
	}

	.pest-sheet table.pest-actions__mobile tr th:first-child,
	.pest-sheet table.plant-actions__mobile tr th:first-child,
	.plant-sheet table.pest-actions__mobile tr th:first-child,
	.plant-sheet table.plant-actions__mobile tr th:first-child {
		width: 50px
	}

	.pest-sheet table.pest-actions__mobile tr th,
	.pest-sheet table.plant-actions__mobile tr th,
	.plant-sheet table.pest-actions__mobile tr th,
	.plant-sheet table.plant-actions__mobile tr th {
		font-size: 12px
	}

	.pest-sheet span.download,
	.plant-sheet span.download {
		border-bottom: 1px solid #ddd;
		margin-bottom: 30px;
		padding-bottom: 30px
	}

	section.pest-sheet,
	section.plant-sheet {
		padding-bottom: 0
	}

	section.pest-sheet .pest-articles-left,
	section.pest-sheet .plant-articles-left,
	section.plant-sheet .pest-articles-left,
	section.plant-sheet .plant-articles-left {
		margin-right: 0;
		padding-top: 30px;
		width: auto
	}

	section.pest-sheet .pest-articles-left ul,
	section.pest-sheet .plant-articles-left ul,
	section.plant-sheet .pest-articles-left ul,
	section.plant-sheet .plant-articles-left ul {
		text-align: left
	}

	section.pest-sheet .pest-articles-left ul li.pest-article__selected h4:after,
	section.pest-sheet .pest-articles-left ul li.plant-article__selected h4:after,
	section.pest-sheet .plant-articles-left ul li.pest-article__selected h4:after,
	section.pest-sheet .plant-articles-left ul li.plant-article__selected h4:after,
	section.plant-sheet .pest-articles-left ul li.pest-article__selected h4:after,
	section.plant-sheet .pest-articles-left ul li.plant-article__selected h4:after,
	section.plant-sheet .plant-articles-left ul li.pest-article__selected h4:after,
	section.plant-sheet .plant-articles-left ul li.plant-article__selected h4:after {
		content: "\f0d7";
		display: inline-block;
		margin-left: 8px;
		position: relative;
		right: auto
	}

	section.pest-sheet .pest-articles-left ul li.pest-article__selected p,
	section.pest-sheet .pest-articles-left ul li.plant-article__selected p,
	section.pest-sheet .plant-articles-left ul li.pest-article__selected p,
	section.pest-sheet .plant-articles-left ul li.plant-article__selected p,
	section.plant-sheet .pest-articles-left ul li.pest-article__selected p,
	section.plant-sheet .pest-articles-left ul li.plant-article__selected p,
	section.plant-sheet .plant-articles-left ul li.pest-article__selected p,
	section.plant-sheet .plant-articles-left ul li.plant-article__selected p {
		display: block;
		font-size: 14px;
		letter-spacing: 0;
		margin: 15px 0 30px;
		text-transform: none
	}

	section.pest-sheet .pest-articles-left ul h4,
	section.pest-sheet .plant-articles-left ul h4,
	section.plant-sheet .pest-articles-left ul h4,
	section.plant-sheet .plant-articles-left ul h4 {
		text-align: left
	}

	.pest-sheet .pest-articles-right,
	.plant-sheet .plant-articles-right {
		display: none
	}
}

/* =========================================================
   KÁRTEVŐK LISTA (all-pest)
   ========================================================= */

section.all-pest {
  text-align: center;
}

/* ---------------------------------------------------------
   Pest filter (radio kapcsolók)
   --------------------------------------------------------- */

.pest-filter {
  margin: 10px 0 30px;
  text-align: center;
}

.pest-filter label {
  display: inline-block;
  margin: 0 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-left: 28px;
  cursor: pointer;
}

/* radio input elrejtése */
.pest-filter input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* egyedi radio vizuál */
.pest-filter .checkmark {
  position: absolute;
  left: 0;
  top: 2px;
  height: 16px;
  width: 16px;
  border: 2px solid #ccc;
  border-radius: 50%;
} 

/* aktív */
.pest-filter input:checked ~ .checkmark {
  border-color: #71bb55;
} 

.pest-filter input:checked ~ .checkmark:after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 6px;
  height: 6px;
  background: #71bb55;
  border-radius: 50%;
}

/* ---------------------------------------------------------
   Pest grid lista
   --------------------------------------------------------- */

ul.pests {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}

ul.pests li {
  display: inline-block;
  margin: 30px 20px;
  position: relative;
  text-align: center;
  vertical-align: top;
}

/* ABC betű */
ul.pests li > span {
  display: block;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* Pest kártya */
ul.pests li .pest {
  background: #eee;
  background-size: cover;
  background-position: center;
  border-radius: 40px;
  display: block;
  height: 80px;
  width: 80px;
  position: relative;
}

/* cím */
ul.pests li .pest span {
  font-size: 12px;
  line-height: 16px;
  max-height: 40px;
  overflow: hidden;
  position: absolute;
  top: 86px;
  left: -10px;
  width: calc(100% + 20px);
  text-transform: uppercase;
}

/* hover */
ul.pests li .pest:hover span {
  color: #71bb55;
}

/* =========================================================
   POST GALLERY (Reusable component)
   ========================================================= */

/* =========================================================
   UIkit galéria spacing (ha kell)
   ========================================================= */

section.gallery   { padding-top: 0px !important; }


/* Hidden lightbox links */
.post-gallery .hidden {
  display: none;
}

/* Base tile layout (3:2 ratio) */
.post-gallery a.post-gallery__item,
.post-gallery a.showall {
  position: relative;
  display: block;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

/* Images fill tile */
.post-gallery a.post-gallery__item > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* "További képek" green tile */
.post-gallery a.showall {
  background: #71bb55;
  color: #fff;

  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* If showall ever contains an image, hide it */
.post-gallery a.showall > img {
  display: none;
}

/* Showall label spacing */
.post-gallery a.showall span,
.post-gallery a.showall .post-gallery__more {
  padding: 0 10px;
  line-height: 1.2;
}

.post-gallery a.post-gallery__item,
.post-gallery a.showall {
  border-radius: 5px;
}



/* =========================================================
   KERTALAPÍTÁS – newgarden lista (ikonos)
   ========================================================= */

ul.newgarden {
	list-style: none;
	text-align: center
}

ul.newgarden li {
	background-position: center bottom 65px;
	background-repeat: no-repeat;
	background-size: 80px 80px;
	display: inline-block;
	margin: 80px 80px 30px;
	padding-top: 110px;
	width: 150px
}

ul.newgarden li.bus {
	background-image: url(../img/icon_bus.svg)
}

ul.newgarden li.lock {
	background-image: url(../img/icon_lock.svg)
}

ul.newgarden li.water {
	background-image: url(../img/icon_water.svg)
}



/* =========================================================
   KERTALAPÍTÁS – infographics visual blokk
   ========================================================= */

section.infographics-visual {
	background: url(../img/infographics.jpg) 50%;
	height: 1530px;
	padding: 0
}

section.infographics {
	padding: 90px 0 140px
}

ol.steps {
	margin: auto;
	max-width: 780px;
	width: 90%
}

ol.steps li {
	color: #71bb55;
	font-size: 40px;
	font-weight: 700;
	margin-bottom: 40px;
	margin-left: 40px;
	text-align: left
}

ol.steps li h4 {
	color: #333;
	font-size: 24px;
	margin-bottom: 24px;
	text-align: left;
	text-transform: uppercase;
}

ol.steps li p {
	color: #333;
	font-size: 16px;
	font-weight: 400;
	margin-left: -40px
}


