

body {
	background: #fafafa url('../img/hoop.png') 75% 780px no-repeat;
	background-size: 140% auto;
	font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
	font-weight: 500;

	--wp--preset--font-size--large: 1.5625em;
	--wp--preset--font-size--x-large: 1.5626em;

}

@media all and (min-width: 960px) {

	body {
		--wp--preset--font-size--large: 1.875em;
		--wp--preset--font-size--x-large: 2.5em;
	}

}

@media all and (min-width: 1280px) {
	body {
		--wp--preset--font-size--large: 2em;
		--wp--preset--font-size--x-large: 2.5em;
	}
}

:root {
	--colors-green: #5E9C40;
	--colors-grey-lighest: #F8F8F8;
	--colors-grey-light: #E3E4E3;
	--colors-grey-dark: #767A76;
	--colors-grey-darkest: #878788;
	--colors-orange: #E96846;

	--menu-icon-size:               12px;
	--menu-icon-dash-width:         12px;
	--menu-icon-dash-height:        2px;
	--menu-icon-dash-gutter:        2px;
	--menu-icon-dash-color:         #000;
	--menu-icon-dash-border-radius: 0;
	--container-size: 1280px;
}

.site-wrapper {
	max-width: var(--container-size);
	/*padding: 0 2.1875em;*/
	padding: 0 1.875em;
	margin: 0 auto;
}

@media all and (min-width: 960px) {
	.site-wrapper {
		padding: 0 1.5rem;
	}
}

@media all and (min-width: 1280px) {
	.site-wrapper {
		padding: 0 3em;
	}
}

@media all and (min-width: 1440px) {
	.site-wrapper {
		padding: 0;
	}
}

a:hover {
	text-decoration: underline;
}

i.icon {
	display: inline-block;
	width: 2rem;
	height: 2rem;
	border-radius: 9999px;
	border-width: 1px;
	border-style: solid;
	position: relative;
}

i.icon::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.icon--account { background: url('../img/account.svg') center center no-repeat; }
.icon--basket { background: url('../img/basket.svg') center center no-repeat; }
.icon--menu { background: url('../img/burger.svg') center center no-repeat; }

.icon-burger {
	width: 2rem;
	height: 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	border-radius: 9999px;
	border: 1px solid var(--colors-grey-light);
	transition: all .5s ease;
}

body.menu--active .icon-burger {
	background: var(--colors-green);
	border: 1px solid var(--colors-green);
}

.icon-burger .menu-icon {
	font-size: 12px;
	width: 12px;
	height: 10px;
	display: inline-block;
	position: relative;
	background-color: transparent;
	border: 0;
	padding: 0;
	outline: none;
	user-select: none;
	-webkit-touch-callout: none;
	touch-action: manipulation;
	cursor: pointer;
}

.menu-icon i {
	font-size: 12px;
	display: block;
	position: absolute;
	top: 50%;
	left: calc(50% - 6px);
	background-color: var(--colors-green);
	width: 12px;
	height: 2px;
	margin-top: 4px;
	transition: 0.2s ease-in-out 0.2s;
} body.menu--active .menu-icon i {
	  background-color: rgba(255,255,255,0);
	  transition-delay: 0s;
  }

.menu-icon::before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: calc(50% - 6px);
	background-color: var(--colors-green);
	width: 12px;
	height: 2px;
	margin-top: -4px;
	transition: margin 0.2s ease-in-out 0.2s, transform 0.2s ease-in-out 0s;
}
.menu-icon::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: calc(50% - 6px);
	background-color: var(--colors-green);
	width: 12px;
	height: 2px;
	margin-top: 0px;
	transition: margin 0.2s ease-in-out 0.2s, transform 0.2s ease-in-out 0s;
}

body.menu--active .menu-icon::before,
body.menu--active .menu-icon::after {
	background-color: white;
	margin-top: 0;
	transition-delay: 0s, 0.25s, 0.25s;
}
body.menu--active .menu-icon::before {
	transform: rotate(45deg);
}
body.menu--active .menu-icon::after {
	transform: rotate(-45deg);
}

.has-large-font-size {
	font-weight: 500;
	line-height: 1.125em;
}


.has-white-background-color { background-color: white; }
.has-green-background-color { background-color: var(--colors-green); }
.has-black-background-color { background-color: black; }
.has-grey-light-background-color { background-color: var(--colors-grey-light); }
.has-grey-dark-background-color { background-color: var(--colors-grey-dark); }
.has-orange-background-color { background-color: var(--colors-orange); }

.has-green-text-color {
	color: var(--colors-green);
}

.has-grey-light-border-color { border-color: var(--colors-grey-light); }
.has-grey-dark-border-color { border-color: var(--colors-grey-dark); }
.has-orange-border-color { border-color: var(--colors-orange); }
.has-green-border-color { border-color: var(--colors-green); }


.form-field {
	border: 1px solid var(--colors-grey-light);
	display: flex;
	gap: .5rem;
	padding: 0.75rem 1rem;
}

.form-field button {
	background: none;
	cursor: pointer;
	border: 0;
}

.form-field input[type="text"],
.form-field input[type="email"] {
	border: 0;
	color: var(--colors-grey-dark);
	font-size: 12px;
	font-family: 'AeonikFono-Regular', sans-serif;
	text-transform: uppercase;
	line-height: 1.6666666666666667em;
}

.form-field input[type="text"]:focus,
.form-field input[type="email"]:focus {
	outline: 0;
	border: 0;
}
.form-field:focus-within {
	border-color: var(--colors-green);
}

.open-close {
	background: var(--colors-green);
	border-radius: 9999px;
	display: inline-block;
	width: 1.25rem;
	height: 1.25rem;
	position: relative;
}

.open-close--large {
	width: 2rem;
	height: 2rem;
}

.open-close::before,
.open-close::after{
	content: "";
	position: absolute;
	background-color: #fff;
	border-radius: 1px;
	transition: transform 300ms cubic-bezier(0.4, 0, 0.4, 1);
}

/* Vertical line */
.open-close::before{
	top: 50%;
	left: 50%;
	width: 2px;
	border-radius: 2px;
	height: 50%;
	margin-left: -1px;
	transform: translateY(-50%);
}

/* horizontal line */
.open-close::after {
	top: 50%;
	left: 50%;
	width: 50%;
	height: 2px;
	border-radius: 2px;
	margin-top: -1px;
	transform: translateX(-50%);
}

.open-close:hover {
	cursor: pointer;
}

.sub-menu--active .open-close::before {
	transform: translateY(-50%) rotate(270deg);
}

.sub-menu--active .open-close::after {
	transform: translateX(-50%) rotate(180deg);
}

.wc-backward,
.woocommerce-button { display: inline-block; }

.wp-element-button,
.submit-button,
.woocommerce .woocommerce-form-login .woocommerce-form-login__submit,
.woocommerce-Button,
.checkout-button,
.button
{
	background-color: var(--colors-green);
	border: 0;
	cursor: pointer;
	color: white;
	border-radius: 9999px;
	font-size: .875rem;
	line-height: 1.4285714285714286em;
	padding: 1.35em 1.75em 1.35em 4.25em;
	text-transform: uppercase;
	font-family: 'AeonikFono-Regular', sans-serif;
	position: relative;
	text-decoration: none;
	text-align: left;
}

.button:disabled {
	opacity: .5;
}

.wp-element-button.has-white-background-color {
	background-color: white;
	color: var(--colors-green);
}

.wp-block-button.is-style-pill .wp-element-button::before,
.woocommerce .woocommerce-form-login .woocommerce-form-login__submit::before,
.submit-button::before,
.woocommerce-Button::before,
.checkout-button::before,
.button::before {
	content: "";
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cpath id='circle_arrow' d='M16,0A16,16,0,1,0,32,16,16.047,16.047,0,0,0,16,0Zm5.92,15.52a1.547,1.547,0,0,1-2.24,0L17.6,13.44V22.4A1.512,1.512,0,0,1,16,24a1.512,1.512,0,0,1-1.6-1.6V13.44l-2.08,2.08a1.555,1.555,0,0,1-2.24-.16,1.682,1.682,0,0,1,0-2.08l4.8-4.8a1.547,1.547,0,0,1,2.24,0l4.8,4.8A1.547,1.547,0,0,1,21.92,15.52Z' transform='translate(32) rotate(90)' fill='%23fff'/%3E%3C/svg%3E%0A");
	background-repeat: no-repeat;
	display: block;
	width: 2.2857142857142856em;
	height: 2.2857142857142856em;
	position: absolute;
	top: 50%;
	left: 1.15em;
	transform: translate3d(0,-50%,0);
	transition: transform .2s linear;
	backface-visibility: visible;
}

.wp-block-button.is-style-pill .wp-element-button.has-white-background-color::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cpath id='circle_arrow' d='M16,0A16,16,0,1,0,32,16,16.047,16.047,0,0,0,16,0Zm5.92,15.52a1.547,1.547,0,0,1-2.24,0L17.6,13.44V22.4A1.512,1.512,0,0,1,16,24a1.512,1.512,0,0,1-1.6-1.6V13.44l-2.08,2.08a1.555,1.555,0,0,1-2.24-.16,1.682,1.682,0,0,1,0-2.08l4.8-4.8a1.547,1.547,0,0,1,2.24,0l4.8,4.8A1.547,1.547,0,0,1,21.92,15.52Z' transform='translate(32) rotate(90)' fill='%235e9c40'/%3E%3C/svg%3E%0A");
}

.wp-element-button:hover,
.woocommerce .woocommerce-form-login .woocommerce-form-login__submit:hover,
.submit-button:hover,
.woocommerce-Button:hover,
.checkout-button:hover,
.button:hover {
	background-color: var(--colors-green);
	text-decoration: none;
}

.wp-block-button.is-style-pill .wp-element-button:hover::before,
.woocommerce .woocommerce-form-login .woocommerce-form-login__submit:hover::before,
.submit-button:hover::before,
.woocommerce-Button:hover::before,
.checkout-button:hover::before,
.button:hover::before {
	transform: translate3d(2px, -50%, 0);
}

.wpcf7-not-valid-tip {
	font-size: 0.875em;
	margin: .5rem;
	text-align: right;
}

.wpcf7-response-output {
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	color: #dc3232;
	line-height: 1.4285714285714286em;
}

.button.cancel {
	background-color: #dc3232;
}
.button.view {
	background-color: var(--colors-grey-dark);
}