@font-face {
	font-family: "Open Sans Bold";
	src: url(fonts/OpenSans-Bold.woff2) format("woff2");
	font-weight: 700;
	font-style: normal
}

@font-face {
	font-family: "Open Sans";
	src: url(fonts/OpenSans-Regular.woff2) format("woff2");
	font-weight: 400;
	font-style: normal
}

:root {
	--maxWidth: 1024px;
	--mainBG: #697f90;
	--mainFG: #fff;
	--black: #333;
	--green: #3e8502;
	--accent: #0594ec;
	--orange: #ff5500ff;
	--orange-trans: #ff550022;
	--blue: #4870bf;
	--font: "Open Sans", sans-serif;
	--serif: Habibi, Times;
	--fontBold: "Open Sans Bold", sans-serif;
	--opal: radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 70%)
}

html {
	font-size: 16px
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box
}

body {
	font-family: var(--font);
	min-height: 100vh;
	background-color: var(--green);
  background-image:
    radial-gradient(at 20% 30%, rgba(62, 133, 2, 0.5) 0px, transparent 50%),
    radial-gradient(at 80% 20%, rgba(120, 160, 60, 0.4) 0px, transparent 50%),
    radial-gradient(at 70% 80%, rgba(40, 90, 10, 0.4) 0px, transparent 50%),
    radial-gradient(at 30% 70%, rgba(90, 140, 30, 0.35) 0px, transparent 50%),
    radial-gradient(at 50% 50%, rgba(30, 70, 5, 0.3) 0px, transparent 60%);
  background-blend-mode: soft-light;
}

h1,
h2,
h3,
h4 {
	margin: 1rem 0;
	font-family: var(--font);
	font-weight: 400;
	color: var(--blue)
}

p {
	color: var(--black);
	-webkit-text-size-adjust: none;
	text-size-adjust: none
}

form {
	clear: both;
	width: 100%;
	max-width: 450px;
	margin: 2rem auto
}

.pac-item,
.pac-item-query {
	font-size: 1rem
}

.icons {
	display: inline-block;
	position: relative;
	background-size: auto;
	background-position: center center;
	background-repeat: no-repeat;
	height: 20px;
	width: 20px;
	transition: transform 0.3s ease-in-out;
	cursor: pointer;
	color: var(--green)
}

.icons:hover {
	transform: scale(1.2)
}

.thumb-up {
	top: 3px
}

.thumb-down {
	rotate: 180deg;
	top: 7px
}

.rec-btn .thumb-up,
.rec-btn .thumb-down {
	margin-right: 5px
}

.comment-icon {
	top: 5px
}

.burger-icon {
	width: 28px;
	height: 28px;
	top: 4px
}

.bell-icon {
	width: 28px;
	height: 28px;
	top: 5px
}

.menu-dots {
	width: 18px;
	height: 18px
}

.share-icon {
	top: 4px
}

.smiley-icon {
	color: grey;
	top: 4px
}

.camera-icon {
	height: 28px;
	width: 28px;
	top: 6px
}

.bell-ringing {
	width: 24px;
	height: 24px;
	top: 6px
}

.warning-icon {
	width: 24px;
	height: 24px;
	top: 6px
}

.users-icon {
	width: 26px;
	height: 26px
}

.post-legend .warning-icon {
	width: 18px;
	height: 18px;
	top: -2px;
	color: #fff;
	vertical-align: middle
}

#addAlert .warning-icon {
	width: 36px;
	height: 36px;
	color: #fff;
	margin-top: -6px
}

.send-icon {
	width: 24px;
	height: 24px
}

.pencil-icon {
	width: 24px;
	height: 24px;
	top: 6px
}

.waving-flag {
	width: 24px;
	height: 24px;
	top: 6px
}

.megaphone {
	width: 24px;
	height: 24px;
	top: 6px;
	transform: rotate(-30deg)
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="url"],
input[type="number"],
input[type="date"],
textarea,
select {
	display: block;
	clear: both;
	width: 100%;
	font-size: 1.2rem;
	padding: 9px;
	margin-bottom: 20px;
	border: 0;
	box-shadow: #ccc 0 0 0 1px;
	transition: box-shadow 0.2s;
	font-family: var(--font);
	color: var(--black);
	border-radius: 4px
}

input:focus,
textarea:focus,
select:focus {
	box-shadow: 0 0 0 2px var(--orange);
	outline: none
}

.inline-checkbox {
	display: inline;
	width: auto !important
}

button {
	cursor: pointer
}

button[type="submit"] {
	display: block;
	margin: 10px auto;
	font-size: 1.2rem;
	padding: 10px
}

#writePost textarea {
	min-height: 7rem
}

#writePost input[type="date"] {
	font-size: 1rem;
	text-align: center
}

#nav-container {
	background-color: #fff;
	z-index: 10
}

nav {
	display: flex;
	position: relative;
	max-width: 680px;
	align-items: center;
	padding: 15px;
	margin: 0 auto;
	font-size: 1.2rem;
	height: 50px
}

#logo {
	max-height: 50px;
	width: auto;
	cursor: pointer
}

#logo-text {
	color: var(--blue);
	font-family: var(--font);
	text-align: right;
	margin: 0;
	max-width: calc(100% - 150px);
	letter-spacing: -1px;
	font-size: 1rem;
	margin-left: 10px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	min-width: 0;
	flex-grow: 1
}

main {
	position: relative;
	width: 100%;
	max-width: var(--maxWidth);
	overflow: hidden;
	margin: 0 auto;
	top: 8px
}

main h1 {
	text-align: center;
	color: var(--mainFG)
}

p {
	font-family: var(--font);
	margin-bottom: 1rem;
	white-space: pre-line
}

main p {
	font-size: 1.2rem;
	color: var(--mainFG)
}

#toggleNotifications {
	position: relative
}

#notif-count {
	position: absolute;
	color: #fff;
	background: red;
	top: 2px;
	right: 23px;
	font-size: .8rem;
	font-weight: 700;
	padding: 0 3px;
	text-align: right;
	border-radius: 4px;
	box-shadow: 0 3px 3px rgb(0 0 0 / .2);
	display: none
}

#notif-menu {
	position: absolute;
	top: 50px;
	right: 0;
	max-width: 400px;
	max-height: 600px;
	background: #fff;
	box-shadow: rgb(0 0 0 / .2) 0 6px 6px;
	z-index: 20;
	padding: 10px;
	overflow-y: auto
}

#notif-menu button {
	display: flex;
	align-items: top;
	gap: 10px;
	justify-content: space-between;
	padding: 3px 6px;
	text-decoration: none;
	font-size: 1rem;
	appearance: none;
	background: #fff0;
	border: 0
}

#notif-menu button img {
	width: 48px;
	height: 48px;
	border-radius: 50%
}

#notif-menu button p {
	text-align: left;
	font-size: .9rem;
	margin-bottom: 0;
	color: var(--blue)
}

.unseen {
	font-weight: 700
}

.callout {
	border: 1px solid grey;
	background: var(--orange-trans);
	padding: 15px 20px 20px 50px;
	position: relative;
	border-radius: 15px;
	box-shadow: rgb(0 0 0 / .2) 0 3px 6px;
	font-weight: 700;
	font-size: .9rem;
	color: grey;
	display: inline-block;
	clear: both
}

.group-thumbs {
	display: flex;
	position: relative;
	width: 48px;
	height: 48px
}

#notif-menu button img.group-thumb {
	width: 32px;
	height: 32px;
	position: absolute
}

.group-thumb:nth-child(1) {
	z-index: 3;
	left: -8px;
	top: 8px
}

.group-thumb:nth-child(2) {
	z-index: 2;
	left: 0;
	top: 8px
}

.group-thumb:nth-child(3) {
	z-index: 1;
	left: 8px;
	top: 8px
}

#overlayContainer .callout {
	border: none;
	background: #fff0;
	box-shadow: none;
	color: #fff;
	text-align: left;
	font-weight: 400;
	margin-bottom: 0
}

.callout::before {
	position: absolute;
	content: "\1F4A1";
	top: 8px;
	left: 18px;
	font-size: 24px
}

.custom-select-wrapper {
	position: relative;
	width: 100%
}

.custom-select-trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 12px;
	border: 1px solid #ddd;
	border-radius: 4px;
	background: #fff;
	cursor: pointer;
	transition: border-color 0.2s ease
}

.custom-select-trigger:hover {
	border-color: #999
}

.custom-select-trigger.open {
	border-color: #007bff;
	box-shadow: 0 0 0 2px rgb(0 123 255 / .1)
}

.selected-option {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--blue)
}

.option-thumbnail {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	object-fit: cover
}

.custom-select-options {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 4px;
	margin-top: 4px;
	max-height: 200px;
	overflow-y: auto;
	z-index: 1000;
	display: none;
	box-shadow: 0 4px 12px rgb(0 0 0 / .1)
}

.custom-select-options.show {
	display: block
}

.custom-option {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 12px;
	cursor: pointer;
	transition: background-color 0.2s ease
}

.custom-option:hover {
	background-color: #f5f5f5
}

.custom-option.selected {
	background-color: #e3f2fd;
	font-weight: 500
}

.custom-option:not(:last-child) {
	border-bottom: 1px solid #eee
}

.dropdown-arrow {
	transition: transform 0.2s ease
}

.dropdown-arrow.open {
	transform: rotate(180deg)
}

.write-post-options {
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	margin-bottom: 28px
}

.write-post-options div {
	width: 45%;
	text-align: center;
	cursor: pointer;
	border: 1px solid #fff0
}

.is_alert {
	color: #b00
}

.textarea-container {
	position: relative
}

.textarea-container button {
	position: absolute;
	bottom: 8px;
	right: 10px
}

.post {
	position: relative;
	width: 100%;
	border-radius: 10px;
	background: #fff;
	padding: 20px 20px 10px;
	max-width: 680px;
	margin: 0 auto 9px;
	box-shadow: 0 4px 4px rgb(0 0 0 / .25)
}

.post p {
	color: var(--black)
}

#modalContent .post {
	box-shadow: none
}

.urgent {
	border: 3px solid var(--orange);
	box-shadow: inset 0 0 8px 2px var(--orange-trans)
}

.system-message {
	background: #efefef;
	padding: 13px 20px 3px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	position: relative
}

.system-message p {
	font-size: 1.05rem
}

.close-reminder {
	position: absolute;
	top: 5px;
	right: 11px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem !important;
	color: var(--blue) !important
}

.reminder .bell-ringing use {
	color: #fff
}

.reminder .icons {
	top: 3px
}

.reminder .custom-btn {
	width: auto;
	margin: 0 10px 10px;
	padding: 10px 15px
}

#post_prompt {
	padding: 10px 20px;
	height: 80px;
	background: #f0f3fa;
	display: flex;
	align-items: center;
	justify-content: space-between
}

#post_prompt input {
	margin: 0;
	border-radius: 6px;
	border: 1px solid grey;
	width: calc(100% - 60px)
}

.post-header,
.comment-header {
	display: flex;
	width: 100%;
	align-items: center;
	margin-bottom: 2ex
}

.profile-thumb {
	height: 48px;
	width: 48px;
	min-width: 48px;
	background-color: #fff;
	margin-right: 10px;
	border-radius: 50%;
	background-size: cover;
	background-position: center center;
	cursor: pointer
}

.poster-name {
	flex-grow: 1;
	color: var(--blue);
	font-size: 1rem;
	line-height: 1.3rem;
	cursor: pointer
}

.post-info {
	font-size: .8rem;
	color: grey
}

.collapsible {
	position: relative
}

.collapsible .post-text {
	max-height: 360px;
	min-height: 0;
	overflow: hidden;
	transition: max-height 0.3s
}

.collapsible.expanded .post-text {
	max-height: none
}

.user-icon {
	color: grey
}

.user-icon.user {
	top: 5px;
	margin-right: 1px
}

.user-icon.business {
	top: 3px;
	margin-right: 4px
}

.user-icon.public,
.user-icon.political {
	top: 4px;
	margin-right: 4px
}

.user-icon.helper {
	top: 4px;
	margin-right: 1px
}

.user-icon.charity {
	top: 6px;
	margin-right: 0
}

.see-more-toggle {
	display: none;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 50px;
	background: linear-gradient(to top, white 40%, transparent);
	border: 0;
	cursor: pointer;
	font-size: 1rem;
	font-weight: 700;
	color: var(--blue)
}

.post-text p {
	color: var(--black);
	font-size: 1.1rem;
	line-height: 1.4;
	margin-bottom: .5rem
}

.post-image {
	width: auto;
	margin: 0 -20px;
	height: 300px;
	background-position: center center;
	background-size: cover;
	cursor: pointer
}

.post-thumb {
	background: none;
	font-family: var(--font);
	font-size: .8rem;
	text-align: center;
	padding: 2px 10px;
	cursor: pointer;
	border: 1px dotted lightgrey
}

.post-thumb:active {
	border: 1px solid grey
}

.post-thumb img {
	height: 1rem;
	width: auto;
	max-width: 1rem;
	margin: 0 5px;
	vertical-align: middle
}

.post-controls {
	max-width: 480px;
	display: flex;
	justify-content: space-between;
	height: 44px;
	margin: 0 auto
}

.post-controls button {
	min-width: 44px;
	min-height: 44px;
	margin: 0;
	appearance: none;
	background: #fff0;
	border: #fff0;
	cursor: pointer
}

.postMenuButton,
.commentMenuButton {
	appearance: none;
	background: #fff0;
	border: #fff0;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer
}

.postMenuButton {
	width: 44px;
	height: 44px
}

.responsive-embed {
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 56.25%;
	overflow: hidden
}

.responsive-embed iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%
}

.voteup {
	margin-bottom: -8px !important
}

.votedown {
	margin-top: -8px !important
}

.voted {
	color: orange
}

.button-numbers {
	height: 44px;
	font-size: .9rem;
	color: var(--black);
	display: inline-flex;
	align-items: center;
	justify-content: center
}

.vote-number {
	min-width: 44px;
	text-align: center
}

.context-menu {
	position: absolute;
	top: 15px;
	right: 15px;
	background: #fff;
	display: none;
	max-width: 280px;
	box-shadow: #000 0 3px 5px;
	z-index: 10
}

.menu-open {
	display: block
}

.context-menu a {
	display: block;
	padding: 10px 20px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	text-align: left;
	font-size: 1rem;
	text-decoration: none;
	color: #111
}

.context-menu a:hover {
	background-color: var(--mainBG);
	color: #fff
}

.post-legend {
	position: absolute;
	top: 0;
	right: 20px;
	font-size: .75rem;
	border-bottom-left-radius: 6px;
	border-bottom-right-radius: 6px;
	display: none;
	background: var(--blue);
	box-shadow: 0 3px 3px rgb(0 0 0 / .25)
}

.promoted .post-legend {
	display: block;
	color: #fff;
	padding: 1px 8px
}

.urgent .post-legend {
	padding: 1px 8px;
	display: block;
	color: #fff;
	background: var(--orange)
}

.post textarea {
	margin: .8rem auto 0;
	height: 2.7rem;
	transition: 0.3s ease-in-out;
	border: 1px solid lightgrey;
	border-radius: 6px
}

.post textarea.expanded {
	height: 145px;
	background: #fff
}

.comments-container {
	position: relative
}

.comment {
	background: #f0f3fa;
	padding: 10px 15px 15px;
	border-radius: 15px;
	position: relative;
	margin: 15px 0 5px 50px;
	box-shadow: 0 4px 2px rgb(0 0 0 / .1)
}

.comment .profile-thumb {
	height: 36px;
	width: 36px;
	min-width: 36px;
	position: absolute;
	top: 10px;
	left: -50px
}

.comment .comment-tail {
	position: absolute;
	transform: rotate(45deg);
	top: 43px;
	left: -22px;
	width: 0;
	height: 0;
	border-bottom: 20px solid #f0f3fa;
	border-right: 20px solid #fff0;
	border-left: 20px solid #fff0
}

.commenter-name {
	color: var(--blue);
	font-size: .96rem;
	line-height: 1.1;
	flex-grow: 1;
	cursor: pointer
}

.comment p {
	color: var(--black);
	font-size: 1.05rem;
	line-height: 1.33
}

.comment-controls {
	position: absolute;
	right: 24px;
	bottom: 3px;
	height: 36px
}

.comment-controls button {
	width: 36px;
	height: 36px;
	appearance: none;
	background: #fff0;
	border: #fff0;
	cursor: pointer
}

.comment i {
	width: 16px;
	height: 16px
}

.comment .button-numbers {
	font-size: .8rem
}

.commentMenuButton {
	width: 36px;
	height: 36px;
	margin: 0 0 6px 6px
}

.comment-textarea-container {
	position: relative;
	width: calc(100% - 44px)
}

.comment-textarea-container button.comment-emoji {
	position: absolute;
	bottom: 10px;
	right: 14px
}

.comment-textarea-container button.send-comment {
	position: absolute;
	top: 50%;
	transform: translateY(-22px);
	right: -46px;
	width: 44px;
	height: 44px
}

.comment-textarea {
	font-size: 1rem;
	height: 2.7rem
}

.clear-container {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 1rem;
	background: #fff0;
	border: 0
}

#map-wrapper {
	position: relative
}

#draw-map-button {
	position: absolute;
	bottom: 20px;
	left: 20px;
	background: #fff;
	border-radius: 4px;
	padding: 6px
}

#draw-map-button span {
	font-size: .9rem
}

#map-location-search {
	position: absolute;
	top: 0;
	left: 0;
	width: 80%;
	border-radius: 5px;
	padding: 6px
}

#map-location-search input {
	font-size: .9rem
}

.listing-search-header {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: top
}

#listing-text-search {
	text-align: center;
	width: calc(100% - 60px)
}

#listing-add-button {
	font-size: 2.2rem;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	border: 1px solid silver;
	width: 44px;
	height: 44px
}

.listing {
	position: relative;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--blue);
	margin-bottom: 10px
}

.post .listing {
	border: 0;
	margin-bottom: 0
}

.open-status {
	position: absolute;
	top: 0;
	left: auto;
	right: 0;
	background: green;
	color: #fff;
	padding: 3px 7px;
	font-size: .8em;
	cursor: pointer
}

.user-profile .open-status {
	left: 0;
	right: auto
}

.closed {
	background: grey
}

.listing h3 {
	font-size: 1.25rem;
	margin: 0;
	color: var(--blue)
}

.listing>span {
	font-size: .8rem;
	color: grey;
	display: block;
	margin-top: -3px
}

.listing-desc {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 10px 0 5px 0
}

.listing img {
	width: 80px;
	height: 80px;
	object-fit: cover;
	object-position: center
}

.listing p {
	font-size: .95rem;
	margin-bottom: 0
}

.listing-recommend {
	text-align: left
}

.listing-recommend button {
	font-size: .9rem;
	color: grey;
	background: #fff0;
	border: 0;
	padding: 8px 0
}

.listing-owner-actions {
	display: flex;
	align-items: center;
	justify-content: left;
	gap: 20px
}

.listing-hours {
	margin: 0 auto;
	clear: both;
	width: auto;
	margin-bottom: 10px
}

.listing-hours td {
	font-size: 1rem;
	padding: 0 6px;
	color: grey
}

.listing-ctas {
	display: flex;
	justify-content: left;
	align-items: center;
	gap: 6px;
	padding: 2px 0;
	margin: 1rem 0 0;
	overflow-x: auto
}

.listing-ctas button {
	font-size: .9rem;
	padding: 6px 12px;
	cursor: pointer;
	border-radius: 6px;
	border-radius: 30px;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	border: .5px solid silver;
	background: #fff;
	background: var(--opal), #eee;
	box-shadow: 0 2px 2px #ccc;
	color: var(--black)
}

.phone-icon {
	width: 20px;
	height: 20px;
	transform: rotate(0deg)
}

.email-icon {
	width: 20px;
	height: 20px;
	stroke-width: 1.776px;/
}

.globe-icon {
	width: 20px;
	height: 20px;
	stroke-width: 1px
}

.pin-icon {
	width: 20px;
	height: 20px
}

#loading {
	position: fixed;
	inset: 0;
	background-color: rgb(255 255 255 / .25);
	z-index: 100;
	display: none
}

.spinner {
	height: 60px;
	width: 60px;
	position: absolute;
	top: 50vh;
	left: 50%;
	margin: -30px 0 0 -30px;
	animation: 1s linear 0s infinite normal none running rotation;
	border: 6px solid #fff0;
	border-radius: 100%
}

.spinner::before {
	content: "";
	display: block;
	position: absolute;
	left: -6px;
	top: -6px;
	height: 100%;
	width: 100%;
	border-width: 6px;
	border-style: solid;
	border-color: rgb(0 0 0 / .533) #fff0;
	border-radius: 100%
}

#loading_message {
	position: absolute;
	top: calc(40px + 50vh);
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	font-size: 1.1rem;
	color: rgb(0 0 0 / .533)
}

#modalWrap {
	position: fixed;
	inset: 0;
	z-index: 20;
	text-align: center;
	background-color: rgb(0 0 0 / .5);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s
}

#modal {
	position: relative;
	top: 70px;
	margin: 0 auto;
	min-width: 300px;
	max-width: 600px;
	padding: 10px;
	border-radius: 6px;
	border: 1px solid #ccc;
	background: #fff;
	color: var(--black);
	box-shadow: rgb(0 0 0 / .5) 0 0 20px;
	opacity: 0;
	transform: scale(.9);
	pointer-events: none;
	transition: opacity 0.3s, transform 0.3s
}

#modal h3,
#modal p {
	color: var(--black)
}

#modalWrap.show {
	opacity: 1;
	pointer-events: auto
}

#modal.show {
	opacity: 1;
	transform: scale(1);
	pointer-events: auto
}

#modalContent {
	text-align: left;
	display: block;
	font-size: 1rem;
	max-height: calc(100vh - 100px);
	overflow-y: auto;
	padding: 10px;
	pointer-events: inherit
}

#closeModal {
	color: #333;
	position: absolute;
	right: 7px;
	top: 3px;
	width: 35px;
	height: 35px;
	font-size: 1.8rem;
	text-decoration: none;
	font-weight: 700;
	cursor: pointer;
	text-align: center;
	background: #fff;
	border-radius: 50%;
	z-index: 10;
	pointer-events: inherit
}

#stripe-wrapper {
	position: fixed;
	top: 10px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 21;
	display: none;
	padding: 10px;
	border-radius: 6px;
	width: calc(100% - 10px);
	max-width: 610px;
	max-height: calc(100vh - 20px);
	overflow-y: auto;
	border: 1px solid #ccc;
	background: #fff;
	color: var(--black);
	box-shadow: rgb(0 0 0 / .5) 0 0 20px
}

#close-checkout-btn {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 44px;
	height: 44px;
	background: #fff;
	border: 0;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center
}

.tiny-spinner {
	height: 30px;
	width: 30px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -15px 0 0 -15px;
	animation: 1s linear 0s infinite normal none running rotation;
	border: 4px solid #fff0;
	border-radius: 100%
}

.tiny-spinner::before {
	content: "";
	display: block;
	position: absolute;
	left: -4px;
	top: -4px;
	height: 100%;
	width: 100%;
	border-width: 4px;
	border-style: solid;
	border-color: rgb(0 0 0 / .533) #fff0;
	border-radius: 100%
}

@keyframes rotation {
	0% {
		transform: rotate(0deg)
	}

	100% {
		transform: rotate(359deg)
	}
}

.big-only {
	display: unset
}

.mobile-only {
	display: none
}

.weather-forecast {
	display: flex;
	gap: 15px;
	padding: 15px 0
}

.day-header {
	border-bottom: 1px solid #e2e8f0;
	padding-bottom: 10px;
	margin-bottom: 10px
}

.day-header p {
	font-size: .9rem;
	font-weight: 600;
	color: var(--blue)
}

.forecast-day {
	flex: 1;
	background: #f8fafc;
	border-radius: 12px;
	padding: 15px;
	box-shadow: 0 2px 4px rgb(0 0 0 / .1);
	text-align: center
}

.weather-icon {
	width: 64px;
	height: 64px
}

.temps {
	margin: 10px 0
}

.max-temp {
	color: #e53e3e
}

.min-temp {
	color: #3182ce
}

.details {
	font-size: .9em;
	color: #64748b
}

.weather-alerts {
	margin: 1rem 0;
	font-size: .9em
}

.no-alerts {
	color: grey;
	font-size: 1rem;
	text-align: center
}

.alert {
	padding: .8rem;
	border-radius: 8px;
	margin-bottom: .8rem;
	border-left: 4px solid
}

.alert-unknown {
	background: #f0f0f0;
	border-color: #999
}

.alert-moderate {
	background: #fff3cd;
	border-color: #ffc107
}

.alert-severe {
	background: #f8d7da;
	border-color: #dc3545
}

.alert h4 {
	margin: 0 0 .4rem 0;
	font-size: 1.1em
}

.alert-effective {
	opacity: .8;
	font-size: .85em;
	margin: .2rem 0
}

.alert-instruction {
	font-weight: 700;
	margin: .5rem 0 0 0
}

#toast {
	opacity: 0;
	position: fixed;
	bottom: 50px;
	left: -50px;
	max-width: calc(-200px + 100vw);
	background: #fff;
	color: var(--black);
	font-size: 1.1rem;
	padding: 12px 24px;
	border-radius: 10px;
	box-shadow: rgb(0 0 0 / .4) 0 8px 8px;
	z-index: 101
}

#toast a {
	color: var(--blue)
}

#closeToast {
	position: absolute;
	width: 36px;
	height: 36px;
	top: -8px;
	right: -7px;
	background: #fff0;
	border-radius: 50%;
	color: var(--blue);
	cursor: pointer;
	font-size: 1.3rem;
	text-align: center;
	line-height: 36px;
	opacity: inherit
}

#addPost,
#addAlert {
	position: fixed;
	height: 50px;
	width: 50px;
	right: 50px;
	bottom: 40px;
	border-radius: 50%;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
	cursor: pointer;
	z-index: 8;
	transition: bottom ease 0.3s
}

#addPost {
	background: var(--orange);
	font-size: 3rem;
	color: #fff;
	box-shadow: 0 6px 6px rgb(0 0 0 / .4)
}

#addAlert {
	background: #fff0;
	color: #fff
}

#addPost:hover,
#addAlert:hover {
	bottom: 55px
}

#addAlert img {
	width: 60px;
	height: 60px
}

.switch-table {
	display: table;
	width: 100%;
	max-width: 400px;
	clear: both;
	margin: 1rem auto
}

.switch-table td {
	padding: 10px
}

.switch-table td:nth-child(2n+1) {
	width: 80%;
	text-align: left
}

.switch-table td:nth-child(2n) {
	width: 20%;
	text-align: center
}

.switch {
	display: inline-block;
	width: 48px;
	height: 20px;
	position: relative;
	cursor: pointer;
	border: 1px solid #424242;
	padding: 0;
	margin: 0;
	appearance: none;
	border-radius: 20px;
	box-sizing: border-box;
	background: #ddd;
	box-shadow: rgb(0 0 0 / .2) 0 2px 4px inset;
	transition: 300ms ease-in-out
}

.switch,
.switch::before,
.switch::after {
	transition: 300ms ease-in-out
}

.switch::before {
	position: absolute;
	top: -3px;
	left: 24px;
	width: 24px;
	height: 24px;
	content: "";
	border-radius: 20px;
	box-shadow: rgb(0 0 0 / .8) 0 1px 3px, rgb(255 255 255 / .4) 0 10px 0 inset;
	background: #f7f7f7
}

.switch::after {
	position: absolute;
	top: 0;
	left: 9px;
	height: 20px;
	line-height: 19px;
	content: attr(data-off-value);
	font-size: 10px;
	color: var(--black);
	font-weight: 700
}

.switch:checked {
	border: 1px solid #0368d0;
	background: var(--orange)
}

.switch:checked::before {
	left: -3px
}

.switch:checked::after {
	content: attr(data-on-value);
	left: 27px
}

input[type="range"] {
	appearance: none;
	width: 80%;
	height: 10px;
	background: #ddd;
	border-radius: 10px;
	outline: none;
	cursor: pointer
}

input[type="range"]::-webkit-slider-runnable-track {
	height: 10px;
	background: #ddd;
	border-radius: 3px
}

input[type="range"]::-webkit-slider-thumb {
	appearance: none;
	width: 24px;
	height: 24px;
	background: var(--orange);
	border-radius: 50%;
	margin-top: -7px
}

#overlayContainer {
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	width: 300vw;
	z-index: 12;
  background: radial-gradient(
      circle at 30% 30%,
      rgba(90, 170, 10, 0.4),
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 60%,
      rgba(50, 110, 2, 0.5),
      transparent 50%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(62, 133, 2, 0.6),
      #1a3a00 80%
    ),
    #3e8502;
	transition: transform 0.4s;
	display: none;
	transform: translateX(-33.33%)
}

#overlayContainer p,
#overlayContainer h1,
#overlayContainer h2,
#overlayContainer h3,
#overlayContainer a {
	color: #fff
}

#loginScreen,
#locationScreen,
#regScreen1,
#regScreen2,
#regScreen3,
#regScreen4 {
	position: absolute;
	top: 0;
	height: 100vh;
	width: 100vw;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	text-align: center
}

#loginScreen {
	left: 0
}

#regScreen1,
#locationScreen {
	left: 100vw;
	overflow: hidden;
}

#regScreen2 {
	left: 200vw
}

#regScreen3 {
	left: 300vw
}

#regScreen4 {
	left: 400vw
}

#loginScreen>div,
#locationScreen>div,
#regScreen1>div,
#regScreen2>div,
#regScreen3>div,
#regScreen4>div {
	margin: 40px;
	width: 100%;
	max-width: 480px
}

#loginScreen input,
#locationScreen input,
#regScreen2 input,
#regScreen3 input,
#regScreen3 input,
#regScreen4 input {
	text-align: center
}

#splash-logo {
	width: 45%;
	margin: 0 auto;
	height: auto
}

.custom-btn {
	color: #fff;
	border-radius: 30px;
	padding: 12px 36px;
	font-size: 1.15rem;
	font-family: var(--font);
	font-weight: 400;
	background: var(--orange);
	cursor: pointer;
	transition: 0.3s;
	position: relative;
	display: block;
	width: 100%;
	max-width: 400px;
	margin: 2rem auto;
	outline: none;
	border: none;
	box-shadow: rgb(255 255 255 / .5) 2px 2px 2px 0 inset, rgb(0 0 0 / .1) 7px 7px 20px 0, rgb(0 0 0 / .1) 4px 4px 5px 0
}

.go-button {
	background-color: var(--orange);
	border: none;
	z-index: 1
}

.go-button::after {
	position: absolute;
	content: "";
	width: 0;
	height: 100%;
	top: 0;
	right: 0;
	z-index: -1;
	background-color: var(--orange);
	border-radius: 5px;
	box-shadow: rgb(255 255 255 / .5) 2px 2px 2px 0 inset, rgb(0 0 0 / .1) 7px 7px 20px 0, rgb(0 0 0 / .1) 4px 4px 5px 0;
	transition: 0.1s
}

.go-button:hover {
	color: #fff
}

.go-button:hover::after {
	left: 0;
	width: 100%
}

.go-button:active {
	top: 2px
}

/* Social buttons styling */
.social-divider {
    text-align: center;
    margin: 25px 0 20px 0;
    color: #999;
    font-size: 14px;
    position: relative;
}

.social-divider::before,
.social-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: calc(50% - 110px);
    height: 1px;
    background-color: #e0e0e0;
}

.social-divider::before {
    left: 0;
}

.social-divider::after {
    right: 0;
}

.social-divider span {
    color: white;
    padding: 0 15px;
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0 0 20px 0;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #dadce0;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
    font-family: inherit;
}

.social-btn:hover {
    background-color: #f8f9fa;
    border-color: #c0c0c0;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.social-btn:active {
    transform: translateY(0);
}

.social-icon {
    width: 20px;
    height: 20px;
}

.google-btn {
    color: #3c4043;
}

.facebook-btn {
    color: #1877F2;
    border-color: #1877F2;
    background-color: #ffffff;
    color: #ffffff;
    border-color: #ffffff;
    background-color: #1877F2;
}

.facebook-btn:hover {
    background-color: #1877F2;
    color: white;
}

.facebook-btn:hover .social-icon path {
    fill: white;
}

/* Form input styling */
#regScreen2 input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box;
}

#regScreen2 input:focus {
    outline: none;
    border-color: #4CAF50;
}

#join-btn {
    margin: 20px auto;
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
}

#regScreen2 input {
    margin-bottom: 10px;
}

#regScreen2 #email {
    margin-top: 5px;
}

div#language-menu {
	position: absolute;
	top: 30px;
	right: 30px;
	max-width: 480px;
	cursor: pointer;
	text-align: right;
	display: block
}

select#set-language {
	background: var(--green);
	color: #fff;
	max-width: 120px;
	font-size: 1rem;
}

div.back-tab {
	position: absolute;
	top: 20px;
	width: 100%;
	max-width: 480px;
	height: 40px;
	font-size: .8rem;
	text-transform: uppercase;
	cursor: pointer;
	text-align: left
}

div.back-tab::before {
	content: "\276E\00a0"
}

#search-container {
	position: relative
}

ul#search-results {
	display: block;
	position: absolute;
	z-index: 20;
	left: 6px;
	right: 50px;
	top: 46px;
	background: #fff;
	list-style-type: none;
	color: var(--black);
	text-align: left;
	box-shadow: #888 0 6px 6px
}

ul#search-results li {
	padding: 5px 20px;
	cursor: pointer
}

#weather-widget {
	display: flex;
	align-items: center;
	gap: 5px;
	height: 50px;
	max-width: 220px;
	cursor: pointer;
	position: relative;
	padding: 0 5px
}

#weather-icon {
	height: 40px;
	width: auto
}

#weather-text {
	color: var(--blue);
	font-size: .8rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis
}

#weather-warning {
	position: absolute;
	width: 15px;
	height: 15px;
	top: 2px;
	left: -2px;
	font-size: 16px;
	font-weight: 900;
	border-radius: 50%;
	z-index: 20;
	text-align: center
}

#weather-warning::before {
	content: '\26A0'
}

#menu-container {
	position: fixed;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	height: 100vh;
	max-width: 680px;
	overflow: hidden;
	z-index: 9;
	pointer-events: none;
	overscroll-behavior: contain
}

#settingsMenu,
#settingItem {
	position: absolute;
	top: 0;
	right: 0;
	flex-direction: column;
	background-color: #fff;
	width: 100%;
	max-width: 500px;
	transition: transform 0.2s;
	height: 100vh;
	overflow-y: auto;
	pointer-events: auto
}

.fly {
	transform: translateX(100%)
}

.flyout {
	transform: translateX(0);
	box-shadow: -6px 0 6px rgb(0 0 0 / .4)
}

#settingsMenu {
	z-index: 10
}

#settingItem {
	z-index: 11
}

#settingHeader {
	position: relative;
	display: flow-root
}

#settingsMenu>div,
#settingTitle {
	position: relative;
	padding: 15px;
	font-size: 1.2rem;
	color: var(--black);
	border-bottom: 1px solid lightgrey;
	transition: background-color 0.8s
}

#settingsMenu>div {
	padding-right: calc(20% + 15px);
	cursor: pointer
}

#settingTitle {
	padding-left: calc(20% + 15px);
	text-align: left
}

#settingsMenu>div>div,
#closeSetting {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 20%;
	font-size: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--black)
}

#settingsMenu>div>div {
	right: 0;
	cursor: pointer
}

#closeSetting {
	left: 0;
	transition: background-color 0.8s;
	cursor: pointer
}

#settingsMenu>div>div::after {
	content: "\276F"
}

#closeSetting::after {
	content: "\276E"
}

#settingsMenu>div:active,
#closeSetting:active {
	background: grey
}

#settingContent {
	padding: 20px
}

#settingContent .profile-pic-container {
	position: relative;
	display: block;
	width: 250px;
	height: 250px;
	margin: 0 auto
}

#settingContent #imagePreview {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
	cursor: pointer;
	border: 2px solid #ccc
}

#settingContent #cameraIcon,
#settingContent #deleteImageBtn {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid grey;
	background: radial-gradient(circle, white 0%, lightgrey 100%);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	font-size: 20px;
	cursor: pointer
}

#settingContent #cameraIcon {
	bottom: 3px;
	right: 16px
}

#settingContent #deleteImageBtn {
	top: 3px;
	left: 16px
}

#settingContent #imageInput {
	display: none
}

#cropModal {
	position: fixed;
	width: 100%;
	max-width: 600px;
	max-height: 90vh;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 30px 30px 80px 30px;
	background: #000;
	border-radius: 6px;
	z-index: 100
}

.crop-actions {
	position: absolute;
	bottom: 9px;
	left: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 50px
}

.crop-actions button {
	background: var(--blue);
	border: 0;
	margin: 10px;
	padding: 0;
	border-radius: 50%;
	height: 44px;
	width: 44px;
	font-size: 1.4rem;
	box-shadow: 0 0 8px #888;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff
}

.image-preview-container {
	position: relative;
	display: flex;
	justify-content: center;
	margin-top: 10px
}

.image-preview-wrapper {
	position: relative;
	display: inline-block;
	max-width: 100%;
	margin-top: 10px
}

.image-preview {
	max-width: 100%;
	max-height: 200px;
	display: block;
	border-radius: 8px
}

.remove-image-btn {
	position: absolute;
	top: 5px;
	right: 5px;
	background: rgb(0 0 0 / .6);
	color: #fff;
	border: none;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	cursor: pointer;
	font-size: 16px;
	line-height: 24px;
	text-align: center;
	padding: 0
}

.remove-image-btn:hover {
	background: rgb(0 0 0 / .8)
}

.emoji-picker-container {
	z-index: 1000;
	display: none;
	grid-template-columns: repeat(5, 1fr);
	gap: 5px;
	background: #fff;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 5px;
	box-shadow: 0 2px 10px rgb(0 0 0 / .2);
	position: absolute;
	max-width: 250px
}

.emoji-btn {
	font-size: 24px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 5px;
	transition: transform 0.2s ease;
	border-radius: 3px
}

.emoji-btn:hover {
	transform: scale(1.2);
	background: #f0f0f0
}

.password-field {
	position: relative;
	display: inline-block;
	width: 100%
}

.password-toggle {
	position: absolute;
	right: 10px;
	top: 0;
	bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
	border: none;
	cursor: pointer;
	font-size: 20px;
	filter: grayscale(100%) brightness(1);
	opacity: .5
}

.password-toggle:hover {
	opacity: .7
}

.password-field input {
	padding-right: 45px;
	width: 100%
}

.organisation-form {
	max-width: 800px;
	margin: 0 auto;
	padding: 20px
}

.form-group {
	margin-bottom: 15px
}

.image-actions {
	margin-top: 10px;
	display: flex;
	gap: 10px;
	justify-content: center
}

.error-message {
	color: red;
	font-size: .8em;
	margin-top: 5px
}

.opening-hours {
	width: 100%;
	margin-bottom: 10px
}

.opening-hours td {
	text-align: center;
	padding: 2px
}

.opening-hours td:nth-child(1) {
	text-align: left
}

.opening-hours select {
	width: auto;
	background: #fff0;
	border: 0;
	box-shadow: none;
	color: var(--blue);
	margin-bottom: 0;
	font-size: 1rem
}

.user-pic {
	border-radius: 50%;
	width: 100%;
	max-width: 280px;
	height: auto;
	display: block;
	margin: 0 auto
}

.user-profile h3 {
	text-align: center;
	color: var(--blue);
	font-size: 1.5rem;
	margin-bottom: 0
}

.user-profile p {
	color: var(--blue);
	font-size: .9rem;
	text-align: center
}

.user-profile p.about {
	font-size: 1rem;
	color: var(--black);
	text-align: left
}

.touch {
	transition: background-color 0.8s
}

.touch:active {
	background: grey
}

#image-viewer {
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	width: 100vw;
	background: #000;
	z-index: 12;
	text-align: center;
	opacity: 0;
	transform: scale(.9);
	pointer-events: none;
	transition: opacity 0.3s, transform 0.3s
}

#close-image {
	position: absolute;
	top: 28px;
	right: 28px;
	border-radius: 50%;
	height: 30px;
	width: 30px;
	font-size: 1.8rem;
	text-decoration: none;
	cursor: pointer;
	text-align: center;
	box-shadow: 0 2px 4px rgb(0 0 0 / .4);
	color: #fff;
	background: #000
}

#image-viewer.show {
	opacity: 1;
	transform: scale(1);
	pointer-events: auto
}

#image-viewer img {
	object-fit: contain;
	width: 100%;
	height: 100%
}

#detect-button {
	padding: 10px 20px;
	font-size: 1.1rem;
	width: 100%;
	background: #fff;
	color: var(--black)
}

#map-container {
	position: relative;
	width: 100%;
	height: 250px;
	margin: 0 auto;
}

#map-container a{
	color: grey;
}

.disabled,
button[disabled] {
	opacity: 0.6 !important;
	pointer-events: none !important
}

button.burger,
button.notifications,
button#user_count_button {
	border: none;
	background-color: #fff0;
	color: var(--orange);
	outline: none;
	cursor: pointer;
	margin-bottom: 4px;
	padding: 5px
}

button#user_count_button {
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 10px;
	gap: 6px
}

#user_count_text {
	line-height: 1;
	text-align: left
}

#user_count {
	color: var(--blue);
	font-size: 1.2rem
}

#users_nearby {
	color: var(--blue);
	font-size: .6rem;
	text-transform: uppercase
}

.flex-center {
	display: flex;
	align-items: center;
	justify-content: center
}

.center {
	text-align: center
}

.justify {
	text-align: justify
}

.bigger {
	font-size: 120%
}

.smaller {
	font-size: 88%
}

.italic {
	font-style: italic
}

.grey {
	color: grey
}

.transparent {
	background: 0 center;
	border: 0
}

.hidden {
	display: none
}

.clear-white {
	background: none;
	border: 0;
	color: #fff
}

.clear-black {
	background: none;
	border: 0;
	color: var(--black);
	font-size: 1rem
}

.clear-blue {
	background: none;
	border: 0;
	color: var(--blue);
	font-size: 1rem
}

.clear-grey {
	background: none;
	border: 0;
	color: grey;
	font-size: 1rem
}

.utility-button {
	padding: 6px 12px;
	font-size: 1rem
}

.ellipsis {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis
}

@media (max-width:600px) {
	html {
		font-size: 17px
	}

	main {
		top: 0
	}

	#splash-logo {
		width: 66%;
		margin: 0 auto;
		height: auto
	}

	#logo {
		margin-left: -6px
	}

	#weather-text {
		display: none
	}

	.big-only {
		display: none
	}

	.mobile-only {
		display: unset
	}

	#toast {
		bottom: 30px;
		left: 0;
		max-width: calc(-130px + 100vw)
	}

	#addAlert,
	#addPost {
		bottom: 30px;
		right: 30px
	}

	#addAlert:hover,
	#addPost::hover {
		bottom: 33px
	}

	#post_prompt {
		background: var(--blue);
		margin: 0
	}

	.forecast-day {
		padding: 12px 6px
	}

	#modal {
		top: 0;
		margin: 2%
	}

	.post {
		border-radius: 0;
		margin: 0 0 4px
	}
}

@media screen and (min-width:768px) and (max-height:900px) {
	#splash-logo {
		width: 45%
	}
}
