/* ------------------------------------'Noto Sans'
 * 
 * Filename: default.css
 * Description: main css file
 * Copyright: 2021 Farmlovers
 * Author: Dardana
 *
------------------------------------ */
body { 
	background: #dbd9d4;
	color: black;
	font: 400 100%/1.7 'Noto Sans', Trebuchet MS, sans-serif;
}

h1,
h2,
h3,
h4 { 
	color: inherit;
	font-family: 'Quicksand', Trebuchet MS, sans-serif;
	font-weight: 700;
	line-height: 1.3;
	padding: 0;
} 

h1 { font-size: 2.0rem; }
h2 { font-size: 1.7rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.1rem; }

h1 a { 
    font-size: inherit;
    text-decoration: underline;
}

a { 
	color: #056c00;
	font-family: 'Noto Sans', Trebuchet MS, sans-serif;
    font-size: inherit;
	text-decoration: none;
	-webkit-transition: 100ms linear;
	transition: 		100ms linear;
}

strong a {
    font-weight: bold;
}

a.a-style-1 {
    text-decoration: underline;
}

p { padding-bottom: 1rem; }

header,
footer,
#content_body,
#heading,
#main_content {
    display: inline-block;
    width: 100%;
}

#main_content {
    padding-bottom: 1rem;
    padding-top: 1rem;
}

strong {
    font-size: inherit;
}

picture img {
    width: 100%;
}

@media only screen and (max-width: 768px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.3rem; }
    h4 { font-size: 1.0rem; }
}


/* ------------------------------------
 * 
 * buttons
 *
------------------------------------ */

.btn {
    align-items: center;
	background: #53ad4b;
	border: none;
	border-radius: 2rem;
	color: white;
	cursor: pointer;
	display: inline-flex;
	font: 700 1rem/normal 'Quicksand', Verdana, sans-serif;
	height: 3.4rem;
    justify-content: center;
	outline: none;
	padding: 0 1.5rem;
	position: relative;
	text-transform: uppercase;
    -moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
    vertical-align: middle;
}

.btn:before {
	color: currentColor;
}

.btn.round {
    border-radius: 50%;
    width: 3.4rem;
}

.btn.round i {
    font-size: 1.4rem;
}

.btn.small {
    font-size: .9rem;
    height: 2.3rem;
    padding: 0 1rem;
}

.btn.big {
    font-size: 1.1rem;
    height: 3.8rem;
}

.btn.negative {
    background: transparent !important;
    box-shadow: inset 0 0 0 2px #fff !important;
    color: white !important;
}

.btn.negative:hover {
    background: white !important;
    color: black !important;
}

.btn.negative:hover:before {
    color: black !important;
}

@media only screen and (max-width: 400px) {
    .btn { /* wide on mobile */
        width: 100%;
    }
}

/* --- button colors --- */

.btn.orange { 
	background: #ff6700; 
    color: white;
}

.btn.light-grey {
    background: #aaa;
}

.btn.grey {
    background: #969696;
}

.btn.black {
    background: black;
    color: white;
}

.btn.white {
    background: white;
    box-shadow: inset #296224;
    color: black;
}

/* --- button behaviours --- */
.btn.closed {
    padding-right: 2.5rem;
}

.btn.closed::after {
    content: '\f103';
	font-family: 'FontAwesome';
	font-size: 1.2rem;
	height: 100%;
	line-height: 2.7rem;
    opacity: .7;
	position: absolute;
	right: 1.1rem;
	text-align: center;
	top: 0;
}

.btn.open {
    background: black;
    color: white;
}

.btn.open::before {
    content: '\f068' !important;
}


@media screen and (max-width: 868px) {
    .btn.narrow {
        width: auto;
    }
    .btn.style-3 {
        background: #282828;
    }
}



/* --- button 1 - with icon to the right --- */

.btn-1 { 
	padding-right: 3.4rem !important;
}

.btn-1:before {
    align-items: center;
    content: '\f090';
	display: inline-flex;
	font-family: 'FontAwesome';
	font-size: 1.3rem;
	height: 100%;
    justify-content: center;
    opacity: .7;
	position: absolute;
	right: 1.4rem;
	top: 0;
    vertical-align: middle;
	width: 1rem;
}

.btn-1.login::before { content: '\f090'; }
.btn-1.envelope::before { content: '\f003'; }
.btn-1.edit::before { content: '\f040'; }
.btn-1.delete::before { content: '\f014'; }
.btn-1.add::before { content: '\f067'; }
.btn-1.filter::before { content: '\f0b0'; }
.btn-1.search::before { content: '\f002'; }
.btn-1.reset::before { content: '\f00d'; }
.btn-1.view::before { content: '\f00e'; }
.btn-1.branches::before { content: '\f0ac'; }
.btn-1.certificates::before { content: '\f0a3'; }
.btn-1.more::before { content: '\f061'; }
.btn-1.next::before { content: '\f054'; }
.btn-1.article::before { content: '\f0a1'; }
.btn-1.save::before { content: '\f0c7'; }
.btn-1.boost::before { content: '\f135'; }
.btn-1.payment::before { content: '\f09d'; }
.btn-1.shoppingcart::before { content: '\f07a'; }
.btn-1.circle::before { content: '\f192'; }
.btn-1.tags::before { content: '\f02c'; }
.btn-1.offer::before { content: '\f12b'; font-family: 'Flaticon'; }
.btn-1.apple::before { content: '\f12b'; font-family: 'Flaticon'; }
.btn-1.shoppingbag::before { content: '\f112'; font-family: 'Flaticon'; }
.btn-1.sun::before { content: '\f12d'; font-family: 'Flaticon'; }


.btn-1.style-1 { /* transparent bg, positive */
    background: transparent;
    box-shadow: inset 0 0 0 2px #111;
    color: black;
    font-weight: 600;
}

.btn-1.style-1:hover i {
    color: black;
    opacity: 1;
}

@media (prefers-color-scheme: dark) {
    .btn-1.style-1 { 
        border-color: #484848 !important;
    }
}


/* --- button 2 - bigger, with icon to the left --- */
.btn-2 { 
    height: 4.2rem;
    font-size: 1.1rem;
    padding-left: 5.2rem !important;
}

.btn-2:before {
    content: '\f090';
    font-family: 'FontAwesome';
    font-size: 2.6rem;
    height: 100%;
    line-height: 4rem;
    opacity: .8;
    position: absolute;
    left: 1.6rem;
    text-align: center;
    top: 0;
    width: 1rem;
}

.btn-2.style-1 { /* small */
    font-size: 1rem;
    height: 3.4rem;
    padding-left: 3.3rem !important;
}

.btn-2.style-1:before {
	left: 1.2rem;
    line-height: 3.1rem;
    font-size: 1.5rem;
}

.btn-2.back::before { content: '\f112'; }
.btn-2.farmer::before { content: '\f116'; font-family: 'Flaticon'; }
.btn-2.tractor::before { content: '\f115'; font-family: 'Flaticon'; }
.btn-2.user::before { content: '\f007'; }


/* --- btn 3 - favorites --- */
.btn-3 {
	display: inline-block;
    height: 3rem;
	position: relative;
	width: 3rem;
}

.btn-3:after {
	content: '\f006';
	font-family: FontAwesome;
	font-size: 3rem;
	left: 0;
    line-height: 3.2rem;
	opacity: 0.9;
	position: absolute;
    text-align: center;
	top: 0;
    width: 100%;
}

.btn-3.added:after {
	content: '\f005';
	color: #b2c73d;
	opacity: 1;
}

.btn-3:hover {
    color: white;
}

/* --- button 5 - plain link look with an arrow --- */

.btn-5 {
	background: none;
    border: none;
    box-shadow: none;
	color: black;
    display: inline-block;
    font-family: 'Quicksand', Trebuchet MS, sans-serif;
	font-size: 1rem;
	font-weight: 600;
	height: auto;
	padding: 0;
	position: relative;
    text-align: right;
    text-transform: uppercase;
    width: 100%;
}

.btn-5:hover {
    background: unset !important;
    color: black !important;
	text-decoration: underline;
}

.btn-5:after {
	content: '\f178';
	font-family: 'FontAwesome';
	font-size: 0.8rem;
	padding-left: 5px;
	opacity: 0.6;
}

.btn-5:hover:after {
	color: #444;
	opacity: 1;
}

/* --- button 6 - x for closing popup --- */

.btn-6 {
	background: none;
    box-shadow: none;
	color: black;
	padding: 0 !important;
	position: relative;
    width: auto !important;
}

.btn-6:hover {
    background: unset !important;
    color: black !important;
	text-decoration: underline;
}

.btn-6:after {
	content: '\f00d';
	font-family: 'FontAwesome';
	font-size: 2.2rem;

}


/* ------------------------------------
 *
 * pictures
 *
------------------------------------ */

.pix {
    display: inline-block;
    height: 100%;
    overflow: hidden;
    width: 100%;
}

.pix img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}


/* ------------------------------------
 * 
 * titles
 *
------------------------------------ */

.title-1 a {
    color: rgba(0, 0, 0, .5);
    display: block;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
}

.title-2 { /* sections title @ forms */
    align-items: center;
    background: #7d7470;
    color: white;
    display: flex;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.3rem;
    padding: .7rem 1rem;
    text-transform: uppercase;
}

.title-2 i { 
    color: white;
    font-size: 1.8rem;
	margin-right: 1rem;
    opacity: .8;
}

.title-3 { /* sections title */
	border-bottom: 1px solid #dbdbdb;
    color: #050505;
	width: 100%;
}


.title-3 span {
	border-bottom: 3px solid #dbdbdb;
	display: inline-block;
    font-family: 'Quicksand', Trebuchet MS, sans-serif;
	font-size: 1rem;
	font-weight: 800;
	padding-bottom: .6rem;
	text-transform: uppercase;
}

.title-4 { /* in the right col on farm details */
    color: #444;
	font-size: 1.4rem;
	font-weight: 700;
    line-height: 1.5em;
	text-transform: uppercase;
}

.title-4.style-1 {
    font-size: 1.2rem;
    opacity: .5;
    padding-left: 3px;
}

.title-4.style-2 {
    font-size: 1rem;
}

.title-4.style-3 { /* marketplace subtitles */
    text-transform: capitalize;
}

.title-5 { /* new hoempage  */
    color: #3f3e3b;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
}

.title-5 span { /* new hoempage  */
    color: #056c00;
}

.title-5.style-1  { /* new hoempage  */
    text-transform: unset;
}

.title-6 { /* landing page  */
    font-size: 1.9rem;
    font-weight: 700;
    text-transform: uppercase;
    width: 100%;
}

/*
.title-6 span { 
    color: #e88205;
}
*/

@media screen and (max-width: 868px) {
    .title-5 { /* new hoempage  */
        text-align: center;
    }
}


/* ------------------------------------
 * 
 * elements
 *
------------------------------------ */

/* --- element-1 - close button --- */

.element-1 {
	display: block;
	cursor: pointer;
	height: 3rem;
    position: relative;
	width: 3rem;
    z-index: 50;
}

.element-1:before,
.element-1:after {
	background: black;
	content: '';
	height: 4px;
	left: 7%;
	position: absolute;
	top: 46%;
	-webkit-transition: 0.15s ease-out;
	transition: 		0.15s ease-out;
	-ms-transform: 		rotate(45deg);
	-webkit-transform: 	rotate(45deg);
	transform: 			rotate(45deg);
	width: 90%;
}

.element-1:before { 
	-ms-transform: 		rotate(45deg);
	-webkit-transform: 	rotate(45deg);
	transform: 			rotate(45deg);
}

.element-1:after {
	-ms-transform: 		rotate(-45deg);
	-webkit-transform: 	rotate(-45deg);
	transform: 			rotate(-45deg);
}

.element-1:hover:before { 
	-ms-transform: 		rotate(135deg);
	-webkit-transform: 	rotate(135deg);
	transform: 			rotate(135deg);
}

.element-1:hover:after {
	-ms-transform: 		rotate(45deg);
	-webkit-transform: 	rotate(45deg);
	transform: 			rotate(45deg);
}

/* --- element-2 - toggle switch --- */

.element-2 {
	margin-left: -9999px;
	position: absolute;
	visibility: hidden;
}
.element-2 + label {
	cursor: pointer;
	display: block;
	outline: none;
	position: relative;
	-moz-user-select: 		none;
	-ms-user-select: 		none;
	-webkit-user-select: 	none;
	user-select: 			none;
}

input.element-2-round + label {
	background-color: #DCDDE0;
	border-radius: 60px;
	height: 40px;
	padding: 2px;
	top: 1px;
	width: 80px;
}

input.element-2-round + label:before, 
input.element-2-round + label:after {
	bottom: 1px;
	content: "";
	display: block;
	left: 1px;
	position: absolute;
	top: 1px;
}

input.element-2-round + label:before {
	border-radius: 			60px;
	background-color: #DCDDE0;
	right: 1px;
	-webkit-transition: background 0.4s;
	transition: 		background 0.4s;
}

input.element-2-round + label:after {
	background-color: #fff;
	border-radius: 50%;
	-webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 	0 2px 5px rgba(0, 0, 0, 0.3);
	box-shadow: 		0 2px 5px rgba(0, 0, 0, 0.3);
	-webkit-transition: margin 0.4s;
	transition: 		margin 0.4s;
	width: 40px;
}

input.element-2-round:checked + label:before {
	background-color: #D96704;
}

input.element-2-round:checked + label:after {
	margin-left: 38px;
}

@media screen and (max-width: 868px) {
	input.element-2-round + label {
		-webkit-transform: 	scale(0.8);
		-ms-transform: 		scale(0.8);
		transform: 			scale(0.8);
	}
}

/* --- element 3 - supplier logo image --- */
.element-3 {
    background: white;
    box-shadow: 0px 0px 0px 5px white, 0px 0px 1px 5px #888;
    border-radius: 50%;
    height: 6rem;
    overflow: hidden;
    position: relative;
    width: 6rem;
}

@media screen and (max-width: 868px) {
    .element-3 {
        height: 5rem;
        width: 5rem;
    }
}


/* --- element 4 - multi-button / add different content --- */
.element-4 {
    position: relative;
}

.element-4 #add_content {
    display: block;
}

.element-4 ul {
    display: none;
    left: 0;
    position: absolute;
    top: 100%;
    visibility: hidden;
    z-index: 999;
}

.element-4.style-1 {
    right: 1rem;
}

.element-4.style-1 ul {
    left: unset;
    right: 0;
}

.element-4 li {
    padding-top: .5rem;
    text-align: right;
}    

.element-4 li a {
    box-shadow: 0 0 2px 2px rgb(0 0 0 / 20%);
}

/* --- element 6 - filter button more --- */
.element-6 {
    color: #ffffff;
    font-family: 'Quicksand', Trebuchet MS, sans-serif;
    font-weight: 700;
    opacity: .9;
}

/* --- element 7 - creative commons (CC) image attribution --- */
.element-7 * {
    font-size: .85rem;
}

.element-7 span {
    font-style: italic;
}

/* --- element 8 - teaser box in text --- */
.element-8 {
    border: 3px solid #e88005;
    border-radius: 0.5rem;
    margin-top: 1rem;
    padding: 1rem 1rem 1rem 6.2rem;
    position: relative;
    width: 100%;
}

.element-8:before {
    bottom: 3.1rem;
    color: #a6a6a4;
    content: '\f116';
    font-family: 'Flaticon';
    font-size: 4.5rem;
    left: 11px;
    line-height: 1rem;
    position: absolute;
}

/* --- element 9 - box inactive --- */
.element-9 {
    background: red;
    color: white;
    display: inline-block;
    padding: 0.5rem 1rem;
}


/* --- element 10 - login / profile icon in header --- */
.element-10 {
    height: 2.9rem;
    position: relative;
    width: 3.0rem;
}

.element-10 > a {
    border: 3px solid black;
    border-radius: 50%;
    color: black;
    display: inline-block;
    height: 100%;
    overflow: hidden;
    position: relative;
    text-align: center;
    width: 100%;
}

.element-10 > a::after {
    content: '\f090';
    color: #333;
    font-family: 'FontAwesome';
    font-size: 1.4rem;
    line-height: 2.4rem;
    height: 100%;
    left: -2px;
    position: absolute;
    top: 3px;
    width: 100%;
    z-index: 10;
}

.element-10 > a .pix { /* user icon and menu in header */
    position: relative;
    height: 100%;
    width: 100%;
    z-index: 20;
}

.element-10 .el-10-message { /* user icon and menu in header */
    right: 42%;
    position: absolute;
    top: 15%;
    z-index: 20;
}

    .element-10.style-1 > a { /*  logged in */
        border-radius: 50%;
    }

    .element-10.style-1 > a::after {
        left: 0;
        top: 1px;
        content: '\f007';
        font-size: 1.4rem;
    }

    .element-10.style-2 > a::after {
        content: '\f003';
        font-size: 1.4rem;
    }


/* --- element 11 - divider --- */
.element-11 {
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
    width: 100%;
}

.element-11 > div {
    background: #bbb;
    height: 3px;
    margin: 0 1rem;
}

.element-11.style-1 {
    margin-bottom: 3rem;
    margin-top: 3rem;
}

.element-11.style-1 > div {
    margin: 0;
}

.element-11.style-2 {
    margin: 0;
}

/* --- element 12 - mobile menu icon --- */
.element-12 {
    height: 3rem;
    display: none;
    position: relative;
    width: 3rem;
}

.element-12:after {
    color: black;
    content: '\f0c9';
    font-family: FontAwesome;
    font-size: 2.2rem;
    left: 0;
    line-height: 2.9rem;
    position: absolute;
    text-align: center;
    top: 3px;
    width: 100%;
}

@media screen and (max-width: 868px) {
	.element-12 {
		display: inline-block;
	}
}


/* --- element 13 - hand icon emphasising link --- */
.element-13 {
    position: relative;
}

.element-13:after {
    color: #ffffff;
    content: '\f25a';
    font-family: FontAwesome;
    font-size: 1.6rem;
    position: absolute;
    right: -26px;
    bottom: -8px;
}

/* --- element 14 - bigger green icon --- */
.element-14 {
    color: #53ad4b; 
    font-size: 2rem !important;
}
.element-14.style-1 {
    color: #ff7d25;
}


/* --- element 15 - no image profile --- */
.element-15 {
    background: #edecea;
    display: inline-block;
    height: 100%;
    position: relative;
    width: 100%;
}

.element-15:before {
    color: #b3b2af;
    content: '\f121';
    font-family: 'Flaticon';
    font-size: 1.8rem;
    left: 0;
    line-height: 2.8rem;
    position: absolute;
    top: 0;
    text-align: center;
    width: 100%;
}

/* --- certificate icon  --- */
.element-16 {  
    display: inline-block;
    height: 0.6rem;
    position: relative;
    width: 4.2rem;
}

.element-16::before,
.element-16::after {
    align-items: center;
    display: flex;
    font-family: FontAwesome;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    vertical-align: middle;
}

.element-16::before {
    content: '\f0a3'; /* certificate */
    color: #3ac355;
    font-size: 2.6rem;
    box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.15);
}

.element-16::after {
    content: '\f00c'; /* checkmark */
    color: white;
    font-size: 1.2rem;
}

.element-16.style-1 {  /* supplier details  */
    height: 0.8rem;
}

/* --- new message symbol  --- */
.element-17 { 
    background: #3de62e;
    box-shadow: 0px 2px 1px 0px #999;
    border-radius: 50%;
    content: '';
    height: 17px;
    left: 0;
    position: absolute;
    top: 0;
    width: 17px;
}

.element-17.style-1 { 
    background: #ff6902;
    box-shadow: 0px 1px 1px 0px #999;
    height: 13px;
    width: 13px;
}

/* --- input radio 3 - pricelist items --- */
.element-priceitem > div {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: -o-radial-gradient(55% 15%, ellipse, #ffce9e 0%, #ff9651 44%, #ff6700 100%);
    background: radial-gradient(ellipse at 55% 15%, #ffce9e 0%, #ff9651 44%, #ff6700 100%);
    border-radius: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
    font-size: 110%;
    height: 17rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 1rem;
    padding: 1rem;
    position: relative;
    width: 18rem;
}

.element-priceitem > div > div:last-child {
    text-align: center;
}

.element-priceitem > div > div:last-child > div:not(:first-child)  {
    margin-top: .7rem;
}

.element-priceitem .el-off {
    display: none; /* not needed atm */
    right: 0;
    position: absolute;
    font-size: 1rem;
    font-weight: 700;
    top: 0;
    z-index: 10;
}

.element-priceitem .el-off::before {
    bottom: 0;
    color: green;
    content: '\f0a3';
    font-family: FontAwesome;
    font-size: 4rem;
    left: -10px;
    position: absolute;
    right: 0;
    top: 2px;
    z-index: -10;
}

.element-priceitem > div .el-value {
    background-color: rgba(255, 255, 255, .5);
    border-radius: 1rem;
    font-size: 2.1rem;
    font-weight: 700;
    padding: 10px 0 13px;
}

.element-priceitem .el-value > span:first-child {  
    display: block;
    font-size: 1.5rem;
    margin-bottom: 0;
    text-decoration: line-through;
}

.element-priceitem > div .el-check {
    background: white;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    display: inline-block;
    height: 3rem;
    position: relative;
    width: 3rem;
    z-index: 10;
}

.element-priceitem input:empty + label .el-check::after {
    background: transparent;
    bottom: 0;
    color: green;
    content: '';
    display: inline-block;
    font-family: FontAwesome;
    font-size: 2.4rem;
    left: 0;
    position: absolute;
    right: 0;
    text-align: center;
    top: 1px;
    z-index: 20;
}

.element-priceitem input:checked + label .el-check::after {
    content: '\f00c'; /* Unicode for FontAwesome checkmark */
}

@media (prefers-color-scheme: dark) {
    .element-priceitem > div {  
        background: -o-radial-gradient(55% 15%, ellipse, #f7b074 0%, #ff7119 56%, #ff5d00 99%);
        background: radial-gradient(ellipse at 55% 15%, #f7b074 0%, #ff7119 56%, #ff5d00 99%);
    }
}


/* --- star rating input --- */
.rating { 
    font-size: 30px;
}
.rating .starInput {
    cursor: pointer;
    color: gray;
}
.rating .starInput.filled {
    color: gold;
}

/* --- element 17 - star rating display --- */
.stars {
    display: inline-block;
    font-size: 1.5rem;
}
.star {
    display: inline-block;
    position: relative;
    font-family: FontAwesome;
    width: 1.6rem;
}
.star::before {
    bottom: 0;
    position: absolute;
    content: '\f005'; /* Default content for a full star */
    color: gold; /* Default color for a full star */
    left: 0;
}
.star.half-full::before {
    content: '\f123'; /* Content for a half-full star */
}
.star.empty::before {
    content: '\f006'; /* Content for an empty star */
}


/* --- element like --- */
._e-like {
	display: inline-block;
	position: relative;
}

._e-like.added,
._e-like.added i {
    color: #ff6700 !important;
    /* color: #079400 !important; */
}

._e-like [id^="like-message-"] {
    background: #ff6700;
    border-radius: .5rem;
    box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.17);
	color: #fff;
    display: none;
    font-size: 0.9rem;
    left: 3rem;
    padding: .7rem;
    position: absolute;
    top: -4rem;
    visibility: hidden;
    width: 9rem;
    z-index: 50;
}

._e-like [id^="like-message-"].show {
	display: block;
	visibility: visible;
}

/* --- element counter --- */
.e-counter {
    display: inline-block;
    font-family: monospace;
    font-size: inherit;

}


/* --- element banner - bigger green icon --- */
.el-banner {
    border-radius: 1rem;
    box-shadow: 0 0 1rem 0 rgb(box-shadow0 0 0 / 15%);
    overflow: hidden;
    min-height: 18rem;
    position: relative;
}

.el-banner .el-image {
    display: inline-block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.el-banner .el-image picture,
.el-banner .el-image img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.el-banner .el-content {
    /* background: linear-gradient(to bottom,  rgba(0,0,0,0.1) 0%,rgba(0,0,0,0.45) 23%,rgba(0,0,0,0.65) 100%); */
    bottom: 0;
    color: white;
    font: 500 1rem / 1.4rem 'Quicksand', Verdana, sans-serif;
    left: 0;
    padding: 1rem 1rem 2rem 1rem;
    position: absolute;
    width: 100%;
    z-index: 20;
}

.el-banner .el-content span {
    background: rgba(0, 0, 0, .8);
    display: inline;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 2.1rem;
}

@media only screen and (min-width: 1200px) {
    .el-banner {
        min-height: 22rem;
    }
}


/* --- element status --- */
.el-status {
    background: red;
    color: white;
    content: '';
    display: inline-block;
    right: 1rem;
    padding: .5rem 1rem;
    position: absolute;
    top: 1rem;
    z-index: 30;
}

/* --- element 2 buttons holder --- */
.element-2-buttons {
  display: flex;
  gap: 5px;
}

.element-2-buttons > div {
    flex-shrink: 0;
    order: 0;
}

.element-2-buttons > div:first-child,
.element-2-buttons > button:first-child {
    margin-right: 1rem;
}

@media only screen and (max-width: 868px) {
    .element-2-buttons {
        justify-content: flex-end;
    }
    .element-2-buttons > div:first-child,
    .element-2-buttons > button:first-child {
        order: 1;
    }
}




/* elements end */

/* ------------------------------------
 * 
 * components
 *
------------------------------------ */

/* --- component connection - button #compconnection --- */
.comp-connection {
	color: black;
	cursor: pointer;
	display: inline-block;
	font: 500 1.1rem/1.2rem 'Noto Sans', Trebuchet MS, sans-serif;
	outline: none;
	padding: 0 0 0 1.4rem !important;
	position: relative;
	text-align:center;
	-webkit-font-smoothing: antialiased;
}

.comp-connection:before { /* icon */
    content: '\f090';
    font-family: 'FontAwesome';
    left: 0;
    position: absolute;
    text-align: center;
    top: px;
}

.comp-connection.added:before {
	color: #ff6700;
}

.comp-connection [id^="connection-message-"] {
    background: #ff6700;
    border-radius: .5rem;
    box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.17);
	color: #fff;
    display: none;
    font-size: 0.9rem;
    line-height: 1.5rem;
    padding: 6px 12px;
    position: absolute;
    right: -8rem;
    top: -3rem;
    visibility: hidden;
    white-space: nowrap;
    z-index: 50;
}

.comp-connection [id^="connection-message-"].show {
	display: block;
	visibility: visible;
}

.comp-connection.added i {
    color: #ff6700 !important;
}

.comp-connection.type-2 {
	background: rgba(255, 255, 255, .1);
	border: 2px solid #fff;
	border-radius: 2rem;
    box-shadow: 0 1px 2px 1px rgb(0 0 0 / 0.2);
	color: white;
	font: 700 1rem/3.1rem 'Quicksand', Verdana, sans-serif;
	height: 3.4rem;
	padding: 0 1.7rem 0 3.2rem !important;
	text-transform: uppercase;
}

.comp-connection.type-2:before {
    content: '\f090';
    font-size: 1.3rem;
    height: 100%;
    left: 1.4rem;
    line-height: 2.7rem;
    top: 3px;
    width: 1rem;
}

.comp-connection.type-2.added {
	background: #ff6700;
    border: 2px solid #ff6700;
    color: white;
}

.comp-connection.type-2.added:before {
	color: #fff;
}

.comp-connection.type-1::before { content: '\f08a'; } /* heart for like */
.comp-connection.type-2::before { content: '\f006'; } /* star for  join */
.comp-connection.type-3::before { content: '\f196'; } /* plus for connect */
.comp-connection.type-1.added::before { content: '\f004'; } /* heart for like */
.comp-connection.type-2.added::before { content: '\f005'; } /* star for  join */
.comp-connection.type-3.added::before { content: '\f0fe'; } /* plus for connect */



/* ------------------------------------
 * 
 * uploader
 *
------------------------------------ */

.component-uploader .innersec {
	border: 2px dotted #dcdcdc;
	height: 11.2em;
	overflow: hidden;
	padding: 0.7em 1em;
	position: relative;
}

.component-uploader .mask {
	background: #fff;
	color: #dedede;
	cursor: pointer;
	display: inline-block;
	font-size: 10em;
	font-weight: 400;
	line-height: 0.9em;
	text-align: center;
	width: 100%;
}

.component-uploader .mask:hover {
	color: #bdbdbd;
}

.component-uploader .insert {
	background: #fff;
	display: inline-block;
	left: 0;
	padding: 0 1em;
	position: absolute;
	top: 1.5em;
}

.component-uploader input[type='file'] {
	margin: 0.4em 0 1em;
	width: 100%;
}

.component-uploader .links{
	padding: 0.6em 0;
	text-align: center;
}

.component-uploader .input-file {
	height: 3.4em;
	width: 100%;
}

.component-uploader .input-file a {
	display: block;
}

/* ------------------------------------
 * 
 * lists
 *
------------------------------------ */

/* --- list 1 - top list (ordered) --- */

.list-1 ol {
    counter-reset: top-list;
}

.list-1 ol li {
    padding: 0 0 0 3rem;
    counter-increment: top-list;
    position: relative;
}

.list-1 ol li::before {
    background: #eee;
    border-radius: 50%;
    content: counter(top-list);
    color: #ff6700;
    font-size: 1.2rem;
    font-weight: bold;
    height: 2rem;
    left: 0;
    line-height: 1.9rem;
    position: absolute;
    text-align: center;
    top: 5px;
    width: 2rem;
}

.list-1 ol li a {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #333;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 2.6rem;
    line-height: 1.4rem;
    text-align: left;
    width: 100%;
}


/* --- list 2 - entity cards - smallest --- */
.list-2 li a {
    border-radius: 1rem;
    background-color: white;
    box-shadow: 0 0 1rem 0 rgb(0 0 0 / 15%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: black;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.list-2 li a > div:last-child {
    padding: 1rem;
    height: 100%;
}

.list-2 li .image {
    height: 11rem;
    width: 11rem;
}

.list-2 li a .title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5rem;
}

.list-2 li .body {
    padding-top: 1rem;
}

.list-2 li .body > div {
    font-size: .9rem;
    line-height: 1.4rem;
    margin-bottom: .5rem;
    max-height: 2.7rem;
    overflow: hidden;
    padding: 0 0 0 1.5rem;
    position: relative;
}

.list-2 li .body > div:last-child {
    margin-bottom: 0;
}

.list-2 li .body > div i {
    color: #777;
    left: 1px;
    position: absolute;
    top: 4px;
}



/* --- list 3 - block image list with title on top --- */
.list-3 li a {
    border-radius: .5rem;
    box-shadow: 0 0 1rem 0 rgb(0 0 0 / 15%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 16rem;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.list-3 li a > div:first-child {
    display: inline-block;
    height: 100%;
    width: 100%;
}

.list-3 li a > div:first-child::after {
    background: -moz-linear-gradient(top,  rgba(0,0,0,0.01) 0%, rgba(0,0,0,0.3) 76%, rgba(0,0,0,0.65) 100%);
    background: -webkit-linear-gradient(top,  rgba(0,0,0,0.01) 0%,rgba(0,0,0,0.3) 76%,rgba(0,0,0,0.65) 100%);
    background: linear-gradient(to bottom,  rgba(0,0,0,0.01) 0%,rgba(0,0,0,0.3) 76%,rgba(0,0,0,0.65) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#14000000', endColorstr='#a6000000',GradientType=0 );
    content: '';
    height: 100%;
    display: inline-block;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
}

.list-3 li a > div:last-child {
    bottom: 0;
    display: inline-block;
    left: 0;
    padding: 1rem;
    position: absolute;
    width: 100%;
    z-index: 20;
}

.list-3 li a .title {
    color: white; 
    font-size: 1.2rem;
    font-weight: 700;
}

    .list-3.style-1 li a {
        height: 10rem;
    }

    .list-3.style-3 li a { /* list without photos, only hyperlinks */
        box-shadow: unset;
        height: auto !important;
    }

    .list-3.style-3 li a:before {
        color: #ff8f00;
        content: '\f138';
        font-family: FontAwesome;
        font-size: 1.2rem;
        left: 0;
        position: absolute;
        top: 0;
    }

    .list-3.style-3 li a > div:first-child::after { 
        content: none;
    }

    .list-3.style-3 li a > div:first-child {
        display: none;
    }

    .list-3.style-3 li a > div:last-child {
        padding: 0 0 0 2rem;
        position: unset;
    }

    .list-3.style-3 li a .title {
        color: black; 
        font-weight: 400;
    }

@media only screen and (min-width: 1920px) {
    .list-3.style-1 {
        margin: 0;
    }

    .list-3 li a {
        height: 14rem;
    }
    
    .list-3.style-1 li a {
        height: 12rem;
    }

    .list-3.style-2 li a {
        height: 8rem;
    }
}

@media only screen and (max-width: 868px) {
    .list-3 li a {
        height: 18rem;
    }

    .list-3.style-1 {
        background: unset;
    }
}

/* --- list 4 - benefits on homepage + structure-7 --- */

.list-4 li {
    line-height: 2.7rem;
	padding: 0 0 .6rem 3.7rem;
	position: relative;
	width: 100%;
}

.list-4 li:last-child {
	padding-bottom: 0;
}
	
.list-4 i {
    border-radius: 1rem;
    color: #fff;
    height: 2.8rem;
	left: 0;
    line-height: 3rem;
    position: absolute;
	text-align: center;
    top: 0;
	width: 2.8rem;
}
	
.list-4 li > div { 
	display: inline-block;
    font-size: 1.2rem;
}

.list-4 > li:nth-child(1) i { background: #b2c73d; }
.list-4 > li:nth-child(2) i { background: #e2b017; }
.list-4 > li:nth-child(3) i { background: #c79a0e; }
.list-4 > li:nth-child(4) i { background: #af8400; }

.list-4 > li:hover i {
	opacity: 0.7;
}

.list-4 li:hover > div {
	font-weight: 400;
}

/* --- list 5 - questions and answers --- */

.list-5 {
    border-bottom: 1px dotted #aaa;
    padding: 0;
}

.list-5 li {
    border-top: 1px dotted #aaa;
	margin: 0;
	padding: .3rem 0;
	position: relative;
}

.list-5 > li > div:first-child {
	left: 0;
	line-height: 1.1rem;
	overflow: hidden;
	position: absolute;
	top: 8px;
}

.list-5 > li > div:last-child {
	padding-left: 10rem;
}

.list-5.style-2 > li  {
	left: 0;
}

.list-5.style-3 li > div:first-child {
	color: #999;
	padding-left: 1.2rem;
}

.list-5.style-3 li > div:first-child i {
	left: 0;
    opacity: .8;
	position: absolute;
	top: 0;
}


/* --- list 6 - 5 ways to success --- */
.list-6 {
    counter-reset: top-list;
}

.list-6 li {
    counter-increment: top-list;
    color: #000;
    font-size: 1.2rem;
    line-height: 1.9rem;
    padding: 1rem 0 1rem 5rem;
    position: relative;
    text-align: left;
    width: 100%;
}

.list-6 li::before {
    background: #ff6700;
    border-radius: 50%;
    content: counter(top-list);
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    height: 3rem;
    left: 1rem;
    line-height: 2.9rem;
    position: absolute;
    text-align: center;
    top: 1rem;
    width: 3rem;
}

    .list-6.style-1 li {
        font-size: 1rem;
        line-height: 1.6rem;
        padding: 0 0 1.3rem 4rem;
    }

    .list-6.style-1 li::before {
        background: #c7c4c2;
        height: 2.2rem;
        line-height: 2.2rem;
        top: .1rem;
        width: 2.2rem;
    }


/* --- list 7 - FAQ --- */

.list-7 > li > div {
    font-size: 1.1rem;
    line-height: 2rem;
    padding-bottom: 1rem;
}

.list-7 > li > div:first-child {
    font-weight: 700;
}

/* --- list 8 - unordered list with bullets --- */
.list-8 li {
    padding-left: 3rem;
    position: relative;
}

.list-8 li:before {
    color: #5dbd7a;
    content: '\f004';
    font-family: FontAwesome;
    left: 1rem;
    position: absolute;
    top: 0;
}

/* --- list 9 - buttons on homepage --- */
.list-9 li {
    display: inline-block;
    padding: .5rem;
}

/* --- list 10 - links in footer --- */
.list-10 li {
    padding-bottom: 1rem;
}

/* --- list 11 - social network icons --- */
.list-11 li i {
    font-size: 1.8rem;
}

/* --- list 12 - urls comma separated --- */
.list-12 {
    display: inline-block;
    width: 100%;
}

.list-12 li  {
    display: inline-block;
    padding-right: .5rem;
}

.list-12 li::after {
    content: ',';
}

.list-12 li:last-child::after {
    content: none;
}

.list-12 li a {
    color: #056c00 !important;
}

/* --- list 13 - styled list centralized --- */
.list-13 li {
    font-size: 1.1rem;
    line-height: 2.2rem;
    padding: 0 0 3rem 0;
    position: relative;
}

/*
.list-13 li:last-child {
    padding-bottom: 0;
}
*/

.list-13 li::after {
    color: #41ab00;
    content: '\f135';
    font-family: FontAwesome;
    font-size: 1.4rem;
    left: 47%;
    position: absolute;
    bottom: 6px;

}

.list-13 li:last-child::after {
    display: none !important;
}

.list-13.style-1 li::after {
    content: '\f135';
}

.list-13.style-1 li { /* dollar sign, bigger font */
    font-size: 1.4rem;
}

.list-13.style-1 li::after {
    content: '\f155';
}

/*
.list-13 li:last-child::before {
    content: none;
}
*/

/* --- list 14 - table like ul list --- */
.list-14 {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.list-14 li {
    align-items: center;
    border-top: 2px solid #999;
    display: flex;
    padding: 1rem 0;
    width: 100%;
}

.list-14 li:last-child {
    border-bottom: 2px solid #999;
}

.list-14 li > label {
    line-height: 1.3rem;
    flex: 1;
    font-weight: 700;
    opacity: .8;
    padding-right: .7rem;
}

.list-14 li > div {
    flex: 3;
}


    .list-14 li.style-1 > label,
    .list-14 li.style-1 > div {
        width: 100%;
    }

    .list-14 li.style-1 > label {
        padding-bottom: .8rem;
    }

@media screen and (max-width: 868px) {
    .list-14 li > label {
        width: 40%;
    }

    .list-14 li > div {
        width: 60%;
    }
}

/* --- list 15 - numbers on the homepage --- */
.list-15 li {
    font-size: 1.2rem;
    text-align: center;
}

.list-15 li span {
    color:#53ad4b;
    display: block;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 3.1rem;
    width: 100%;
}


/* ------------------------------------
 * 
 * tag crumbs
 *
------------------------------------ */


/* --- tag crumbs 2 - standard --- */
.tag-crumbs-2 li {
	float: left;
}

.tag-crumbs-2 a {
    border: 1px solid #000;
    border-radius: .5rem;
	color: black;
	display: block;
	height: 3rem;
	line-height: 2.9rem;
	margin: 0 5px 5px 0;
	overflow: hidden;
	padding: 0 1rem;
}

.tag-crumbs-2 a:hover {
	background: #ff6700;
    border-color: #ff6700;
	color: white;
}

.tag-crumbs-2.style-1 a {
	font-size: .9rem;
    height: 2.2rem;
	line-height: 2.1rem;
	margin: 0 7px 7px 0;
}

/* --- tag crumbs 3 - tag entry --- */
.suggester .tag-input {
    position: relative;
}

.suggester .tag-input input {
    position: relative;
    z-index: 10;
}

.suggester .tag-input button {
    border-radius: unset;
    position: absolute;
    right: 0;
    top: 0;
    width: 9rem;
    z-index: 20;
}

.suggester .note {
    margin-top: auto !important;
}

.suggester .tag-list {
    margin-top: 1rem;
}

.suggester li a {
    background: #53ad4b;
    border-color: #53ad4b;
    border-radius: .5rem;
	color: white;
	float: left;
	height: 3rem;
	line-height: 2.9rem;
	margin: 0 5px 5px 0;
	overflow: hidden;
	padding: 0 1rem;
}

.suggester .no-result {
    display: none;
}

.suggester a:after {
    bottom: -3px;
    color: white;
    content: '\f057';
    font-family: FontAwesome;
    font-size: 1.5rem;
	line-height: 1rem;
    margin-left: 12px;
    opacity: .7;
    position: relative;
}

.suggester ul[id$="-suggestions"] {
    display: inline-block;
    margin-bottom: 1rem;
    width: 100%;
}

.suggester ul[id$="-suggestions"] a {
    background: none;
    border-bottom: 2px solid #ccc;
    border-radius: unset;
    color: black;
    margin: 0;
    width: 100%;
}

.suggester ul[id$="-suggestions"] a:hover,
.suggester ul[id$="-suggestions"] a:active {
    background: #ff6700;
}

.suggester ul[id$="-suggestions"] a:after {
    content: none;
}


/* ------------------------------------
 * 
 * pagers
 *
------------------------------------ */

.pager-1 {
	float: left;
	margin: 0;
	padding: 0;
	text-align: center;
	width: 100%;
}

.pager-1 li,
.pager-1 li a {
    display: inline-block;
}

.pager-1 li {
    color: #bbb;
    margin: 0 3px;
}

.pager-1 li a {
    color: #9cb320;
}

.pager-1 li,
.pager-1 a {
    background: #fff;
    border-radius: 3rem;
	font: 600 1.4rem/3.2rem 'Quicksand', Trebuchet MS, sans-serif;
	height: 3.2rem;
	text-align: center;
	width: 3.2rem;
}

.pager-1 i {
	position: relative;
	top: 0;
}

.pager-1 a:hover,
.pager-1 .active {
	background: #53ad4b;
	color: white;
    text-decoration: none;
}

.pager-1.style-1 { /* below standard listings */
    padding: 1rem 0;
}


@media screen and (max-width: 767px) {
	.pager-1 li {
		margin: 0 2px 4px 2px;
	}
}



/* ------------------------------------
 * 
 * navigation types
 *
------------------------------------ */


/* --- nav 1 - basic style, horizontal --- */
.nav-1 .menu-toggle {
    display: none;
}

.nav-1 input[type='checkbox'] {
    display: none;
}

.nav-1 .menu {
    display: flex;
    list-style: none;
}

.nav-1 .menu li {
    position: relative;
}

.nav-1 .menu li a {
    color: black;
    display: inline-block;
    font-family: 'Quicksand', Trebuchet MS, sans-serif;
    font-size: 1rem;
	font-weight: 700;
    padding: 1rem;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    width: 100%;
}

/* Dropdown submenu */
.nav-1 .submenu {
    background: #8e8e8e;
    display: none;
    left: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 100%;
    width: 260px;
}

.nav-1 .submenu li a {
    color: #fff;
    font-size: .9rem;
    text-decoration: none;
    padding: .6rem 0;
}

/* Add position: relative to the parent li */
.nav-1 .menu li.dropdown {
    position: relative;
}

@media screen and (min-width: 869px) {
    .nav-1 {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

/* Update flex-direction on mobile menu */
@media (max-width: 868px) {
    .nav-1 .menu {
        background: #333;
        display: none;
        left: 0;
        flex-direction: column;
        position: absolute;
        top: 4rem;
        width: 100%;
    }

    .nav-1 .submenu {
        background: #333;
    }

    .nav-1 .menu li a {
        color: white;
    }

    .nav-1 .menu-toggle {
        cursor: pointer;
        display: block;
        padding: 0 .5rem;
    }

    .nav-1 .menu-icon {
        border-top: 4px solid black;
        display: block;
        width: 30px;
        position: relative;
        transition: background-color 0.3s ease-in-out;
    }

    .nav-1 .menu-icon:before,
    .nav-1 .menu-icon:after {
        border-top: 4px solid black;
        content: "";
        height: 100%;
        left: 0;
        position: absolute;
        transition: transform 0.3s ease-in-out;
        width: 100%;
    }
    .nav-1 .menu-icon.menu-style-1 {
        border-color: white;
    }

    .nav-1 .menu-icon.menu-style-1:before,
    .nav-1 .menu-icon.menu-style-1:after {
        border-color: white;
    }

    .nav-1 .menu-icon:before {
        transform: translateY(-14px);
    }

    .nav-1 .menu-icon:after {
        transform: translateY(6px);
    }

    .nav-1 #menu-checkbox:checked ~ .menu {
        display: block;
        position: absolute;
        top: 40px;
        right: 0;
        background: #333;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .nav-1 .submenu {
        position: unset;
        width: 100%;
    }
}

@media only screen and (min-width: 868px) and (max-width: 920px) {
    .nav-1 .menu li a {
        padding: 1rem .6rem;
    }
}



/* --- nav 2 - secondary nav, horizontal --- */

.nav-2 li {
    float: left;
    padding-right: 1rem;
    position: relative;
}

.nav-2 a {
    background: #e89906; 
	border: 2px solid #e89906;
	border-radius: 2rem;
    box-shadow: 0 1px 1px 1px rgb(0 0 0 / 0.2);
    color: black;
	cursor: pointer;
	display: inline-block;
	font: 700 .95rem/2.7rem 'Quicksand', Verdana, sans-serif;
	height: 3rem;
	outline: none;
	padding: 0 1.5rem 0 3rem;
	position: relative;
	text-align: center;
	text-transform: uppercase;
	-webkit-font-smoothing: antialiased;
    width: 100%;
}

.nav-2 a span {
    color: black;
    padding-left: .7rem;
}

.nav-2 i {
    color: white;
    font-size: 2rem;
    left: 12px;
    position: absolute;
    top: 5px;
}

.nav-2 a.active {
    background: #f9e0ca;
    border-color: #f9e0ca;
    position: relative;
}

.nav-2 a.active i {
    color: #e89906;
}

.nav-2 a.active:after {
    border-color: #f9e0ca transparent;
    border-style: solid;
    border-width: 10px 12px 0 12px;
    bottom: -10px;
    content: '';
    position: absolute;
    left: 42%;
}

.nav-2.style-1 a {  /* transparent bg version, no icon */
    background: transparent;
	border-color: transparent;
    box-shadow: none;
    padding-left: 1.5rem;
}

.nav-2.style-1 a.active {
    background: white;
    border-color: white;
    color: black;
}

.nav-2.style-1 a.active:after {
    content: none;
}

.nav-2.style-2 a { /* farm details secondary menu */
    background: #7fcc7a; 
	border: 2px solid #7fcc7a;
    color: black;
	padding-left: 1.5rem;
}

@media only screen and (max-width: 868px) {
    .nav-2.style-3 {
        background: black;
        bottom: 0;
        box-shadow: 0 0 2px 2px rgb(0 0 0 / 15%);
        left: 0;
        position: fixed;
        width: 100%;
    }

    .nav-2.style-3 li {
        padding: 0;
        width: 25%;
    }

    .nav-2.style-3 li a {
        background-color: #96B416;
        border-color: #000 !important;
        border-radius: 0;
        color: black;
        display: block;
        height: 4rem;
    }

    .nav-2.style-3 a.active {
        background: black;
        position: relative;
    }

    .nav-2.style-3 a.active i {
        color: #96B416;
    }

    .nav-2.style-3 a.active:after {
        display: none;
    }

    .nav-2.style-3 a span {
        display: none;
    }

    .nav-2.style-3 i {
        color: black;
        font-size: 2.4rem;
        left: 35%;
        position: absolute;
        top: 20%;
    }
}

@media only screen and (max-width: 620px) {
     .nav-2.style-3 li a {
        height: 3rem;
    }

    .nav-2.style-3 i {
        font-size: 2rem;
        left: 34%;
        top: 12%;
    }
}    

/* --- nav 3 - heading nav --- */

.nav-3 {
    display: none;
}

.nav-3 ul {
    width: 100%;
}

.nav-3 a {
    align-items:        center;
    color: black;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content:    center;
    text-transform: uppercase;
    flex-direction:             column;
    position: relative;
}

.nav-3 a span {
    font: 700 .95rem/1.2rem 'Quicksand', Verdana, sans-serif;
    display: inline-block;
    text-align: center;
}

.nav-3 a i {
    font-size: 1.6rem;
    left: 0;
    opacity: .3;
    position: relative;
}

.nav-3 .nav-3-message { /* new message symbol */
    left: 56%;
    position: absolute;
    top: 21%;
}
/*
.nav-3 a.active {
    background: #ff6700;
    color: white;
    position: relative;
}

.nav-3 a.active i {
    opacity: .9;
}
*/

@media screen and (min-width: 869px) {
    .nav-3 {
        min-width: 24rem;
    }

    .nav-3 a i {
        display: none;
    }
}

@media only screen and (max-width: 868px) {
    .nav-3 {
        background: #ff6700;
        bottom: 0;
        box-shadow: 0px -2px 10px 0px rgb(0 0 0 / 10%);
        display: inline-block;
        left: 0;
        padding: 0 !important;
        position: fixed;
        width: 100%;
    }

    .nav-3 li {
        padding: 0;
        width: 20%;
    }

    .newlayout .nav-3 li {
        padding: 0;
        width: 33.3334%;
    }

    .nav-3 li a {
        border-right: 1px solid white;
        border-radius: 0;
        height: 4.7rem;
    }

    .nav-3 li:last-child a {
        border-right: none;
    }

    .nav-3 li a i {
        color: white;
        opacity: 1;
    }

/*    .nav-3 a.active {
        background: #ffe1cc;
        position: relative;
    }

    .nav-3 a.active i {
        color: #ff6700;
    }

    .nav-3 a.active:after {
        display: none;
    }
*/

    .nav-3 a span {
        display: none;
    }
}

@media only screen and (max-width: 620px) {
     .nav-3 li a {
        height: 3.7rem;
    }

    .nav-3 i {
        font-size: 1.7rem;
    }
}


/* --- nav 4 - sub nav on community --- */

.nav-4 li {
    padding: .5rem;
}

.nav-4 a {
	background: #ff6700;
	border: 2px solid #ff6700;
	border-radius: 2rem;
    box-shadow: 0 1px 1px 0 rgb(0 0 0 / 0.2);
	color: white;
	cursor: pointer;
	display: inline-block;
	font: 700 .95rem/3.1rem 'Quicksand', Verdana, sans-serif;
	height: 3.4rem;
	outline: none;
	padding: 0 1.5rem !important;
	position: relative;
	text-align:center;
	text-transform: uppercase;
	-webkit-font-smoothing: antialiased;
}

.nav-4 a.active {
    background: white;
    border-color: white;
    color: black;
    position: relative;
}

.nav-4 a.active:hover {
    color: black;
}

@media only screen and (max-width: 868px) {

}


/* --- nav-5 - backlinks --- */

.nav-5 > div {
    opacity: .7;
    overflow: auto;
}

.nav-5 li {
	float: left;
    line-height: 1.5rem;
	padding-right: 2rem;
	position: relative;
}

.nav-5 li:before {
    top: 39%;
}

.nav-5 li:before {
	border-color: transparent #fff;
	border-style: solid;
	border-width: 4px 0 4px 4px;
	content: '';
	right: 13px;
	position: absolute;
}

.nav-5 li:last-child:before {
	border: none;
}

.nav-5 a {
	color: white;
	font-size: .8rem;
}

.nav-5.style-1 a { /* dark text */
    color: black;
}

.nav-5.style-1 li:before { 
    border-color: transparent #888;
}


/* --- nav 6 - category --- */
.nav-6 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.nav-6 li {
    margin-bottom: .3rem;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
}

.nav-6 li.parent {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
}

.nav-6 li.selected {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
}

.nav-6 li a {
    background: white;
    border-radius: .3rem;
    display: inline-block;
    font: 500 1.1rem/1.4rem 'Quicksand', Verdana, sans-serif;
    padding: .8rem .8rem .8rem 2rem;
    width: 100%;
}

.nav-6 .selected a {
    background: #ff6700;
    color: white;
    padding-left: 1.2rem;
}

.nav-6 .parent a {
    padding-left: .4rem;
}


/* --- nav 7 - category --- */
.nav-7 a {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    background-color: #53ad4b;
    border: 2px solid #ddd;
    border-radius: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 8rem;
    padding: 1rem;
    position: relative;
    width: 100%;
}

.nav-7 a span {
    color: white;
    display: inline-block;
    font: 500 1.3rem/1.5rem 'Quicksand', Verdana, sans-serif;
    text-align: right;
    width: 100%;
}

.nav-7 a i {
    color: rgba(255, 255, 255, .5);
    left: 1rem;
    font-size: 3rem;
    position: absolute;
    top: 1rem;
}

.nav-7.style-1 li {
    margin-bottom: 1rem;
    width: 100%;
}

.nav-7.style-1 a {
    background-color: transparent;
    border: 2px solid #ccc;
    min-height: 5rem;
}

.nav-7 a i {
    color: rgba(0, 0, 0, .3);
}

.nav-7.style-1 a span {
    color: #111;
}

.nav-7.type-1 { /* homepage logged */
    border-top: 3px solid #bbb;
}

.nav-7.type-1 a { 
    background-color: unset;
    border: unset;
    border-bottom: 3px solid #bbb;
    border-radius: unset;
    min-height: 3rem;
}

.nav-7.type-1 a i {
    color: rgba(0, 0, 0, .5);
    font-size: 1.4rem;
}

.nav-7.type-1 a span {
    color: black;
    font-size: 1.1rem;
    text-align: left;
    padding-left: 2.2rem;
}

.nav-7.type-1 a:hover { 
    background-color: #ccc;
}



/* --- nav 8 - community "tabs" --- */
.nav-8 {
    border-bottom: 2px solid #aaa;
    display: flex;
    overflow-x: auto;
    width: 100%;
}

.nav-8 a {
    align-items: center;
    background: none;
	color: black;
	cursor: pointer;
	display: inline-flex;
    justify-content: center;
	font: 700 1rem/1.4 'Quicksand', Verdana, sans-serif;
    height: 3.4rem;
    padding: 0 1.5rem;
	position: relative;
    text-transform: uppercase;
    vertical-align: middle;
    white-space: nowrap;
    -moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
}

.nav-8 .active {
    color: white;
    background: #ff6700;
}

    .nav-8.style-1 { /* negative (white-black) */
        border-bottom-color: rgba(255, 255, 255, .5);
    }

    .nav-8.style-1 a { 
        color: white;
    }

    .nav-8.style-1 li.active {
        background: #e7e7e735;
    }
    .nav-8.style-1 li.active a:after {
        background: #ff6700;
    }


@media (min-width: 769px) {
    .nav-8 {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .nav-8 {
        flex-wrap: nowrap;
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Hide scrollbar on Firefox */
        -ms-overflow-style: none; /* Hide scrollbar on IE/Edge */
    }

    .nav-8::-webkit-scrollbar {
        display: none; /* Hide scrollbar on Webkit browsers */
    }
}

/* --- nav 9 - tabs with arrow --- */
.nav-9 {
    display: flex;
    justify-content: center;
    width: 100%;
}

.nav-9 li {
    margin: 0 3px;
}

.nav-9 a {
    align-items: center;
    background: #c9c4c2;
    color: black;
    display: flex;
	font: 600 1.4rem/3.2rem 'Quicksand', Trebuchet MS, sans-serif;
    height: 3rem;
    justify-content: center;
    position: relative;
    width: 5rem;
}

.nav-9 a::after {
    border-color: #ff6700 transparent;
	border-style: solid;
	border-width: 13px 13px 0 13px;
    bottom: -11px;
    content: '';
    display: none;
    left: 35%;
    position: absolute;
}

.nav-9 a:hover,
.nav-9 .active {
	background: #ff6700;
	color: white;
}

.nav-9 .active::after {
	display: block;
}

.nav-9.style-1 { /* in-form tabs */
    justify-content: flex-start !important;
    padding-bottom: 1rem;
}

.nav-9.style-1 a {
    background: #d8d8d8;
    font-size: 1rem;
    font-weight: normal;
    height: auto;
    line-height: 1.2rem;
    margin: 0 3px;
    width: auto;
}

.nav-9.style-1 a:hover,
.nav-9.style-1 .active {
	background: #53ad4b !important;
	color: white !important;
}

.nav-9.style-1 a::after {
    border-color: #53ad4b transparent;
}


/* ------------------------------------
 * 
 * forms
 *
------------------------------------ */

/* --- input checkbox styled --- */

input[type='checkbox'].styled {
    display: none;
}

input[type='checkbox'].styled:empty + label {
	cursor: pointer;
	padding: 0 0 0 43px;
	position: relative;
	top: 0;
}

input[type='checkbox'].styled:empty + label:before {
	background: white;
    border: 3px solid #999;
	content: '';
	display: block;
	height: 28px;
	left: 0;
	position: absolute;
	top: -3px;
	width: 28px;
}

input[type='checkbox'].styled:checked + label:before {
	background-color: #53ad4b  !important;
    border: 3px solid #53ad4b;
	color: white;
	content: '\f00c';
	font-family: FontAwesome;
	font-size: 1.2rem;
    line-height: 1.6rem;
	text-align: center;
}

/* --- form 1 - standard --- */

.form-1 input[type='text'],
.form-1 input[type='search'],
.form-1 input[type='email'],
.form-1 input[type='password'],
.form-1 input[type='tel'],
.form-1 input[type='date'],
.form-1 input[type='datetime-local'],
.form-1 textarea,
.form-1 select {
	background-color: #f5f5f5;
	border: none;
    box-shadow: inset 0 0 0 2px #666;
    color: #000;
	font-family: inherit;
	font-size: 1rem;
	margin: 0;
	outline: none;
	padding: 6px 12px;
	width: 100%;
}

.form-1 input[type='text'],
.form-1 input[type='search'],
.form-1 input[type='email'],
.form-1 input[type='password'],
.form-1 input[type='tel'],
.form-1 input[type='date'],
.form-1 input[type='datetime-local'],
.form-1 select {
    line-height: 3.2rem;
	height: 3.4rem;
}

.form-1 textarea {
	padding: 8px 12px;
}

.form-1 input[readonly='readonly'],
.form-1 input[readonly='readonly']:focus {
	background-color: #f7f7f7 !important;
	box-shadow: none !important;
	color: #ccc !important;
}

.form-1 input[type='reset'],
.form-1 input[type='button'] {
	cursor: pointer;
	outline: none;
}

.form-1 input[type='radio'] {
	margin: 0 5px 0 0;
	padding: 0;
	vertical-align: middle;
}

.form-1 input[type='text']:focus,
.form-1 input[type='search']:focus,
.form-1 input[type='email']:focus,
.form-1 input[type='password']:focus,
.form-1 input[type='search']:focus,
.form-1 input[type='tel']:focus,
.form-1 input[type='date']:focus,
.form-1 input[type='datetime-local']:focus,
.form-1 select:focus,
.form-1 textarea:focus {
	background: #fffbda;
	box-shadow: inset 0 0 0 2px #bbb;
}

.form-1 input::placeholder { color: #888; }
.form-1 input::-webkit-input-placeholder { color: #888; }
.form-1 input::-moz-placeholder { color: #888; }
.form-1 input::-moz-placeholder { color: #888; }
.form-1 input::-ms-input-placeholder { color: #888; }
.form-1 textarea::placeholder { color: #777; }
.form-1 textarea::-webkit-input-placeholder { color: #777; }
.form-1 textarea::-moz-placeholder { color: #777; }
.form-1 textarea::-moz-placeholder { color: #777; }
.form-1 textarea::-ms-input-placeholder { color: #777; }

.form-1 option:checked {
	background: #8A9AEC;
}

.form-1 .message {
	color: #ff0000;
}



.form-1 .title {
    font-weight: 700;
    text-transform: uppercase;
}

.form-1 .pickup-block {
    display: none;
    padding-top: 0 !important;
    padding: 0 0 2rem 6rem;
    position: relative;
}

.form-1 .pickup-block::before,
.form-1 .pickup-block::after {
    border: 2px solid #888;
    content: '';
    position: absolute;
}

.form-1 .pickup-block::before {
    height: 4rem;
    left: 2rem;
    top: 0;
    width: 0;
}

.form-1 .pickup-block::after {
    height: 0;
    left: 2rem;
    top: 4rem;
    width: 3rem;
}

@media screen and (max-width: 868px) {
    .form-1 .pickup-block {
        padding: 1rem 1rem 2.5rem 2rem;
    }

    .form-1 .pickup-block::before,
    .form-1 .pickup-block::after {
        content: none;
    }
}

/* --- equipment --- */

.form-1 .component {
    display: flex;
    flex-direction: column;
    padding: 0;
    position: relative;
    text-align: left;
    width: 100%;
}

.form-1 .component label,
.form-1 .component .label {
    color: #333;
    display: inline-block;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6rem;
    padding-bottom: .6rem;
}

button[title="Works with XML Formatter Extension"] { /* kills the new froala button */
    display: none !important;
}

    .form-1 .component.style-1 select {
		height: auto;
	}
	
	.form-1 .component.style-3 { /* no label */
		padding: 0;
	}

    .form-1 .component.style-4 { /* comment input */
        position: relative;
        z-index: 10;
	}

    .form-1 .component.style-4 input[type='text'] { /* comment input */
        padding-right: 7rem;
        position: relative;
        z-index: 10;
	}   

    .form-1 .component.style-4 .btn { 
        background: #53ad4b;
		border-radius: unset;
        font-size: 1rem;
        height: 3.3rem;
        line-height: 3.2rem;
        position: absolute;
        right: 0;
        top: 0;
        z-index: 20;
	}

    .form-1 .component.style-4 .btn { /* comment input */
		border-radius: unset;
        width: unset !important;
	}

    .form-1 .component.style-5 { /* field right from the label */
        overflow: hidden;
	}

    .form-1 .component.style-5 label, 
    .form-1 .component.style-5 input[type='text'] { 
        float: left;
	}

    .form-1 .component.style-5 input[type='text'] { 
        width: 5rem;
	}

    .form-1 .component.style-6 label, 
    .form-1 .component.style-6 .label { 
        padding-bottom: 1rem;
        padding-top: 1rem;
        width: 100%;
	}

    .form-1 .component.style-6 label span, 
    .form-1 .component.style-6 .label span { 
        background: #53ad4b;
        border-radius: 50%;
        color: white;
        display: inline-block;
        font-size: 1.2rem;
        height: 2.2rem;
        line-height: 2.1rem;
        margin-right: .6rem;
        text-align: center;
        width: 2.2rem;
	}

    .form-1 .component.style-6.warning label, 
    .form-1 .component.style-6.warning .label { 
        text-decoration: underline;
	}

    .form-1 .component.style-6.warning label span, 
    .form-1 .component.style-6.warning .label span { 
        background: red;
	}




	.form-1 .note {
        font-size: .85rem;
        opacity: .8;
        padding-left: .5rem;
        position: relative;
	}

    .form-1 input + div.note,
    .form-1 textarea + div.note {
        margin-top: 2px;
        padding-bottom: 0;
	}

    .form-1 span.error,
    .form-1 span.error {
        background: #fffed3;
        color: red;
        font-size: 13px;
        padding: 0 5px;
        position: absolute;
        right: 0;
        top: 0;
        z-index: 999;
    }

	/* --- input radio 1 - with check marks --- */

	.form-1 .radio-1 {
		display: inline-block;
        position: relative;
	}

	.form-1 .radio-1 input {
		display: none;
	}

	.form-1 .radio-1 input:empty + label {
		align-items: center;
        cursor: pointer;
        display: flex;
        height: 3rem;
        padding: 0 0 0 3rem;
		position: relative;
        text-transform: none;
	}

	.form-1 .radio-1 input:empty + label:before {
		background: #bbb;
		bottom: 0;
		content: '';
		display: block;
		height: 2rem;
		left: 0;
		position: absolute;
		top: 18%;
		width: 2rem;
	}

	.form-1 .radio-1 input:checked + label:before {
		background: #6fbe00;
		color: #fff;
		content: '\f00c';
		font-family: FontAwesome;
		font-size: 1.1rem;
		line-height: 2rem;
		padding: 0;
		text-align: center;
		width: 2rem;
	}

    .form-1 .radio-1.basket input:checked + label:before { content: '\f291'; /* basket */ }
    .form-1 .radio-1.heart input:checked + label:before { content: '\f004'; /* heart */ }

	.form-1 .radio-1 input:checked + label {
		color: #000;
	}

	/* --- block with multiple checkboxes (additional class, beside radio-1) --- */
	.form-1 .multicheck > ul {
        display: inline-block;
        overflow: auto;
		padding: 0;
		width: 100%;
	}

    .form-1 .multicheck ul ul {
        display: inline-block;
        margin-top: 1rem;
		padding-left: 1rem;
		width: 100%;
	}

	.form-1 .multicheck li {
        display: inline-block;
        margin: 0 .8rem 1rem 0;
		padding: 0;
	}

    .form-1 .multicheck input[type='checkbox'],
    .form-1 .multicheck input[type='radio'] {
        display: none;
    }

    .form-1 .multicheck input[type='checkbox']:empty + label,
    .form-1 .multicheck input[type='radio']:empty + label {
        align-items: center;
        background-color: #eee;
        border: 2px solid #666;
        border-radius: .4rem;
        cursor: pointer;
        display: flex;
        padding: .5rem .8rem;
        position: relative;
    }

    .form-1 .multicheck input[type='checkbox'] + label:before,
    .form-1 .multicheck input[type='radio'] + label:before {
        display: none;
    }

    .form-1 .multicheck input[type='checkbox']:checked + label,
    .form-1 .multicheck input[type='radio']:checked + label {
        background: #53ad4b;
        border-color: #53ad4b;
        color: white;
    }

    .form-1 .multicheck.mtchk-style-1 label {
		padding-left: 2.7rem !important;
	}
    
    .form-1 .multicheck.mtchk-style-1 label::before {
		bottom: 0;
		content: '\f054';
		font-family: 'FontAwesome';
		font-size: 1.1rem;
		display: block !important;
		left: .7rem;
		line-height: 2rem;
		position: absolute;
		top: 13%;
        z-index: 20;
	}

	.form-1 .multicheck.mtchk-style-1 input:checked + label::before {
		content: '\f078';
	}


    /* multicheck-2 entities connected to media */
    .form-1 .multicheck-2 > ul { 
        display: inline-block;
        padding: 1rem 0;
		width: 100%;
    }

    .form-1 .multicheck-2 li {
        float: left;
        height: 5.5rem;
        padding: 0 1rem 1rem 0;
        width: 50%;
    }

    .form-1 .multicheck-2 span {
        display: inline-block;
        height: 100%;
        width: 100%;
    }

     .form-1 .multicheck-2 input[type='checkbox'],
     .form-1 .multicheck-2 input[type='radio'] {
        display: none;
    }
	
    .form-1 .multicheck-2 input[type='checkbox']:empty + label,
    .form-1 .multicheck-2 input[type='radio']:empty + label {
        align-items: center;
        border: 2px solid #ccc;
        border-radius: 7px;
        cursor: pointer;
        display: flex;
        line-height: 1.3rem;
        font-size: .9rem;
        height: 100%;
        padding: 0 0 0 3.5rem;
        position: relative;
    }

    .form-1 .multicheck-2 input[type='checkbox']:empty + label:before,
    .form-1 .multicheck-2 input[type='radio']:empty + label:before {
        background: #eee;
        display: block;
        content: '';
        left: 12px;
        height: 28px;
        position: absolute;
        top: 19px;
        width: 28px;
    }

    .form-1 .multicheck-2 input[type='checkbox']:checked + label,
    .form-1 .multicheck-2 input[type='radio']:checked + label {
        background-color: #ff6700  !important;
        color: white;
    }

    .form-1 .multicheck-2 input[type='checkbox']:checked + label:before,
    .form-1 .multicheck-2 input[type='radio']:checked + label:before {
        background-color: #333  !important;
        color: white;
        content: '\f00c';
        font-family: FontAwesome;
        font-size: 1.1em;
        line-height: 27px;
        text-align: center;
    }

    .form-1 .multicheck-2 li {
        padding: 0 0 1rem 0;
        width: 100%;
    }

    @media only screen and (max-width: 640px) {
        .form-1 .multicheck-2 li {
            width: 100%;
        }
    }
	
	
	/* --- switch toggle --- */
	
	.form-1 .toggle {
		padding-top: 0;
	}
	
	.form-1 .toggle input {
		margin-left: -9999px;
		position: absolute;
		visibility: hidden;
	}
	.form-1 .toggle input + label {
		cursor: pointer;
		display: block;
		outline: none;
		position: relative;
		-moz-user-select: 		none;
		-ms-user-select: 		none;
		-webkit-user-select: 	none;
		user-select: 			none;
	}

	.form-1 .toggle input {
		display: none;
	} 

	.form-1 .toggle input + label {
		background-color: #DCDDE0;
		border-radius: 100%;
		cursor: pointer;
		height: 3.4rem;
        position: relative;
		width: 6rem;
	}

	.form-1 .toggle input + label:before,
	.form-1 .toggle input + label:after {
		bottom: 1px;
		content: "";
		display: block;
		left: 1px;
		position: absolute;
		top: 1px;
	}

	.form-1 .toggle input + label::before {
		border-radius: 2rem;
		background-color: #cfcfcf;
		right: 1px;
		-webkit-transition: background 0.4s;
		transition: 		background 0.4s;
	}

	.form-1 .toggle input + label::after {
		background-color: #fff;
		border-radius: 2rem;
		-webkit-box-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.3);
		-moz-box-shadow: 	0 3px 2px 0 rgba(0, 0, 0, 0.3);
		box-shadow: 		0 3px 2px 0 rgba(0, 0, 0, 0.3);
		-webkit-transition: margin 0.4s;
		transition: 		margin 0.4s;
		width: 3.6rem;
	}

	.form-1 .toggle input:checked + label:before {
		background-color: #53ad4b;
	}

	.form-1 .toggle input:checked + label:after {
		margin-left: 2.2rem;
	}

	@media screen and (max-width: 49.999rem) {
		.form-1 input.style-2 + label {
			-webkit-transform: 	scale(0.8);
			-ms-transform: 		scale(0.8);
			transform: 			scale(0.8);
		}
	}
	
	/* --- uploader r --- */
    .form-1 .uploader > div {
        position: relative;
        width: 100%;
    }

    .form-1 .uploader fieldset {
        height: 14rem;
    }

    .form-1 .uploader .main-image {
        display: block;
        height: 100%;
        overflow: hidden;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 5;
    }

    .form-1 .uploader .main-image img {
        object-fit: cover;
        height: 100%;
        width: 100%;
    }

    .form-1 .uploader .customfile { 
        align-items: center;
        background-color: transparent;
        border: none;
        box-shadow: inset 0 0 0 2px #d8d8d8;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        height: 100%;
        justify-content: center;
        margin: 0;
        object-fit: cover;
        position: relative;
        width: 100%;
        z-index: 10;
    }

    .form-1 .uploader .customfile:after { 
        color: black;
        content: '\f030';
        font-family: FontAwesome;
        font-size: 10rem;
        left: 50%;
        line-height: 10rem;
        margin-left: -5.5rem;
        margin-top: -5rem;
        opacity: .1;
        position: absolute;
        top: 50%;
        z-index: 20;
        }

    .form-1 .uploader .customfile-input { 
        background: transparent; 
        border: 0; 
        cursor: pointer; 
        display: inline-block;
        height: 100%;
        left: 0; 
        opacity: 0; 
        position: absolute;
        top: 0;
        z-index: 999; 
        width: 100%;
        z-index: 50;
    }

    .form-1 .uploader .customfile-feedback { 
        border: none;
        display: inline-flex;
        margin: 0;
        justify-content: center;
        opacity: .7;
        width: 100%;
        z-index: 30;
    }

    .form-1 .uploader .customfile-button { 
        background: #ff6700;
        border: 2px solid #ff6700;
        border-radius: 8px;
        box-shadow: 0 1px 1px 0 rgb(0 0 0 / 0.2);
        color: white;
        cursor: pointer;
        display: inline-flex;
        font: 600 .95rem/2.9rem 'Quicksand', Verdana, sans-serif;
        height: 3rem;
        outline: none;
        padding: 0 1rem;
        text-align: center;
        text-transform: uppercase;
        z-index: 30;
    }

    .form-1 .uploader .customfile-hover .customfile-button { 
        background: black;
        border-color: black;
        color: white;
    }

    /* --- password --- */
    .form-1 .password .toggle {
        background-color: #f7f7f7;
        border: none;
        border-radius: 5px;
        box-shadow: inset 0 0 0 2px #bbb; 
        display: inline-block;
        font-size: 1rem;
        height: 3.4rem;
        line-height: 2.3rem ;
        margin: 0;
        padding: 8px;
        width: 100%;
    }

    .form-1 .password #change_password {
       left: 0;
       padding-top: 27px;
       position: absolute;
       top: 0;
    }

    .form-1 .password input[type='text'] {
        background: white;
    }



/* --- form-2 search box --- */

.form-2 {
    position: relative;
    width: 100%;
}

.form-2 .component {
    height: 2.8rem;
    padding: 0;
    position: relative;
    width: 100%;
}

.form-2 input[type='search'],
.form-2 select {
	background-color: white;
    border: 2px solid #ccc;
    box-sizing: border-box;
	color: black;
	font-family: inherit;
    height: 100%;
	margin: 0;
	outline: none;
}

.form-2 input[type='search'] {
    border-bottom-left-radius: 3rem;
    border-top-left-radius: 3rem;
    float: left;
    font-size: 1.1rem;
    padding: .5rem 1rem;
    max-width: 14rem;
}

.form-2 input[type='submit'] { /* button */
	display: none;
}	

.form-2 input[type='submit'] + label {
	background: #222;
	border: 2px solid #222;
	border-bottom-right-radius: 3rem;
    border-top-right-radius: 3rem;
    cursor: pointer;
    float: left;
    height: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    width: 3.4rem;
}

.form-2 input[type='submit'] + label:after {
	color: white;
    content: '\f002';
	font-size: 1.4rem;
    font-family: FontAwesome;
    line-height: 2.6rem;
	position: absolute;
	right: 2px;
	top: 0;
	text-align: center;
	width: 100%;
}

.form-2 input[type='submit'] + label:hover {
	background: #333;
}


.form-2 input[type='search']:focus {
    background: white;
	border-color: black;
}

.form-2 select {
	border-left: none;
	border-right: none;
	cursor: pointer;
	padding-left: .6rem;
	padding-right: .6rem;
	position: relative;
}

.form-2 input::-webkit-input-placeholder { font-size: .95rem; }
.form-2 input:-moz-placeholder { font-size: .95rem; }
.form-2 input::-moz-placeholder { font-size: .95rem; }
.form-2 input:-ms-input-placeholder { font-size: .95rem; }


/* --- form 3 - filter --- */
.form-3 input[type='text'],
.form-3 input[type='search'],
.form-3 textarea,
.form-3 select {
	background-color: #fff;
	border: none;
    border-radius: .5rem;
	color: black;
	font-family: inherit;
	font-size: 1.1rem;
    line-height: normal;
    height: 3.1rem;
	margin: 0;
	outline: none;
	padding: 7px;
	width: 100%; 
}

.form-3 input[type='text']:focus,
.form-3 input[type='search']:focus,
.form-3 select:focus,
.form-3 textarea:focus {
	box-shadow: inset 0 0 0 2px rgba(0, 0, 0, .45);
}

.form-3 .component {
    padding: 1.7rem 0 0;
    position: relative;
    width: 100%;
}

.form-3 .component label {
    left: 3px;
    line-height: 1rem;
    position: absolute;
    top: 0;
    text-transform: uppercase;
}

.form-3 input::placeholder { color: #888; }
.form-3 input::-webkit-input-placeholder { color: #888; }
.form-3 input::-moz-placeholder { color: #888; }
.form-3 input::-moz-placeholder { color: #888; }
.form-3 input::-ms-input-placeholder { color: #888; }

.form-3.style-1 {  /* filter on marketplace */
    background: #53ad4b8c;
    padding: .5rem 0 1.4rem;
}

.form-3.style-2 .component { /* add your farm */
    padding-top: 0;
}

.form-3.style-2 input[type='text'] { 
    box-shadow: inset 0 0 0 2px #bbb;
}

.form-3.style-2 input::placeholder { 
    color: #999;
}

@media only screen and (min-width: 2560px) {
   .form-3 .component {
        padding: 2.1rem 0 0;
    }
}

@media only screen and (max-width: 768px) {
   .form-3.style-1  {
        background: none;
    }
}


/* --- input radio 2 - tab simulator --- */

.radio-2 {
	display: inline-block;
}

.radio-2 label {
	width: 100px;
}

.radio-2 input {
    display: none;
}

.radio-2 input:empty + label {
	background: #9f9b99;
    border-radius: 2rem;
    color: white;
	cursor: pointer;
	float: left;
    font-weight: 700;
	height: 3.2rem;
	padding: .7rem 0 0 3.5rem;
	position: relative;
	width: 100%;
}

.radio-2 input:empty + label:before {
	background: #f7f7f7;
    border-radius: 2rem;
	bottom: 0;
	content: '';
	display: block;
	height: 2rem;
	left: .8rem;
	position: absolute;
	top: .6rem;
	width: 2rem;
}

.radio-2 input:checked + label:before {
	background-color: #f7f7f7;
    border-radius: 50%;
	color: #555;
	content: '\f069';
	font-family: FontAwesome;
	font-size: 1.1rem;
	line-height: 2rem;
	padding: 0 .5rem;
}

.radio-2 input:checked + label {
	background: #ff6700;
    border-radius: 2rem;
	color: white;
    width: 100%;
}

/* --- content forms --- */

.form-template label {
	display: block;
	font-size: 0.9em;
	padding-bottom: 10px;
	text-transform: uppercase;
}

.form-template input[type='text'],
.form-template input[type='search'],
.form-template input[type='email'],
.form-template input[type='password'],
.form-template input[type='tel'],
.form-template textarea,
.form-template select {
	width: 100%;
}

.form-template input[type='text'],
.form-template input[type='search'],
.form-template input[type='email'],
.form-template input[type='password'],
.form-template input[type='tel'] {
	height: 2.4rem;
}

.form-template textarea {
	min-height: 6rem !important;
}

.form-template .input-list {
	border: 1px solid #DCDDE0;
	overflow: hidden;
}	

.form-template .input-list  li {
	position: relative;
}

.form-template .input-list  li > div:first-child {
	display: inline-block;
	font-size: 0.9em;
	left: 1rem;
	position: absolute;
	text-transform: uppercase;
	top: 1rem;
	width: 112px;
}

.form-template .input-list  li > div:last-child {
	padding-left: 128px;
}

.form-template .password {
	min-height: 100px;
}

.form-template .password div:nth-of-type(1) {
	cursor: pointer;
	margin-top: 8px;
}

.form-template .password div:nth-of-type(2) {
	-webkit-transform: 	translateY(-22px);
	-ms-transform: 		translateY(-22px);
	transform: 			translateY(-22px);
}

.form-template h4 {
	background: #f7f7f7;
	font-family: 'Noto Sans', sans-serif;
	font-size: 1em;
	font-weight: 700;
	padding: 5px 10px;
	width: 100%;
}

@media only screen and (min-width: 2560px) {
   .form-template input[type='text'],
    .form-template input[type='search'],
    .form-template input[type='email'],
    .form-template input[type='password'],
    .form-template input[type='tel'] {
        height: 3rem;
    }

    .form-template textarea {
        min-height: 7rem !important;
    }
}

/* ------------------------------------
 * 
 * modal windows
 *
------------------------------------ */
#popupOverlay {
    background: rgba(0, 0, 0, 0.3);
    display: none;
    left: 0;
    height: 100%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
}

#popupContainer {
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 1rem;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: none;
    left: 50%;
    padding: 1rem;
    position: fixed;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 110;
}

#closePopup {
    position: absolute;
    right: 1rem;
    top: 1.3rem;
}

@media screen and (min-width: 869px)  {
	#popupContainer {
       width: 38rem;
    }
}




/* ------------------------------------
 * 
 * sections
 *
------------------------------------ */

/* --- section 1: homepage --- */
.section-1 > div { 
    width: 100%;
}

.section-1.style-1 {
    background: rgba(0, 0, 0, .1);
}

/* --- section 2: header on landing page --- */
.section-2 {
    background: url('../../img/somi-jaiswal-6DsMsaoFmqY-unsplash-800.jpg') 50% 30%/cover no-repeat;
    box-shadow: inset 0px -5px 2px 2px rgba(0, 0, 0, .1);
    padding-bottom: 3rem;
    padding-top: 3rem;
    position: relative;
    width: 100%;
}

.section-2::before {
    background: rgba(0, 0, 0, .5);
    content: '';
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
}

.section-2 * {
    color: white;
}

.section-2 > div {
    position: relative;
    z-index: 20;
}

@media screen and (max-width: 868px) {

}

/* ------------------------------------
 * 
 * structures
 *
------------------------------------ */
/* --- structure 1: heading on farms --- */
.structure-1 {
    background-color: #42403e;
    position: relative;
    width: 100%;
}

.structure-1 * {
    color: white;
}

.structure-1 a:hover {
    color: white;
}

.structure-1 label {
    font-weight: 700;
}

.structure-1 > div,
.structure-1 > form {
    z-index: 20;
}

    .structure-1.style-5, 
    .structure-1.style-11 { /* article, search */
        background: none;
        box-shadow: unset;
    }

    .structure-1.style-5::before,
    .structure-1.style-11::before {
        content: none;
    }

.structure-1 .essence {  /* heading main content */
/*    background: url('../../img/bg_veggies_desktop.jpg') 50% 60%/cover no-repeat; */
    min-height: 13rem;
    position: relative;
    z-index: 20;
}

.structure-1 .essence .content-wrap {
    height: 100%;
    position: relative;
    z-index: 30;
}

.structure-1 .essence::before {
   /* background: rgba(0, 0, 0, .4); */
    content: '';
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 15;
}

.structure-1 .backlinks {
    left: 1rem;
    position: absolute;
    top: .5rem;
    z-index: 50;
}

.structure-1 .title {
    font-size: 2.2rem;
    font-weight: 700;
}

.structure-1 .subtitle {
    font-size: 1.3rem;
    font-weight: 700;
    padding-top: 1rem;
}

.structure-1 .summary {
    font-size: 1rem;
    padding-left: 2px;
    padding-top: .4rem;
}

.structure-1 .intro {  
    padding-bottom: 1rem;
    padding-top: 1rem;
}

.structure-1 .tools {
    position: absolute !important;
    right: 2rem;
    top: 1rem;
    z-index: 50;
}

.structure-1 #filter_block {
    background: rgb(255 255 255 / 25%);
    border-radius: 1rem;
    display: none;
    padding: 1rem;
}

.structure-1 .t-meta > div {
    display: inline-block;
    margin-right: 1.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.structure-1 .t-meta > div > i {
    color: #c9c9c9;
    left: 0;
    padding-right: .5rem;
    position: absolute;
    top: 6px;
}

    .structure-1 .essence > div.content,
    .structure-1 .essence > form,
    .structure-1 .essence > nav {
        position: relative;
        z-index: 40;
    }

    .structure-1.style-1 .content-wrap { /* homepage */
        min-height: 30rem;
    }

    .structure-1.style-2 { /* style-2: order boost post */
        background-color: #d0ae5e;
    }

    .structure-1.style-2 .content-wrap{ 
        min-height: 27rem;
    }

    .structure-1.style-7 .essence,
    .structure-1.style-9 .essence { /* supplier, farmlover */
        padding-top: 1rem;
    }

    .structure-1.style-7 .content-wrap,
    .structure-1.style-9 .content-wrap { /* supplier, farmlover */
        min-height: 25rem;
    }

    .structure-1.style-3 .content-wrap { /* community list, details */
        min-height: 15rem;
    }

    .structure-1.style-7 .essence::before,
    .structure-1.style-9 .essence::before { /* supplier, farmlover */
        content: none;
    }
    

    .structure-1.style-3 .content > div > div, 
    .structure-1.style-7 .content > div > div, 
    .structure-1.style-9 .content > div > div { /* community, supplier, buyer */
        padding-top: 1rem;
    }

    .structure-1.style-11 > div:last-child { /* search */
        min-height: 7rem;
    }

    .structure-1.style-15 { /* landing page for new farmers  */
        height: 28rem;
    }

    .structure-1.style-15 .essence, 
    .structure-1.style-15 .essence > div { 
        height: 100%;
        z-index: 20;
    }

    .structure-1.style-12 .navigation { /* navigation */
        bottom: .5rem;
        position: absolute;
        left: 0;
        padding: 0;
        width: 100%;
    }

    .structure-1.style-15 .title {
        font-size: 2.8rem;
        line-height: 3.1rem;
        padding-bottom: 1.5rem;
    }

    .structure-1.type-1 .essence { /* transparent header */
        padding-top: 6rem;
    }

    .structure-1.style-1 form { /* homepage */
        margin-bottom: 1rem;
        margin-top: 1rem;
        max-width: 44rem;
    }

    .structure-1.style-1 .str-title > div:last-child { /* homepage */
        font-size: 1.2rem; 
        padding-top: .2rem;
    }


@media only screen and (min-width: 1920px) {
    .structure-1.style-5 > div:last-child {
        height: 12rem;
    }

    .structure-1.style-8 > div:last-child {
        height: 27rem;
    }

    .structure-1.style-5 > div:last-child {
        height: 10rem;
    }
}

@media screen and (min-width: 869px) {
	.structure-1.style-2 .content-wrap { /* ball with backlinks */
        padding-top: 3rem;
    }
}

@media screen and (min-width: 869px) and (max-width: 1020px) {    
    .structure-1 .tagline {
        display: none;
    }
}

@media only screen and (max-width: 868px) {

    .structure-1 .backlinks {
        display: none;
    }

    .structure-1 .title {  
        font-size: 1.9rem;
    }

    .structure-1 .navigation {
        padding-bottom: 1.5rem;
    }

    .structure-1.style-1 form { /* homepage */
        background: rgba(79, 159, 72, .7);
        border-radius: 1rem;
        max-width: 44rem;
        margin-bottom: 1rem;
        margin-top: 1rem;
        padding-bottom: 1rem;
        padding-top: 2rem;
    }

    .structure-1.style-2 .content-wrap{ /* order boost post */
        min-height: 16rem;
    }

    .structure-1.style-7 .essence {  /* supplier */
        min-height: 30rem;
    }

}




/* --- structure 2: registration form --- */

.structure-2 .edit-wrapper {
	min-height: 100%;
}

.structure-2 .heading {
	border-bottom: 2px solid #e1e0dd;
    height: 6.1rem;
    padding: 0 2rem;
}

/*
.structure-2 .form-template .input-list {
	border: none;
}

.structure-2 .radio-2 {
	padding: 0 0 1rem 0;
    width: 100%;
}

.structure-2 .radio-2 label {
	width: auto;
}

.structure-2 .form-template div {
	position: relative;
}

.structure-2 .form-template label {
	display: inline-block;
}

.structure-2 .form-template label + span {
	background: #fff;
	color: red;
	font-size: 13px;
	padding-left: 10px;
	position: absolute;
	right: 16px;
	top: 16px;
}

.structure-2 .form-template input[type="text"] + span {
	bottom: -9px;
	color: #999;
	font-size: 13px;
	right: 16px;
	position: absolute;
	white-space: nowrap;
}
*/

/* --- structure 3 - article details, search results list --- */
.structure-3 {
    padding: 1rem;
}

.structure-3 .summary {
    font-size: 1.3rem;
    line-height: 2.2rem;
}

.structure-3 .tools {
    padding-left: 1rem;
}

.structure-3 .p-interaction {
    border: solid #ddd;
    border-width: 2px 0;
}

.structure-3 .p-interaction a {
    color: #333;
}

.structure-3 .main-image {
    max-height: 60rem;
}

@media only screen and (min-width: 1920px) {
    .structure-3 .main-image {
        max-height: 35rem;
    }
}

@media only screen and (max-width: 868px) {
    .structure-3 {
        padding-left: .5rem;
        padding-right: .5rem;
    }
    
    .structure-3 .tools {
        bottom: 1rem;
        position: absolute;
        right: 1rem;
    }

    aside {
        padding-top: 2rem;
    }
}

/* --- structure 4 - contact box --- */
.structure-4 {
	background: #fff;
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2);
	display: none;
	overflow: hidden;
	padding: 1rem;
	width: 100%;
	z-index: 99;
}

.structure-4 .edit-tools {
	right: 16px;
	top: 0;
}

/* --- structure 5 - message sent box (on supplier details) --- */
.structure-5 {
    display: none;
}

.structure-5 > div {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: rgba(0, 0, 0, .6);
    display: inline;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    left: 0;
    padding: 1rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;  
}

.structure-5 > div > div {
    background: white;
    border-radius: 1rem;
    padding: 1rem;
    text-align: center;
    width: 16rem;
}

.structure-5 > div > form {
    background: white;
    border-radius: 1rem;
    padding: 1rem;
    position: relative;
    max-width: 40rem;
}

.structure-5 .close {
    right: 2rem;
    position: absolute;
    top: 2rem;
}

.structure-5 .sent {
	line-height: 13rem;
	height: 100%;
	width: 100%;
}

.structure-5 .sent div {
	display: inline-block;
	line-height: 1.2rem;
	text-align: center;
	vertical-align: middle;
	width: 100%;
}

.structure-5 .sent div span {
	color: #ff0000;
	display: block;
	padding-bottom: 1rem;
}

.structure-5 .sent div a {
	font-family: inherit;
	font-size: inherit;
	font-weight: 600;
}


/* --- structure 6 - product details --- */
.structure-6 {
    padding: 1rem;
    position: relative;
}

.structure-6 .main-image {
    box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.4);
    height: 30rem;
    position: relative;
}

.structure-6 .strel-status { /* boost button position */
    left: 1rem !important;
    right: unset !important;
}

.structure-6 .strel-edit { /* edit button */
    position: absolute;
    right: 1rem;
    top: 1rem;
    z-index: 50;
}

.structure-6 .p-boost { /* boost button position */
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 50;
}

.structure-6 .meta {
    display: inline-block;
    width: 100%;
}

.structure-6 .meta div {
    float: left;
    margin-right: 1.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.structure-6 .meta div i {
    color: #999;
    left: 0;
    padding-right: .5rem;
    position: absolute;
    top: 6px;
}

.structure-6 .supplier-box > div {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    margin-top: 1rem;
}

.structure-6 .p-interaction {
    border: solid #ddd;
    border-width: 2px 0;
}

.structure-6 .p-interaction a {
    color: #333;
}

@media screen and (max-width: 868px) {
    .structure-6 {
        padding-left: .5rem;
        padding-right: .5rem;
    }
}


/* --- structure 7 - homepage slider + list-4 --- */

.structure-7 {
	height: 90%;
    position: relative;
    width: 100%;
    z-index: 10;
}

.structure-7::before {
    background: rgba(0, 0, 0, .6);
    content: '';
    height: 100%;
    left: 0;
	position: absolute;
    top: 0;
    width: 100%;
    z-index: 20;
}

.structure-7::before {
    background: rgba(0, 0, 0, .6);
    content: '';
    height: 100%;
    left: 0;
	position: absolute;
    top: 0;
    width: 100%;
    z-index: 30;
}

.structure-7 .title {
    -ms-flex-line-pack: center;
    align-content:      center;
    display:   -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap:  wrap;
    flex-wrap:      wrap;
    height: 100%;
    -webkit-box-pack:   center;
    -ms-flex-pack:      center;
    justify-content:    center;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 40;
}

.structure-7 > div {
    text-align: center;
    width: 80%;
}

.structure-7 .title div > div {
    margin-bottom: 2rem;
}

.structure-7 .title div > div:last-child {
    margin-bottom: 0;
}

.structure-7 .title h1, 
.structure-7 .title p {
    color: white;
    display: inline-block;
} 

.structure-7 .title h1 {
    font-size: 2.4rem;
    font-weight: 700;
} 

.structure-7 .title p {
    font-size: 1.3rem;
    line-height: 1.8rem;
} 

.structure-7 .slider {
    height: 100%;
    position: relative;
    width: 100%;
    z-index: 10;
}

.structure-7 .slider > li {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100%;	
	position: relative;
    width: 100%;
}

/* --- structure 8 - homepage teasers --- */

.structure-8 {
    background: #fff4e9;
}

.structure-8 .image {
    position: relative;
}

.structure-8 .image div {
    bottom: 0;
    position: absolute;
    left: 0;
    text-align: center;
    width: 100%;
    z-index: 40;
}

.structure-8 .image img {
    width: 100%;
}

.structure-8 .text > div {
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.structure-8 .text .title {
    font-size: 2.2rem;
    font-weight: 700;
}

.structure-8 .list li {
    font-size: 1.1rem;
    line-height: 1.5rem;
    margin-bottom: 1.4rem;
    padding-left: 2.4rem;
    position: relative;
}

.structure-8 .list li:before { /* checks */
    color: #aaa;
    content: '\f00c';
    font-family: FontAwesome;
    left: 0;
    position: absolute;
    top: 3px;
}

.structure-8.style-1 {
    background: white;
}

@media only screen and (min-width: 869px) {
    .structure-8.style-1 .image {
        order: 2;
    }

    .structure-8.style-1 .text {
        text-align: right;
    }

    .structure-8.style-1 .list li {
        padding-left: unset;
        padding-right: 2.4rem;
    }

    .structure-8.style-1 .list li:before {
        right: 0;
    }
}

/* --- structure-9 - form template --- */

.structure-9 {
    background-image: url('../../img/bg/bg_farmlovers_blur_1000.jpg'); 
    background-size: cover;
    padding: 1rem 2rem;
    position: relative;
    width: 100%;
    z-index: 10;
}

.structure-9::before {
    background-color: rgba(0, 0, 0, .3);
    content: '';
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 20;
}

.structure-9 form {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
    z-index: 30;
}

.structure-9 .heading {
    background: #efefef;
    padding: 2rem 1rem;
} 

.structure-9 .main-image {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
	height: 300px;
	width: 100%;
}

.structure-9.style-1 {  /* registration related forms */
    background-image: none; 
    padding: 0;
}

.structure-9.style-1::before {  
    display: none;
}

.structure-9.style-2  { /* boost this */
    background: none;
    padding: 0;
}

.structure-9.style-2,
.structure-9.style-2 form  { /* boost this */
    border-radius: 0;
}

/*
.structure-9.style-2 form::before { 
    background: linear-gradient(120deg, #ff6700 0%,#f9ac1d 16%,#d3d33f 51%,#99aa17 68%,#53ad4b 83%,#197515 100%);
    background-size: cover;
    background-repeat: no-repeat;
    content: '';
    position: absolute;
    height: 15rem;
    width: 100%;
    z-index: 10;
}

.structure-9.style-2 form > div {
    position: relative;
    z-index: 20;
}
*/

/*
@media (prefers-color-scheme: dark) {
    .structure-9.style-2 form::before { 
        background: linear-gradient(120deg, #6c2c00 0%, #ba7900 16%, #838328 51%, #657011 68%, #3d7c37 83%, #12570f 100%);
    }
}
*/

.structure-9.style-2 .p-entity .wrap {
    border: 7px solid #ff6700;
}

@media screen and (max-width: 868px) {
	.structure-9 {
        padding: .5rem;
    }
    
    .structure-9 .heading {
        padding: 1rem;
    }

    .structure-9 .title {
        font-size: 1.9rem;
    } 

    .structure-9.style-2 form::before { 
        height: 34rem;
    }

    .structure-9.style-2 .p-entity .wrap {
        width: 22rem;
    }
}

/* --- structure-form - form template new --- */

.structure-form { 
    display: flex;
    justify-content: center;
    padding: .5rem 0;
    position: relative;
    z-index: 10;
}

.structure-form::after {
    /*background-image: url('../../img/bg/bg_farmlovers_blur_1000.jpg'); */
    background: radial-gradient(ellipse at 30% 30%, #a1e69c 0%, #222222 100%);
    background-size: cover;
    content: '';
    height: 100%;
/*    opacity: .5; */
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 20;
}

.structure-form .strel-wrapper {
    background: white;
    max-width: 50rem;
    padding: 1rem;
    position: relative;
    z-index: 30;
}

.structure-form .strel-cancel {
    background: #ddd;
    position: absolute;
    right: 1rem;
    top: 1rem;
}

.structure-form .strel-section {
    padding: 0 0 3rem;
}


@media screen and (max-width: 868px) {
    .structure-form .strel-cancel {
        display: none;
    }
    .structure-form { 
        padding: 0;
    }
}


/* --- structure 10 - profile ribbon (img + text) --- */
.structure-10 { 
    display: inline-block;
    padding-right: .4rem;
}

.structure-10 > div { 
    float: left;
    line-height: 3rem;
}

.structure-10 .image { 
    border-radius: 3rem;
    height: 3rem;
    width: 3rem;
}

.structure-10:hover {
    text-decoration: none;
}

a.structure-10 > div:last-child:hover { 
    text-decoration: underline;
}

.structure-10 > div:first-child { 
    margin-right: .5rem;
}

/* --- structure 11 - filter on mobile hide --- */
@media screen and (min-width: 869px) {
    .structure-11 > div:first-child {  /* hide filter if not mobile */
        display: none;
    }
}

@media screen and (max-width: 868px) { /* hide form on mobile */
    .structure-11 > form {  
        display: none;
    }
}


/* --- structure 12 - pages w/ filter --- */
.structure-12 { 
    position: relative;
}

@media screen and (max-width: 868px) {    
    .structure-12 .action-button { 
        position: absolute;
        top: 0;
        right: 1rem;
        z-index: 888;
    }
}



/* --- structure-13 - search on mobile --- */
.structure-13 > a {
    display: none;
}

.structure-13 > a:after {
    color: black;
    content: '\f00e';
    font-family: FontAwesome;
    font-size: 2.2rem;
    left: 0;
    position: absolute;
    text-align: center;
    top: -5px;
    width: 100%;
}

@media screen and (min-width: 869px) and (max-width: 1155px) { 
    .structure-13 {
        display: none;
    }
}

@media screen and (max-width: 868px) {    
    .structure-13 > a {
        color: black;
		display: inline-block;
        position: absolute;
        right: 7.5rem;
        top: 2.5rem;
	}

    .structure-13 > a.open:after {
        content: '\f010';
    }
    
    .structure-13 form {
        background: rgba(0, 0, 0, .7);
        display: none;
        height: 100%;
        left: 0;
        padding-top: 1rem;
        position: absolute;
        top: 5rem;
        visibility: hidden;
        z-index: 99999;
    }

    .structure-13 form input[type='search'] {
        background-color: white !important;
    }
}




/* --- structure-15 - teaser for empty content --- */

.structure-15 {
    background-color: #edecea;
    border-radius: 1rem;
}

.structure-15 .pix  {
    border-radius: 1rem;
}

.structure-15 .text > div:first-child  {
    font-size: 1.7rem;
}

.structure-15 .text > div:nth-child(2)  {
    font-size: 1.1rem;
    line-height: 1.9rem;
}

/* --- structure-16 - login form --- */

.structure-16 {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; /* Vertical centering */
    background: rgba(0, 0, 0, .8);
    bottom: 0;
    display: none; /* Flexbox to center the inner div */
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; /* Horizontal centering */
    left: 0;
    position: fixed; /* Fixed position to stay above all content */
    right: 0;
    top: 0;
    z-index: 1000;
}

.structure-16 .body {
    background: #fff;
    position: relative;
    width: 30rem;
    z-index: 1010;
}

.structure-16 .heading {
    background: #4ea446;
    position: relative;
}

.structure-16 .heading.style-1 {
    background: none;
}

.structure-16 .heading .cancel {
    position: absolute;
    right: 0;
    top: 0;
}

.structure-16 .title {
    color: white;
    font-size: 1.4rem;
    text-transform: uppercase;
}


.structure-16 .teaser {
    background: #ff6700;
    color: white;
}

.structure-16 .teaser a {
    color: white;
}

.structure-16 #forgotten {
    background: white;
    height: 100%;
    position: absolute;
    width: 100%;
}

/* --- structure-18 - call to action --- */
.structure-18 {
    background: white;
    border-radius: 2rem;
    margin-bottom: 2rem;
    margin-top: 2rem;
    overflow: hidden;
    padding: 0;
    position: relative;
}

.structure-18 .call {
    font-size: 1.4rem;
    line-height: 2.2rem;
}


/* --- structure-19 - change to drop-down for mobile (e.g.filter) --- */
.structure-19 .s-header {
    padding: 1rem;
}

@media screen and (min-width: 869px) {
    .structure-19 .s-header {
        display: none;
    }
}

@media screen and (max-width: 868px) {
    .structure-19 .s-body {
        display: none;
        padding-top: 1rem;
        visibility: hidden;
    }
}


/* --- structure-20 - change to drop-down for mobile (e.g.filter) --- */
.structure-20 {
	margin-right: auto;
    margin-left: auto;
    max-width: 900px;
}

.structure-20 form {
    background: white;
}

.structure-20 .heading {
    background: #efefef;
    padding: 2rem 1rem;
} 

.structure-20 .main-image {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
	height: 300px;
	width: 100%;
}

@media screen and (max-width: 868px) {
	.structure-20 {
        padding: 0;
    }
    
    .structure-20 .heading {
        padding: 1rem;
    }

    .structure-20 .title {
        font-size: 1.9rem;
    } 
}


/* --- structure-21 - button for ADD CONTENT next to the title --- */
.structure-21 {
	position: relative;
}

.structure-21 .button {
	position: absolute;
    right: 0;
    text-align: right;
    top: 0;
    width: 100%;
}


/* --- structure-22 - feature lists with photos --- */


.structure-22 > li:nth-child(odd) {
	background: rgba(0, 0, 0, .06);
}

.structure-22 > li > div > div:last-child {
    text-align: center;
	padding: 2rem;
}

.structure-22 img {
    box-shadow: 0px 10px 13px -7px #a5a5a5, 5px 5px 15px 5px rgba(0,0,0,0);
    max-width: 100%;
}

.structure-22 .title {
	padding-bottom: 1rem;
}

.structure-22 ul li {
	position: relative;
    padding-bottom: .5rem;
    line-height: 1.6rem;
    font-size: 1.1rem;
}

@media screen and (min-width: 869px) {
    .structure-22 > li:nth-child(odd) > div > div:first-child { /* image */
        text-align: right
    }
    .structure-22 > li:nth-child(even) > div > div:first-child {
        -webkit-order: 1;
        -ms-flex-order: 1;
        -webkit-box-ordinal-group: 2;
        order: 1;
    }
}

@media screen and (max-width: 868px) {
    .structure-22 > li > div > div {
        text-align: center;
    }
}

/* --- structure-23 - background image --- */
.structure-23 { 
    height: 100%;
    left: 0;
    overflow: hidden;
    padding: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
}

.structure-23 .vertical-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.structure-23 .vertical-center picture,
.structure-23 .vertical-center img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.structure-23 .vertical-center picture,
.structure-23 .vertical-center img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.structure-23::before {
    background: rgba(0, 0, 0, .44);
    content: '';
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 15;
}

    .structure-23.style-1 {
       border-radius: 1rem;
    }

    .structure-23.style-1::before {
        background: linear-gradient(125deg,  rgba(255,255,255,1) 0%,rgba(255,255,255,0.8) 50%,rgba(255,255,255,0) 100%);
    }

    .structure-23.style-2::before { /* boost post */
       background: none;
    }

/* --- structure-messages --- */
.structure-24 { 
    position: relative;
    z-index: 10;
}

.structure-24 .str-unit-1 {  /* message list */
    overflow-y: auto;
    max-height: 100vh;
}

.structure-24 .str-unit-2 { /* single thread */ 
    background-color: #dbd9d4; /* Or any other background color */
    left: 0;
    height: 100vh;
    overflow-y: auto;
    padding: 1rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999; /* Ensures it appears above other elements */
}

.structure-cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #222;
    color: #fff;
    padding: 16px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.structure-cookie-consent .cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.structure-cookie-consent .cookie-buttons {
    display: flex;
    gap: 10px;
}

.structure-cookie-consent .cookie-button {
    padding: 8px 16px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.structure-cookie-consent .accept {
    background-color: #3da833;
    color: white;
}

.structure-cookie-consent .decline {
    background-color: #777;
    color: white;
}


@media (max-width: 600px) {
    .structure-cookie-consent .cookie-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .structure-cookie-consent .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
}



/* ------------------------------------
 * 
 * tab control
 *
------------------------------------ */

.tab-ctrl .tabs {
    display: flex;
    overflow-x: auto;
    width: 100%;
}

.tab-ctrl .tabs a {
    cursor: pointer;
    padding: 1rem 1.5rem;
}

.tab-ctrl .tabs a.active {
    background: #f7f7f7;
}

.tab-ctrl .tab-content {
    display: none;
    margin-top: 1rem;
}

.tab-ctrl .tab-content.active {
    display: block;
}

@media (min-width: 769px) {
    .tab-ctrl .tabs {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .tab-ctrl {
        flex-wrap: nowrap;
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Hide scrollbar on Firefox */
        -ms-overflow-style: none; /* Hide scrollbar on IE/Edge */
    }

    .tab-ctrl::-webkit-scrollbar {
        display: none; /* Hide scrollbar on Webkit browsers */
    }
}


/* ------------------------------------
 * 
 * tables
 *
------------------------------------ */

table {
	width: 100%;
}


/* --- table 1 --- */

.table-1 {
	background: #fff;
}

.table-1 thead {
	background-color: #fff;
	color: #444;
	text-transform: uppercase;
}

.table-1 tr {
	border-bottom: 1px solid #DEDEE0;
}

.table-1 td,
.table-1 th {
	padding: 10px;
}

.table-1 tr.hover {
	background-color: #2E368F;
	cursor: pointer;
}

.table-1 tr.hover * {
	color: #fff;
}

.table-1 tr .btn-toggle {
	color: #bbb;
	display: block;
    position: relative;
    -webkit-transition: 200ms linear;
    transition: 200ms linear;
}

.table-1 tr .btn-toggle-close:before {
    content: '\e026';
    font-family: Vigoran;
}

.table-1 .btn-toggle:before {
    content: '\e025';
    font-family: Vigoran;
}

.table-1 .btn-toggle:hover {
    color: #ffc519;
}

.table-1 .extra {
	background: url('../../img/bg_stripes.png');
	display: none;
	font-size: 0.9em;
	visibility: hidden;
}

.table-1 .extra strong {
	display: block;
	font-weight: 600;
	opacity: 0.6;
}

.dataTables_wrapper {
    flex-wrap: nowrap;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Hide scrollbar on Firefox */
    -ms-overflow-style: none; /* Hide scrollbar on IE/Edge */
}

.dataTables_wrapper > div {
    align-items: center;
    display: inline-flex;
    height: 4rem;
    margin-right: 3rem;
    vertical-align: middle;
}

.dataTables_paginate > span {
    display: none;
}

.dataTables_paginate .paginate_button {
    align-items: center;
	background: #53ad4b;
	border: none;
	border-radius: 2rem;
	color: white;
	cursor: pointer;
	display: inline-flex;
	font: 700 1rem/normal 'Quicksand', Verdana, sans-serif;
	height: 2.4rem;
    justify-content: center;
	outline: none;
	padding: 0 1rem;
    -moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
    vertical-align: middle;
}

.dataTables_paginate .paginate_button.disabled {
	background: #aaa;
	color: #666;

}

/* --- table 2 --- */

.table-2 {
    width: 100%;
}

.table-2 tr {
	border-top: 2px solid #a1a1a1;
}

.table-2 td,
.table-2 th {
	padding: .7rem;
}


/* ------------------------------------
 * 
 * boxes
 *
------------------------------------ */

/* --- box 1 - facebook-like cards --- */
.box-1 > li {
    margin-bottom: 2rem;
    position: relative;
    width: 100%;
}

.box-1 .post {
    box-shadow: 0 0 1rem 0 rgb(0 0 0 / 15%);
    border-radius: 1rem;
	background-color: white;
    color: black;
    font-size: 1rem;
    padding: 0;
	position: relative;    
}

.box-1 .post .meta { /* meta */
    line-height: 1.5rem;
    padding: 1rem 1rem 1.5rem 1rem;
}

.box-1 .post .meta a { /* meta */
	display: inline-block;
    padding-left: 4rem;
    position: relative;
    width: 100%;
}

.box-1 .post .meta .image { 
    border-radius: 3rem;
    height: 3rem;
    left: 0;
    position: absolute;
    top: 3px;
    width: 3rem;
}

.box-1 .post .meta a:hover {
    text-decoration: none;
}

.box-1 .post .meta a .time {
	color: #666;
	font-size: .85rem !important;
}

.box-1 .post .meta .time i {
    left: -1px;
    opacity: .7;
    padding-right: .3rem;
    position: relative;
    top: 0;
}

/* --- box 2 - entity listing item --- */
.box-2 > li {
    position: relative;
}

.box-2 a {
    text-decoration: none;
}

.box-2 .wrap {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 0 1rem 0 rgb(0 0 0 / 15%);
    display: inline-block;
    padding: 2rem;
    position: relative;
    width: 100%;
}

.box-2 .wrap > div:nth-child(1) { /* image block (left) */
    box-shadow: 0 0 0 5px #fff, 0 0 0 7px #ccc;
    height: 8rem !important;
    left: 2rem;
    overflow: hidden;
    position: absolute;
    top: 2rem;
    width: 8rem;
}

.box-2 .wrap > div:nth-child(2),
.box-2 .wrap > div:nth-child(3) { /* main blocks (right) */
    padding-left: 10rem;
    position: relative;
}

.box-2 .wrap > div:nth-child(2) > div, 
.box-2 .wrap > div:nth-child(3) > div { 
    padding-bottom: 1rem;
}

.box-2 .title {
    color: #444;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 2rem;
}

.box-2 .meta {
    color: #777;
    overflow: hidden;
}

.box-2 .meta > div {
    float: left;
    padding-right: 1rem;
}

.box-2 .more { /* hidden block */
    border-top: 2px solid #dadad7;
    display: none;
    margin-top: .4rem;
    padding-top: 1rem;
    visibility: hidden;
}

.box-2 .more > div {
    display: inline-block;
    width: 100%;
}

.box-2 .status {
    right: 1rem;
    position: absolute;
    top: 1rem;
    z-index: 30;
}

    .box-2.style-1 .wrap { /* company listings */
        height: 100%;
        min-height: 13rem;
    }

    .box-2.style-2 .wrap > div:nth-child(1) { /* article listings */
        height: 6rem;
    }


@media screen and (max-width: 620px) {
    .box-2 .wrap > div:nth-child(2) { 
        min-height: 11rem;
    }

    .box-2 .wrap > div:nth-child(3) { 
        padding-left: 0;
    }

    .box-2 .wrap {
        padding: 1rem;
    }

}

/* --- box 3 - single profile --- */

.box-3 {
    display: inline-block;
    position: relative;
    width: 100%;
}

.box-3 > div:last-child {
    padding: 0 0 0 9rem;
}

.box-3 .title {
    font-size: 1.4rem;
}

.box-3 .image {
    border-radius: 10rem;
    height: 8rem !important;
    left: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    width: 8rem;
}

.box-3 > div:last-child > div {
    padding-top: .7rem;
}



/* --- box 4 - entity list on homepage (articles, suppliers, products) --- */

.box-4 a  {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 0 1rem 0 rgb(0 0 0 / 15%);
    display: inline-block;
    padding: 1rem;
    width: 100%;
}

.box-4 .image {
    height: 18rem;
}

.box-4 .title {
    color: #666;
    font-size: 1rem;
    height: 4.6rem;
    line-height: 1.5rem;
    padding-top: 1rem;
}

.box-4.style-1 .image {
    border-radius: 50%;
    height: 10rem;
    overflow: hidden;
    width: 10rem;
}

.box-4.style-1 a {
    -webkit-box-align:  center;
    -ms-flex-align:     center;
    align-items:        center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction:     column;
    flex-direction:         column;
}

/* --- box 5 - standard card template w/ header photo --- */
.box-5 .bx-wrapper {
    position: relative;
    height: 100%;
    width: 100%;
}

.box-5 .wrap {
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 0 1rem 0 rgb(0 0 0 / 15%);
    height: 100%;
    overflow: hidden;
    padding: 0 0 3.8rem 0;
    position: relative;
    z-index: 10;
}

.box-5 .wrap > a {
    color: black;
    display: inline-block;
    font-size: 1rem;
	position: relative;
    width: 100%;
    z-index: 20;
}

.box-5 li.full,
.box-5 div.full {
    -ms-flex-preferred-size: 100%;
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
    max-width: 100%;
}

.box-5 .card-image {
    background: #dad9d8;
    height: 18rem; 
    max-height: 100%; 
    overflow: hidden; 
    position: relative;
    z-index: 10;
}

.box-5 .card-image .vertical-center {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%; 
    max-height: 100%; 
    overflow: hidden; 
}

.box-5 .card-image .vertical-center picture {
    width: 100%;
    height: 100%; /* Ensure picture takes full height of the container */
}

.box-5 .card-image .vertical-center img {
    width: 100%;
    height: 100%; 
    object-fit: cover; 
    max-height: 38rem; 
}

.box-5 .bx-toolset { /* edit and boost buttons */
    align-items: end;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 50;
}

.box-5 .bx-toolset > div { /* edit and boost buttons */
    padding-bottom: 1rem;
}

.box-5 .b-boosted { /* if boosted */
    position: absolute;
    right: -11px;
    top: 0;
    z-index: 20;
}

.box-5 .b-boosted::before { 
    color: #ff6700;
	content: '\f0a3';
    display: inline-block;
	font-family: FontAwesome;
	font-size: 4rem;
    line-height: 1rem;
	right: 0;
	position: absolute;
	top: 0;
	z-index: 30;
}

.box-5 .b-boosted::after { 
    color: white;
	content: '\f135';
    display: inline-block;
	font-family: FontAwesome;
	font-size: 1.7rem;
    line-height: 1rem;
	right: 17px;
	position: absolute;
	top: 0;
	z-index: 40;
}

.box-5 .heading {
    background: none !important;
    bottom: 0;
    color: white;
    left: 0;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    position: absolute;
    width: 100%;
    z-index: 30;
}

.box-5 .heading::before {
    background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.4) 60%,rgba(0,0,0,0.45) 100%);
    bottom: 0;
    content: '';
    height: 100%;
    left: 0;
    padding: 1rem;
    position: absolute;
    width: 100%;
    z-index: -10;
}

.box-5 .title {
    font-size: 1.4rem;
    line-height: 1.7rem;
}

.box-5 .details {
    padding: 1.5rem 1.5rem 1rem 1.5rem;
}

.box-5 .details li {
    padding: 0 0 .5rem 2rem;
    position: relative;
}

.box-5 .details li i {
    left: 0;
    opacity: .9;
    position: absolute;
    top: 4px;
}

.box-5 .time {
	color: #666;
	font-size: .85rem !important;
    float: right;
}

.box-5 .more {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    padding: 0 1rem;
}

.box-5 .status {
    background: red;
    color: white;
    display: inline-block;
    left: 1rem;
    padding: .5rem 1rem;
    position: absolute;
    top: 1rem;
    z-index: 30;
}

.box-5 .p-tools {
    border-top: 1px solid #ddd;
    bottom: 0;
    left: 0;
    padding-left: 1rem;
    padding-right: 1rem;
    position: absolute;
    width: 100%;
}

.box-5 .p-tools a,
.box-5 .p-tools i,
.box-5 .p-tools span {
    color: black;
    font-size: 1.1rem;
    font-weight: 500;
}

.box-5 .admin > a {
    height: unset;
}

.box-5 .admin > div > div:last-child {
    background-color: white;
    border-radius: 1rem;
    display: inline-block;
    padding: 1rem;
    width: 100%;
}

.box-5 .promote {
    position: absolute;
    right: 1rem;
    top: 1rem;
    z-index: 50;
}

.box-5.type-1 .card-image {  /* cards side by side */
    height: 24rem;
}

.box-5.type-1 .summary {
    height: 6.8rem;
    overflow: hidden;
}

.box-5.type-1.style-1 .card-image {  /* homepage reduced view */
    height: 16rem;
}

.box-5.type-1.style-1 .more { 
    display: none;
}

.box-5.type-1.style-1 .details {
    padding-bottom: .5rem;
}

.box-5.type-2 .card-image { /*  single column view, social thread */
    height: auto; 
}

.box-5.type-2 .card-image.empty {
    height: 18rem !important;
}

.box-5.style-2 .details { /* post */
    padding: 1.5rem;
}

.box-5.style-2 .details li {
    padding: 0;
}

.box-5.style-3 .wrap  { /* order page adjustments */
    padding-bottom: 0;
}

.box-5.style-3 .p-order,
.box-5.style-3 .more,
.box-5.style-3 .p-tools  { 
    display: none;
}


@media screen and (min-width: 869px) and (max-width: 1199px) {
    .box-5 .image {
        height: 16rem;
    }
}

@media only screen and (max-width: 868px) {
    .box-5 .card-image .vertical-center img {
        max-height: 26rem; 
    }
}

@media (pointer: coarse) and (hover: none) {
    .box-5 .p-tools a {
        height: 3rem;
        line-height: 2.8rem;
    }
}


/* --- box 6 - right column listings (news, etc.) on entity details --- */

.box-6 li {
    display: list-item;
}

.box-6 li a {
    color: #555;
    display: inline-block;
	padding: 0 0 2rem 3.6rem;
	position: relative;
    width: 100%;
}

.box-6 li .title {
    font-size: 1rem;
    padding-bottom: .4rem;
}

.box-6 li .title + div {
    opacity: .7;
}

.box-6 li .card-image {
    display: inline-block;
    height: 3rem;
    left: 0;
    position: absolute;
    top: 2px;
    width: 3rem;
}

.box-6 li span { /* meta data  */
    display: inline-block;
    font-size: 0.9rem;
    padding: 0 .7rem 0 1.2rem;
    position: relative;
    top: 1px;
}

.box-6 li span:before  {
	font-family: FontAwesome;
	left: 1px;
	opacity: 0.5;
	position: absolute;
	top: 0;
}

.box-6 li span[title~=name]:before {
	content: '\f040';
}

.box-6 li span.about {
	overflow: hidden;
}

.box-6 li span.about:before {
	content: '\f040';
}

.box-6 li span.locations:before {
	content: '\f041';
}

.box-6 li span.locations span:before {
	content: '\f041';
}

.box-6 li span.locations span:first-child:before {
	display: none;
}

.box-6 li span.author:before {
	content: '\f040';
}

.box-6 li span.published:before {
	content: '\f073';
} 

.box-6 li span.title:before {
	content: '\e05d';
}

.box-6 li span[title~=document]:before {
	content: none;
}

.box-6 .document {
	background: rgba(0, 0, 0, 0.08);
	overflow: hidden;
	position: relative;
	height: 48px;
}

.box-6 .document > div:first-child {
	cursor: pointer;
	height: 100%;
	left: 0;
	overflow: hidden;
	position: absolute;
	top: 0;
	width: 40px;
}

.box-6 .document > div:first-child a {
	display: inline-block;
	height: 100%;
	width: 100%;
}

.box-6 .document  > div:first-child img {
	height: 100%;
	position: relative;
	z-index: 1;
}

.box-6 .document  > div:first-child:hover img {
	-webkit-transform: 	scale(1.3);
	-ms-transform: 		scale(1.3);
	transform: 			scale(1.3);
}

.box-6 .document  > div:first-child i {
	display: inline-block;
	font-size: 2em;
	padding: 8px 6px;
	position: relative;
	top: 0;
}

.box-6 .document > div:last-child {
	font-size: 0.9em;
	padding: 8px 8px 8px 48px;
}

.box-6 > li > a:hover {
	text-decoration: underline;
}

.box-6 > li > a:hover li:before {
	color: #fff;
}

    .box-6.style-1 li a {
        padding-left: 0;
    }

/* --- box 6 - right column listings (news, etc.) on entity details --- */
.box-99 { /* white block with shadow */ 
    background: rgb(255 255 255 / 92%);
    box-shadow: 0 0 1rem 0 rgb(0 0 0 / 15%);
    border-radius: 1rem;
}

.box-99.style-1 { /* white block with shadow */ 
    background: none;
    box-shadow: unset;
}

@media only screen and (max-width: 868px) {
    .box-99 {  
        box-shadow: unset;
    }
}


.box-8 {  /* --- box 8 - white background with shadow --- */
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 0 1rem 0 rgb(0 0 0 / 10%);
    height: 100%;
    padding: 1rem;
    width: 100%;
}

.box-8.style-1 {
    height: auto;
}


/* ------------------------------------
 * 
 * threads
 *
------------------------------------ */

/* --- thread 1 - conversation thread in Messages --- */

.thread-1 li a {
	background: #fff;
    border-radius: .5rem;
	color: black;
	display: block;
	margin: 0 0 1rem 0;
	overflow: hidden;
	padding: 1rem;
	position: relative;
	z-index: 10;
}

.thread-1 li a::before {
	bottom: 15px;
	color: black;
	content: '\f0e0';
	font-family: FontAwesome;
	font-size: 6rem;
	opacity: 0.1;
	position: absolute;
	right: 17px;
	z-index: 20;
}

.thread-1 a > div:first-child {
	background-color: #000;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 50%;
	height: 45px;
	overflow: hidden;
	position: absolute;
	width: 45px;
}

.thread-1 a > div:last-child {
	padding-left: 60px;
}

.thread-1 a > div:last-child > div {
	font-size: 0.9em;
	opacity: 0.8;
	padding-bottom: 10px;
}

.thread-1 a .date {
	position: absolute;
	right: 16px;
	top: 16px;
}

.thread-1 a .date:before {
	content: '\f017';
	font-family: FontAwesome;
	padding-right: 5px;
}

.thread-1 li.unread a:after {
	background: #ffb000;
    box-shadow: 0 1px 2px rgb(0 0 0 / 16%);
    border-radius: 50%;
    content: '';
    height: 25px;
    left: 8px;
    position: absolute;
    top: 8px;
    width: 24px;
    z-index: 2;
}

.thread-1 li:hover a {
	background: #aaa;
	color: #fff;
}

.thread-1 li.active a {
	background: #ffc519;
	color: #fff;
}

.thread-1 li.active a:after {
	border-color: transparent #feaa32;
	border-style: solid;
	border-width: 20px 0 20px 20px;
	content: '';
	position: absolute;
	right: -20px;
	top: 20px;
}


/* --- thread 2 - all conversations list in Messages (left col) --- */

.thread-2 {
	position: relative;
}

.thread-2:before {
	background: #ccc;
	content: '';
	height: 100%;
	position: absolute;
	left: 22px;
	width: 2px;
}

.thread-2 li {
	color: black;
	display: block;
	margin: 0 0 1rem 0;
	position: relative;
}

.thread-2 li > a {
	background-color: #000;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 50%;
	display: block;
	height: 45px;
	overflow: hidden;
	position: absolute;
	top: 5px;
	-webkit-transition: all 0.3s;
	transition: 		all 0.3s;
	width: 45px;
}

.thread-2 li > div {
	background: #fff;
    border-radius: .5rem;
	margin-left: 60px;
	padding: 16px;
	position: relative;
}

.thread-2 li > div > div {
	font-size: 0.9em;
	opacity: 0.8;
	padding-bottom: 10px;
}

.thread-2 .date {
	position: absolute;
	right: 16px;
	top: 16px;
}

.thread-2 .date:before {
	content: '\f017';
	font-family: FontAwesome;
	padding-right: 5px;
}

@media screen and (max-width: 868px) {
	.message-list li a {
		margin-right: 0;
	}
	
	.message-list li.active a:after {
		border: none;
	}
	
	.message-list a .date,
	.thread-2 .date {
		position: static;
	}
}


/* --- thread 3 - comments thread --- */

.thread-3 li {
    background: rgba(255, 255, 255, .8);
    margin-bottom: 1rem;
    padding: 1rem;
}

.thread-3 .meta-data {
	display: inline-block;
	overflow: hidden;
	padding: 0;
	position: relative;
    width: 100%;
}

.thread-3 .time {
    background: white;
    color: #888;
    font-size: .9rem;
	position: absolute;
	right: .9rem;
	top: .7rem;
}

.thread-3 .content {
    padding: 0 0 0 3.5rem;
}

.thread-3 .content img {
    border: 1rem solid #fff;
    border-radius: .9rem;
    height: 100%;
    margin-top: 1rem;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}


/* ------------------------------------
 * 
 * footer
 *
------------------------------------ */	

footer {
    background: #4f9f48;
    border-top: 2px solid #d5d2ce;
    color: rgba(255, 255, 255, .9);
    padding-top: 2rem;
	position: relative;
	width: 100%;
	z-index: 4;
}

footer > div {
	position: relative;
	z-index: 2;
}

footer a {
    color: white;
}

footer a:hover {
    color: white;
}

footer::after {
    bottom: -1rem;
    content: url("../../img/grain-svgrepo-com_1.png");
    left: 60%;
    opacity: .12;
    position: absolute;
}

footer .title {
    font-size: 1.3rem;
    font-weight: 700;
}

footer .btn {
    box-shadow: unset;
}


/* --- content format --- */

.content-format {
    font-size: 1.1rem;
}

.content-format h1,
.content-format h2,
.content-format h3,
.content-format h4,
.content-format h5 {
    padding-bottom: .5rem;
	padding-top: 1rem;
}

.content-format h2 {
    font-size: 1.6rem;
    line-height: 2.2rem;
}

.content-format h4 {
    font-size: 1.4rem;
}

.content-format p {
	padding-bottom: 10px;
}

.content-format img {
	max-width: 100%;
}

.content-format > ul {
	margin: 0 0 1rem 0;
	overflow: hidden;
}

.content-format ul li {
	padding: 0 0 .5rem .8rem;
	position: relative;
}

.content-format ul li:last-child {
	padding-bottom: 0;
}

.content-format ul li:before {
	background: #c2c2c2;
	content: '';
	height: 5px;
	left: 0;
	position: absolute;
	top: 15px;
	width: 5px;
}

.content-format ul ul {
	margin: 5px 0 0 1rem;
}

.content-format li li {
	padding-bottom: 0;
}

.content-format > ol  {
	margin: 1rem 0;
	overflow: hidden;
}

.content-format ol  {
	counter-reset: item;
}

.content-format ol li {
	padding: 0 0 .5rem .6rem;
}

.content-format ol li:last-child {
	padding-bottom: 0;
}

.content-format ol li:before { 
	content: counters(item, ".") ". "; 
	counter-increment: item 
}

.content-format ol ol {
	margin-left: 16px;
}

.content-format table {
	border-top: 1px solid #DCDDE0;
	margin: 16px 0;
}

.content-format table tr {
	border-bottom: 1px solid #DCDDE0;
}

.content-format table td {
	padding: 10px 5px;
}

.content-format table tr > td:first-child { padding-left: 0; }
.content-format table tr > td:last-child { padding-right: 0; }

.content-format table td p {
	padding: 0;
}

.content-format table.no-border,
.content-format table.no-border tr {
	border: none;
}

.content-format a[href$='.txt'],
.content-format a[href$='.pdf'],
.content-format a[href$='.doc'],
.content-format a[href$='.docx'],
.content-format a[href$='.xls'],
.content-format a[href$='.xlsx'],
.content-format a[href$='.zip'],
.content-format a[href$='.rar'],
.content-format a[href$='.ppt'],
.content-format a[href$='.pptx'] {
	cursor: pointer;
	float: left;
	font-size: 1em;
	height: 145px;
	padding: 80px 10px 10px 10px;
	position: relative;
	text-align: center;
	width: 120px;
	word-wrap: break-word;
}

.content-format a[href$='.txt']:before,
.content-format a[href$='.pdf']:before,
.content-format a[href$='.doc']:before,
.content-format a[href$='.docx']:before,
.content-format a[href$='.xls']:before,
.content-format a[href$='.xlsx']:before,
.content-format a[href$='.zip']:before,
.content-format a[href$='.rar']:before,
.content-format a[href$='.ppt']:before,
.content-format a[href$='.pptx']:before {
	color: #aaa;
	content: "\f016";
	display: inline-block;
	font-family: FontAwesome;
	font-size: 69px;
	left: 0;
	position: absolute;
	text-align: center;
	top: 26px;
	width: 100%;
}

.content-format a:hover:before {
	color: #2E368F;
}

.content-format a[href$='.txt']:before { 
	content: "\f0f6";
}

.content-format a[href$='.pdf']:before { 
	content: "\f1c1";
}

.content-format a[href$='.doc']:before,
.content-format a[href$='.docx']:before { 
	content: "\f1c2";
}

.content-format a[href$='.xls']:before,
.content-format a[href$='.xlsx']:before { 
	content: "\f1c3";
}

.content-format a[href$='.zip']:before,
.content-format a[href$='.rar']:before { 
	content: "\f1c6";
}

.content-format a[href$='.ppt']:before,
.content-format a[href$='.pptx']:before { 
	content: "\f1c4";
}

@media screen and (max-width: 868px) { 
    .content-format img.fr-dib {
        width: 100% !important;
    }
}

/* ------------------------------------
 * 
 * headers
 *
------------------------------------ */

#header {
    background: white;
    z-index: 20;
}

#header#logo, 
#header > div > div,
#header > div > nav {
    padding-bottom: 7px;
    padding-top: 7px;
}

#header.header-style-1 {
    background: transparent !important;
    border-bottom: 2px solid rgba(255, 255, 255, .3);
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 999 !important;
}

#header.header-style-1,
#header.header-style-1 a {
    color: white !important;
}

#logo > a {
    background: transparent url(../../img/farmlovers_heart_90.png) no-repeat 0%/auto 100%;
    display: inline-block;
    font-family: 'Quicksand', Verdana, sans-serif;
    height: 3rem;
    max-width: 14rem;
    padding-left: 3.5rem;
    position: relative;
    width: 100%;
}

#logo a > div { /* farmlovers */
    color: #131733;
    display: inline-block;
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 3.4rem;
    text-align: right;
    width: 100%;
}

#logo a > span { /* org */
    color: #e88205;
    font-size: 1rem;
    font-weight: 700;
    text-transform: none;
    position: absolute;
    right: 0;
    top: 1px;
}

#logo:hover {
    color: inherit;
}

#logo.logo-style-1 a > div {
    color: white;
}

.logo {
    display: inline-block;
    font-family: 'Quicksand', Verdana, sans-serif;
    position: relative;
    /* width: 17rem; */
}

.logo > img {
    float: left;
    margin-right: 5px;
}

.logo > div {
    color: #131733;
    display: inline-block;
    font-size: 2.1rem;
    font-weight: 700;
    position: relative;
    top: 11px;
}

.logo > span {
    color: #e88205;
    font-size: .85rem;
    font-weight: 800;
    text-transform: none;
    position: absolute;
    right: 0;
    top: -7px;
}

.logo:hover {
    color: inherit;
}

.logo.style-1 {
    -webkit-transform: scale(.9);
        -ms-transform: scale(.9);
            transform: scale(.9);
}

.logo.style-1 > div {
    color: #ffe9cf;
    opacity: .9;
}

/* ------------------------------------
 * 
 * custom
 *
------------------------------------ */

main {
    min-height: 100%;
    padding-bottom: 1rem;
}

#main_content {
    min-height: 20rem;
}

.empty-image {
    /* background: url('../../img/no_logo.jpg') 50% 50%/cover no-repeat; */
    background: #eee;
    height: 100%;
    display: inline-block;
    width: 100%;
}

header,
main,
footer {
    position: relative;
    width: 100%;
    z-index: 10;
}

.login main {
    background: #edecea;
    height: 100%;
    padding-left: 0;
}

#register main {
    padding: 0;
}

#register #main_content {
    width: 100%;
    max-width: 1000px;
}



@media screen and (min-width: 869px) and (max-width: 1280px) { 
    #subheader { 
        background-image: url('../../img/gregory-hayes-QFmNQXLPbZc-unsplash-900.jpg'); 
    }
}

@media screen and (max-width: 868px) { 
    #subheader { 
        background-image: url('../../img/gregory-hayes-QFmNQXLPbZc-unsplash-600.jpg');
        background-position: 70% 50%;
    }

    footer::after {
        left: 10%;
    }
}

@media only screen and (max-width: 868px) {
    .tagline {
        display: none;
    }

    #subheader > div:first-child {
        background: #e0dfdc;
        z-index: 30;
    }
} 


@media screen and (max-width: 868px) {
	.logo image {
        width: 200px;
    }
}


/* ------------------------------------
 * 
 * newhome
 *
------------------------------------ */
.structure-88 {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 0 1rem 0 rgb(0 0 0 / 10%);
    overflow: hidden;
    width: 100%;
}

.structure-88 > div {
    height: 100%;
}

.structure-88 > div.text {
    padding: 2rem;   
}

.structure-88 .title {
    font-size: 1.9rem;
    font-weight: 700;
}  

.structure-88 .list li {
    line-height: 1.3rem;
    margin-bottom: .8rem;
    padding-left: 2rem;
    position: relative;
}

.structure-88 .list li:before { /* checks */
    color: #4f9f48;
    content: '\f004';
    font-family: FontAwesome;
    left: 0;
    position: absolute;
    top: 2px;
}

@media only screen and (min-width: 1920px) {
    .structure-88 {
        min-height: 38rem;
    }
}

@media only screen and (max-width: 868px) {
    .structure-88 {
        max-height: unset;
    }
    
    .structure-88 > div.image {
        max-height: 20rem; 
        -webkit-order: -1;
        -ms-flex-order: -1;
        -webkit-box-ordinal-group: 0;
        order: -1;
    }

    .structure-88 > div {
        height: auto;
    }
}




.add-favorite {
	display: inline-block;
	position: relative;
	width: 42px;
}

.add-favorite:after {
	content: '\f006';
	font-family: FontAwesome;
	font-size: 2.7em;
	opacity: 0.8;
	position: absolute;
	right: -20px;
	top: -25px;
}

.category.details .add-favorite.added:after {
	content: '\f005';
	color: #ffc519;
	opacity: 1;
}

.category.details #response {
	background: #fff;
    box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.17);
	color: #000;
    display: none;
    font-size: 0.9em;
    line-height: 1.6em;
    left: 18px;
    padding: 16px;
    position: absolute;
    top: 5px;
    visibility: hidden;
    width: 300px;
    z-index: 5;
}

.category.details #response.show-me {
	display: block;
	visibility: visible;
}