:root {
	--main-color: "#edfe3";
	--main-font: "Muli", sans-serif;
	--light-bg: rgb(252, 252, 252);
	--light-color: #60606a;
	--mode-bg: var(--light-bg);
	--mode-color: var(--light-color);
	--body-font-size: 1.8rem;
	--btn-min-width: 45px;
	--btn-min-height: 35px;
	--btn-checkbox-radio: 18px;
	--btn-border-radius: 0.375rem;

	--form-width: 420px;
	--form-border: 1px solid #e8e8e8;
	--form-border-radius: 5px;

	--form-submit-button-height: 38px;
	--form-submit-button-color: #ffffff;
	--form-submit-button-bg: rgb(42, 206, 0);
	--form-submit-button-border-radius: 100px;
}

*,
*::after,
*::before {
	margin: 0;
	padding: 0;
	border: 0 solid #e2e8f0;
	-webkit-box-sizing: inherit;
	box-sizing: inherit;
	background-repeat: no-repeat;
	overflow-wrap: break-word;
	word-wrap: break-word;
	word-break: break-word;
	-webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar {
	background-color: #fff;
	width: 7px;
}
::-webkit-scrollbar-track {
	background-color: #fff;
}
::-webkit-scrollbar-track:hover {
	background-color: #f4f4f4;
}
::-webkit-scrollbar-thumb {
	background-color: #babac0;
	border-radius: 16px;
	border: 1px solid #fff;
}
::-webkit-scrollbar-thumb:hover {
	background-color: #a0a0a5;
	border: 1px solid #f4f4f4;
}
::-webkit-scrollbar-button {
	display: none;
}

::-moz-selection {
	color: #fff;
	background: #02124e;
}

::selection {
	color: #fff;
	background: #02124e;
}

::-webkit-input-placeholder {
	color: #a5a5a5;
	font-weight: 400 !important;
}

:-ms-input-placeholder {
	color: #a5a5a5;
	font-weight: 400 !important;
}

::-ms-input-placeholder {
	color: #a5a5a5;
	font-weight: 400 !important;
}

::placeholder {
	color: #a5a5a5;
	font-weight: 400 !important;
}

html {
	scroll-behavior: smooth;
	font-size: 10px;
}

body {
	cursor: default;
	margin: 0 !important;
	padding: 0 !important;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	min-height: 100vh;
	print-color-adjust: exact !important;
	-webkit-print-color-adjust: exact !important;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	scroll-behavior: smooth;
	text-rendering: optimizeSpeed;
	font-size: var(--body-font-size);
	line-height: 1.7;
	font-weight: 400;
}

html,
body {
	color: var(--mode-color);
	background-color: var(--mode-bg);
	font-family: var(--main-font);
}
picture,
img {
	display: block;
	max-width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	-ms-user-select: none;
	user-select: none;

	-webkit-user-drag: none;
	-khtml-user-drag: none;
	-moz-user-drag: none;
	-o-user-drag: none;
	-ms-user-drag: none;
	user-drag: none;
	max-width: 100%;
	/* https://x.com/csswizardry/status/1717841334462005661 */
	height: auto;
	vertical-align: middle;
	font-style: italic;
	background-repeat: no-repeat;
	background-size: cover;
	shape-margin: 0.75rem;
}
a,
button {
	display: inline-flex;
	justify-content: center;
	align-items: center;
}

[hidden] {
	display: none;
}
[disabled],
.disabled {
	cursor: not-allowed !important;
	pointer-events: none !important;
	background-color: #c6c6c6 !important;
}

[type="text"],
[type="password"],
[type="email"],
[type="search"],
[type="url"],
[title="tel"],
[title="number"],
[title="time"],
[title="date"],
[title="datetime"],
[title="datetime-local"],
[title="month"],
[title="week"],
[title="image"],
[title="file"],
[type="button"],
[type="reset"],
[type="submit"],
button,
select,
textarea {
	font-family: inherit;
	color: inherit;
}
.btn,
[type="button"],
[type="reset"],
[type="submit"],
button {
	-webkit-appearance: button;
	cursor: pointer;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border: none;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
::-webkit-input-placeholder {
	color: inherit;
	opacity: 0.54;
}
option {
	font-size: 1.6rem;
	padding: 0.5rem;
}
option[value=""][disabled],
option.placeholder {
	display: none;
}
label {
	cursor: pointer;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
/* layout */
body {
	display: flex;
	flex-direction: column;
	padding: 40px;
	gap: 20px;
}
.goCollect_footer {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 10px;
}
.goCollect_footer_img {
	max-width: 100%;
}
.goCollect_footer_text {
	font-family: "Roboto", sans-serif;
	color: #60606a;
	line-height: 14px;
	font-size: 11px;
	text-align: center;
	display: flex;
	flex-direction: column;
}

.goCollect_footer_text sup {
	font-size: 6px;
}
.goCollect_form {
	max-width: var(--form-width);
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	border-radius: var(--form-border-radius);
}
.goCollect_form_group {
	display: flex;
	flex-direction: column;
	margin-block: 10px;
	padding: 0;
	border: var(--form-border);
	border-radius: var(--form-border-radius);
}
.goCollect_form_row {
	min-height: 38px;
	border-bottom: 1px solid #e8e8e8;
}
.goCollect_form_header {
	height: 150px;
	background-color: #e8e9eb;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.goCollect_form_header_img {
	display: block;
	background-color: #fff;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid #fff;
	box-shadow: 0 0 1px gray;
}
input:-webkit-autofill {
	-webkit-box-shadow: 0 0 0 50px white inset; /* Change the color to your own background color */
	-webkit-text-fill-color: #333;
}

input:-webkit-autofill:focus {
	-webkit-box-shadow: /*your-potential-box-shadow*/ , 0 0 0 50px white inset;
	-webkit-text-fill-color: #333;
}
.goCollect_form_input {
	color: #60606a;
	box-shadow: inset 0px 0px 0px lightgray, 0px 0px 0px #fff, 0px 0px 0px #fff;
	padding: 6px 9px 6px 10px;
	font-size: 15px;
	border: none;
	padding-left: 10px;
	height: 36px;
	width: 100%;
}
.goCollect_form_input_error {
	color: #ff0000 !important;
	outline-color: #ff0000 !important;
}
input.goCollect_form_input_error:-webkit-autofill {
	outline-color: #ff0000 !important;
	-webkit-box-shadow: 0 0 0 50px white inset; /* Change the color to your own background color */
	-webkit-text-fill-color: #ff0000 !important;
}
.goCollect_form_flag_wrapper {
	display: flex;
	position: relative;
}
.goCollect_form_flag_container {
	font-size: 15px;
	right: 100%;
}
.goCollect_form_flag_list_button {
	width: 90px;
	height: 100%;
	display: flex;
	gap: 5px;
}

.goCollect_form_flag_list_button.required-selection {
	border: 2px solid #ff0031;
	background-color: #fff5f5;
}

.goCollect_form_flag_list_button.required-selection::after {
	content: "Please select a country";
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background-color: #ff0031;
	color: white;
	font-size: 12px;
	padding: 4px 8px;
	border-radius: 4px;
	margin-top: 4px;
	z-index: 1000;
	white-space: nowrap;
}
.goCollect_form_flag_list_button > * {
	pointer-events: none;
}
.goCollect_form_flag_list {
	position: absolute;
	top: 100%;
	left: -1px;
	z-index: 99;
	width: var(--form-width);
	max-height: 200px;
	overflow-y: scroll;
	border: 1px solid #e8e8e8;
	background-color: #fff;
}
.goCollect_form_flag_list_search_item {
	position: sticky;
	top: 0;
	left: 0;
}
.goCollect_form_flag_list_search {
	width: 100%;
	padding: 10px 10px;
}
.goCollect_form_flag_list_search:focus {
	outline: none;
}
.goCollect_form_flag_list_item {
	cursor: pointer;
	font-size: 1rem;
	display: flex;
	align-items: center;
	gap: 5px;
	transition: all 200ms ease-in-out;
	padding: 5px 10px;
}
.goCollect_form_flag_list_item_empty {
	pointer-events: none;
	text-align: center;
	padding: 20px 10px;
}
.goCollect_form_flag_list_item:hover {
	background-color: rgba(0, 0, 0, 0.05);
}
.goCollect_form_flag_list_item_img {
	border: 0.5px solid #e8e8e8;
	border-radius: 2px;
}
.goCollect_color_gray {
	color: #999;
}
.goCollect_d-none {
	display: none;
}

.goCollect_limited_text {
	max-width: 180px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.goCollect_form_submit_button {
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	height: var(--form-submit-button-height);
	border-radius: var(--form-submit-button-border-radius);
	color: var(--form-submit-button-color);
	background-color: var(--form-submit-button-bg);
}

.overlay-screen {
	display: flex;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1000;
	justify-content: center;
	align-items: center;
}

.spinner {
	border: 10px solid #f3f3f3;
	border-top: 10px solid #6f6f71;
	border-radius: 50%;
	width: 100px;
	height: 100px;
	animation: spin 2s linear infinite;
}

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

.error-popup {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	padding: 20px;
	background-color: #fff;
	border: 1px solid #ccc;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	border-radius: var(--form-border-radius);
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.error-popup p {
	margin: 0 0 10px;
}

.error-popup button {
	padding: 5px 10px;
	cursor: pointer;
	background-color: #ff0000;
	border-radius: var(--form-border-radius);
	color: #ffffff;
}

 .error-banner {
	 position: fixed;
	 top: 0;
	 left: 50%;
	 transform: translateX(-50%);
	 display: none;
	 width: var(--form-width);
	 max-width: var(--form-width);
	 border-radius: var(--form-border-radius);
	 background-color: #ffa500;
	 color: #ffffff;
	 padding: 5px;
	 box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	 z-index: 1000;
	 text-align: center;
	 font-size: 14px;
 }

.error-banner.show {
	display: block;
}

/* Required country selection indicator */
.goCollect_form_flag_list_button.required-selection {
	border: 2px solid #ff0031;
	background-color: #fff5f5;
}

.goCollect_form_flag_list_button.required-selection::after {
	content: "Please select a country";
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background-color: #ff0031;
	color: white;
	font-size: 12px;
	padding: 4px 8px;
	border-radius: 4px;
	margin-top: 4px;
	z-index: 1000;
	white-space: nowrap;
}
