/* Root Elements */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

blockquote,
q {
	quotes: none;
}

/* section {
	scroll-margin-top: calc(20px + var(--pageTop));
} */

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

* {
	box-sizing: border-box;
}

*:before,
*:after {
	box-sizing: border-box;
}

.visually-hidden {
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
	clip: rect(1px 1px 1px 1px);
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}

.hidden {
	display: none !important;
}

textarea,
input,
button,
select {
	font-family: inherit;
	font-size: inherit;
	text-align: inherit;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
}

input,
textarea {
	background: inherit;
	color: inherit;
	border: none;
	padding: 0;
	outline: inherit;
	opacity: 1;
}

textarea {
	resize: none;
}

input:not([type='submit']),
textarea {
	display: block;
	width: 100%;
	border-radius: 0;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

input[type='search']::-webkit-search-decoration,
input[type='search']::-webkit-search-cancel-button,
input[type='search']::-webkit-search-results-button,
input[type='search']::-webkit-search-results-decoration {
	-webkit-appearance: none;
}

input[type='number'] {
	-moz-appearance: textfield;
}

button {
	padding-inline: 0px;
}

select {
	background: none;
	width: 100%;
	cursor: pointer;
	border: none;
	outline: none;
	border-radius: 0;
	color: var(--fg);
	margin: 0;
	padding: 0;
}

select option {
	color: var(--fg);
	margin: 0;
	padding: 0;
	background: var(--bg);
}

select:focus {
	outline: none;
}

ul,
li {
	text-decoration: none;
	list-style: none;
}

.skip-link {
	position: fixed;
	left: -100%;
	top: 0px;
	background-color: black;
	color: white;
	padding: 8px 12px;
	border-radius: 4px;
}
.skip-link:focus {
	left: 0px;
}

/* Input Elements */

button,
input[type='submit'],
input[type='reset'],
div[role='button'] {
	color: inherit;
	cursor: pointer;
	outline: inherit;
	background-color: unset;
	border: unset;
}

input[type='button'],
input[type='button']:focus {
	outline: none;
}

a:link:not(.btn),
a:visited:not(.btn),
a:link:not(.btn) span,
a:visited:not(.btn) span {
	color: inherit;
	cursor: pointer;
	text-decoration: none;
}

/* Details Elements */

summary,
summary:focus {
	outline: none;
	list-style-type: none;
	position: relative;
	cursor: pointer;
	transition: all 0.3s;
}

details summary::marker,
details summary::-webkit-details-marker {
	content: '';
	visibility: hidden;
	position: absolute;
	z-index: -10;
	list-style-type: none;
	display: none;
}

summary > * {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

summary > *::after {
	content: '+';
}

@media (hover: hover) and (pointer: fine) {
	details summary:hover {
		opacity: 0.5;
	}
}

details[open] summary > *::after {
	content: '-';
}

details[open] summary ~ * {
	animation: appear 0.4s ease-in;
	-webkit-animation: appear 0.4s ease-in;
}

details.closing summary ~ * {
	animation: close 0.4s ease-out;
}

@keyframes appear {
	0% {
		opacity: 0;
		max-height: 0;
	}

	100% {
		opacity: 1;
		max-height: 100vh;
	}
}

@keyframes close {
	0% {
		opacity: 1;
		max-height: 100vh;
	}

	100% {
		opacity: 0;
		max-height: 0;
	}
}

/* Image/Video Elements */

.aspectholder > * {
	display: block;
	height: 100%;
	width: 100%;
	object-fit: cover;
}

/* Universal Elements */

html {
	font-size: var(--baseFontSize);
	font-family: var(--baseFontFamily);
	font-weight: normal;
	font-style: normal;
	line-height: 1.2;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	scroll-behavior: smooth;
	color: var(--fg);
	background: var(--bg);
}

/* Universal Text Styling */

/* h1,
h2,
h3,
h4,
p,
a,
input,
button,
span {
	font-size: var(--baseFontSize);
	line-height: 1.25;
} */

/* Enter View */

/* .block,
.stagger .stagger-child {
  opacity: 0;
}

.block.animate_down,
.stagger-child.animate_down {
  transform: var(--tDown);
}

.block.entered {
  animation: 200ms ease both fadeIn;
}

.block.entered.animate_down {
  animation: 200ms ease both enterDown;
}

.stagger.entered .stagger-child {
  animation: 200ms ease both fadeIn;
}

.stagger.entered .stagger-child.animate_down {
  animation: 200ms ease both enterDown;
}

@keyframes enterDown {
  0% {
      opacity: 0;
      transform: var(--tDown);
  }

  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {
      opacity: 0;
  }

  100% {
      opacity: 1;
  }
} */

/* Main Styling */

body {
	height: 100%;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

/* body.js-my-cart-open {
  overflow: hidden;
} */

main {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

header,
main section,
footer,
.shopify-policy__container {
	position: relative;
	width: 100%;
	height: min-content;
}

/* Header */
header {
	position: sticky;
	top: 0;
	z-index: 10;
	width: 100%;
	height: var(--headerHeight);
}

/* Cart Popup */

.my-cart__items {
	opacity: 1;
	transition: opacity 0.3s;
}

body.js-ajax-cart-request-in-progress .my-cart__items {
	opacity: 0.7;
}

form.js-ajax-cart-form-in-progress [type='submit'] {
	opacity: 0.7;
}

#shopify-section-my-cart {
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	height: 100dvh;
	z-index: 20;
	visibility: hidden;
	transition: all 0.1s 0.3s, background-color 0.3s;
	display: block;
}

.js-my-cart-open #shopify-section-my-cart {
	visibility: visible;
	background-color: rgba(0, 0, 0, 0.25);
	transition: all 0.1s, background-color 0.3s;
}
.js-subscription-builder-open #shopify-section-my-cart {
	visibility: visible;
	background-color: rgba(0, 0, 0, 0.25);
	transition: all 0.1s, background-color 0.3s;
}





.shopify-challenge__container {
	margin-top: var(--pageTop) !important;
}

.scrollable {
	scrollbar-color: black transparent;
	overflow-y: scroll;
	scrollbar-width: thin;
}
.clickable {
	width: 20px;
	height: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.scrollable::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}

.scrollable::-webkit-scrollbar-track {
	background: #f0f0f0;
}
