
@layer bricks {
	@keyframes load8 {
		0% {
			-webkit-transform: rotate(0deg);
			transform: rotate(0deg);
		}
		
		to {
			-webkit-transform: rotate(1turn);
			transform: rotate(1turn);
		}
	}
	
	@keyframes spin {
		to {
			-webkit-transform: rotate(1turn);
			transform: rotate(1turn);
		}
	}
	
	@keyframes scrolling {
		0% {
			opacity: 1;
		}
		
		to {
			opacity: 0;
			-webkit-transform: translateY(10px);
			transform: translateY(10px);
		}
	}
	
	:where(.brxe-form) {
		display: flex;
		flex-wrap: wrap;
		width: 100%;
	}
	
	:where(.brxe-form) .label, :where(.brxe-form) label {
		color: inherit;
		font-size: 12px;
		font-weight: 600;
		letter-spacing: .4px;
		text-transform: uppercase;
	}
	
	:where(.brxe-form) .form-group {
		display: flex;
		flex-direction: column;
		padding: 0 0 20px;
		width: 100%;
	}
	
	:where(.brxe-form) .form-group.captcha, :where(.brxe-form) .form-group:last-child {
		padding-bottom: 0;
	}
	
	:where(.brxe-form) .form-group.captcha {
		line-height: 1;
	}
	
	:where(.brxe-form) .form-group.file {
		display: block;
	}
	
	:where(.brxe-form) .form-group.file > label.choose-files {
		margin-bottom: 0;
	}
	
	:where(.brxe-form) .form-group > .label {
		margin-bottom: 5px;
	}
	
	:where(.brxe-form) .form-group .form-group-error-message {
		background-color: var(--bricks-bg-danger);
		color: var(--bricks-text-danger);
		display: none;
		padding: 15px;
		width: 100%;
	}
	
	:where(.brxe-form) .form-group .form-group-error-message.show {
		display: block;
	}
	
	:where(.brxe-form) .form-group .password-input-wrapper {
		position: relative;
	}
	
	:where(.brxe-form) .form-group .password-input-wrapper .password-toggle {
		background: none;
		position: absolute;
		right: 12px;
		top: 50%;
		transform: translateY(-50%);
	}
	
	:where(.brxe-form) .form-group .password-input-wrapper .password-toggle span {
		display: flex;
	}
	
	:where(.brxe-form) .form-group .password-input-wrapper .password-toggle span.hide {
		display: none;
	}
	
	:where(.brxe-form) .submit-button-wrapper {
		width: auto;
	}
	
	:where(.brxe-form) .required:after {
		content: "*";
		padding: 0 2px;
		position: relative;
		top: -2px;
	}
	
	:where(.brxe-form) .options-wrapper {
		list-style-type: none;
		margin: 0;
		padding: 0;
	}
	
	:where(.brxe-form) .options-wrapper input, :where(.brxe-form) .options-wrapper label {
		display: inline-block;
		height: auto;
		margin: 0 5px 0 0;
		width: auto;
	}
	
	:where(.brxe-form) .options-wrapper input[type=checkbox], :where(.brxe-form) .options-wrapper input[type=radio] {
		margin: initial;
		padding: initial;
		position: relative;
		top: 1px;
	}
	
	:where(.brxe-form) button[type=submit].sending {
		cursor: default;
	}
	
	:where(.brxe-form) button[type=submit].sending .text {
		opacity: .5;
	}
	
	:where(.brxe-form) button[type=submit].sending > i, :where(.brxe-form) button[type=submit].sending > svg {
		display: none;
	}
	
	:where(.brxe-form) button[type=submit].sending .loading {
		animation: load8 1s linear infinite;
		display: flex;
		opacity: 1;
	}
	
	:where(.brxe-form) button[type=submit].sending .loading svg {
		transform: scaleX(-1);
	}
	
	:where(.brxe-form) button[type=submit] .loading {
		display: none;
	}
	
	:where(.brxe-form) button[type=submit] svg {
		height: 1em;
		transform-origin: center;
	}
	
	:where(.brxe-form) .recaptcha-hidden {
		display: none;
	}
	
	:where(.brxe-form) .recaptcha-error {
		display: none;
		padding: 0 !important;
	}
	
	:where(.brxe-form) .recaptcha-error.show {
		display: block;
	}
	
	:where(.brxe-form) .recaptcha-error .brxe-alert.danger {
		align-items: center;
		background-color: var(--bricks-bg-danger);
		border-color: currentcolor;
		color: var(--bricks-text-danger);
		display: flex;
		justify-content: space-between;
		padding: 15px;
		width: 100%;
	}
	
	:where(.brxe-form) .hcaptcha-error {
		display: none;
		padding: 0 !important;
	}
	
	:where(.brxe-form) .hcaptcha-error.show {
		display: block;
	}
	
	:where(.brxe-form) .hcaptcha-error .brxe-alert.danger {
		align-items: center;
		background-color: var(--bricks-bg-danger);
		border-color: currentcolor;
		color: var(--bricks-text-danger);
		display: flex;
		justify-content: space-between;
		padding: 15px;
		width: 100%;
	}
	
	:where(.brxe-form) input[type=checkbox] + .label, :where(.brxe-form) input[type=checkbox] + label, :where(.brxe-form) input[type=radio] + .label, :where(.brxe-form) input[type=radio] + label {
		color: inherit;
		cursor: pointer;
		font-family: inherit;
		font-size: inherit;
		font-weight: inherit;
		letter-spacing: inherit;
		line-height: inherit;
		text-align: inherit;
		text-transform: inherit;
	}
	
	:where(.brxe-form) textarea {
		height: inherit;
		resize: vertical;
	}
	
	:where(.brxe-form) .message {
		background-color: var(--bricks-bg-info);
		color: var(--bricks-text-info);
		display: flex;
		gap: 15px;
		justify-content: space-between;
		opacity: 1;
		padding-bottom: 0;
		position: relative;
		width: 100%;
	}
	
	:where(.brxe-form) .message.success {
		background-color: var(--bricks-bg-success);
		color: var(--bricks-text-success);
	}
	
	:where(.brxe-form) .message.error {
		background-color: var(--bricks-bg-danger);
		color: var(--bricks-text-danger);
	}
	
	:where(.brxe-form) .message .text {
		padding: 15px;
	}
	
	:where(.brxe-form) .message.closing {
		opacity: 0;
		transition: opacity .2s;
	}
	
	:where(.brxe-form) .message .close {
		all: unset;
		cursor: pointer;
		padding: 15px;
	}
	
	:where(.brxe-form) input.file, :where(.brxe-form) input[type=file] {
		display: block;
		height: 0;
		opacity: 0;
		width: 0;
	}
	
	:where(.brxe-form) .file-result {
		display: none;
		padding: 0;
	}
	
	:where(.brxe-form) .file-result.show {
		align-items: center;
		display: flex;
		margin: 0 0 15px;
	}
	
	:where(.brxe-form) .file-result.show.danger {
		background-color: var(--bricks-bg-danger);
		color: var(--bricks-text-danger);
		justify-content: space-between;
		padding: 15px;
	}
	
	:where(.brxe-form) .file-result.show.danger svg {
		cursor: pointer;
		height: 1em;
		margin-left: 5px;
	}
	
	:where(.brxe-form) .file-result.show.danger svg g {
		stroke: currentcolor;
	}
	
	:where(.brxe-form) .file-result.show .remove {
		display: inline-block;
		font-size: 12px;
		line-height: 30px;
		margin: 0 15px;
		padding: 0 10px;
	}
	
	:where(.brxe-form) .file-result.show .remove:hover {
		background-color: var(--bricks-text-danger);
		color: #fff;
	}
	
	:where(.brxe-form) .choose-files {
		align-self: flex-start;
		background-color: transparent;
		border: 1px solid var(--bricks-border-color);
		cursor: pointer;
		display: inline-block;
		font-family: inherit;
		font-size: 12px;
		font-weight: 600;
		line-height: 40px;
		padding: 0 15px;
		text-align: center;
		text-transform: none;
		white-space: nowrap;
		width: auto;
	}
	
	:where(.brxe-form) .choose-files:hover {
		background-color: rgba(0, 0, 0, .05);
	}
	
	:where(.brxe-form) .gallery-preview {
		display: flex;
		flex-wrap: wrap;
		gap: 10px;
	}
	
	:where(.brxe-form) .gallery-preview:not(:empty) + button {
		margin-top: 5px;
	}
	
	:where(.brxe-form) .image-preview {
		align-self: flex-start;
		overflow: hidden;
		position: relative;
	}
	
	:where(.brxe-form) .image-preview:hover button {
		opacity: 1;
	}
	
	:where(.brxe-form) .image-preview:has(img) + button {
		margin-top: 5px;
	}
	
	:where(.brxe-form) .image-preview button {
		background-color: #fff;
		border: none;
		left: 50%;
		opacity: 0;
		position: absolute;
		top: 50%;
		transform: translate(-50%, -50%);
		z-index: 1;
	}
	
	:where(.brxe-form) .image-preview button:hover {
		background-color: var(--bricks-text-danger);
		color: #fff;
	}
	
	:where(.brxe-form) .image-preview button.hide {
		display: none;
	}
	
	.grecaptcha-badge {
		visibility: hidden;
	}
}

@layer bricks {
	.brxe-code {
		width: 100%;
	}
}

@layer bricks {
	:where(.brxe-heading).has-separator {
		align-items: center;
		display: inline-flex;
		gap: 20px;
	}
	
	:where(.brxe-heading) > [contenteditable] {
		display: inline-block;
		text-decoration: inherit;
	}
	
	:where(.brxe-heading) .separator {
		border-top: 1px solid;
		flex-grow: 1;
		flex-shrink: 0;
		height: 1px;
	}
}

#brxe-551151 {
	color: #f90;
	font-weight: 400;
	font-size: 60px;
	letter-spacing: 5px;
	line-height: 84px;
	text-transform: uppercase;
	font-family: "Oswald";
	text-align: center;
}

@media (max-width: 767px) {
	#brxe-551151 {
		font-size: 24px;
		letter-spacing: 5px;
		line-height: 30px;
		font-weight: 400;
	}
}

#brxe-842ac7 {
	align-items: center;
	box-shadow: 0 9px 10px 0 rgba(0, 0, 0, .5);
	margin-top: 80px;
}

@media (max-width: 767px) {
	#brxe-842ac7 {
		margin-top: 80px;
		padding-top: 20px;
		padding-bottom: 20px;
	}
}

#brxe-200f43 {
	text-align: center;
}

#brxe-02fe8e {
	margin-top: 50px;
	font-family: "Open Sans";
	font-size: 16px;
	line-height: 28.8px;
	font-weight: 600;
}

#brxe-c8cf96 {
	align-items: center;
	margin-top: 50px;
	margin-bottom: 50px;
	width: 700px;
}

@media (max-width: 991px) {
	#brxe-c8cf96 {
		width: 90%;
	}
}

@media (max-width: 767px) {
	#brxe-c8cf96 {
		align-items: center;
		width: 80%;
	}
}

@media (max-width: 478px) {
	#brxe-c8cf96 {
		width: 90%;
	}
}

#brxe-e8b145 {
	background-image: linear-gradient(180deg, #fff, #e09900);
}

#brxe-6d9134 {
	margin-bottom: 20px;
	font-size: 22px;
	font-family: "Work Sans";
	font-weight: 500;
	line-height: 22px;
}

#brxe-95e58c {
	text-align: center;
	font-size: 16px;
	font-weight: 600;
	font-family: "Open Sans";
	line-height: 28.8px;
	margin-bottom: 60px;
}

#brxe-a237ad {
	margin-bottom: 20px;
	font-size: 22px;
	font-family: "Work Sans";
	font-weight: 500;
	line-height: 22px;
}

#brxe-26e024 {
	text-align: center;
	font-size: 16px;
	font-weight: 600;
	font-family: "Open Sans";
	line-height: 28.8px;
	margin-bottom: 60px;
}

#brxe-d266b6 {
	text-align: center;
	line-height: 14px;
	font-size: 15px;
	font-weight: 600;
	font-family: "Open Sans";
	margin-bottom: 50px;
}

#brxe-d266b6 a {
	text-align: center;
	line-height: 14px;
	font-size: 15px;
	font-weight: 600;
	font-family: "Open Sans";
	font-size: inherit;
}

.text-orange {
	color: #f90;
}

#brxe-0e08a7 {
	margin-bottom: 20px;
	font-size: 22px;
	font-family: "Work Sans";
	font-weight: 500;
	line-height: 22px;
}

#brxe-beb36e {
	text-align: center;
	line-height: 14px;
	font-size: 15px;
	font-weight: 700;
	font-family: "Open Sans";
	margin-bottom: 30px;
}

#brxe-beb36e a {
	text-align: center;
	line-height: 14px;
	font-size: 15px;
	font-weight: 700;
	font-family: "Open Sans";
	font-size: inherit;
}

.text-orange {
	color: #f90;
}

#brxe-f84a02 {
	text-align: center;
	font-size: 15px;
	font-weight: 600;
	font-family: "Open Sans";
	line-height: 28.8px;
	margin-bottom: 60px;
}

#brxe-29d2b4 {
	max-width: 700px;
	align-items: center;
	padding-top: 100px;
}

#brxe-c07d1c {
	width: 90%;
	background-color: #fff;
	max-width: 1712px;
	border: 6.34px solid #e09900;
	padding-right: 20px;
	padding-left: 20px;
	align-items: center;
	margin-bottom: 40px;
}

@media (max-width: 991px) {
	#brxe-c07d1c {
		width: 95%;
	}
}

#brxe-73e6f7 {
	font-size: 18px;
	font-weight: 400;
	font-family: "Oswald";
	letter-spacing: 2px;
	line-height: 30.6px;
	margin-bottom: 10px;
}

#brxe-3fb4f0 {
	font-size: 14px;
	font-weight: 600;
	line-height: 23.8px;
	font-family: "Open Sans";
	margin-bottom: 10px;
}

#brxe-a7ff2a {
	font-size: 14px;
	font-weight: 600;
	line-height: 23.8px;
	font-family: "Open Sans";
}

#brxe-aab2b1 {
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 80px;
	margin-top: 5px;
	margin-bottom: 5px;
	border: 5px solid #000;
}

#brxe-771114 {
	padding-right: 3px;
	width: 100%;
}

#brxe-988dd1 {
	font-size: 18px;
	font-weight: 400;
	font-family: "Oswald";
	letter-spacing: 2px;
	line-height: 30.6px;
	margin-bottom: 10px;
}

#brxe-bc4a6c {
	font-size: 14px;
	font-weight: 600;
	line-height: 23.8px;
	font-family: "Open Sans";
	margin-bottom: 10px;
}

#brxe-647d13 {
	font-size: 14px;
	font-weight: 600;
	line-height: 23.8px;
	font-family: "Open Sans";
}

#brxe-86b8c7 {
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 80px;
	margin-top: 5px;
	margin-bottom: 5px;
	border: 5px solid #000;
}

#brxe-41a2a3 {
	width: 100%;
	padding-right: 3px;
}

#brxe-1119df {
	font-size: 18px;
	font-weight: 400;
	font-family: "Oswald";
	letter-spacing: 2px;
	line-height: 30.6px;
	margin-bottom: 10px;
}

#brxe-2ecf22 {
	font-size: 14px;
	font-weight: 600;
	line-height: 23.8px;
	font-family: "Open Sans";
	margin-bottom: 10px;
}

#brxe-663d66 {
	font-size: 14px;
	font-weight: 600;
	line-height: 23.8px;
	font-family: "Open Sans";
}

#brxe-b19fff {
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 80px;
	margin-top: 5px;
	margin-bottom: 5px;
	border: 5px solid #000;
}

#brxe-43c545 {
	width: 100%;
	padding-right: 5px;
}

#brxe-a14999 {
	width: 90%;
	background-color: #fff;
	max-width: 1067px;
	border: 6.34px solid #e09900;
	padding-right: 20px;
	padding-left: 20px;
	align-items: center;
	flex-direction: row;
	column-gap: 30px;
}

.woocommerce-variation-add-to-cart {
	display: flex !important;
	flex-wrap: wrap;
	gap: 8px;
}

.woocommerce-variation-add-to-cart > * {
	flex: 0 0 100%;
}

.woocommerce-variation-add-to-cart .quantity {
	flex: 0 0 50%;
}

.woocommerce-variation-add-to-cart .single_add_to_cart_button {
	padding: 12px 30px;
	background: linear-gradient(to bottom, #ffec64 5%, #ffab23 100%) !important;
	background-color: #ffec64 !important;
	border-radius: 6px !important;
	border: 1px solid #fa2 !important;
	display: inline-block !important;
	cursor: pointer !important;
	color: #333 !important;
	font-family: "Arial", sans-serif !important;
	font-weight: bold !important;
	text-decoration: none !important;
	text-shadow: 0px 1px 0px #fe6 !important;
	margin-top: 2px !important;
	font-size: 20px;
	position: relative;
	transition: all .3s ease;
}

.woocommerce-variation-add-to-cart .single_add_to_cart_button::after {
	font-family: "Ionicons", sans-serif;
	content: "";
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%) translateX(-10px);
	opacity: 0;
	transition: all .3s ease;
	font-size: 1.2em;
}

.woocommerce-variation-add-to-cart .single_add_to_cart_button:hover {
	padding-right: 55px;
	width: auto;
}

.woocommerce-variation-add-to-cart .single_add_to_cart_button:hover::after {
	opacity: 1;
	transform: translateY(-50%) translateX(0);
}

.variations .label label {
	color: #555;
	font-weight: 600;
	text-align: left;
	margin-left: 5px;
}

.woocommerce-variation-availability p.stock.in-stock {
	background: #77a464;
	clear: both;
	border-radius: 5px;
	margin: 10px auto 10px;
	padding: 10px 15px;
	color: #fff;
}

.reset_variations {
	color: #3dc3ea;
	text-align: right;
}

.woocommerce-Price-amount.amount {
	color: #111827;
	font-family: "Work Sans", sans-serif;
	font-weight: 500;
}

@media (max-width: 991px) {
	#brxe-a14999 {
		width: 95%;
	}
}

#brxe-91f450 {
	background-image: url("https://cdn-ileomca.nitrocdn.com/rwKKjiHNouJwiMrKsdYpgPzpdYDwxZtN/assets/images/optimized/rev-8e16a91/inoculatetheworld.com/wp-content/uploads/2026/08/InoculateTheWorld-Mushrooms-scaled-1-1024x1024.jpg");
	background-size: cover;
	padding-top: 100px;
	padding-bottom: 100px;
}

#brxe-91f450.nitro-lazy {
	background-image: none !important;
}

#brxe-55ff5b {
	margin-bottom: 100px;
	font-size: 14px;
	font-family: "Work Sans";
	text-align: center;
}

#brxe-c2c7e0 {
	font-size: 45px;
	font-family: "Open Sans";
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 3px;
	line-height: 63px;
	color: #000;
}

#brxe-62f2b2 {
	width: 50%;
}

#brxe-0220f1 .form-group input {
	border: 2px solid #e09900;
	background-color: rgba(255, 255, 255, .51);
}

#brxe-0220f1 .flatpickr {
	border: 2px solid #e09900;
	background-color: rgba(255, 255, 255, .51);
}

#brxe-0220f1 select {
	border: 2px solid #e09900;
	background-color: rgba(255, 255, 255, .51);
	color: #999;
	font-family: "Open Sans";
	font-size: 16px;
	font-weight: 600;
}

#brxe-0220f1 textarea {
	border: 2px solid #e09900;
	background-color: rgba(255, 255, 255, .51);
}

#brxe-0220f1 .bricks-button:not([type=submit]) {
	border: 2px solid #e09900;
}

#brxe-0220f1 .choose-files {
	border: 2px solid #e09900;
}

#brxe-0220f1 button[type=submit].bricks-button {
	border-radius: 24px;
}

#brxe-0220f1 .bricks-button {
	background-color: #000;
	color: #fff;
	font-family: "Open Sans";
	font-weight: 700;
}

#brxe-0220f1 ::placeholder {
	color: #999;
	font-family: "Open Sans";
	font-size: 16px;
	font-weight: 600;
}

.brxe-form .form-group.submit-button-wrapper {
	display: flex;
	justify-content: flex-end;
	width: 100%;
	align-items: flex-end;
}

#brxe-185a98 {
	width: 50%;
	margin-right: 50px;
	margin-left: 50px;
}

#brxe-e9e012 {
	grid-template-columns: 1fr 1fr;
	flex-direction: row;
}

#brxe-26bbae {
	margin-top: 50px;
}

#brxe-df2321 {
	background-image: url("https://cdn-ileomca.nitrocdn.com/rwKKjiHNouJwiMrKsdYpgPzpdYDwxZtN/assets/images/optimized/rev-8e16a91/inoculatetheworld.com/wp-content/uploads/2026/08/ksenia-kudelkina-Wvas_uTO8wQ-unsplash-scaled-1-1536x1024.jpg");
	background-size: cover;
	position: relative;
	padding-bottom: 450px;
}

#brxe-df2321.nitro-lazy {
	background-image: none !important;
}

:where(#brxe-df2321 > *:not(figcaption)) {
	position: relative;
}

#brxe-df2321::before {
	background-image: linear-gradient(180deg, #fff 20%, rgba(255, 255, 255, 0) 80%);
	position: absolute;
	content: "";
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	pointer-events: none;
}
