:root {
	/* --background: hsl(20deg 5% 13%); */
	--background-body: hsl(230deg 5% 7%);
	--background-content: hsl(230deg 5% 11%);
	--background-nav: hsl(230deg 5% 25%);
	--background-search: hsl(230deg, 4%, 23%);
	--background-filters: hsl(230deg, 4%, 20%);
	--background-editor: hsl(230deg, 5%, 13%);
	--background-editor-panel: hsl(230deg, 5%, 19%);
	--background-input: hsl(213deg, 18%, 79%);
	--background-notification: hsl(240, 11%, 74%);
	--white: hsl(0 0% 100%);
	--white-10: hsl(0 0% 100% / 0.1);
	--white-20: hsl(0 0% 100% / 0.2);
	--white-25: hsl(0 0% 100% / 0.25);
	--white-35: hsl(0 0% 100% / 0.35);
	--white-50: hsl(0 0% 100% / 0.5);
	--white-70: hsl(0 0% 100% / 0.7);
	--black-10: hsl(0 0% 0% / 0.1);
	--black-20: hsl(0 0% 0% / 0.2);
	--black-30: hsl(0 0% 0% / 0.3);
	--black-50: hsl(0 0% 0% / 0.5);
	--black-70: hsl(0 0% 0% / 0.7);
	--grey-80: hsl(230deg 5% 80%);
	--grey-70: hsl(230deg 5% 70%);
	--grey-60: hsl(230deg 5% 60%);
	--grey-50: hsl(230deg 5% 50%);
	--grey-40: hsl(230deg 5% 40%);
	--grey-33: hsl(230deg 5% 33%);
	--grey-30: hsl(230deg 5% 30%);
	--grey-25: hsl(230deg 5% 25%);
	--grey-20: hsl(230deg 5% 20%);
	--grey-15: hsl(230deg 5% 15%);
	--grey-10: hsl(230deg 5% 10%);
	--blue: hsl(213deg, 69%, 69%);
	--blue-2: hsl(213deg 78% 68%);
	--green: hsl(145deg, 58%, 51%);
	--green-2: hsl(145deg, 40%, 62%);
	--green-3: hsl(145deg, 100%, 55%);
	--button: hsl(145deg 70% 35%);
	--button-hover: hsl(145deg 70% 40%);
	--button-blue: hsl(213, 86%, 39%);
	--button-blue-hover: hsl(213, 80%, 48%);
	--red: hsl(355deg 100% 68%);
	--red-dark: hsl(355deg 58% 41%);
	--list-color-green: hsl(145deg 58% 19%);
	--list-color-green-2: hsl(145deg 58% 26%);
	--list-color-green-3: hsl(145deg, 58%, 51%);
	--list-color-blue: hsl(211deg 67% 20%);
	--list-color-blue-2: hsl(211deg 67% 27%);
	--list-color-blue-3: hsl(211, 90%, 66%);
	--list-color-red: hsl(355deg 72% 17%);
	--list-color-red-2: hsl(355deg 72% 24%);
	--list-color-red-3: hsl(355deg 100% 68%);
}

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.list-item-placeholder {
	width: 10rem;
	height: 4rem;
	background-color: red;
}

#test_output {
	background: #b0ccff;
	padding: 1rem;
	color: #000;
}

#error {
	background: var(--red-dark);
	font-size: 14px;
}

#error div {
	padding: 15px;
}

html {
	font-size: 10px;
	/* scroll-behavior: smooth; */
}

body {
	background: var(--background-content);
	color: #fff;
	font-family: 'Roboto', sans-serif;
	margin: 0;
	padding: 5.5rem 0 0 0;
}

section {
	font-size: 1.8rem;
	max-width: 60rem;
	margin: 3rem auto;
}

.hidden {
	display: none;
}

.button {
	background-color: var(--button);
	border-radius: .3rem;
	cursor: pointer;
	font-size: 1.8rem;
	padding: 1rem 2rem;
	text-align: center;
	transition: background-color .2s ease-in-out;
	user-select: none;
}

.button:hover {
	background-color: var(--button-hover);
	transition: background-color .2s ease-in-out;
}

.button span {
	display: inline-block;
	margin-top: .3rem;
	font-size: 1.6rem;
	font-weight: 400;
}

.button.button-bold {
	font-weight: 600;
	font-weight: 2rem;
}

.button.button-blue {
	background-color: var(--button-blue);
}

.button.button-blue:hover {
	background-color: var(--button-blue-hover);
	transition: background-color .2s ease-in-out;
}

h1 {
	color: var(--green);
	font-family: 'Roboto Slab', sans-serif;
	font-size: 3.3rem;
	font-weight: 700;
	margin: 0 0 2rem;
}

/* ///////////////////////////////////////////////////////////////////////// Toggle // */
.toggle {
	background: var(--grey-40);
	border-radius: 100rem;
	cursor: pointer;
	display: inline-block;
	height: 1.8rem;
	min-width: 4.5rem;
	position: relative;
	user-select: none;
}

.toggle-handle {
	background: var(--grey-50);
	border-radius: 2rem;
	height: 2.5rem;
	left: 0;
	position: absolute;
	top: -0.33rem;
	transition: all .2s ease-in-out;
	width: 2.5rem;
}

.toggle.on .toggle-handle {
	background: var(--green);
	left: calc(100% - 2.5rem);
	transition: all .2s ease-in-out;
}

/* ///////////////////////////////////////////////////////////////////////// Switcher // */
.switcher {
	display: grid;
	grid-template-columns: 1fr 1fr;
	background: var(--grey-25);
	border-radius: 5rem;
	overflow: hidden;
	padding: 0.3rem;
}

.switcher-option {
	color: var(--grey-80);
	align-items: center;
	display: grid;
	height: 3.5rem;
	justify-items: center;
	width: 3.5rem;
}

.switcher-option .svg {
	width: 2rem;
	height: 1.8rem;
	display: grid;
	align-items: center;
	margin: 0.2rem 0;
}

.switcher-option svg {
	fill: #fff;
}

.switcher-option.selected {
	background: var(--green);
	border-radius: 5rem;
	color: #000;
}

.switcher-option.selected svg {
	fill: #000;
}


/* ///////////////////////////////////////////////////////////////////////// Modal // */
.modal {
	display: none;
	width: 300px;
	background: var(--background-editor-panel);
	font-size: 1.7rem;
	padding: 3rem;
	position: absolute;
	top: 8.5rem;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 0.5rem;
	box-shadow: 0 1rem 3rem #000;
}

.modal-cover {
	display: none;
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 5.5rem;
	left: 0;
	background-color: var(--black-70);
}

/** ////////////////////////////////////////////////////////////////////////////////////////// */
/** /////////////////////////////////////////////////////////////////////////////////  Nav  // */
/** ////////////////////////////////////////////////////////////////////////////////////////// */

nav {
	font-size: 1.6rem;
	align-items: center;
	background: var(--background-nav);
	box-shadow: 0 0 15px hsl(0deg 0% 0% / 50%);
	display: grid;
	grid-template-columns: auto max-content;
	height: 5.5rem;
	padding: 0 .7em;
	position: relative;
	user-select: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 4;
}

#buttons > div {
	display: inline-block;
	background: var(--black-20);
	border-radius: 30px;
	font-size: 1.6rem;
	font-family: 'Roboto', sans-serif;
	padding: .5em 1em;
	outline: none;
	border: none;
	color: #fff;
	vertical-align: middle;
	text-decoration: none;
	height: 34px;
	transition: all .2s ease-in-out;
	cursor: pointer;
	user-select: none;
}

#buttons > div svg {
	fill: #fff;
	width: 1.8rem;

}

#buttons > div:hover {
	background: var(--black-30);
	transition: all .2s ease-in-out;
}

#search_wrapper {
	display: inline-block;
	position: relative;
}

#search {
	width: 5.2em;
	transition: width .2s ease-in-out;
}

#search.active {
	width: 15em;
	padding: 0.5em 2.6em 0.5em 1em;
	transition: width .2s ease-in-out;
}

#search::placeholder {
	color: #fff;
	opacity: 1;
}

#search.active::placeholder {
	opacity: 0;
}

#search_clear {
	display: none;
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: 4rem;
	text-align: center;
	cursor: pointer;
}

#search_clear svg {
	fill: var(--white-50);
	width: 40%;
	margin-top: .4rem;
	transition: all .2s ease-in-out;
}

#search_clear:hover svg {
	fill: var(--white);
	transition: all .2s ease-in-out;
}


.nav-button {}

.nav-button svg {
	fill: var(--white-50);
	transition: all .2s ease-in-out;
}

.nav-button:hover svg {
	fill: var(--white);
	transition: all .2s ease-in-out;
}

.fab {
	position: fixed;
	bottom: 4rem;
	right: 4rem;
	width: 5.5rem;
	height: 5.5rem;
	fill: var(--green);
	background: hsl(145 100% 15% / 1);
	border-radius: 3rem;
	box-shadow: 0 10px 20px 10px hsl(0deg 0% 0% / 35%);
}


/** ////////////////////////////////////////////////////////////////////////////////////////// */
/** ///////////////////////////////////////////////////////////////////////////////  Lists  // */
/** ////////////////////////////////////////////////////////////////////////////////////////// */

#lists_shared {
	display: none;
}

.lists {}

.lists .list {
	padding: 1.2rem;
	border-radius: 0.3rem;
	font-size: 2.5rem;
	font-family: 'Roboto Slab';
	margin-bottom: 1rem;
}

.lists .list.list-color-green {
	background: var(--list-color-green);
	border: 1px solid var(--list-color-green-2);
}

.lists .list.list-color-red {
	background: var(--list-color-red);
	border: 1px solid var(--list-color-red-2);
}

.lists .list.list-color-blue {
	background: var(--list-color-blue);
	border: 1px solid var(--list-color-blue-2);
}

.lists .list .list-user {
	font-size: 1.8rem;
	text-transform: capitalize;
	font-family: 'Roboto';
	margin-top: 0.3rem;
}


/** ////////////////////////////////////////////////////////////////////////////////////////// */
/** ///////////////////////////////////////////////////////////////////////////  View List  // */
/** ////////////////////////////////////////////////////////////////////////////////////////// */

article {
	font-size: 1.8rem;
	background: var(--background-content);
	border-radius: .5rem;
	display: none;
	margin: 3rem auto;
	max-width: 60rem;
	min-height: calc(100vh - 11.5rem);
	padding: 3rem 4rem;
	position: relative;
}

article.not-found {
	min-height: unset;
}

article h1.list-color-blue {
	color: var(--list-color-blue-3);
}

article h1.list-color-green {
	color: var(--list-color-green-3);
}

article h1.list-color-red {
	color: var(--list-color-red-3);
}

article h2 {
	font-size: 2.2rem;
	margin: 0 0 2rem;
	color: var(--green-2);
}

article h3 {
	font-size: 2.0rem;
	margin: 0 0 2rem;
	color: var(--green-2);
}


#list_header {
	align-items: center;
	display: grid;
	grid-template-columns: auto max-content;
	gap: 2rem;
	margin: 0 0 2rem;
}

#list_header h1 {
	margin: 0;
}

#list_user {
	text-transform: capitalize;
	font-size: 1.8rem;
	font-family: 'Roboto', sans-serif;
	color: var(--green-2);
}

#list_items,
#shared_list_items {
	display: grid;
	gap: 0.3rem;
	margin-bottom: 10.5rem;
}

#list_message {
	display: none;
	background: var(--black-50);
	padding: 2rem;
	font-size: 1.8rem;
	max-width: 60rem;
	margin: auto;
}

#list_message h2 {
	color: var(--green);
	margin-top: 0;
}

#list_cover {
	display: none;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: var(--black-30);
}

.list-item {
	align-items: center;
	background: var(--grey-20);
	border-radius: .3rem;
	border: .2rem solid transparent;
	display: grid;
	font-size: 2rem;
	grid-template-columns: max-content auto max-content max-content;
	transition: border .2s ease-in-out;
	user-select: none;
	min-height: 4.4rem;
	position: relative;
}

article.shared-mode .list-item {
	grid-template-columns: auto max-content max-content;
}

.list-item.checked {
	background: var(--grey-15);
}

.list-item.removing {
	background: var(--red-dark);
}

.list-item-sort {
	width: 3.3rem;
	padding: 0.6rem 0.8rem;
}

article.shared-mode .list-item-sort {
	display: none;
}

.list-item-sort svg {
	fill: var(--white-50);
	margin-top: 0.2rem;
}

.list-item.checked .list-item-sort svg {
	fill: var(--white-35);
}

.list-item-label {
	position: relative;
	/* no styles so far */
}

.list-item-label-input {
	background: transparent;
	border-radius: .3rem;
	border: 0;
	color: #fff;
	font-family: inherit;
	font-size: inherit;
	outline: 0;
	padding: .5rem .5rem;
	line-height: 2.5rem;
}

.list-item.checked .list-item-label-input {
	color: var(--white-35);
}

.list-item .list-item-label-input:focus {
	/* color: #000; */
	/* background: var(--grey-60); */
	background: var(--white-10);
}

.list-item .list-item-label-input::selection {
	color: #000;
	background: var(--grey-60);
}

/*
.list-item:hover {
  border: .2rem solid var(--grey-25);
	transition: border .2s ease-in-out;
}
*/

.list-item-quantity {
	padding-left: 1rem;
	margin-right: 1rem;
}

.list-item-quantity span {
	font-size: 1.7rem;
	color: var(--white-50);
	display: inline-block;
	margin-right: .3rem;
}

.list-item-quantity em {
	font-size: 1.8rem;
	color: var(--green-2);
	display: inline-block;
	margin-left: .2rem;
	font-style: normal;
}

.list-item.checked .list-item-quantity {
	opacity: .5;
}


.list-item-checked {
	position: relative;
	height: 4rem;
	padding: .5rem 1rem;
	width: 4.6rem;
	display: none;
}

.list-item-checked svg {
	position: absolute;
	width: 2.6rem;
	height: 3rem;
}

.list-item-checked .fa-square {
	fill: var(--white-25);

}

.list-item-checked .fa-check {
	fill: var(--green-3);
	transform: scale(0.7);
	display: none;
}

.list-item.checked .list-item-checked .fa-check {
	display: block;
}

.list-item-remove {
	height: 3.6rem;
	padding: .5rem 1rem;
	width: 4.6rem;
}

.list-item-remove svg {
	width: 2.6rem;
	height: 2.6rem;
	fill: var(--white-50);
}

article.shop-mode .list-item .list-item-checked {
	display: block;
}

article.shop-mode .list-item .list-item-remove {
	display: none;
}

article.shared-mode .list-item .list-item-checked {
	display: block;
}

article.shared-mode .list-item .list-item-remove {
	display: none;
}

/*
.list-item.focused .list-item-checked {
	display: none;
}

.list-item.focused .list-item-remove {
	display: block;
}
*/

.list-item-results {
	display: none;
	position: absolute;
	width: 100%;
	background: var(--grey-33);
	border-radius: .3rem;
	z-index: 2;
	box-shadow: 0 0.5rem 1rem hsl(0deg 0% 0% / 25%);
}

.list-item-result {
	padding: .8rem 1rem;
}

.list-item-result:hover,
.list-item-result.selected {
	background: var(--white-10);
}

.list-item-quantity-picker {
	display: none;
	height: 100%;
	position: absolute;
	width: 100%;
	background: var(--background-content);
	padding: .3rem;
	border-radius: 0.3rem;
}

.list-item-quantity-grid {
	display: grid;
	grid-template-columns: 6.5rem repeat(6, 1fr);
	gap: 0.3rem;
}

.list-item-quantity-type {
	background: var(--grey-30);
	text-align: center;
	padding-top: 0.35rem;
	border-radius: 0.2rem;
}

.list-item-quantity-type.selected {
	background: var(--green-3);
	color: #000;
}

.list-item-quantity-label {
	position: absolute;
	left: 0.5rem;
	top: -1.3rem;
	color: var(--green);
	font-size: 1.6rem;
	background: #000;
	padding: 0.1rem 0.5rem;
	border-radius: 0.4rem;
	display: none;
}

.list-item-quantity-grid input {
	background: var(--grey-80);
	border: 0;
	border-radius: .3rem;
	color: #000;
	display: inline-block;
	font-size: 2rem;
	outline: none;
	width: 100%;
	margin-right: .5rem;
	padding: 0.55rem;
}

.list-item-quantity-grid input:focus {
	color: #000;
	background: var(--green-3);
}

.list-item-quantity-grid input::selection {
	color: #000;
	background: var(--green-3);
}

/* Chrome, Safari, Edge, Opera */
.list-item-quantity-grid input::-webkit-outer-spin-button,
.list-item-quantity-grid input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Firefox */
.list-item-quantity-grid input[type=number] {
	-moz-appearance: textfield;
}


/** ////////////////////////////////////////////////////////////////////////////////////////// */
/** ////////////////////////////////////////////////////////////////////////  Notification  // */
/** ////////////////////////////////////////////////////////////////////////////////////////// */

#notifications {
	position: fixed;
	bottom: 1.5rem;
	width: calc(100% - 3rem);
	left: 1.5rem;
	display: grid;
	gap: 1rem;
	z-index: 5;
}

.notification {
	background: var(--background-notification);
	color: #000;
	font-size: 2rem;
	border-radius: 0.4rem;
	display: grid;
	grid-template-columns: auto max-content;
}

.notification.error {
	background: var(--red);
}

.notification h2 {
	margin: 0;
	padding: 1.5rem 1.5rem 1rem 1.5rem;
}

.notification p {
	margin: 0;
	padding: 0 1.5rem 1.5rem 1.5rem;
}

.notification-dismiss {
	padding: 1.5rem;
	background: var(--black-20);
	grid-row: span 2;
	transition: background .2s ease-in-out;
}

.notification-dismiss:hover {
	background: var(--black-30);
	transition: background .2s ease-in-out;
}

.notification-dismiss-icon {
	width: 2rem;
}


/** ////////////////////////////////////////////////////////////////////////////////////////// */
/** /////////////////////////////////////////////////////////////////////// Search Results  // */
/** ////////////////////////////////////////////////////////////////////////////////////////// */

#search_results {
	display: none;
	font-size: 1.6rem;
	position: fixed;
	top: 5.5rem;
	left: 12.5rem;
	width: 40rem;
	background-color: var(--background-search);
	border-radius: 0 0 .3rem .3rem;
}

.search-result {
	cursor: pointer;
	padding: 1.15rem 1.5rem;
	border-top: 1px solid var(--black-20);
	transition: background-color .2s ease-in-out;
}

.search-result:hover {
	background-color: var(--background-nav);
	transition: background-color .2s ease-in-out;
}

.search-result:last-child {
	border-radius: 0 0 .3rem .3rem;
}

.search-results-none {
	font-style: italic;
	padding: 1.15rem 1.5rem;
	border-top: 1px solid var(--black-20);
	color: var(--white-70);
}


/** ////////////////////////////////////////////////////////////////////////////////////////// */
/** /////////////////////////////////////////////////////////////////////////////// Editor  // */
/** ////////////////////////////////////////////////////////////////////////////////////////// */

#editor {
	display: none;
	font-size: 1.7rem;
	background: var(--background-editor);
	border-radius: .5rem;
	margin: 3rem auto;
	max-width: 150rem;
	min-height: calc(100vh - 11.5rem);
	padding: 3rem;
}

#editor .tox-tinymce {
	border: 0;
}

#editor_grid {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 2rem;
}

#editor_grid h1 {
	grid-column: 1 / 3;
	grid-row: 1 / 2;
	color: var(--green);
	font-family: 'Roboto Slab', sans-serif;
	font-weight: 700;
	font-size: 3.3rem;
	margin: 0 0 1rem;
}

#editor_form {
	grid-column: 1 / 2;
	grid-row: 2 / 4;
	padding: 2rem;
}

#editor_ingredients {
	grid-column: 2 / 3;
	grid-row: 2 / 3;
}

#editor_directions {
	grid-column: 2 / 3;
	grid-row: 3 / 5;
}

#editor_save {
	grid-column: 1 / 2;
	grid-row: 4 / 5;
	margin: 0 2px 2px 2px;
	border-radius: 0.8rem;
}

#editor_description > label {
	margin: 2rem 0 .5rem 2rem;
	display: inline-block;
	font-size: 1.9rem;
}

#editor_form input,
#editor_form select {
	font-size: 1.6rem;
	padding: 0.7rem 0.8rem;
	border-radius: 0.3rem;
	border: 0;
	outline: none;
	background: var(--background-input);
}

#editor_form input:focus {
	background: var(--white);
}

#editor_form input:read-only {
	background: #3d4c60;
	color: #fff;
	cursor: default;
}

.editor-panel {
	background: var(--background-editor-panel);
	border: 2px solid #161f29;
	border-radius: 1rem;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr;
	gap: .5rem 1.5rem;
	margin-bottom: 2rem;
}

.form-row:last-child {
	margin-bottom: 0;
}

.form-row.double {
	grid-template-columns: 1fr 1fr;
}

.form-row.double label {
	grid-column: 1 / 3;
	grid-row: 1 / 2;
}

.input-checkboxes {
	margin-top: .5rem;
}

.form-input-checkbox {
	background: var(--background-input);
	color: #000;
	padding: 0.7rem;
	border-radius: 0.3rem;
	margin-right: 0.5rem;
	user-select: none;
	font-size: 1.6rem;
}


/** ////////////////////////////////////////////////////////////////////////////////////////// */
/** //////////////////////////////////////////////////////////////////////////////// Login  // */
/** ////////////////////////////////////////////////////////////////////////////////////////// */

#login h2 {
	margin-top: 0;

}

#login input {
	background: var(--background-input);
	padding: 0.8rem 1rem;
	width: 100%;
	margin: 0.5rem 0 2rem 0;
	border-radius: 0.2rem;
	border: 0;
	font-size: 1.7rem;
}

#login_error {
	color: var(--red);
	display: none;
}


/** ////////////////////////////////////////////////////////////////////////////////////////// */
/** ///////////////////////////////////////////////////////////////////////// Notification  // */
/** ////////////////////////////////////////////////////////////////////////////////////////// */

#notification {
	display: none;
	position: absolute;
	top: 7.5rem;
	width: 90%;
	background: var(--button);
	left: 50%;
	transform: translateX(-50%);
	font-size: 1.7rem;
	padding: 1.7rem 2rem;
	border-radius: 0.8rem;
	max-width: 40rem;
	box-shadow: 0 0 0 3000px var(--black-30), 0 1rem 3rem #000;
}

#notification.error {
	background: var(--red-dark);
}

#notification_title {
	font-size: 2.2rem;
}

#notification_text {
	margin-top: 1.5rem;
}

#notification_close {
	width: 4rem;
	height: 4rem;
	cursor: pointer;
	padding: 1.3rem 0 0 0.5rem;
	position: absolute;
	top: 0;
	right: 0;
}

#notification_close svg {
	width: 45%;
	fill: #fff;
}


/** ////////////////////////////////////////////////////////////////////////////////////////// */
/** ///////////////////////////////////////////////////////////////////////  Media Queries  // */
/** ////////////////////////////////////////////////////////////////////////////////////////// */

/*? // NOTE: Relative Units in media queries are always based off the initial root value (16) and ignore declared values */
/*? // NOTE: So REM units must be based on 16px instead of the 10px declared for the HTML attribute */

@media all and (max-width: 1570px) {
	#editor {
		border-radius: 0;
		margin: 0;
		max-width: unset;
		width: 100%;
		min-height: calc(100vh - 5.5rem);
		padding: 3rem 4rem;
	}
}

@media all and (max-width: 1200px) {
	body {
		background-color: var(--background-content);
	}

	/* article {
		margin: 0;
		width: 100%;
	} */
}

@media all and (max-width: 1100px) {
	section {
		width: 100%;
		padding: 2rem 3rem;
		margin: 0;
	}

	#tasks_list {
		grid-template-columns: 1fr;
	}

	#plants_list {
		grid-template-columns: 1fr;
	}

	#editor_grid {
		grid-template-columns: 1fr;
	}

	#editor_grid h1 {
		grid-column: unset;
		grid-row: unset;
	}

	#editor_form {
		grid-column: unset;
		grid-row: unset;
	}

	#editor_form {
		grid-column: unset;
		grid-row: unset;
	}

	#editor_save {
		grid-column: unset;
		grid-row: unset;
	}
}

@media all and (max-width: 850px) {
	#recipe {
		grid-template-columns: 1fr;
	}

	#editor {
		padding: 2rem;
	}

	article #plant_grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
}

@media all and (max-width: 550px) {
	#search_results {
		left: 0;
		width: 100%;
	}

	#search.active {
		width: 10em;
	}

	article {
		padding: 1.5rem;
		margin: 0 auto;
	}

	article h1 {
		font-size: 2.8rem;
	}
}

@media all and (max-width: 450px) {
	#editor {
		padding: 2rem 1rem;
	}
}

@media all and (max-width: 380px) {
	#fullscreen {
		display: none;
	}

	#task_date_range_start {
		margin-bottom: 5px;
	}
}
