html {
	font-size: 110%;
}

* {
	font-family: 'PT Serif', serif;
	color: #39260c;
}

a {
	color: #FFAB40;
}

a:hover, a:focus, a:visited {
	color: #E68100;
}

.button, a.button {
	background-color: #FFAB40;
	color: #39260c;
}

.button:hover, a.button:hover, .button:focus, a.button:focus {
	background-color: #E68100;
}

.button:disabled, a.button:disabled,
.button:hover:disabled, a.button:hover:disabled, .button:focus:disabled, a.button:focus:disabled {
	background-color: #b0b0b0;
}

.button.hollow {
	background-color: #398e3d;
	color: white;
}

.button.hollow:hover, .button.hollow:focus {
	background-color: #2f7132;
	color: white;
}

body.menu-open {
	overflow: hidden;
}

body.logged-in {
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	max-height: 100vh;
}

.main-nav-wrapper {
	display: flex;
	flex-direction: row;
	gap: 1rem;
	overflow: hidden;
}

.main-nav-left {
	display: flex;
	flex-direction: column;
	min-width: 220px;
}

.main-content-right {
	display: flex;
	gap: 1rem;
	flex-direction: column;
	width: 100%;
	overflow: hidden;
	padding-top: 1rem;
	padding-bottom: 1rem;
}

.main-content {
	overflow: auto;
	height: 100%;
}

.main-nav-left-wrapper {
	position: fixed;
	height: 100%;
	width: 220px;
	display: flex;
	flex-direction: column;
	padding: 0.5rem;
	background: #FFAB40;
	align-items: center;
	z-index: 200;
}

.main-nav-left-wrapper .nav-logo {
	padding: 1rem;
	text-align: center;
}

.main-nav-left-wrapper .nav-logo img {
	max-width: 50px;
}

.main-nav-left-wrapper .img-wrapper.nav-logo {
	min-width: 56px;
	min-height: 56px;
	margin-top: 1rem;
	margin-bottom: 1rem;
}

.main-nav-left-wrapper .nav {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	overflow: auto;
	height: 100%;
	margin-top: 0.5rem;
}

.main-nav-left-wrapper .nav .nav-links > div {
	padding: 0.5rem;
	white-space: nowrap;
	text-overflow: ellipsis;
    overflow: hidden;
}

.main-nav-left-wrapper .nav .nav-links > div > a {
	color: black;
	font-weight: bold;
	font-size: 1.1rem;
}

.main-nav-left-wrapper .nav .nav-links > div > a > i {
	margin-right: 0.5rem;
	color: black;
	font-weight: bold;
	font-size: 1.1rem;
}

.main-nav-left-wrapper .nav .nav-account {
	padding: 0.5rem;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.main-nav-left-wrapper .nav .nav-account .nav-account-info {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.main-nav-left-wrapper .nav .nav-account .nav-account-info img {
	margin-bottom: 0.5rem;
}

.main-nav-left-wrapper .nav .nav-account .nav-account-info .account-name {
	white-space: nowrap;
	font-size: 14px;
	text-overflow: ellipsis;
    overflow: hidden;
}

.main-nav-left-wrapper .nav .nav-account .nav-account-info .account-email {
	white-space: nowrap;
	font-size: 14px;
	text-overflow: ellipsis;
    overflow: hidden;
}

.main-nav-left-wrapper .nav .nav-account .nav-account-logout {
	font-size: 1rem;
	font-weight: bold;
	margin-top: 1rem;
	color: white;
}

.login-heading {
	font-weight: bold;
	font-size: 2rem;
	margin: 1rem 0;
	text-align: center;
}

input[type="text"].admin-search-input {
	margin-bottom: 0;
	font-size: 1rem;
	height: 2.6rem;
}

.admin-search-wrapper {
	position: relative;
}

.admin-search-results-wrapper {
	display: none;
	position: absolute;
	z-index: 110;
	width: 400px;
	top: 2.7rem;
	left: 0;
}

.admin-search-results-inner {
	background-color: white;
	padding-bottom: 0.2rem;
	border: 1px solid #CCCCCC;
	max-height: 50vh;
	overflow: auto;
}

.admin-search-results-wrapper .admin-search-results {
	margin-bottom: 0;
	width: 100%;
	table-layout: fixed;
}

.admin-search-results-wrapper .admin-search-results tr.result-record {
	cursor: pointer;
}

.admin-search-results-wrapper table.admin-search-results tr.result-record td {
	line-height: 1.2rem !important;
	padding: 0.5rem 0.625rem 0.2rem !important;
}

.admin-search-results-wrapper table.admin-search-results tr.result-record td span {
	font-size: 1rem !important;
	font-weight: bold;
	width: 100%;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	display: inline-block;
}

.admin-search-results-wrapper table.admin-search-results tr.result-record td span.details {
	font-size: 0.9rem !important;
	font-weight: normal;
	color: #787878;
	width: 100%;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	display: inline-block;
}

.admin-search-results-wrapper table.admin-search-results tr.result-record td img {
	width: 100%;
	margin-bottom: 0.25rem;
}

.admin-search-results-wrapper table.admin-search-results tr.result-header td {
	line-height: 1rem !important;
}

.admin-search-results-wrapper table.admin-search-results tr.result-header td span {
	font-size: 0.8rem !important;
	color: #787878;
}

.admin-search-results-wrapper table.admin-search-results tr.active,
.admin-search-results-wrapper table.admin-search-results tr.active td:hover {
	background-color: #ffab402b !important;
}

#pageContent {
	padding-right: 1rem;
}

#user-main {
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: white;
}

#android-app-banner {
	display: none;
	width: 100%;
}

#android-app-banner #android-app-banner-wrapper {
	display: flex;
	gap: 0.7rem;
	padding: 0.5rem;
	background-color: #2e2c2c;
	align-items: center;
}

#android-app-banner #android-app-banner-close {
	color: white;
	font-size: 2rem;
	cursor: pointer;
}

#android-app-banner #android-app-banner-icon {
	max-width: 40px;
	object-fit: contain;
}

#android-app-banner #android-app-banner-icon-wrapper {
	width: 50px;
	height: 50px;
	padding: 5px;
	background-color: white;
	border-radius: 10px;
	display: flex;
	justify-content: center;
	align-content: center;
}

#android-app-banner #android-app-banner-name {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

#android-app-banner #android-app-banner-name .title {
	font-size: 0.9rem;
	font-weight: bold;
	color: white;
}

#android-app-banner #android-app-banner-name .subtitle {
	font-size: 0.8rem;
	color: #b0b0b0;
}

#android-app-banner #android-app-banner-links {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

#android-app-banner #android-app-banner-links a {
	color: black;
	background: #ffab40;
	padding: 3px 5px;
	border-radius: 5px;
	font-size: 0.9rem;
}

.top-bar {
	width: 100%;
	display: flex;
	justify-content: center;
    background-color: #FFAB40;
    /* border-bottom: 1px solid #d7d7d7; */
}

.top-bar .menu-bar {
	display: flex;
	align-items: center;
	width: 100%;
	max-width: 1200px;
	margin: 0.5rem;
	gap: 1.5rem;
}

.top-bar .menu-bar > * {
	color: #39260c;
}

.top-bar .menu-bar .link {
	text-transform: uppercase;
	font-weight: bold;
}

.top-bar .menu-bar .link.emphasized {
	padding: 0.3rem 0.5rem;
	background: white;
	border-radius: 5px;
}

.header-wrapper {
	display: flex;
	justify-content: center;
	width: 100%;
    background-color: #FFAB40;
}

.header-info {
	max-width: 1200px;
}

.content-wrapper {
	width: 100%;
	display: flex;
	justify-content: center;
	padding: 0 1rem;
}

.content {
	width: 100%;
	max-width: 1200px;
}

.faq-item, .privacy-item {
	margin-bottom: 3rem;
}

.faq-item strong, .privacy-item strong {
	display: inline-block;
	font-size: 1.2rem;
	margin-bottom: 1rem;
}

.faq-item p, .privacy-item p {
	font-size: 1rem;
}

.img-wrapper {
	padding: 5px;
	border-radius: 50%;
	background-color: white;
	position: relative;
}

.img-wrapper img {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

#responsive-menu {
	display: none;
	position: absolute;
	left: 0;
	width: 100%;
	top: 92px;
	height: 100%;
	margin: 0;
	z-index: 100;
	background-color: white;
}

#responsive-menu .items {
	display: flex;
	height: 100%;
	flex-direction: column;
	align-items: center;
	margin-top: 1rem;
	background-color: #ffab40;
}

#responsive-menu .items > * {
	margin: 1rem;
	font-size: 1.3rem;
	color: black;
	font-weight: bold;
	text-transform: uppercase;
}

.label.success {
	background: #228d4a;
	color: white;
}

.label.success.disabled {
	background: none;
	border: 2px solid #228d4a;
	color: #228d4a;
	padding: calc(.33333rem - 2px) calc(.5rem - 2px);
}

.label.success.disabled i {
	color: #228d4a;
}

.label.alert.disabled {
	background: none;
	border: 2px solid #cc4b37;
	color: #cc4b37;
	padding: calc(.33333rem - 2px) calc(.5rem - 2px);
}

.label.alert.disabled i {
	color: #cc4b37;
}

.api-result {
	margin-top: 0.5rem;
	position: relative;
}

.api-result > a {
	position: absolute;
	top: -10px;
	right: 0;
}

.api-input {
	margin-left: 1rem;
}

.lds-dual-ring {
	margin-top: 1rem;
	display: inline-block;
	width: 64px;
	height: 64px;
}

.lds-dual-ring:after {
	content: " ";
	display: block;
	width: 46px;
	height: 46px;
	margin: 1px;
	border-radius: 50%;
	border: 5px solid #fff;
	border-color: #ffab40 transparent #ffab40 transparent;
	animation: lds-dual-ring 1.2s linear infinite;
}

@keyframes lds-dual-ring {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

a, a img {
	-webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

#main-wrapper {
	display: flex;
	flex-direction: column;
	/* min-height: calc(100vh - 75px);
	min-height: -webkit-fill-available; */
	align-items: center;
}

.header-info > * {
	/* color: #39260c; */
}

#search-wrapper {
	width: 100%;
}

#search-wrapper-grid {
	width: 100%;
	max-width: 1200px;
	padding-left: 1rem;
	padding-right: 1rem;
}

#search-box {
	display: inline-block;
	font-size: 1.3rem;
	height: auto;
	padding: 0.5rem 1rem;
	color: #39260c;
	margin-bottom: 0;
	border: 0.5rem solid #FFAB40;
	border-radius: 10px;
	outline: none;
	box-shadow: none;
}

#search-box-wrapper {
	position: relative;
	white-space: nowrap;
	display: flex;
	align-items: center;
	cursor: pointer;
}

#search-box-wrapper #search-clear {
	display: none;
}

#search-box-wrapper #add-place {
	margin-left: 1rem;
	cursor: pointer;
}

#search-box-wrapper.active #search-clear {
	display: inline-block;
	color: #CACACA;
	position: absolute;
	right: 1rem;
	top: 0.75rem;
	cursor: pointer;
}

#search-box-wrapper #search-cover {
	pointer-events: none;
	opacity: 0;
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #FFAB40;
	z-index: 5;
	border-radius: 10px;
	transition: opacity 750ms;
	font-size: 1.3rem;
	display: flex;
	align-items: center;
	padding-left: 1.5rem;
}

#search-box-wrapper.inactive:hover #search-cover {
	opacity: 0;
}

#search-box-wrapper.inactive #search-cover {
	opacity: 1;
}

#search-results {
	display: none;
	position: absolute;
	width: 100%;
	padding-bottom: 1rem;
}

#search-results-content {
	background: white;
    border: 1px solid #FFAB40;
    border-top: none;
}

#search-results-content .search-item {
	padding: 0.4rem 0.8rem;
	font-size: 1.25rem;
	color: #39260c;
	cursor: pointer;
	-webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

#search-results-content .search-item-district {
	color: #AAAAAA;
	font-size: 1rem;
}

#search-results-content .search-empty {
	padding: 0.4rem 0.8rem;
	font-size: 1.25rem;
	color: #39260c;
}

#search-results-content .search-empty a {
	font-size: 1.25rem;
}

#search-results-content .search-item:hover {
	background-color: rgba(255, 171, 64, 0.4);
}

#logo {
	max-width: 100px;
	margin-right: 2rem;
}

#place-name {
	display: inline-block;
	font-size: 1.5rem;
	font-weight: bold;
	vertical-align: middle;
	padding: 0.75rem 0;
	margin-right: 1.25rem;
}

.place-list-letter {
	margin-top: 1.5rem;
	font-size: 1.5rem;
	border-bottom: 1px solid #d7d7d7;
	margin-bottom: 0.4rem;
}

.place-list-name {
	font-size: 1.25rem;
	margin: 0.2rem 0;
}

.place-list-district {
	color: #AAAAAA;
	font-size: 0.8rem;
}

.place-detail-header {
	display: flex;
	flex-direction: column;
	align-items: start;
	margin-bottom: 1rem;
}

.calendar-table thead {
	background: #e8e8e8;
}

.calendar-table thead tr th {
	padding: 0.1rem 0.5rem;
	font-size: 12px;
}

.calendar-table tbody tr.week-start {
	border-top: 2px solid #e8e8e8 !important;
}

.calendar-wrapper.managed .calendar-table tbody tr {
	cursor: pointer;
}

.calendar-wrapper.managed .calendar-table tbody tr.restricted {
	cursor: not-allowed !important;
}

.calendar-table tbody tr td {
	border-right: 1px solid #f1f1f1;
	padding: 0.1rem 0.5rem;
	font-size: 12px;
}

.calendar-table tbody tr td.week-column {
	width: 30px;
	background: #f8f8f8 !important;
	cursor: default;
	pointer-events: none;
}

.calendar-table tbody tr td.week-column.week-odd {
	width: 30px;
	background: #fFfFfF !important;
}

.calendar-table tbody tr td.day-column {
	width: 40px;
	background: #f8f8f8 !important;
}

.calendar-table tbody tr td.date-column {
	width: 40px;
}

.calendar-table tbody tr td.date-column.weekend {
	background: #f8f8f8 !important;
}

.calendar-table tbody tr td.garbage-column {
	padding: 0;
}

.calendar-table tbody tr td.garbage-column .garbage-wrapper {
	display: flex;
	width: 100%;
}

.calendar-table tbody tr td.garbage-column .garbage-wrapper .gar-cal {
	flex-grow: 1;
	vertical-align: middle;
	height: 20px;
}

.calendar-table tbody tr td.garbage-column .garbage-wrapper .gar-cal.garbage-deleted {
	opacity: 0.3;
}

.calendar-table tbody tr td.garbage-column.weekend {
	background: #f8f8f8 !important;
}

.calendar-table tbody tr td.garbage-column.restricted {
	background: repeating-linear-gradient( 45deg, #fff, #fff 10px, #f0f0f0 10px, #f0f0f0 20px ) !important;
	cursor: not-allowed !important;
}

.calendar-table tbody tr td.garbage-column.restricted .garbage-wrapper .gar-cal {
	cursor: not-allowed !important;
}

.month-wrapper {
	padding: 1rem 0.5rem;
}

.tabs-wrapper {
	border-bottom: 2px solid #ffab40aa;
}

.tabs {
	border: 0;
	margin-bottom: -2px;
	margin-left: 1rem;
}

.tabs .tabs-title {
	border: 1px solid #e6e6e6;
	border-bottom: 2px solid #ffab40aa;
	/* background: #ffab402b; */
}

.tabs .tabs-title.is-active {
	background: white;
	border: 2px solid #ffab40aa;
    border-bottom: 0;
}

.tabs .tabs-title a {
	padding: 1rem;
	font-size: 1rem;
	color: #39260c;
}

.tabs .tabs-title a:hover {
	background: initial;
}

.tabs-title.is-active > a:focus,
.tabs-title.is-active > a[aria-selected="true"] {
	background: white;
}

#place-tabs li.tabs-title:not(.new-place) {
	padding-right: 1rem;
}

/* #place-tabs li.tabs-title:not(:last-child) {
	border-right: 1px solid #e6e6e6;
} */

#place-tabs li.tabs-title.is-active,
#country-tabs li.tabs-title.is-active {
	background: white;
}

#place-tabs li.tabs-title.is-active a,
#country-tabs li.tabs-title.is-active a {
	background: white;
}

#place-tabs li.tabs-title a,
#country-tabs li.tabs-title a {
	display: inline-block;
}

.footer-panel #loader-wrapper {
	display: flex;
	align-items: center;
}

.footer-panel #loader {
	display: none;
	padding-right: 1rem;
}

#message-pane {
	background-color: white;
	display: flex;
	flex-direction: column;
	align-items: start;
}

#message-pane .callout {
	margin-bottom: 0;
	display: inline-block;
	padding: 0.85em;
	font-size: 0.9em;
	line-height: 1;
}

#message-pane .callout.closable {
	padding: 0.85em 2rem 0.85em 0.85em;
}

#message-pane .callout:not(:first-child) {
	margin-top: 0.5rem;
}

#message-pane .callout .close-button {
	top: 0.31rem;
	right: 0.5rem;
}

#garbage-picker {
	position: sticky;
	top: 0px;
	z-index: 10;
	background-color: white;
	/* border-bottom: 2px solid #f1f1f1; */
	display: grid;
	width: 100%;
	grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
}

#garbage-picker .garbage-type {
	flex-grow: 1;
	text-align: center;
	cursor: pointer;
	padding-top: 0.6rem;
	padding-bottom: 0.6rem;
	margin: 0.5rem;
	user-select: none;
}

#garbage-picker .garbage-delete {
	flex-grow: 1;
	text-align: center;
	cursor: pointer;
	margin: 0.5rem;
	font-size: 1.5rem;
	border: 3px solid white;
}

#garbage-picker .garbage-delete.active {
	border: 3px solid black;
}

#garbage-picker .garbage-type i {
	visibility: hidden;
}

#garbage-picker .garbage-type.active i {
	visibility: visible;
}

.has-tip {
	border-bottom: 0;
	font-weight: normal;
}

.footer-panel {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 1rem;
	border-top: 1px solid #e6e6e6;
	background: white;
	display: grid;
	grid-template-columns: auto 1fr auto;
}

.footer-panel.admin {
	position: sticky;
}

.footer-panel #submitPlace,
.footer-panel #submitPlace:focus,
.footer-panel #submitPlace:hover {
	background-color: #16aa4d;
	color: white;
	margin: 0;
	align-self: start;
}

.submit-modal {
	width: 100%;
	max-width: 45rem;
}

.auto-response, .auto-accept-response, .auto-deny-response, .auto-message {
	font-style: italic;
	cursor: pointer;
}

.chart-table tbody td {
	text-align: center;
}

.chart-table thead th {
	text-align: center;
	cursor: pointer;
}

#main-heading {
	font-size: 2.5rem;
	padding: 1rem;
	font-weight: bold;
	line-height: 1.1;
}

#sub-heading {
	font-size: 1.5rem;
	padding: 1rem;
}

#sub-heading-message {
	font-size: 1.5rem;
	padding: 1rem;
	font-weight: bold;
}

#store-wrapper {
	display: flex;
	flex-direction: row;
	gap: 1rem;
	padding: 1rem;
}

#mockup-wrapper {
	width: 240px;
	height: 510px;
	transform: perspective(100vw) rotate3d(0, 1, 0, -15deg);
	position: relative;
	overflow: hidden;
	margin: 1rem auto 1rem auto;
}

#mockup-wrapper #mockup-base {
	max-height: 100%;
	max-width: 100%;
	z-index: 13;
}

#mockup-wrapper #mockup-top {
	position: absolute;
	max-width: 100%;
	top: 0;
	left: 0;
	z-index: 15;
}

#mockup-wrapper #mockup-notification {
	position: absolute;
	max-width: 100%;
	top: -100%;
	left: 50%;
	overflow: hidden;
	transform: translateX(-50%);
	transition: top 1s ease;
	z-index: 14;
}

#mockup-wrapper #mockup-notification.active {
	top: 22px;
}

#envipak-wrapper {
	margin-top: 2rem;
}

@media screen and (max-width:56.249em) {
	
	.custom-show-for-2 {
		display: none !important;
	}
	
}

@media screen and (min-width:56.250em) {
	
	.custom-show-for-1 {
		display: none !important;
	}
	
	#header-info-grid {
		margin-top: 2rem;
	}
	
	#main-heading {
		font-size: 3rem;
		padding: 1rem 0 0 2rem;
	}
	
	#sub-heading {
		font-size: 1.5rem;
		padding: 1rem 0 1rem 2rem;
	}
	
	#sub-heading-message {
		font-size: 1.5rem;
		padding: 1rem 0 1rem 2rem;
	}
	
	#store-wrapper {
		padding: 1rem 0 1rem 2rem;
	}
	
	#mockup-wrapper {
		width: 300px;
		height: 620px;
		margin: 0 auto -1rem auto;
	}
	
	#envipak-wrapper {
		margin-top: 0;
	}
	
	#search-wrapper-grid {
		padding-left: 3rem;
	}
	
	.submit-modal {
		width: 80%;
	}
	
	.place-list-name {
		font-size: 1.5rem;
	}
	
	.place-list-letter {
		margin-top: 2rem;
		font-size: 2rem;
	}
	
	.place-detail-header {
		flex-direction: row;
		align-items: center;
	}
	
}

@media screen and (min-width:64em) {
	.custom-show-for-1 {
		display: none !important;
	}
	
	#main-heading {
		font-size: 4rem;
		padding: 1rem 0 0 3rem;
	}
	
	#sub-heading {
		font-size: 1.5rem;
		padding: 1rem 0 2rem 3rem;
	}
	
	#sub-heading-message {
		font-size: 2rem;
		padding: 1rem 0 1rem 3rem;
	}
	
	#store-wrapper {
		padding: 1rem 0 1rem 3rem;
	}
	
	#mockup-wrapper {
		width: 355px;
		height: 716px;
		margin: 0 auto -1.5rem auto;
	}
	
	.submit-modal {
		width: 60%;
	}
	
	#place-name {
		font-size: 2rem;
		padding: 1rem 0;
		margin-right: 2rem;
	}
}

footer {
	font-size: 0.9rem;
    border-top: 5px solid #FFAB40;
    width: 100%;
    padding: 1rem;
}

/* footer {
	position: fixed;
	bottom: 0px;
	width: 100%;
	height: 40px;
	margin: 0 !important;
	padding: 0 !important;
	border-top: 1px solid #D8D8D8;
	background-color: white !important;
}

footer span {
	color: #999 !important;
	font-size: 0.875rem !important;
	word-wrap: break-word;
}
 */
/* foundation overrides */

.reveal-overlay {
	/* fix mac safari z-index bug with mobile-wrapper and reveal-overlay */
	transform: translateZ(500px);
}