:root {

	--color-green: #287a55;
	--color-green-hover: #1b5e40;

}

/* loading */

button.loading {
	position: relative;
	color: transparent !important;
}

button.loading::after {
	content: '';
	position: absolute;
	top: calc(50% - calc(20px / 2));
	left: calc(50% - calc(20px / 2));
	width: 20px;
	height: 20px;
	border-radius: 50px;
	animation: rotation 2s infinite linear !important;
	border-top-color: transparent !important;
	border: 3px solid #FFFFFF;
}

button.loading[data-color="gray"]::after {
	border-color: #B3B3B3 !important;
	border-top-color: transparent !important;
}

section.loading {
	position: relative;
	min-height: 200px;
}

section.loading::after {
	content: '';
	position: absolute;
	top: calc(50% - calc(35px / 2));
	left: calc(50% - calc(35px / 2));
	width: 35px;
	height: 35px;
	border-radius: 50px;
	border: 3px solid #FFFFFF;
	animation: rotation 2s infinite linear !important;
	border-color: #343a4030 !important;
	border-top-color: transparent !important;
}

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

/* == empty */

.empty {
	padding: 35px 0;
	border-radius: 1.5rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 8px;
}

.empty img {
	width: 200px;
	margin-bottom: 24px;
}

.empty h1 {
	font-size: 16pt;
	margin-bottom: 0px;
	text-align: center;
}

.empty p {
	font-size: 10pt;
	font-weight: 400;
	color: #6E6E6E;
	margin-bottom: 0px;
	text-align: center;
}

.empty button {
	padding: 0 20px;
	height: 40px;
	border-radius: 24px;
	background: var(--color-green);
	font-size: 10pt;
	color: #ffffff;
	font-weight: 400;
	border: none;
}

/* html */

html {
	font-family: Poppins;
	overflow-x: visible !important;
}

header {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	height: 75px;
	background: #ffffff;
}

section#search {
	background: var(--color-green);
	padding: 100px 0;
}

section#search div.title {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 1rem;

	font-family: Poppins;
	text-align: center;
}

section#search .title h1 {
	font-size: 3rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 0px;
}

section#search .title p {
	font-size: 1.3rem;
	font-weight: 400;
	color: #d0fae5;
}

/* article.search_box  */

article.search_box {
	padding: 20px;
	border-radius: 1.5rem;
	background: #ffffff;
	box-shadow: 0px 10px 20px -5px #00000020;
}

article.search_box .input_box {
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	flex-direction: column;
	gap: 1rem;

	padding: 0px 15px;
	border: 1px solid #343a4015;
	border-radius: 1rem;
}

article.search_box .input_box .input_item {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 10px;
	width: 100%;
}

article.search_box .input_box .input_item svg {
	width: 25px;
	color: #343a4090;
	stroke-width: 1px;
}

article.search_box .input_box .input_item input,
article.search_box .input_box .input_item select {
	appearance: none;
	vertical-align: middle;
	background: #ffffff !important;
	height: 45px !important;
	width: 100%;
	padding: 0px;
	border: none;
	font-size: 11pt;
	font-weight: 300;
	font-family: Poppins;
	color: #343a40;
	width: 100%;
	outline: none;
	line-height: 100%;
}

article.search_box .input_box .input_item input::placeholder {
	color: #343a4080;
	font-weight: 400;
}

article.search_box .buttons {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	gap: .5rem;
	font-family: Poppins;

}

article.search_box .buttons button.wide {
	width: 100%;
	height: 50px;
	font-size: 11pt;
	font-weight: 500;
	border: 1px solid transparent;
	background: transparent;
	border-radius: 1rem;
	color: #343a40;
	padding: 0px;
	margin: 0px;
}

article.search_box .buttons button.icon {
	height: 50px;
	aspect-ratio: 1 / 1;
	border: 1px solid transparent;
	background: transparent;
	border-radius: 1rem;
	color: #343a40;
	padding: 0px;
	margin: 0px;
	display: flex;
	justify-content: center;
	align-items: center;
}

article.search_box .buttons button.icon svg {
	width: 25px;
	stroke-width: 1px;
}

article.search_box .buttons button.fill {
	background: var(--color-green);
	border-color: var(--color-green);
	transition: all 400ms ease;
	cursor: pointer;
	color: #ffffff;
}

article.search_box .buttons button.fill:disabled {
	background: #c3d8ce;
	border-color: #c3d8ce;
	cursor: default !important;
}

article.search_box .buttons button.fill:not(:disabled):hover {
	background: var(--color-green-hover);
	border-color: var(--color-green-hover);
}

article.search_box .buttons button.regular {
	background: #e9f5ef;
	color: #1a5e3f;
	transition: all 400ms ease;
}

article.search_box .buttons button.regular:hover {
	background: #dff1e8;
	color: #11472e;
}

/* article#ecopoints */

section#ecopoints {
	padding: 50px 0;
	border-bottom: 1px solid #00000005;
}

section#ecopoints:not(.loading):empty {
	display: none !important;
}

article.ecopoint {
	padding: 1.5rem;
	border-radius: 1.5rem;
	border: 1px solid #00000005;
	background: #ffffff;
	box-shadow: 0 10px 25px -10px #00000010;
	font-family: Poppins;
}

article.ecopoint .title {
	padding-bottom: 15px;
	margin-bottom: 15px;
	border-bottom: 1px solid #00000005;
}

article.ecopoint .title h1 {
	font-size: 1.5rem;
	font-weight: 500;
	margin-bottom: 10px;
}

article.ecopoint .title .badge {
	font-size: .7rem;
	padding: 5px 8px;
	background: var(--color-green);
	border-radius: 1rem;
	color: #ffffff;
	line-height: 100%;
	white-space: nowrap !important;
	font-weight: 500 !important;
	margin-top: 10px;
}

article.ecopoint .title p {
	font-size: 11pt;
	font-weight: 300;
	color: #343a40ac;
	margin-bottom: 0px;
}

article.ecopoint .infos {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-direction: column;
	gap: 1.5rem;
}

article.ecopoint .infos ul {
	margin: 0px;
	font-size: 11pt;
	font-family: Poppins;
	color: #343a40;
	font-weight: 300;
}

article.ecopoint .infos ul p {
	font-size: 12pt;
	font-weight: 400;
	margin-left: -30px;
	margin-bottom: 10px;
	color: #161617;
}

article.ecopoint .warning {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 1rem;
	padding: 1rem;

	border-radius: 1rem;
	background: #fffbeb;
	color: #973c00;

	margin: 20px 0;
}

article.ecopoint .warning svg {
	width: 20px;
	height: 20px;
	min-width: 20px;
	aspect-ratio: 1/1;
	stroke-width: 1.5px;
	margin-top: 5px;
}

article.ecopoint .warning p {
	margin-bottom: 0px;
	font-size: 10pt;
	font-weight: 400;
}

article.ecopoint .buttons button {
	width: 100%;
	height: 45px;
	border: 1px solid var(--color-green);
	border-radius: 1rem;
	background: transparent;
	font-size: 11pt;
	color: var(--color-green);
}

/* article#info */

section#info {
	padding: 100px 0;
}

article.info {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: column;
}

article.info .icon {
	width: 65px;
	aspect-ratio: 1 / 1;
	border-radius: 65px;
	background: #21b98647;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--color-green-hover);
	margin-bottom: 1rem;
}

article.info .icon svg {
	width: 50%;
}

article.info h1 {
	text-align: center;
	font-size: 1.3rem;
	font-weight: 500;
	font-family: Poppins;
}

article.info p {
	font-size: 11pt;
	font-weight: 300;
	color: #343a40;
	font-family: Poppins;
	text-align: center;
	margin-bottom: 0px;
}

/* footer */

footer {
	padding: 25px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: .5rem;

	background: #fafafa;
}

footer p {
	font-size: 10pt;
	font-weight: 300;
	margin-bottom: 0px;
	color: #343a4090;
	text-align: center;
}

/* responsividade */

@media screen and (max-width: 768px) {

	section#search .title h1 {
		font-size: 28pt;
		line-height: 130%;
	}

	section#search .title p {
		font-size: 13pt;
	}

	section#search {
		padding: 50px 0 65px 0;
	}

	section#info {
		padding: 50px 0;
	}

}

/* CTA Eu Levo */

article.ecopoint .cta {
	margin: 15px 0;
	padding: 1rem;
	border-radius: 1rem;

	background: linear-gradient(135deg, #287a55, #1b5e40);
	color: #ffffff;

	display: flex;
	flex-direction: column;
	gap: 10px;
}

article.ecopoint .cta-text p {
	font-size: 10pt;
	margin-bottom: 0;
	opacity: 0.9;
}

article.ecopoint .cta-text h2 {
	font-size: 13pt;
	margin: 0;
	font-weight: 500;
	line-height: 140%;
}

article.ecopoint .cta-text strong {
	font-size: 14pt;
	font-weight: 700;
}

article.ecopoint .cta button {
	height: 40px;
	border-radius: 10px;
	border: none;
	background: #ffffff;
	color: var(--color-green);
	font-weight: 500;
	font-size: 10pt;
	cursor: pointer;
	transition: all 200ms ease;
}

article.ecopoint .cta button:hover {
	transform: translateY(-1px);
	background: #f3f3f3;
}