@import url('/logo.css');
@import url('https://fonts.googleapis.com/css?family=Mulish:400,700|Poppins:400,700,900&display=swap');

html, body {
	padding: 0;
	margin: 0;
	font-family: 'Mulish', sans-serif;
	font-size: 14px;
}

svg {
	fill: currentColor;
}

nav {
	display: flex;
	height: 60px;
	padding: 0 14px;
	align-items: center;
}

.icon {
	display: inline-block;
	width: 1em;
	height: 1em;
	fill: currentColor;
}

a {
	transition: color .1s ease-in-out;
}
a:link,
a:visited
{
	color: var(--primary);
}

h1,
h2,
button
{
	font-family: 'Poppins', sans-serif;
}

.h--section {
	margin: 0;
	font-weight: 700;
	font-size: 20px;
	display: flex;
	grid-row-gap: 10px;
	flex-direction: column;
	text-transform: uppercase;
}
.h--section::after {
	content: '';
	height: 5px;
	width: 40px;
	background-color: currentColor;
}

form {
	display: flex;
	flex-direction: column;
}

h1 + .form__group,
.form__group + .form__group {
	margin-top: 30px;
}
.form__group {
	display: grid;
	grid-template-columns: repeat(var(--columns), minmax(0, 1fr));
	grid-gap: 20px 40px;
	padding: 30px;
	border: 1px solid #e4e4e4;
}
.form__group .form__h {
	margin-bottom: calc(30px - 20px);
}
.form__group .form__h,
.form__group .error
{
	grid-column: 1 / -1;
}
.form__h + :not(.form__row):not(.form__field) {
	margin-top: -10px;
}

.form__field {
	/* Handles overflow (better than flex). */
	display: grid;
	grid-gap: 10px;
	grid-template-rows: auto minmax(0, auto) 1fr;
	flex: 1 1 10ch;
}
.form__field--fat {
	flex: 2 1 20ch;
}
.form__field--FUCKING-ROW {
	grid-template-rows: none;
	grid-auto-columns: auto 1fr;
	grid-auto-flow: column;
}
.form__field--FUCKING-ROW > label {
	align-self: center;
}

.form__group label {
	font-size: 12px;
}
.form__row {
	display: flex;
	flex-direction: row;
	grid-gap: 10px;
	flex-wrap: wrap;
}
.form__row--group {
	grid-gap: 20px 40px;
}

.form__rlabel,
label {
	color: #828282;
	user-select: none;
}

.form__rlabel {
	text-align: right;
}

.checkbox {
	display: flex;
	align-items: center;
	grid-gap: 10px;
}
.checkbox > input {
	appearance: none;
}
.checkbox > input:checked {
	background-image: url(/tick.svg);
	background-color: var(--primary);
	background-repeat: no-repeat;
	background-position: 5px 7px;
	border-color: var(--primary);
}
.checkbox > input:checked:disabled,
.checkbox > input:checked[readonly]
{
	background-color: #dfdfdf;
	border-color: #dfdfdf;
}

fieldset {
	margin: unset;
	padding: unset;
	border: unset;
}

input,
select,
textarea
{
	font: inherit;
	letter-spacing: .5px;
	color: black;
	background-color: transparent;
	border: 1px solid #e0e0e0;
	border-radius: 0;
	padding: 8px 10px;
	box-sizing: border-box;
	height: 40px;
	width: 100%;
	margin: 0;
}
textarea {
	resize: vertical;
	height: 100%;
}
input::placeholder {
	color: #e0e0e0;
	letter-spacing: inherit;
}
input:invalid:not(:placeholder-shown):not([type=datetime-local]) {
	border-color: var(--error);
}
input:focus,
select:focus,
textarea:focus
{
	outline: none;
	border-color: var(--primary);
}
select {
	min-width: max-content;
}
input[type=checkbox] {
	height: 25px;
	width: 25px;
}
button:disabled
{
	cursor: not-allowed;
}
input:disabled,
select:disabled,
textarea:disabled,
input[readonly],
select[readonly]
{
	background-color: rgba(0, 0, 0, .028);
	color: #606060;
	cursor: not-allowed;
	opacity: 1; /* select:disabled has opacity in Chromium. */
}
.input--title {
	font-family: 'Poppins', sans-serif;
	line-height: 40px;
	font-weight: 700;
	font-size: 24px;
	height: 60px;
}

.submit-btn,
button[type=submit] {
	font-weight: 700;
	background-color: var(--primary);
	color: white !important;
	text-transform: uppercase;
	padding: 8px 20px;
	line-height: 24px;
	border: none;
	cursor: pointer;
	width: max-content;
	display: block;
	text-decoration: none;
}
button[type=submit]:disabled {
	background-color: #828282;
}

.hr {
	border-top: 1px solid #e0e0e0;
}

.mt-10 {
	margin-top: 10px;
}
.mt-20 {
	margin-top: 20px;
}
.mt-30 {
	margin-top: 30px;
}
.mt-40 {
	margin-top: 40px;
}

.pattern {
	background-color: var(--primary);
	background-image: url(/mask.png);
	background-blend-mode: color-burn;
	color: white;
}
.pattern h1 {
	padding: var(--h1-padding) 0;
}

nav,
main
{
	margin: 0 auto;
}

footer {
	padding-top: 60px;
}

.nav {
	background-color: var(--primary);
	color: white;
	position: sticky;
	top: 0;
	z-index: 1000;
}
.nav__inner {
	margin: 0 auto;
	max-width: var(--content-width);
	width: 100%;
	display: flex;
	grid-gap: 20px;
	align-items: center;
	position: relative;
}
.nav__brand {
	padding: 0 20px;
	border-right: 4px solid white;
	color: inherit !important;
}
.nav__title {
	color: #36CAA9;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis
}
.nav__menu-button {
	cursor: pointer;
	font-size: 36px;
	margin-left: auto;
	height: 60px;
	padding: 0 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
.nav__hr {
	border-top: 1px solid white;
	opacity: .3;
}
.nav__toggle:checked ~ * .nav__menu-button {
	background-color: var(--primary-dark);
}
.nav__toggle:checked ~ * .nav__menu-button::after {
	content: '';
	border: 15px solid transparent;
	border-top-color: var(--primary-dark);
	border-bottom: none;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, calc(50% - 1px));
	z-index: 1001;
	border-radius: 1px;
	pointer-events: none;
}
.nav__menu {
	list-style: none;
	padding: 25px 15px 20px 15px;
	background-color: #3D8B8E;
	position: absolute;
	top: 100%;
	right: 0;
	font-weight: 700;
	z-index: 1000;
	margin: 0;
	display: flex;
	grid-gap: 20px;
	line-height: 1em;
	flex-direction: column;
	min-width: 32ch;
}
.nav__menu-close,
.nav__mobile-hr
{
	display: none;
}
.nav__menu a {
	color: white;
	text-decoration: none;
}
.nav__menu a:hover {
	color: #0c3e40;
}
.nav__toggle:checked + .nav__overlay {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 100;
}
.nav__toggle:not(:checked) ~ * .nav__menu {
	display: none;
}
.nav__username {
	font-size: 16px;
}
.nav__email {
	font-size: 12px;
	opacity: .7;
	padding-top: 6px;
}

.content {
	width: 100%;
	max-width: var(--content-width);
}
.content--bg {
	background-color: white;
	background-clip: content-box;
}

p {
	margin: unset;
}

.content {
	box-sizing: border-box;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}
.content--slim {
	padding: 0 var(--content-padding);
}

.error {
	color: var(--error);
	font-weight: 700;
	margin-top: 30px;
	border: 2px solid var(--error);
	padding: 30px;
}
.error > ul {
	margin: 0;
}
.split .error {
	padding: 0;
	border: none;
}
.form__group > .error {
	margin-top: 0; /* Have gap. */
}

.info {
	color: var(--primary);
	font-weight: 700;
}

.grid-col-full {
	grid-column: 1 / -1;
}

.grid-col-1 {
	grid-column: 1;
}

.input-row {
	display: flex;
}
.input-text {
	height: 100%;
	border: 1px solid #e0e0e0;
	color: #333;
	box-sizing: border-box;
	border-right: none;
	display: flex;
	align-items: center;
	padding: 0 10px;
	background-color: rgba(0, 0, 0, .045);
	box-shadow: 0 0 2px rgba(0, 0, 0, .03) inset;
}

.h-row {
	display: flex;
	flex-wrap: wrap;
	grid-gap: 30px;
	align-items: start;
}
.ms-auto {
	margin-left: auto;
}

.a-btn {
	letter-spacing: .5px;
	font-family: 'Poppins', sans-serif;
	font-weight: bold;
	color: #333 !important;
	text-transform: uppercase;
	border: 2px solid #cdcdcd;
	padding: 8px 20px;
	background-color: white;
	text-decoration: none;
	display: inline-block;
	cursor: pointer;
}

.delete-btn {
	background-color: var(--error);
}

.row {
	display: flex;
	flex-direction: row !important;
	align-items: center;
	grid-gap: 10px;
}

/* split {{{1 */
.split {
	display: grid;
	--split: .55;
	grid-template-columns: calc(100% * var(--split)) calc(100% - 100% * var(--split));
	height: 100%;
}
.split__left {
	margin-left: auto;
	width: 100%;
	display: flex;
	flex-direction: column;
}
.split nav
{
	margin-right: 0;
}
.split main
{
	margin: auto 0 auto auto;
}
.split__content {
	width: 80%;
}

.split nav,
.split .content
{
	width: calc(min(100% - (100% / var(--split) - var(--content-width)) / 2, 100%));
	box-sizing: border-box;
}

.split .form__group {
	display: flex;
	flex-direction: column;
	border: none;
	padding: 0;
}

.mini-heart {
	position: fixed;
	transition: transform .3s cubic-bezier(0.390, 0.575, 0.565, 1.000);
}
.mini-heart:hover
{
	transform: scale(120%);
}

.heart {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 30vmin;
	height: auto;
	fill: white;
}
/* 1}}} */

.pattern__heart {
	position: absolute;
	right: 1%;
	bottom: -20%;
	width: auto;
	height: 100%;
	fill: white;
}

.status {
	font-family: 'Mulish', sans-serif;
	font-size: 12px;
	letter-spacing: .5px;
	line-height: 24px;
	font-weight: 600;
	height: 40px;
	box-sizing: border-box;
	padding: 8px 15px;
}

.price {
	display: flex !important;
	flex-direction: row !important;
	grid-gap: 20px !important;
}
.price__input {
	appearance: none;
	position: absolute;
	width: 0;
	height: 0;
	padding: 0;
	clip: rect(0 0 0 0);
}
.price__item {
	font-family: 'Poppins', sans-serif;
	line-height: 24px;
	font-size: 12px;
	font-weight: 700;
	color: #333;
	border: 2px solid #cdcdcd;
	background-color: white;
	cursor: pointer;
	text-align: center;
	min-width: 3ch;
	padding: 1px 13px;
}
.price__input:focus + .price__item {
	border-color: black;
}
.price__input:checked + .price__item {
	color: white;
	border-color: black;
	background-color: black;
}
.price__input:disabled + .price__item {
	border-color: #dfdfdf;
	color: #dfdfdf;
	cursor: not-allowed;
}
.price__input:disabled:checked + .price__item {
	color: white;
	background-color: #dfdfdf;
}

.gallery {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	grid-auto-rows: 200px;
	grid-gap: 10px;
}
.gallery__item {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.tiles {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	grid-auto-rows: 230px;
	grid-gap: 20px;
	list-style: none;
	padding: 0;
	margin: 30px 0;
}
.tiles__item-container-parent {
	display: block;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
}
.tiles__item-container {
	display: grid;
	grid-template-rows: minmax(0, 1fr) auto;
	position: relative;
	text-decoration: none;
	color: black !important;
	font-size: 18px;
	line-height: 30px;
	border: 1px solid #e4e4e4;
	height: 100%;
	width: 100%;
	box-sizing: border-box;
}
.tiles__img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}
.tiles__title {
	font-family: 'Poppins', sans-serif;
	font-weight: 900;
	font-size: 18px;
	line-height: 1em;
	padding: 15px;
	margin: 0;
	background: rgba(255, 255, 255, .5);
	box-sizing: border-box;

	background: white;
	border-top: 3px solid #ffc61a;
}
.tiles__status {
	font-family: 'Poppins', sans-serif;
	letter-spacing: .5px;
	line-height: 20px;
	font-size: 12px;
	font-weight: 600;
	padding: 5px 10px;
	color: white;
	position: absolute;
	/* border-radius: 20px; */
	/* opacity: .95; */
	top: 10px;
	right: 10px;
}

.file-drop {
	display: flex;
	flex-direction: column;
	grid-gap: 20px;
}
.file-drop__area {
	border: 2px dashed #e0e0e0;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 150px;
	cursor: pointer;
}
.file-drop__placeholder {
	font-size: 14px;
	color: black;
}
.file-drop__result {
}
.file-drop__result:empty {
	display: none;
}

.upload {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	grid-auto-rows: 120px;
	grid-gap: 10px;
	padding: 10px 0;
}
.upload__item {
	display: grid;
	grid-template-rows: repeat(2, minmax(0, 1fr));
	grid-template-columns: 100px minmax(0, 1fr);
	grid-template-areas:
		"img name"
		"img status";
	border: 1px solid #e4e4e4;
	padding: 10px;
	grid-column-gap: 10px;
	grid-row-gap: 5px;
}
.upload__img {
	grid-area: img;
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.upload__name {
	grid-area: name;
	align-self: flex-end;
	font-weight: bold;
	display: inline-block;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.upload__status {
	grid-area: status;
	display: inline-block;
	align-self: flex-start;
	font-size: 12px;
	color: #828282;
	overflow: hidden;
}
.upload__status--success {
	color: var(--error);
	color: var(--primary);
}
.upload__status--fail {
	color: var(--error);
	font-weight: bold;
}

:root {
	--primary: #086565;
	--primary-dark: #005454;
	--error: #ff4047;
	--columns: 2;
	--split: 1;
	--h1-padding: 100px;
	--content-padding: 50px;
	--content-width: 82rem;
}

.cover {
	object-fit: cover;
	overflow: hidden;
	min-height: 25vmax;
	height: 30vh;
	width: 100%;
	margin-bottom: -60px;
}

.hint {
	margin: 0;
	font-size: 12px;
	color: #414141;
	cursor: help;
}

/* Mobile. */
@media screen and (max-width: 48rem) {
	.d-none\:mobile {
		display: none;
	}

	:root {
		--columns: 1;
		--h1-padding: 60px;
		--content-padding: 14px;
	}

	.cover {
		margin-bottom: 30px;
	}

	.split {
		grid-template-columns: initial;
		--split: 1;
	}
	.split__content {
		width: 100%;
	}
	.split__right {
		display: none;
	}

	.form__group {
		border: none;
		margin-top: 0 !important;
		padding-left: 0;
		padding-right: 0;
	}

	.nav__menu {
		position: fixed;
		top: 60px; /* .nav height */
		left: 0;
		background-color: var(--primary);
		padding-top: 0;
	}
	.nav__menu-button {
		background-color: unset !important;
	}
	.nav__menu-button::after {
		content: none !important;
	}
	.nav__toggle:checked ~ * .nav__menu-open {
		display: none;
	}
	.nav__toggle:checked ~ * .nav__menu-close {
		display: block;
	}
	.nav__toggle:checked ~ * .nav__mobile-hr {
		display: block;
	}

	button {
		flex: 1;
	}

	.pattern__heart {
		display: none;
	}

	.form__row {
		flex-direction: column;
	}
	.form__row > * {
		flex-basis: unset;
	}
}

.privacy-policy {
	grid-gap: 0;
}

.privacy-policy h1 {
	display: flex;
	flex-direction: column;
	font-size: 20px;
	font-weight: 700;
	grid-row-gap: 10px;
	margin: 0;
	margin-bottom: 2rem;
	text-align: center;
	text-transform: uppercase;
	width: 100%;
}

.privacy-policy h1 > span, .privacy-policy h1 > small {
	display: block;
}

.privacy-policy h1 > small {
	font-size: 16px;
}

.privacy-policy h2 {
	font-size: 16px;
	margin: 0;
	margin-top: 1rem;
	text-decoration: underline;
	width: 100%;
}

.privacy-policy p {
	display: block;
	text-align: justify;
	width: 100%;
}

.privacy-policy p.indent {
	padding-left: 4rem;
}

.privacy-policy p.m-top {
	margin-top: 2rem;
}

.privacy-policy p.right {
	text-align: right;
}

.d-none {
	display: none;
}

#ApproveCheck1Hint > label {
	margin-left: 2.5rem;
}

label.justify {
	text-align: justify;
}