* {
	margin: 0;
	padding: 0;
	font-size: 1em;
	line-height: 1.25em;
	font-weight: normal;
	font-family: 'Mulish', sans-serif;
}

:root {
	--primary: #ae5347;
	--primary-light: #d0938b;
	--primary-dark: #663029;
	--primary-transparent: rgb(174 83 71 / 25%);
	--white: #fafafa;
	--black: #050505;
	--grey: #808080;
	--grey-light: #dcdcdc;
	--grey-dark: #242424;
	--red: #e53424;
	--red-light: #ec675b;
	--red-dark: #b72315;
	--orange: #f58216;
	--orange-light: #f8a04f;
	--orange-dark: #c46308;
	--yellow: #e5d824;
	--yellow-light: #ece25b;
	--yellow-dark: #b7ac15;
	--green: #2dcc45;
	--green-light: #68de7a;
	--green-dark: #25a738;
	--blue: #2f79da;
	--blue-light: #639be3;
	--blue-dark: #1f5cad;
	--purple: #7144c1;
	--purple-light: #9775d1;
	--purple-dark: #583399;
	--plantx: #179a4f;
}

html {
	font-size: 16px;
	scroll-behavior: smooth;
}

body {
	background-color: #fff;
	min-width: 320px;
}

header {
	background: url(../images/header.jpg) 0% 45%/cover no-repeat;
	border-bottom: 2px solid var(--primary-dark);
	height: 160px;
	width: 100%;
	display: flex;
	position: fixed;
	top: 0;
	z-index: 999;
}

.headimg {
	max-height: 80px;
	width: calc(95% - 20px);
	padding: 10px;
	background-color: rgb(255 255 255 / 75%);
	border-radius: 3px;
}

.headimg_s {
	display: none;
}

header>div {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

header a {
	display: flex;
}

nav {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

nav>div {
	display: flex;
	align-items: center;
	background-color: rgb(255 255 255 / 75%);
	border-radius: 3px;
}

nav>div:LAST-CHILD {
	margin-top: 24px;
}

nav a {
	color: var(--black);
	text-align: center;
	font-size: 1.2em;
	padding: 4px 8px;
	justify-content: center;
}

nav a:hover, .active {
	background-color: var(--primary-transparent);
	text-decoration: none;
	border-radius: 3px;
	color: var(--black);
}

nav a>img {
	width: 24px;
	height: 24px;
}

.icon {
	width: 50px;
	height: 50px;
	background: url(../icons/hamb.png) 50%/cover no-repeat;
	display: none;
	background-color: rgb(255 255 255 / 75%);
}

.cartnumber {
	font-size: .75rem;
	line-height: .875rem;
	min-width: 14px;
	border-radius: 8px;
	background-color: var(--primary-light);
	color: var(--black);
	position: absolute;
	right: 0px;
	top: 1px;
	padding: 1px;
}

input {
	font-size: 1em;
	background-color: #fff;
	font-family: 'Mulish', sans-serif;
}

::placeholder {
	color: var(--grey);
	font-family: 'Mulish', sans-serif;
}

.search_field {
	width: 0px;
	height: 32px;
	background-color: transparent;
	border: none;
	background: url(../icons/search.png) 8px 50%/24px 24px no-repeat;
	padding-left: 40px;
	transition: all 0.4s ease-in-out;
	cursor: pointer;
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px;
}

#search:HOVER {
	background-color: var(--primary-transparent);
}

.search_field:FOCUS {
	width: 262px;
	outline: none;
	background-color: #b4f0b4;
	cursor: text;
}

a {
	text-decoration: none;
	color: var(--primary);
	font-size: 1em;
}

a:hover {
	color: var(--primary-dark);
}

main {
	color: var(--black);
	padding-bottom: 25px;
}

main>div:FIRST-CHILD {
	padding-top: 187px;
}

main h1 {
	font-size: 2em;
	margin-bottom: 25px;
}

span {
	font-size: 1em;
}

strong {
	font-size: 1em;
	font-weight: 600;
}

h3 {
	font-size: 1.25rem;
}

main p {
	margin: 10px 15px;
}

footer>div, header>div, main>div {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}

footer {
	width: 100%;
	border-top: 1px solid var(--primary-dark);
	display: flex;
	flex-direction: column;
	padding: 10px 0px;
	background-color: var(--grey-light);
	color: var(--black);
	position: relative;
	z-index: 1;
}

footer a {
	color: var(--primary-dark);
}

footer a:hover {
	text-decoration: none;
	color: var(--primary);
}

footer>div {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.footmid>div {
	margin: 15px 0;
	min-width: 250px;
}

.footmid>div:LAST-CHILD {
	text-align: right;
}

.footnote {
	color: var(--black);
	align-items: center;
}

.footnote>div {
	align-items: inherit;
	font-size: .7em;
}

.footnote>div:NTH-CHILD(1) {
	text-align: left;
}

.footnote>div:NTH-CHILD(2) {
	text-align: center;
}

.footnote>div:NTH-CHILD(3) {
	text-align: right;
}

.footnote a {
	color: var(--plantx);
	font-size: 1em;
}

h3 {
	padding-top: 30px;
}

.login-error {
	color: var(--red-dark);
}

.btn3 {
	background: var(--primary);
	padding: 5px 10px;
	color: var(--white);
	border: none;
	cursor: pointer;
	line-height: 1.4em;
	border-radius: 3px;
}

.btn3:HOVER {
	background: var(--primary-light);
	color: var(--black);
}

#myBtn {
	background-color: var(--primary);
	cursor: pointer;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	position: sticky;
	margin-right: 1%;
	bottom: -20px;
	border: 5px solid var(--white);
	z-index: 1;
}

#myBtn:AFTER {
	content: '';
	position: absolute;
	right: 15px;
	top: 16px;
	transform: rotate(-45deg);
	width: 16px;
	height: 16px;
	border-top: 4px solid var(--white);
	border-right: 4px solid var(--white);
	transition: all .4s;
}

#myBtn:HOVER {
	background-color: var(--primary-light);
}

#myBtn:HOVER:AFTER {
	border-color: var(--black);
	transition: all .4s;
}

.facts-dialog>div[role="document"] {
	border: 3px solid var(--primary);
	display: flex;
	flex-direction: column;
}

.facts-dialog-header {
	font-weight: bold;
	font-size: 1.25rem;
	padding-bottom: 10px;
}

.ngdialog.ngdialog-theme-default .ngdialog-content {
	width: 90% !important;
	max-width: 450px !important;
}

.ngdialog.ngdialog-theme-default .ngdialog-close:before {
	padding: 5px;
	font-size: 2rem;
	line-height: 1.2rem;
}

.ngdialog-button.ngdialog-button-primary {
	background: var(--primary) !important;
}

.ngdialog-button.ngdialog-button-primary:hover {
	background: var(--primary-light) !important;
	color: var(--black) !important;
}

@media screen and (max-width: 768px) {
	header {
		height: 50px;
	}

	.headimg {
		height: 40px;
		padding: 5px;
		border-radius: 0px;
		width: 100%;
	}

	header>div {
		width: 100%;
	}

	.nav {
		display: none;
	}

	.nav.responsive {
		display: flex;
		width: 100%;
		position: absolute;
		top: 52px;
		background-color: var(--grey-light);
		padding: 10px 0px;
		overflow: auto;
		z-index: 999;
	}

	.nav>div {
		flex-direction: column;
		width: 100%;
		background-color: transparent;
	}

	.nav>div:LAST-CHILD {
		margin-top: 0px;
	}

	.nav a {
		width: 65%;
		max-width: 300px;
		margin: 3px auto;
	}

	.icon {
		display: flex;
	}

	.nav.responsive+.icon {
		background-image: url("../icons/close.png");
	}

	.cartnumber {
		right: calc(50% - 23px);
	}

	#search {
		text-align: center;
		width: calc(65% + 16px);
		max-width: 316px;
	}

	.search_field {
		padding-left: 100%;
		background-position: 50%;
	}

	.search_field:FOCUS {
		width: calc(100% - 40px);
		max-width: 376px;
		padding-left: 40px;
		background-position: 8px 50%;
	}

	main>div:FIRST-CHILD {
		padding-top: 77px;
	}
}

@media screen and (max-width: 425px) {
	.footmid>div:LAST-CHILD {
		text-align: left;
	}

	.footnote {
		justify-content: space-around;
	}
}