/*! tailwindcss v2.2.19 | MIT License | https://tailwindcss.com *//*! modern-normalize v1.1.0 | MIT License | https://github.com/sindresorhus/modern-normalize */

/*
Document
========
*/

/**
Use a better box model (opinionated).
*/

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

/**
Use a more readable tab size (opinionated).
*/

html {
	-moz-tab-size: 4;
	tab-size: 4;
}

/**
1. Correct the line height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
*/

html {
	line-height: 1.15; /* 1 */
	-webkit-text-size-adjust: 100%; /* 2 */
}

/*
Sections
========
*/

/**
Remove the margin in all browsers.
*/

body {
	margin: 0;
}

/**
Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
*/

body {
	font-family:
		system-ui,
		-apple-system, /* Firefox supports this but not yet `system-ui` */
		'Segoe UI',
		Roboto,
		Helvetica,
		Arial,
		sans-serif,
		'Apple Color Emoji',
		'Segoe UI Emoji';
}

/*
Grouping content
================
*/

/**
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
*/

hr {
	height: 0; /* 1 */
	color: inherit; /* 2 */
}

/*
Text-level semantics
====================
*/

/**
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr[title] {
	text-decoration: underline dotted;
}

/**
Add the correct font weight in Edge and Safari.
*/

b,
strong {
	font-weight: bolder;
}

/**
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
2. Correct the odd 'em' font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
	font-family:
		ui-monospace,
		SFMono-Regular,
		Consolas,
		'Liberation Mono',
		Menlo,
		monospace; /* 1 */
	font-size: 1em; /* 2 */
}

/**
Add the correct font size in all browsers.
*/

small {
	font-size: 80%;
}

/**
Prevent 'sub' and 'sup' elements from affecting the line height in all browsers.
*/

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/*
Tabular data
============
*/

/**
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
*/

table {
	text-indent: 0; /* 1 */
	border-color: inherit; /* 2 */
}

/*
Forms
=====
*/

/**
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
*/

button,
input,
optgroup,
select,
textarea {
	font-family: inherit; /* 1 */
	font-size: 100%; /* 1 */
	line-height: 1.15; /* 1 */
	margin: 0; /* 2 */
}

/**
Remove the inheritance of text transform in Edge and Firefox.
1. Remove the inheritance of text transform in Firefox.
*/

button,
select { /* 1 */
	text-transform: none;
}

/**
Correct the inability to style clickable types in iOS and Safari.
*/

button,
[type='button'],
[type='reset'],
[type='submit'] {
	-webkit-appearance: button;
}

/**
Remove the inner border and padding in Firefox.
*/

::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

/**
Restore the focus styles unset by the previous rule.
*/

:-moz-focusring {
	outline: 1px dotted ButtonText;
}

/**
Remove the additional ':invalid' styles in Firefox.
See: https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737
*/

:-moz-ui-invalid {
	box-shadow: none;
}

/**
Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
*/

legend {
	padding: 0;
}

/**
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
	vertical-align: baseline;
}

/**
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
	height: auto;
}

/**
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
	-webkit-appearance: textfield; /* 1 */
	outline-offset: -2px; /* 2 */
}

/**
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to 'inherit' in Safari.
*/

::-webkit-file-upload-button {
	-webkit-appearance: button; /* 1 */
	font: inherit; /* 2 */
}

/*
Interactive
===========
*/

/*
Add the correct display in Chrome and Safari.
*/

summary {
	display: list-item;
}/**
 * Manually forked from SUIT CSS Base: https://github.com/suitcss/base
 * A thin layer on top of normalize.css that provides a starting point more
 * suitable for web applications.
 */

/**
 * Removes the default spacing and border for appropriate elements.
 */

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

button {
  background-color: transparent;
  background-image: none;
}

fieldset {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/**
 * Tailwind custom reset styles
 */

/**
 * 1. Use the user's configured `sans` font-family (with Tailwind's default
 *    sans-serif font stack as a fallback) as a sane default.
 * 2. Use Tailwind's default "normal" line-height so the user isn't forced
 *    to override it to ensure consistency even when using the default theme.
 */

html {
  font-family: Source Sans Pro, sans-serif; /* 1 */
  line-height: 1.5; /* 2 */
}


/**
 * Inherit font-family and line-height from `html` so users can set them as
 * a class directly on the `html` element.
 */

body {
  font-family: inherit;
  line-height: inherit;
}

/**
 * 1. Prevent padding and border from affecting element width.
 *
 *    We used to set this in the html element and inherit from
 *    the parent element for everything else. This caused issues
 *    in shadow-dom-enhanced elements like <details> where the content
 *    is wrapped by a div with box-sizing set to `content-box`.
 *
 *    https://github.com/mozdevs/cssremedy/issues/4
 *
 *
 * 2. Allow adding a border to an element by just adding a border-width.
 *
 *    By default, the way the browser specifies that an element should have no
 *    border is by setting it's border-style to `none` in the user-agent
 *    stylesheet.
 *
 *    In order to easily add borders to elements by just setting the `border-width`
 *    property, we change the default border-style for all elements to `solid`, and
 *    use border-width to hide them instead. This way our `border` utilities only
 *    need to set the `border-width` property instead of the entire `border`
 *    shorthand, making our border utilities much more straightforward to compose.
 *
 *    https://github.com/tailwindcss/tailwindcss/pull/116
 */

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: currentColor; /* 2 */
}

/*
 * Ensure horizontal rules are visible by default
 */

hr {
  border-top-width: 1px;
}

/**
 * Undo the `border-style: none` reset that Normalize applies to images so that
 * our `border-{width}` utilities have the expected effect.
 *
 * The Normalize reset is unnecessary for us since we default the border-width
 * to 0 on all elements.
 *
 * https://github.com/tailwindcss/tailwindcss/issues/362
 */

img {
  border-style: solid;
}

textarea {
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  color: #9ca3af;
}

button,
[role="button"] {
  cursor: pointer;
}

/**
 * Override legacy focus reset from Normalize with modern Firefox focus styles.
 *
 * This is actually an improvement over the new defaults in Firefox in our testing,
 * as it triggers the better focus styles even for links, which still use a dotted
 * outline in Firefox by default.
 */
 
:-moz-focusring {
	outline: auto;
}

table {
  border-collapse: collapse;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/**
 * Reset links to optimize for opt-in styling instead of
 * opt-out.
 */

a {
  color: inherit;
  text-decoration: inherit;
}

/**
 * Reset form element properties that are easy to forget to
 * style explicitly so you don't inadvertently introduce
 * styles that deviate from your design system. These styles
 * supplement a partial reset that is already applied by
 * normalize.css.
 */

button,
input,
optgroup,
select,
textarea {
  padding: 0;
  line-height: inherit;
  color: inherit;
}

/**
 * Use the configured 'mono' font family for elements that
 * are expected to be rendered with a monospace font, falling
 * back to the system monospace stack if there is no configured
 * 'mono' font family.
 */

pre,
code,
kbd,
samp {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

/**
 * 1. Make replaced elements `display: block` by default as that's
 *    the behavior you want almost all of the time. Inspired by
 *    CSS Remedy, with `svg` added as well.
 *
 *    https://github.com/mozdevs/cssremedy/issues/14
 * 
 * 2. Add `vertical-align: middle` to align replaced elements more
 *    sensibly by default when overriding `display` by adding a
 *    utility like `inline`.
 *
 *    This can trigger a poorly considered linting error in some
 *    tools but is included by design.
 * 
 *    https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210
 */

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/**
 * Constrain images and videos to the parent width and preserve
 * their intrinsic aspect ratio.
 *
 * https://github.com/mozdevs/cssremedy/issues/14
 */

img,
video {
  max-width: 100%;
  height: auto;
}

/**
 * Ensure the default browser behavior of the `hidden` attribute.
 */

[hidden] {
  display: none;
}

*, ::before, ::after {
	--tw-translate-x: 0;
	--tw-translate-y: 0;
	--tw-rotate: 0;
	--tw-skew-x: 0;
	--tw-skew-y: 0;
	--tw-scale-x: 1;
	--tw-scale-y: 1;
	--tw-transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
	--tw-border-opacity: 1;
	border-color: rgba(229, 231, 235, var(--tw-border-opacity));
	--tw-ring-offset-shadow: 0 0 #0000;
	--tw-ring-shadow: 0 0 #0000;
	--tw-shadow: 0 0 #0000;
	--tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
	--tw-ring-offset-width: 0px;
	--tw-ring-offset-color: #fff;
	--tw-ring-color: rgba(59, 130, 246, 0.5);
	--tw-ring-offset-shadow: 0 0 #0000;
	--tw-ring-shadow: 0 0 #0000;
	--tw-shadow: 0 0 #0000;
	--tw-blur: var(--tw-empty,/*!*/ /*!*/);
	--tw-brightness: var(--tw-empty,/*!*/ /*!*/);
	--tw-contrast: var(--tw-empty,/*!*/ /*!*/);
	--tw-grayscale: var(--tw-empty,/*!*/ /*!*/);
	--tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/);
	--tw-invert: var(--tw-empty,/*!*/ /*!*/);
	--tw-saturate: var(--tw-empty,/*!*/ /*!*/);
	--tw-sepia: var(--tw-empty,/*!*/ /*!*/);
	--tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/);
	--tw-filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}


      [type='text'],
      [type='email'],
      [type='url'],
      [type='password'],
      [type='number'],
      [type='date'],
      [type='datetime-local'],
      [type='month'],
      [type='search'],
      [type='tel'],
      [type='time'],
      [type='week'],
      [multiple],
      textarea,
      select
     {
	appearance: none;
	background-color: #fff;
	border-color: #6b7280;
	border-width: 1px;
	border-radius: 0px;
	padding-top: 0.5rem;
	padding-right: 0.75rem;
	padding-bottom: 0.5rem;
	padding-left: 0.75rem;
	font-size: 1rem;
	line-height: 1.5rem;
}

[type='text']:focus, [type='email']:focus, [type='url']:focus, [type='password']:focus, [type='number']:focus, [type='date']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='week']:focus, [multiple]:focus, textarea:focus, select:focus {
	outline: 2px solid transparent;
	outline-offset: 2px;
	--tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
	--tw-ring-offset-width: 0px;
	--tw-ring-offset-color: #fff;
	--tw-ring-color: #2563eb;
	--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
	--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
	box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
	border-color: #2563eb;
}

input::placeholder, textarea::placeholder {
	color: #6b7280;
	opacity: 1;
}

::-webkit-datetime-edit-fields-wrapper {
	padding: 0;
}

::-webkit-date-and-time-value {
	min-height: 1.5em;
}

select {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
	background-position: right 0.5rem center;
	background-repeat: no-repeat;
	background-size: 1.5em 1.5em;
	padding-right: 2.5rem;
	color-adjust: exact;
}

[multiple] {
	background-image: initial;
	background-position: initial;
	background-repeat: unset;
	background-size: initial;
	padding-right: 0.75rem;
	color-adjust: unset;
}


      [type='checkbox'],
      [type='radio']
     {
	appearance: none;
	padding: 0;
	color-adjust: exact;
	display: inline-block;
	vertical-align: middle;
	background-origin: border-box;
	user-select: none;
	flex-shrink: 0;
	height: 1rem;
	width: 1rem;
	color: #2563eb;
	background-color: #fff;
	border-color: #6b7280;
	border-width: 1px;
}

[type='checkbox'] {
	border-radius: 0px;
}

[type='radio'] {
	border-radius: 100%;
}


      [type='checkbox']:focus,
      [type='radio']:focus
     {
	outline: 2px solid transparent;
	outline-offset: 2px;
	--tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
	--tw-ring-offset-width: 2px;
	--tw-ring-offset-color: #fff;
	--tw-ring-color: #2563eb;
	--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
	--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
	box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}


      [type='checkbox']:checked,
      [type='radio']:checked
     {
	border-color: transparent;
	background-color: currentColor;
	background-size: 100% 100%;
	background-position: center;
	background-repeat: no-repeat;
}

[type='checkbox']:checked {
	background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
}

[type='radio']:checked {
	background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
}


      [type='checkbox']:checked:hover,
      [type='checkbox']:checked:focus,
      [type='radio']:checked:hover,
      [type='radio']:checked:focus
     {
	border-color: transparent;
	background-color: currentColor;
}

[type='checkbox']:indeterminate {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e");
	border-color: transparent;
	background-color: currentColor;
	background-size: 100% 100%;
	background-position: center;
	background-repeat: no-repeat;
}


      [type='checkbox']:indeterminate:hover,
      [type='checkbox']:indeterminate:focus
     {
	border-color: transparent;
	background-color: currentColor;
}

[type='file'] {
	background: unset;
	border-color: inherit;
	border-width: 0;
	border-radius: 0;
	padding: 0;
	font-size: unset;
	line-height: inherit;
}

[type='file']:focus {
	outline: 1px auto -webkit-focus-ring-color;
}
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border-width: 0;
}
.invisible {
	visibility: hidden;
}
.fixed {
	position: fixed;
}
.absolute {
	position: absolute;
}
.relative {
	position: relative;
}
.inset-0 {
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
}
.inset-x-0 {
	left: 0px;
	right: 0px;
}
.-top-8 {
	top: -2rem;
}
.bottom-0 {
	bottom: 0px;
}
.top-0 {
	top: 0px;
}
.right-0 {
	right: 0px;
}
.left-0 {
	left: 0px;
}
.top-40 {
	top: 10rem;
}
.top-10 {
	top: 2.5rem;
}
.right-4 {
	right: 1rem;
}
.top-4 {
	top: 1rem;
}
.left-2 {
	left: 0.5rem;
}
.right-2 {
	right: 0.5rem;
}
.left-6 {
	left: 1.5rem;
}
.top-6 {
	top: 1.5rem;
}
.z-50 {
	z-index: 50;
}
.z-10 {
	z-index: 10;
}
.z-\[70\] {
	z-index: 70;
}
.-z-10 {
	z-index: -10;
}
.z-40 {
	z-index: 40;
}
.z-20 {
	z-index: 20;
}
.z-0 {
	z-index: 0;
}
.col-span-2 {
	grid-column: span 2 / span 2;
}
.col-start-2 {
	grid-column-start: 2;
}
.m-auto {
	margin: auto;
}
.mx-auto {
	margin-left: auto;
	margin-right: auto;
}
.my-32 {
	margin-top: 8rem;
	margin-bottom: 8rem;
}
.my-40 {
	margin-top: 10rem;
	margin-bottom: 10rem;
}
.my-64 {
	margin-top: 16rem;
	margin-bottom: 16rem;
}
.my-8 {
	margin-top: 2rem;
	margin-bottom: 2rem;
}
.mx-10 {
	margin-left: 2.5rem;
	margin-right: 2.5rem;
}
.my-2 {
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
}
.mx-0 {
	margin-left: 0px;
	margin-right: 0px;
}
.my-6 {
	margin-top: 1.5rem;
	margin-bottom: 1.5rem;
}
.mx-4 {
	margin-left: 1rem;
	margin-right: 1rem;
}
.my-1 {
	margin-top: 0.25rem;
	margin-bottom: 0.25rem;
}
.mx-32 {
	margin-left: 8rem;
	margin-right: 8rem;
}
.-mx-6 {
	margin-left: -1.5rem;
	margin-right: -1.5rem;
}
.my-4 {
	margin-top: 1rem;
	margin-bottom: 1rem;
}
.mt-6 {
	margin-top: 1.5rem;
}
.mt-4 {
	margin-top: 1rem;
}
.mb-2 {
	margin-bottom: 0.5rem;
}
.mb-6 {
	margin-bottom: 1.5rem;
}
.mb-4 {
	margin-bottom: 1rem;
}
.mb-8 {
	margin-bottom: 2rem;
}
.-mb-4 {
	margin-bottom: -1rem;
}
.-mt-4 {
	margin-top: -1rem;
}
.mt-10 {
	margin-top: 2.5rem;
}
.mt-3 {
	margin-top: 0.75rem;
}
.mr-3 {
	margin-right: 0.75rem;
}
.mt-16 {
	margin-top: 4rem;
}
.mb-16 {
	margin-bottom: 4rem;
}
.mt-36 {
	margin-top: 9rem;
}
.mb-32 {
	margin-bottom: 8rem;
}
.mt-0 {
	margin-top: 0px;
}
.ml-auto {
	margin-left: auto;
}
.-mb-20 {
	margin-bottom: -5rem;
}
.mt-2 {
	margin-top: 0.5rem;
}
.ml-2 {
	margin-left: 0.5rem;
}
.mt-48 {
	margin-top: 12rem;
}
.mb-12 {
	margin-bottom: 3rem;
}
.ml-4 {
	margin-left: 1rem;
}
.mt-12 {
	margin-top: 3rem;
}
.mt-1 {
	margin-top: 0.25rem;
}
.mt-\[68px\] {
	margin-top: 68px;
}
.mt-32 {
	margin-top: 8rem;
}
.mb-36 {
	margin-bottom: 9rem;
}
.mt-8 {
	margin-top: 2rem;
}
.mt-\[-6px\] {
	margin-top: -6px;
}
.mb-1\.5 {
	margin-bottom: 0.375rem;
}
.mb-1 {
	margin-bottom: 0.25rem;
}
.mb-3 {
	margin-bottom: 0.75rem;
}
.mb-0 {
	margin-bottom: 0px;
}
.mb-10 {
	margin-bottom: 2.5rem;
}
.mr-1 {
	margin-right: 0.25rem;
}
.ml-1 {
	margin-left: 0.25rem;
}
.block {
	display: block;
}
.inline-block {
	display: inline-block;
}
.inline {
	display: inline;
}
.flex {
	display: flex;
}
.inline-flex {
	display: inline-flex;
}
.table {
	display: table;
}
.grid {
	display: grid;
}
.hidden {
	display: none;
}
.h-screen {
	height: 100vh;
}
.h-56 {
	height: 14rem;
}
.h-20 {
	height: 5rem;
}
.h-48 {
	height: 12rem;
}
.h-16 {
	height: 4rem;
}
.h-full {
	height: 100%;
}
.h-5 {
	height: 1.25rem;
}
.h-32 {
	height: 8rem;
}
.h-28 {
	height: 7rem;
}
.h-auto {
	height: auto;
}
.h-10 {
	height: 2.5rem;
}
.h-6 {
	height: 1.5rem;
}
.h-\[auto\] {
	height: auto;
}
.h-\[12px\] {
	height: 12px;
}
.max-h-\[90vh\] {
	max-height: 90vh;
}
.max-h-\[80vh\] {
	max-height: 80vh;
}
.max-h-0 {
	max-height: 0px;
}
.min-h-128 {
	min-height: 32rem;
}
.min-h-\[400px\] {
	min-height: 400px;
}
.w-auto {
	width: auto;
}
.w-full {
	width: 100%;
}
.w-20 {
	width: 5rem;
}
.w-16 {
	width: 4rem;
}
.w-5 {
	width: 1.25rem;
}
.w-0 {
	width: 0px;
}
.w-1\/2 {
	width: 50%;
}
.w-10 {
	width: 2.5rem;
}
.w-6 {
	width: 1.5rem;
}
.w-\[100\%\] {
	width: 100%;
}
.w-\[12px\] {
	width: 12px;
}
.w-4\/6 {
	width: 66.666667%;
}
.max-w-2xl {
	max-width: 42rem;
}
.max-w-4xl {
	max-width: 56rem;
}
.max-w-full {
	max-width: 100%;
}
.max-w-md {
	max-width: 28rem;
}
.max-w-\[92vw\] {
	max-width: 92vw;
}
.max-w-7xl {
	max-width: 80rem;
}
.max-w-3xl {
	max-width: 48rem;
}
.max-w-6xl {
	max-width: 72rem;
}
.max-w-\[1340px\] {
	max-width: 1340px;
}
.max-w-xl {
	max-width: 36rem;
}
.max-w-sm {
	max-width: 24rem;
}
.max-w-none {
	max-width: none;
}
.flex-shrink-0 {
	flex-shrink: 0;
}
.translate-y-0\.5 {
	--tw-translate-y: 0.125rem;
	transform: var(--tw-transform);
}
.translate-y-0 {
	--tw-translate-y: 0px;
	transform: var(--tw-transform);
}
.rotate-45 {
	--tw-rotate: 45deg;
	transform: var(--tw-transform);
}
.rotate-180 {
	--tw-rotate: 180deg;
	transform: var(--tw-transform);
}
.-rotate-180 {
	--tw-rotate: -180deg;
	transform: var(--tw-transform);
}
.scale-95 {
	--tw-scale-x: .95;
	--tw-scale-y: .95;
	transform: var(--tw-transform);
}
.transform {
	transform: var(--tw-transform);
}
.cursor-pointer {
	cursor: pointer;
}
.resize {
	resize: both;
}
.grid-cols-1 {
	grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-cols-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}
.flex-row {
	flex-direction: row;
}
.flex-col {
	flex-direction: column;
}
.flex-wrap {
	flex-wrap: wrap;
}
.place-content-center {
	place-content: center;
}
.items-start {
	align-items: flex-start;
}
.items-center {
	align-items: center;
}
.items-stretch {
	align-items: stretch;
}
.justify-end {
	justify-content: flex-end;
}
.justify-center {
	justify-content: center;
}
.justify-between {
	justify-content: space-between;
}
.gap-4 {
	gap: 1rem;
}
.gap-6 {
	gap: 1.5rem;
}
.gap-2 {
	gap: 0.5rem;
}
.gap-8 {
	gap: 2rem;
}
.gap-1 {
	gap: 0.25rem;
}
.gap-0\.5 {
	gap: 0.125rem;
}
.gap-0 {
	gap: 0px;
}
.space-y-6 > :not([hidden]) ~ :not([hidden]) {
	--tw-space-y-reverse: 0;
	margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
	margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}
.space-y-4 > :not([hidden]) ~ :not([hidden]) {
	--tw-space-y-reverse: 0;
	margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
	margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
.space-x-3 > :not([hidden]) ~ :not([hidden]) {
	--tw-space-x-reverse: 0;
	margin-right: calc(0.75rem * var(--tw-space-x-reverse));
	margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse)));
}
.overflow-hidden {
	overflow: hidden;
}
.overflow-y-auto {
	overflow-y: auto;
}
.overflow-x-hidden {
	overflow-x: hidden;
}
.overflow-y-hidden {
	overflow-y: hidden;
}
.truncate {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.whitespace-nowrap {
	white-space: nowrap;
}
.rounded-full {
	border-radius: 9999px;
}
.rounded-lg {
	border-radius: 0.5rem;
}
.rounded {
	border-radius: 0.25rem;
}
.rounded-3xl {
	border-radius: 1.5rem;
}
.rounded-xl {
	border-radius: 0.75rem;
}
.rounded-md {
	border-radius: 0.375rem;
}
.rounded-t-lg {
	border-top-left-radius: 0.5rem;
	border-top-right-radius: 0.5rem;
}
.border {
	border-width: 1px;
}
.border-2 {
	border-width: 2px;
}
.border-b-2 {
	border-bottom-width: 2px;
}
.border-l-2 {
	border-left-width: 2px;
}
.border-l {
	border-left-width: 1px;
}
.border-solid {
	border-style: solid;
}
.border-gray-200 {
	--tw-border-opacity: 1;
	border-color: rgba(229, 231, 235, var(--tw-border-opacity));
}
.border-black {
	--tw-border-opacity: 1;
	border-color: rgba(0, 0, 0, var(--tw-border-opacity));
}
.border-white {
	--tw-border-opacity: 1;
	border-color: rgba(255, 255, 255, var(--tw-border-opacity));
}
.border-transparent {
	border-color: transparent;
}
.border-primary-dark {
	--tw-border-opacity: 1;
	border-color: rgba(238, 209, 90, var(--tw-border-opacity));
}
.border-primary-light {
	--tw-border-opacity: 1;
	border-color: rgba(255, 255, 255, var(--tw-border-opacity));
}
.border-primary-button {
	--tw-border-opacity: 1;
	border-color: rgba(238, 209, 90, var(--tw-border-opacity));
}
.border-b-primary-light {
	--tw-border-opacity: 1;
	border-bottom-color: rgba(255, 255, 255, var(--tw-border-opacity));
}
.bg-white {
	--tw-bg-opacity: 1;
	background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}
.bg-\[\#eaeaea\] {
	--tw-bg-opacity: 1;
	background-color: rgba(234, 234, 234, var(--tw-bg-opacity));
}
.bg-gray-100 {
	--tw-bg-opacity: 1;
	background-color: rgba(243, 244, 246, var(--tw-bg-opacity));
}
.bg-red-600 {
	--tw-bg-opacity: 1;
	background-color: rgba(220, 38, 38, var(--tw-bg-opacity));
}
.bg-primary-button {
	--tw-bg-opacity: 1;
	background-color: rgba(238, 209, 90, var(--tw-bg-opacity));
}
.bg-secondary-dark {
	--tw-bg-opacity: 1;
	background-color: rgba(1, 35, 77, var(--tw-bg-opacity));
}
.bg-\[\#34E1B3\] {
	--tw-bg-opacity: 1;
	background-color: rgba(52, 225, 179, var(--tw-bg-opacity));
}
.bg-\[\#181818\] {
	--tw-bg-opacity: 1;
	background-color: rgba(24, 24, 24, var(--tw-bg-opacity));
}
.bg-\[\#33E1B3\] {
	--tw-bg-opacity: 1;
	background-color: rgba(51, 225, 179, var(--tw-bg-opacity));
}
.bg-gray-900 {
	--tw-bg-opacity: 1;
	background-color: rgba(17, 24, 39, var(--tw-bg-opacity));
}
.bg-transparent {
	background-color: transparent;
}
.bg-gray-500 {
	--tw-bg-opacity: 1;
	background-color: rgba(107, 114, 128, var(--tw-bg-opacity));
}
.bg-secondary {
	--tw-bg-opacity: 1;
	background-color: rgba(208, 223, 229, var(--tw-bg-opacity));
}
.bg-black\/90 {
	background-color: rgba(0, 0, 0, 0.9);
}
.bg-primary-light {
	--tw-bg-opacity: 1;
	background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}
.bg-primary-dark {
	--tw-bg-opacity: 1;
	background-color: rgba(238, 209, 90, var(--tw-bg-opacity));
}
.bg-secondary-dark\/50 {
	background-color: rgba(1, 35, 77, 0.5);
}
.bg-black\/70 {
	background-color: rgba(0, 0, 0, 0.7);
}
.bg-gray-50 {
	--tw-bg-opacity: 1;
	background-color: rgba(249, 250, 251, var(--tw-bg-opacity));
}
.bg-gray-200 {
	--tw-bg-opacity: 1;
	background-color: rgba(229, 231, 235, var(--tw-bg-opacity));
}
.bg-purple-400 {
	--tw-bg-opacity: 1;
	background-color: rgba(167, 139, 250, var(--tw-bg-opacity));
}
.bg-yellow-500 {
	--tw-bg-opacity: 1;
	background-color: rgba(245, 158, 11, var(--tw-bg-opacity));
}
.bg-opacity-60 {
	--tw-bg-opacity: 0.6;
}
.bg-cover {
	background-size: cover;
}
.bg-center {
	background-position: center;
}
.bg-right {
	background-position: right;
}
.bg-right-bottom {
	background-position: right bottom;
}
.bg-no-repeat {
	background-repeat: no-repeat;
}
.fill-button {
	fill: #EED15A;
}
.fill-current {
	fill: currentColor;
}
.stroke-button {
	stroke: #EED15A;
}
.object-contain {
	object-fit: contain;
}
.object-cover {
	object-fit: cover;
}
.object-fill {
	object-fit: fill;
}
.object-right {
	object-position: right;
}
.p-6 {
	padding: 1.5rem;
}
.p-4 {
	padding: 1rem;
}
.p-3 {
	padding: 0.75rem;
}
.p-8 {
	padding: 2rem;
}
.p-2 {
	padding: 0.5rem;
}
.p-1\.5 {
	padding: 0.375rem;
}
.p-1 {
	padding: 0.25rem;
}
.p-12 {
	padding: 3rem;
}
.p-5 {
	padding: 1.25rem;
}
.p-16 {
	padding: 4rem;
}
.p-\[16px\] {
	padding: 16px;
}
.p-0 {
	padding: 0px;
}
.px-4 {
	padding-left: 1rem;
	padding-right: 1rem;
}
.py-8 {
	padding-top: 2rem;
	padding-bottom: 2rem;
}
.py-2 {
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}
.px-6 {
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}
.py-4 {
	padding-top: 1rem;
	padding-bottom: 1rem;
}
.py-16 {
	padding-top: 4rem;
	padding-bottom: 4rem;
}
.px-8 {
	padding-left: 2rem;
	padding-right: 2rem;
}
.py-3 {
	padding-top: 0.75rem;
	padding-bottom: 0.75rem;
}
.px-12 {
	padding-left: 3rem;
	padding-right: 3rem;
}
.py-1 {
	padding-top: 0.25rem;
	padding-bottom: 0.25rem;
}
.py-24 {
	padding-top: 6rem;
	padding-bottom: 6rem;
}
.px-3 {
	padding-left: 0.75rem;
	padding-right: 0.75rem;
}
.px-16 {
	padding-left: 4rem;
	padding-right: 4rem;
}
.py-12 {
	padding-top: 3rem;
	padding-bottom: 3rem;
}
.py-6 {
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
}
.py-2\.5 {
	padding-top: 0.625rem;
	padding-bottom: 0.625rem;
}
.px-2 {
	padding-left: 0.5rem;
	padding-right: 0.5rem;
}
.pt-36 {
	padding-top: 9rem;
}
.pb-8 {
	padding-bottom: 2rem;
}
.pb-36 {
	padding-bottom: 9rem;
}
.pt-16 {
	padding-top: 4rem;
}
.pb-16 {
	padding-bottom: 4rem;
}
.pt-10 {
	padding-top: 2.5rem;
}
.pt-6 {
	padding-top: 1.5rem;
}
.pt-8 {
	padding-top: 2rem;
}
.pt-3 {
	padding-top: 0.75rem;
}
.pb-6 {
	padding-bottom: 1.5rem;
}
.pb-2 {
	padding-bottom: 0.5rem;
}
.pt-0 {
	padding-top: 0px;
}
.pl-3 {
	padding-left: 0.75rem;
}
.pr-6 {
	padding-right: 1.5rem;
}
.pl-8 {
	padding-left: 2rem;
}
.pb-12 {
	padding-bottom: 3rem;
}
.pt-4 {
	padding-top: 1rem;
}
.pl-6 {
	padding-left: 1.5rem;
}
.pt-2 {
	padding-top: 0.5rem;
}
.pb-5 {
	padding-bottom: 1.25rem;
}
.pb-0 {
	padding-bottom: 0px;
}
.pt-32 {
	padding-top: 8rem;
}
.pb-32 {
	padding-bottom: 8rem;
}
.text-left {
	text-align: left;
}
.text-center {
	text-align: center;
}
.text-right {
	text-align: right;
}
.align-middle {
	vertical-align: middle;
}
.text-2xl {
	font-size: 1.5rem;
	line-height: 2rem;
}
.text-lg {
	font-size: 1.125rem;
	line-height: 1.75rem;
}
.text-base {
	font-size: 1rem;
	line-height: 1.5rem;
}
.text-xl {
	font-size: 1.25rem;
	line-height: 1.75rem;
}
.text-sm {
	font-size: 0.875rem;
	line-height: 1.25rem;
}
.text-3xl {
	font-size: 1.875rem;
	line-height: 2.25rem;
}
.text-4xl {
	font-size: 2.25rem;
	line-height: 2.5rem;
}
.text-xs {
	font-size: 0.75rem;
	line-height: 1rem;
}
.font-bold {
	font-weight: 700;
}
.font-thin {
	font-weight: 100;
}
.font-semibold {
	font-weight: 600;
}
.font-light {
	font-weight: 300;
}
.font-medium {
	font-weight: 500;
}
.font-extrabold {
	font-weight: 800;
}
.uppercase {
	text-transform: uppercase;
}
.italic {
	font-style: italic;
}
.not-italic {
	font-style: normal;
}
.leading-relaxed {
	line-height: 1.625;
}
.leading-6 {
	line-height: 1.5rem;
}
.leading-tight {
	line-height: 1.25;
}
.leading-snug {
	line-height: 1.375;
}
.tracking-tight {
	letter-spacing: -0.025em;
}
.tracking-widest {
	letter-spacing: 0.1em;
}
.tracking-wide {
	letter-spacing: 0.025em;
}
.tracking-wider {
	letter-spacing: 0.05em;
}
.text-black {
	--tw-text-opacity: 1;
	color: rgba(0, 0, 0, var(--tw-text-opacity));
}
.text-gray-900 {
	--tw-text-opacity: 1;
	color: rgba(17, 24, 39, var(--tw-text-opacity));
}
.text-gray-500 {
	--tw-text-opacity: 1;
	color: rgba(107, 114, 128, var(--tw-text-opacity));
}
.text-gray-400 {
	--tw-text-opacity: 1;
	color: rgba(156, 163, 175, var(--tw-text-opacity));
}
.text-primary-button {
	--tw-text-opacity: 1;
	color: rgba(238, 209, 90, var(--tw-text-opacity));
}
.text-gray-700 {
	--tw-text-opacity: 1;
	color: rgba(55, 65, 81, var(--tw-text-opacity));
}
.text-white {
	--tw-text-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-text-opacity));
}
.text-secondary-light {
	--tw-text-opacity: 1;
	color: rgba(238, 209, 90, var(--tw-text-opacity));
}
.text-\[\#EED15A\] {
	--tw-text-opacity: 1;
	color: rgba(238, 209, 90, var(--tw-text-opacity));
}
.text-primary-dark {
	--tw-text-opacity: 1;
	color: rgba(238, 209, 90, var(--tw-text-opacity));
}
.text-gray-600 {
	--tw-text-opacity: 1;
	color: rgba(75, 85, 99, var(--tw-text-opacity));
}
.text-white\/80 {
	color: rgba(255, 255, 255, 0.8);
}
.text-gray-50 {
	--tw-text-opacity: 1;
	color: rgba(249, 250, 251, var(--tw-text-opacity));
}
.text-gray-800 {
	--tw-text-opacity: 1;
	color: rgba(31, 41, 55, var(--tw-text-opacity));
}
.text-primary-light {
	--tw-text-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-text-opacity));
}
.text-\[\#eed15a\] {
	--tw-text-opacity: 1;
	color: rgba(238, 209, 90, var(--tw-text-opacity));
}
.text-white\/90 {
	color: rgba(255, 255, 255, 0.9);
}
.text-\[\#ff0000\] {
	--tw-text-opacity: 1;
	color: rgba(255, 0, 0, var(--tw-text-opacity));
}
.text-\[\#3cb371\] {
	--tw-text-opacity: 1;
	color: rgba(60, 179, 113, var(--tw-text-opacity));
}
.text-green-500 {
	--tw-text-opacity: 1;
	color: rgba(16, 185, 129, var(--tw-text-opacity));
}
.line-through {
	text-decoration: line-through;
}
.no-underline {
	text-decoration: none;
}
.antialiased {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.opacity-25 {
	opacity: 0.25;
}
.opacity-100 {
	opacity: 1;
}
.opacity-0 {
	opacity: 0;
}
.shadow-lg {
	--tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-md {
	--tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-xl {
	--tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-2xl {
	--tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-sm {
	--tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.outline-none {
	outline: 2px solid transparent;
	outline-offset: 2px;
}
.filter {
	filter: var(--tw-filter);
}
.transition {
	transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: 150ms;
}
.transition-all {
	transition-property: all;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: 150ms;
}
.transition-transform {
	transition-property: transform;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: 150ms;
}
.transition-colors {
	transition-property: background-color, border-color, color, fill, stroke;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: 150ms;
}
.transition-shadow {
	transition-property: box-shadow;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: 150ms;
}
.duration-300 {
	transition-duration: 300ms;
}
.duration-500 {
	transition-duration: 500ms;
}
.duration-1000 {
	transition-duration: 1000ms;
}
.duration-100 {
	transition-duration: 100ms;
}
.duration-150 {
	transition-duration: 150ms;
}
.ease-in-out {
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.ease-out {
	transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
/***********************************************************
Layouts ***************************************************/
body,
html {
  min-height: 101%;
  scroll-behavior: smooth;
}
body {
	font-family: Source Sans Pro, sans-serif;
	line-height: 1.625;
	--tw-text-opacity: 1;
	color: rgba(0, 0, 0, var(--tw-text-opacity));
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
/***********************************************************
Uses IntersectionObserver to identify when the viewport has scrolled, and then show back to top 
***************************************************/
#pixel-to-watch {
	position: absolute;
	left: 0px;
  width: 1px;
  height: 1px;
  top: 300px;
}
.container {
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	padding-left: 1rem;
	padding-right: 1rem;
  max-width: calc(1600px + 2rem);
}
a {
	transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: 150ms;
	transition-duration: 300ms;
}
/***********************************************************
Lazyload **************************************************/
.lazyload,
.lazyloading {
  opacity: 0;
}
.lazyloaded {
  opacity: 1;
  transition: opacity 300ms;
}
/***********************************************************
SVG Icons **************************************************/
.icon {
	display: inline-block;
  width: 1em;
  height: 1em;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
}
/***********************************************************
Buttons ***************************************************/
input[type="button"], button, .btn, .button {
	border-radius: 0.25rem;
	padding-left: 1rem;
	padding-right: 1rem;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: 150ms;
	transition-duration: 300ms;
}
.btn-primary {
	--tw-bg-opacity: 1;
	background-color: rgba(234, 234, 234, var(--tw-bg-opacity));
	--tw-text-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-text-opacity));
}
.btn-primary:hover {
	--tw-bg-opacity: 1;
	background-color: rgba(238, 209, 90, var(--tw-bg-opacity));
}
.btn-outline--white {
	border-width: 2px;
	--tw-border-opacity: 1;
	border-color: rgba(255, 255, 255, var(--tw-border-opacity));
	--tw-text-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-text-opacity));
}
.btn-outline--white:hover {
	--tw-bg-opacity: 1;
	background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}
.btn-outline--white:hover {
	--tw-text-opacity: 1;
	color: rgba(0, 0, 0, var(--tw-text-opacity));
}
.btn-outline--black {
	border-width: 2px;
	--tw-border-opacity: 1;
	border-color: rgba(0, 0, 0, var(--tw-border-opacity));
	--tw-text-opacity: 1;
	color: rgba(0, 0, 0, var(--tw-text-opacity));
}
.btn-outline--black:hover {
	--tw-bg-opacity: 1;
	background-color: rgba(0, 0, 0, var(--tw-bg-opacity));
}
.btn-outline--black:hover {
	--tw-text-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-text-opacity));
}
/* ---------------------------------------------------
Cookie Notice
--------------------------------------------------- */
#wp-notification {
	position: fixed;
	bottom: 0px;
	z-index: 50;
	display: none;
	width: 100%;
	--tw-bg-opacity: 1;
	background-color: rgba(243, 244, 246, var(--tw-bg-opacity));
	font-size: 0.875rem;
	line-height: 1.25rem;
	--tw-text-opacity: 1;
	color: rgba(107, 114, 128, var(--tw-text-opacity));
}
#wp-notification.open {
	display: block;
}
.wp-notification-container {
	margin-left: auto;
	margin-right: auto;
	padding: 1rem;
	text-align: center;
}
@media (min-width: 1024px) {

	.wp-notification-container {
		display: flex;
	}

	.wp-notification-container {
		width: 100%;
	}

	.wp-notification-container {
		flex-wrap: wrap;
	}

	.wp-notification-container {
		align-items: center;
	}

	.wp-notification-container {
		justify-content: space-between;
	}

	.wp-notification-container {
		text-align: left;
	}
}
.wp-notification-container p {
	margin: 0px;
}
@media (min-width: 1024px) {

	.wp-notification-container p {
		width: 66.666667%;
	}
}
#wp-notification-toggle, .wp-notification-container a {
	margin-top: 1rem;
	display: block;
	border-width: 2px;
	--tw-border-opacity: 1;
	border-color: rgba(156, 163, 175, var(--tw-border-opacity));
	--tw-bg-opacity: 1;
	background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
	padding-left: 1rem;
	padding-right: 1rem;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	font-weight: 700;
	--tw-text-opacity: 1;
	color: rgba(17, 24, 39, var(--tw-text-opacity));
	text-decoration: none;
	transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: 150ms;
}
@media (min-width: 1024px) {

	#wp-notification-toggle, .wp-notification-container a {
		margin-top: 0px;
	}

	#wp-notification-toggle, .wp-notification-container a {
		margin-left: 1rem;
	}

	#wp-notification-toggle, .wp-notification-container a {
		display: inline-block;
	}
}
#wp-notification-toggle:hover, .wp-notification-container a:hover {
	--tw-bg-opacity: 1;
	background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}
#wp-notification-toggle {
	cursor: pointer;
	--tw-bg-opacity: 1;
	background-color: rgba(156, 163, 175, var(--tw-bg-opacity));
	--tw-text-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-text-opacity));
}
#wp-notification-toggle:hover {
	--tw-border-opacity: 1;
	border-color: rgba(17, 24, 39, var(--tw-border-opacity));
}
#wp-notification-toggle:hover {
	--tw-bg-opacity: 1;
	background-color: rgba(17, 24, 39, var(--tw-bg-opacity));
}
.wp-notification-container a:hover {
	text-decoration: none;
}
#wp-notification-toggle:hover {
	opacity: 0.75;
}
/***********************************************************
Desktop Navs **********************************************/
@media (min-width: 1024px) {

    .menu-primary li, .menu-secondary li {
		position: relative;
	}

			.menu-primary li:focus-within > .sub-menu, .menu-secondary li:focus-within > .sub-menu {
		display: block;
	}

			.menu-primary li:focus-within > .sub-menu, .menu-secondary li:focus-within > .sub-menu {
		opacity: 1;
	}

    .menu-primary a, .menu-secondary a {
		position: relative;
	}

    .menu-primary a, .menu-secondary a {
		display: block;
	}

    .menu-primary a, .menu-secondary a {
		padding: 0.75rem;
	}

        .menu-primary a:hover, .menu-secondary a:hover {
		--tw-text-opacity: 1;
		color: rgba(0, 0, 0, var(--tw-text-opacity));
	}

          .menu-primary a:hover + .sub-menu, .menu-secondary a:hover + .sub-menu {
		display: block;
	}

          .menu-primary a:hover + .sub-menu, .menu-secondary a:hover + .sub-menu {
		opacity: 1;
	}

    .menu-primary .icon-angle-down, .menu-secondary .icon-angle-down {
		position: absolute;
	}

    .menu-primary .icon-angle-down, .menu-secondary .icon-angle-down {
		bottom: 0px;
	}

    .menu-primary .icon-angle-down, .menu-secondary .icon-angle-down {
		left: 50%;
	}

    .menu-primary .icon-angle-down, .menu-secondary .icon-angle-down {
		height: 1rem;
	}

    .menu-primary .icon-angle-down, .menu-secondary .icon-angle-down {
		width: 1rem;
	}

    .menu-primary .icon-angle-down, .menu-secondary .icon-angle-down {
		--tw-translate-x: -50%;
		transform: var(--tw-transform);
	}

    .menu-primary .icon-angle-down, .menu-secondary .icon-angle-down {
		transform: var(--tw-transform);
	}

    .menu-primary .icon-angle-down, .menu-secondary .icon-angle-down {
		opacity: 0.5;
	}

    .menu-primary .current-menu-item > a, .menu-primary .current-menu-parent > a, .menu-secondary .current-menu-item > a, .menu-secondary .current-menu-parent > a {
		--tw-text-opacity: 1;
		color: rgba(238, 209, 90, var(--tw-text-opacity));
	}

        .menu-primary .current-menu-item > a:hover, .menu-primary .current-menu-parent > a:hover, .menu-secondary .current-menu-item > a:hover, .menu-secondary .current-menu-parent > a:hover {
		--tw-text-opacity: 1;
		color: rgba(238, 209, 90, var(--tw-text-opacity));
	}

    .menu-primary .sub-menu, .menu-secondary .sub-menu {
		position: absolute;
	}

    .menu-primary .sub-menu, .menu-secondary .sub-menu {
		top: 100%;
	}

    .menu-primary .sub-menu, .menu-secondary .sub-menu {
		left: 50%;
	}

    .menu-primary .sub-menu, .menu-secondary .sub-menu {
		z-index: 40;
	}

    .menu-primary .sub-menu, .menu-secondary .sub-menu {
		display: none;
	}

    .menu-primary .sub-menu, .menu-secondary .sub-menu {
		--tw-translate-x: -50%;
		transform: var(--tw-transform);
	}

    .menu-primary .sub-menu, .menu-secondary .sub-menu {
		transform: var(--tw-transform);
	}

    .menu-primary .sub-menu, .menu-secondary .sub-menu {
		--tw-bg-opacity: 1;
		background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
	}

    .menu-primary .sub-menu, .menu-secondary .sub-menu {
		opacity: 0;
	}

    .menu-primary .sub-menu, .menu-secondary .sub-menu {
		--tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
		box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
	}

    .menu-primary .sub-menu, .menu-secondary .sub-menu {

        width: 200px;
    }

        .menu-primary .sub-menu:focus-within, .menu-secondary .sub-menu:focus-within {
		visibility: visible;
	}

        .menu-primary .sub-menu:focus-within, .menu-secondary .sub-menu:focus-within {
		display: block;
	}

        .menu-primary .sub-menu:focus-within, .menu-secondary .sub-menu:focus-within {
		opacity: 1;
	}

        .menu-primary .sub-menu a, .menu-secondary .sub-menu a {
		--tw-text-opacity: 1;
		color: rgba(0, 0, 0, var(--tw-text-opacity));
	}

            .menu-primary .sub-menu a:hover, .menu-secondary .sub-menu a:hover {
		--tw-text-opacity: 1;
		color: rgba(107, 114, 128, var(--tw-text-opacity));
	}

        .menu-primary .sub-menu:hover, .menu-secondary .sub-menu:hover {
		visibility: visible;
	}

        .menu-primary .sub-menu:hover, .menu-secondary .sub-menu:hover {
		display: block;
	}

        .menu-primary .sub-menu:hover, .menu-secondary .sub-menu:hover {
		opacity: 1;
	}
}
/***********************************************************
Base form styles*******************************************/
input, textarea, select {
	width: 100%;
	border-width: 1px;
	border-style: solid;
	--tw-border-opacity: 1;
	border-color: rgba(209, 213, 219, var(--tw-border-opacity));
	--tw-bg-opacity: 1;
	background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
	padding-left: 1rem;
	padding-right: 1rem;
	padding-top: 0.75rem;
	padding-bottom: 0.75rem;
	font-size: 0.875rem;
	line-height: 1.25rem;
	--tw-text-opacity: 1;
	color: rgba(17, 24, 39, var(--tw-text-opacity));
}
@media (min-width: 600px) {

	input, textarea, select {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
}
input[aria-invalid="true"], textarea[aria-invalid="true"], select[aria-invalid="true"] {
        background-color: #f3e2e2;
    }
select {
    -webkit-appearance: none;
    background-image:
      linear-gradient(45deg, transparent 50%, gray 50%),
      linear-gradient(135deg, gray 50%, transparent 50%),
      linear-gradient(to right, #ccc, #ccc);
    background-position:
      calc(100% - 20px) calc(1.5em + 2px),
      calc(100% - 15px) calc(1.5em + 2px),
      calc(100% - 2.5em) 1em;
    background-size:
      5px 5px,
      5px 5px,
      1px 1.5em;
    background-repeat: no-repeat;
}
textarea {
    height: 150px;
}
/*The below placeholder selectors don't work when comma separated*/
input::-webkit-input-placeholder {
	--tw-text-opacity: 1;
	color: rgba(55, 65, 81, var(--tw-text-opacity));
}
input::-ms-input-placeholder {
	--tw-text-opacity: 1;
	color: rgba(55, 65, 81, var(--tw-text-opacity));
}
input::-moz-placeholder {
	--tw-text-opacity: 1;
	color: rgba(55, 65, 81, var(--tw-text-opacity));
}
input::placeholder {
	--tw-text-opacity: 1;
	color: rgba(55, 65, 81, var(--tw-text-opacity));
}
textarea::-webkit-input-placeholder {
	--tw-text-opacity: 1;
	color: rgba(55, 65, 81, var(--tw-text-opacity));
}
textarea::-ms-input-placeholder {
	--tw-text-opacity: 1;
	color: rgba(55, 65, 81, var(--tw-text-opacity));
}
textarea::-moz-placeholder {
	--tw-text-opacity: 1;
	color: rgba(55, 65, 81, var(--tw-text-opacity));
}
textarea::placeholder {
	--tw-text-opacity: 1;
	color: rgba(55, 65, 81, var(--tw-text-opacity));
}
input[type="button"], input[type="submit"] {
	display: inline-block;
	width: auto;
	cursor: pointer;
	--tw-bg-opacity: 1;
	background-color: rgba(0, 0, 0, var(--tw-bg-opacity));
	font-size: 1rem;
	line-height: 1.5rem;
	font-weight: 600;
	--tw-text-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-text-opacity));
    transition: .3s;
}
input[type="button"]:hover, input[type="submit"]:hover {
	--tw-bg-opacity: 1;
	background-color: rgba(185, 28, 28, var(--tw-bg-opacity));
}
/***********************************************************
Mobile Nav ************************************************/
/* Important to set */
/* Colours */
.mob-nav {
	position: fixed;
	top: 0px;
	bottom: 0px;
	right: 0px;
	height: 100%;
	width: 80%;
	--tw-bg-opacity: 1;
	background-color: rgba(17, 24, 39, var(--tw-bg-opacity));
	transition-duration: 300ms;
  
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    transition: .4s;
    
  display: block !important;
  z-index: 99999999;
}
.mob-nav:before {

    content: "Menu";
  }
.mob-nav:before {
	display: block;
}
.mob-nav:before {
	width: 100%;
}
.mob-nav:before {
	--tw-bg-opacity: 1;
	background-color: rgba(107, 114, 128, var(--tw-bg-opacity));
}
.mob-nav:before {
	padding: 1rem;
}
.mob-nav:before {
	text-align: center;
}
.mob-nav:before {
	--tw-text-opacity: 1;
	color: rgba(229, 231, 235, var(--tw-text-opacity));
}
.mob-nav:before {

    border-bottom: 1px solid #4b5563;
  }
.mob-nav--active {
	--tw-translate-x: 0px;
	transform: var(--tw-transform);
}
.mob-nav--active {
	transform: var(--tw-transform);
}
.mob-nav--active {
        box-shadow: -10px 0 30px rgba(#000,.2);
    }
.mob-nav li {
	position: relative;
}
.mob-nav li {
	float: left;
}
.mob-nav li {
	width: 100%;
}
.mob-nav li {
	list-style-type: none;
}
.mob-nav a {
	position: relative;
}
.mob-nav a {
	float: left;
}
.mob-nav a {
	width: 100%;
}
.mob-nav a {
	padding: 1rem;
}
.mob-nav a {
	padding-left: 1.5rem;
}
.mob-nav a {
	padding-right: 4rem;
}
.mob-nav a {
	font-size: 0.875rem;
	line-height: 1.25rem;
}
.mob-nav a {
	text-decoration: none;
}
.mob-nav a {
        color: #eaeaea;
        border-bottom: 1px solid #4b5563;
        background-color: transparent;
    }
.mob-nav a:hover {
	text-decoration: none;
}
.mob-nav a > .icon {
	display: none;
}
.mob-nav br {
        display: none;
    }
/* Current page states */
.mob-nav .current-menu-item > a,
    .mob-nav .current-menu-parent > a,
    .mob-nav .current-menu-ancestor > a {
        background-color: transparent;
        color: #fff;
    }
.mob-nav .sub-arrow {
	position: absolute;
}
.mob-nav .sub-arrow {
	top: 0px;
}
.mob-nav .sub-arrow {
	right: 0px;
}
.mob-nav .sub-arrow {
	z-index: 10;
}
.mob-nav .sub-arrow {
	cursor: pointer;
}
.mob-nav .sub-arrow {
	padding-left: 0px;
	padding-right: 0px;
}
.mob-nav .sub-arrow {
	text-align: center;
}
.mob-nav .sub-arrow {
        padding-top: 14px;
        padding-bottom: 14px;
        border-left: 1px solid #4b5563;
        width: 45px;
        color: #eaeaea;
        background-color: transparent;
    }
.mob-nav .sub-arrow .icon {
	display: none;
}
.mob-nav .sub-arrow .icon.active {
	display: inline-block;
}
/* active class is applied to parent link when submenu is activated */
.mob-nav a.active {
        background-color: rgba(#000,.03);
    }
.mob-nav a.active + .sub-arrow {
            border-color: #4b5563;
        }
.mob-nav .sub-menu {
	float: left;
}
.mob-nav .sub-menu {
	display: none;
}
.mob-nav .sub-menu {
	width: 100%;
}
.mob-nav .sub-menu li {
	padding-left: 1.5rem;
}
.mob-nav .scroll-container {
	position: absolute;
	left: 0px;
	width: 100%;
	overflow-y: scroll;
      top: 59px;
      height: calc(100vh - 59px);
      -webkit-overflow-scrolling: touch;
      padding-bottom: 100px;
}
.mob-nav .scroll-container::-webkit-scrollbar {
	display: none;
}
.mob-nav-close {
	position: fixed;
	left: 0px;
	display: none;
	height: 3rem;
	width: 3rem;
	--tw-translate-x: -100%;
	transform: var(--tw-transform);
	transform: var(--tw-transform);

    background-color: #dc2626;
    bottom: 40%;
}
.mob-nav-close .icon {
	margin: auto;
}
.mob-nav-close .icon {
	font-size: 2.25rem;
	line-height: 2.5rem;
}
.mob-nav-close .icon {
        color: #fff;
    }
.mob-nav--active .mob-nav-close {
	display: flex;
}
.mob-nav-underlay {
	visibility: hidden;
	position: fixed;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	height: 100%;
	width: 100%;
	opacity: 0;
    display: block !important; /* override critical css */
    background-color: rgba(#000,.4);
    z-index: 999999;
    transition: .3s;
}
.mob-nav-underlay.mob-nav--active {
	visibility: visible;
}
.mob-nav-underlay.mob-nav--active {
	opacity: 1;
}
@font-face {
  font-family: 'Source Sans Pro';
  src: url('/wp-content/themes/gdavey-woocommerce/_resources/fonts/SourceSansPro-Regular.ttf') format('truetype');
  font-display: swap;
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Source Sans Pro';
  src: url('/wp-content/themes/gdavey-woocommerce/_resources/fonts/SourceSansPro-Bold.ttf') format('truetype');
  font-display: swap;
  font-weight: 700;
  font-style: bold;
}
/***********************************************************
Headings **************************************************/
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
	margin-bottom: 1rem;
	font-weight: 700;
	line-height: 1.375;
}
h1 {
	font-size: 1.875rem;
	line-height: 2.25rem;
}
h2 {
	font-size: 1.5rem;
	line-height: 2rem;
}
h3 {
	font-size: 1.25rem;
	line-height: 1.75rem;
}
/***********************************************************
Copy ******************************************************/
.copy > p {
	margin-bottom: 1.5rem;
}
.copy > p {
	line-height: 1.625;
}
.copy a {
	display: inline-block;
}
.copy a {
	--tw-text-opacity: 1;
	color: rgba(234, 234, 234, var(--tw-text-opacity));
}
.copy a:hover {
	text-decoration: underline;
}
.copy ol, .copy ul {
	margin-bottom: 2rem;
}
.copy ol, .copy ul {
	padding-left: 1rem;
}
.copy ol li, .copy ul li {
	margin-bottom: 0.5rem;
}
.copy ol li, .copy ul li {
	line-height: 1.625;
}
.copy ul li {
	list-style-type: disc;
}
.copy ol li {
	list-style-type: decimal;
}
.copy blockquote {
	margin-bottom: 2rem;
}
.copy blockquote {
	--tw-bg-opacity: 1;
	background-color: rgba(243, 244, 246, var(--tw-bg-opacity));
}
.copy blockquote {
	padding: 1rem;
}
@media (min-width: 768px) {
    .copy img {
		width: auto;
	}

    .copy .alignleft {
		float: left;
	}

    .copy .alignleft {
		margin-top: 0.25rem;
	}

    .copy .alignleft {
		margin-bottom: 0.25rem;
	}

    .copy .alignleft {
		margin-right: 0.25rem;
	}

    .copy .aligncenter {
		float: none;
	}

    .copy .aligncenter {
		margin-left: auto;
		margin-right: auto;
	}

    .copy .aligncenter {
		margin-top: 0px;
		margin-bottom: 0px;
	}

    .copy .alignright {
		float: right;
	}

    .copy .alignright {
		margin-top: 0.25rem;
	}

    .copy .alignright {
		margin-bottom: 0.25rem;
	}

    .copy .alignright {
		margin-left: 0.25rem;
	}
}
.price {
	font-weight: 700;
}
.price del .amount {
	--tw-text-opacity: 1;
	color: rgba(220, 38, 38, var(--tw-text-opacity));
}
.price ins {
	text-decoration: none;
}
.price ins .amount {
	border-style: none;
}
/* Ratings */
.woocommerce-product-rating {
	display: flex;
	align-items: center;
	margin-bottom: 0.5rem;
}
.woocommerce .comment-form-rating {
	margin-top: 1rem;
	margin-bottom: 1rem;
}
.woocommerce .comment-form-cookies-consent {
	margin-top: 1rem;
	display: flex;
	font-size: 0.75rem;
	line-height: 1rem;
}
.woocommerce .comment-form-cookies-consent input {
	margin-right: 1rem;
}
.woocommerce .comment-form-cookies-consent input {
	width: auto;
}
.woocommerce .comment-form .form-row {
	margin-bottom: 1rem;
}
.woocommerce .comment-form .form-submit {
	margin-top: 1rem;
}
.woocommerce .comment-form .form-submit {
	display: inline-block;
}
.woocommerce .star-rating {
  height: 1em;
  line-height: 1;
  width: 110px;
  position: relative;
  overflow: hidden;
  margin-right: 0.25rem;
}
.woocommerce .star-rating::before,
  .woocommerce .star-rating::after {
    content: ' ';
    display: table;
  }
.woocommerce .star-rating::before {
    content: '★★★★★';
    color: #d3ced2;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
  }
.woocommerce .star-rating span {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    padding-top: 1.5em;
  }
.woocommerce .star-rating span::before {
    content: '★★★★★';
    position: absolute;
    color: gold;
    top: 0;
    left: 0;
  }
/* Single product main image */
.woocommerce-product-gallery {
	position: relative;
}
.woocommerce-product-gallery .woocommerce-product-gallery__trigger {
	position: absolute;
}
.woocommerce-product-gallery .woocommerce-product-gallery__trigger {
	top: 0px;
}
.woocommerce-product-gallery .woocommerce-product-gallery__trigger {
	right: 0px;
}
.woocommerce-product-gallery .woocommerce-product-gallery__trigger {
	z-index: 50;
}
.woocommerce-product-gallery .woocommerce-product-gallery__trigger {
	display: flex;
}
.woocommerce-product-gallery .woocommerce-product-gallery__trigger {
	height: 3rem;
}
.woocommerce-product-gallery .woocommerce-product-gallery__trigger {
	width: 3rem;
}
.woocommerce-product-gallery .woocommerce-product-gallery__trigger {
	align-items: center;
}
.woocommerce-product-gallery .woocommerce-product-gallery__trigger {
	justify-content: center;
}
.woocommerce-product-gallery .woocommerce-product-gallery__trigger {
	--tw-bg-opacity: 1;
	background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}
.woocommerce-product-gallery .woocommerce-product-gallery__wrapper img {
	height: auto;
}
.woocommerce-product-gallery .woocommerce-product-gallery__wrapper img {
	width: 100%;
}
.woocommerce-product-gallery .woocommerce-product-gallery__wrapper img {
	cursor: pointer;
}
/* Single product gallery thumbnails */
.flex-control-thumbs {
	margin-top: 1rem;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.flex-control-thumbs li {
	width: 50%;
}
.flex-control-thumbs li {
	cursor: pointer;
}
.flex-control-thumbs li {
	padding: 0.5rem;
}
@media (min-width: 375px) {

	.flex-control-thumbs li {
		width: 33.333333%;
	}
}
@media (min-width: 480px) {

	.flex-control-thumbs li {
		width: 25%;
	}
}
@media (min-width: 600px) {

	.flex-control-thumbs li {
		width: 16.666667%;
	}
}
.flex-control-thumbs li img {
	width: 100%;
}
.flex-control-thumbs li img {
	object-fit: cover;
}
/* Notice that appears after product added to cart */
.woocommerce-message {
	margin-bottom: 1rem;
	border-radius: 0.375rem;
	--tw-bg-opacity: 1;
	background-color: rgba(208, 223, 229, var(--tw-bg-opacity));
	padding: 1rem;
	text-align: center;
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-weight: 700;
}
@media (min-width: 768px) {

	.woocommerce-message {
		margin-bottom: 2rem;
	}

	.woocommerce-message {
		text-align: left;
	}
}
.woocommerce-message a {
	margin-bottom: 0.5rem;
}
.woocommerce-message a {
	display: block;
}
.woocommerce-message a {
	--tw-bg-opacity: 1;
	background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}
.woocommerce-message a {
	padding: 1rem;
}
.woocommerce-message a {
	text-align: center;
}
@media (min-width: 768px) {

	.woocommerce-message a {
		margin-right: 2rem;
	}
}
@media (min-width: 768px) {

	.woocommerce-message a {
		margin-bottom: 0px;
	}
}
@media (min-width: 768px) {

	.woocommerce-message a {
		display: inline-block;
	}
}
/* Product quantity and add to cart */
.single-cart {
	margin-top: 1rem;
	--tw-bg-opacity: 1;
	background-color: rgba(243, 244, 246, var(--tw-bg-opacity));
	padding: 1rem;
}
.single-cart label {
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
}
.single-cart button {
	margin-top: 1rem;
}
.single-cart button {
	--tw-bg-opacity: 1;
	background-color: rgba(208, 223, 229, var(--tw-bg-opacity));
}
/* Tabs */
.product-tab-link {
	display: inline-block;
	margin-left: 0.5rem;
	margin-right: 0.5rem;
	padding-left: 1rem;
	padding-right: 1rem;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}
.product-tab-link.active {
	border-top-left-radius: 0.25rem;
	border-top-right-radius: 0.25rem;
}
.product-tab-link.active {
	--tw-bg-opacity: 1;
	background-color: rgba(208, 223, 229, var(--tw-bg-opacity));
}
.product-tab-link.active {
	font-weight: 700;
}
.product-tab-panel {
	border-width: 1px;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	padding-top: 1rem;
	padding-bottom: 1rem;
}
/* Related products */
.related {
	margin-bottom: 2rem;
	--tw-bg-opacity: 1;
	background-color: rgba(243, 244, 246, var(--tw-bg-opacity));
	padding: 2rem;
}
/**
 * Ajax Cart Slideout.
 * -----------------------------------------
 * This is the styles/controls for the cart slideout.
 * Most of this is controlled via the element as it adds a fixed wrapper.
 *
 * @file: /views/partials/shop/ajax-cart.twig
 */
.cart-slideout {
  transition: .3s;
  max-width: 340px;
  width: 100%;
  position: fixed;
  top: 0px;
  bottom: 0px;
  left: 100%;
  --tw-bg-opacity: 1;
  background-color: rgba(156, 163, 175, var(--tw-bg-opacity));
}
.cart-slideout.active {
    transform: translateX(-100%);
    box-shadow: 0 0 100px rgba(39,39,66,.4);
  }
.cart-slideout-details {
	padding: 1.25rem;
}
/**
 * WooCommerce Applied/HTMl Applied Classes.
 * -----------------------------------------
 * Use these to overwrite the style of the mini-cart that pops out
 * on the side of the screen. If you aren't using the mini-cart anywhere
 * you can remove these or rely on purgecss.
 &
 * @file: /woocommerce/cart/mini-cart.php
 */
.woocommerce-mini-cart {
}
.woocommerce-mini-cart-item {
	display: flex;
	margin-bottom: 0.5rem;
	padding-bottom: 0.5rem;
	border-bottom-width: 1px;
}
.woocommerce-mini-cart-item:last-child {
	border-bottom-width: 0px;
}
.woocommerce-mini-cart-item:last-child {
	padding-bottom: 0px;
}
.woocommerce-mini-cart-item .remove {
	margin-right: 0.5rem;
}
.woocommerce-mini-cart-item .image {
	margin-right: 0.5rem;
}
.woocommerce-mini-cart-item img {
    max-width: 50px;
    height: auto;
  }
.woocommerce-mini-cart__total {
	margin-top: 0.75rem;
	margin-bottom: 0.75rem;
	padding-top: 0.75rem;
	padding-bottom: 0.75rem;
	border-top-width: 1px;
	border-bottom-width: 1px;
	display: block;
}
.woocommerce-mini-cart__buttons {
	display: flex;
}
.woocommerce-mini-cart__buttons a:first-child {
	margin-right: 1rem;
}
.woocommerce p.stars a {
    position: relative;
    height: 1.5em;
    width: 1.5em;
    text-indent: -999em;
    display: inline-block;
    text-decoration: none;
    color: #ccc;
  }
.woocommerce p.stars a:before {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 1.5em;
    height: 1.5em;
    line-height: 1;
    content: '★';
    text-indent: 0;
    font-size: 1.5em;
  }
.woocommerce p.stars a:hover {
    color: gold;
  }
.woocommerce p.stars .selected,
  .woocommerce p.stars .active {
    color: gold;
  }
.products .product {
	position: relative;
	text-align: center;
}
.products .product .button {
	margin-left: auto;
	margin-right: auto;
}
.products .product .button {
	--tw-bg-opacity: 1;
	background-color: rgba(238, 209, 90, var(--tw-bg-opacity));
}
.products .product .button {
	--tw-text-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-text-opacity));
}
.onsale {
	position: absolute;
	top: 1rem;
	left: 1rem;
	z-index: 20;
	padding-left: 0.5rem;
	padding-right: 0.5rem;
	padding-top: 0.25rem;
	padding-bottom: 0.25rem;
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-weight: 700;
	text-transform: uppercase;
	--tw-text-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-text-opacity));
	--tw-bg-opacity: 1;
	background-color: rgba(239, 68, 68, var(--tw-bg-opacity));
}
.size-woocommerce_thumbnail {
	height: auto;
	width: 100%;
}
.woocommerce-loop-product__title, .product .entry-title {
	margin-top: 1rem;
}
.woocommerce-LoopProduct-link, .product__info {
	text-align: center;
	display: flex;
	flex-direction: column;
}
.woocommerce-LoopProduct-link .price, .product__info .price {
	display: block;
}
.woocommerce-LoopProduct-link .price, .product__info .price {
	margin-bottom: 0.75rem;
}
/**
 * Before Shop Loop 
 */
.before-shop-loop {
	margin-top: 0.75rem;
	margin-bottom: 0.75rem;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}
.woocommerce-notices-wrapper {
	width: 100%;
}
.shop_table {
	font-size: 0.75rem;
	line-height: 1rem;
}
.shop_table .product-thumbnail img {
    max-width: 50px;
  }
.shop_table td, .shop_table th {
	padding-top: 0.25rem;
	padding-bottom: 0.25rem;
}
.shop_table th {
	text-transform: uppercase;
}
.shop_table th {
	text-align: left;
}
.shop_table th {
	font-size: 0.75rem;
	line-height: 1rem;
}
.shop_table td {
	padding: 0.25rem;
}
.shop_table input {
	border-width: 0px;
}
.shop_table input {
	padding: 0.25rem;
}
.shop_table input {
	font-size: 0.75rem;
	line-height: 1rem;
}
.shop_table .screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border-width: 0;
}
.shop_table.cart {
	width: 100%;
	margin-bottom: 2.5rem;
}
.shop_table.cart td, .shop_table.cart th {
	border-bottom-width: 1px;
}
.shop_table.cart .actions {
  }
/* Aside Cart upsells */
.cross-sells {
	margin-bottom: 2rem;
	--tw-bg-opacity: 1;
	background-color: rgba(243, 244, 246, var(--tw-bg-opacity));
	padding: 1rem;
}
.cross-sells h2 {
	font-size: 1rem;
	line-height: 1.5rem;
}
.cross-sells a {
	--tw-text-opacity: 1;
	color: rgba(238, 209, 90, var(--tw-text-opacity));
}
/* Aside Cart Totals */
.cart_totals {
	--tw-bg-opacity: 1;
	background-color: rgba(209, 213, 219, var(--tw-bg-opacity));
	padding: 1rem;
}
.cart_totals .checkout-button {
	margin-top: 1rem;
}
.cart_totals .checkout-button {
	--tw-bg-opacity: 1;
	background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}
.cart_totals .checkout-button {
	font-weight: 700;
}
.cart_totals .checkout-button {
	--tw-text-opacity: 1;
	color: rgba(238, 209, 90, var(--tw-text-opacity));
}
/* Coupons */
.woocommerce-cart-form .coupon {
	display: flex;
}
.woocommerce-cart-form .coupon {
	width: 100%;
}
.woocommerce-cart-form .coupon {
	flex-wrap: wrap;
}
.woocommerce-cart-form .coupon {
	font-size: 0.875rem;
	line-height: 1.25rem;
}
.woocommerce-cart-form .coupon label {
	margin-bottom: 0.5rem;
}
.woocommerce-cart-form .coupon label {
	width: 100%;
}
.woocommerce-cart-form .coupon label {
	font-weight: 700;
}
.woocommerce-cart-form .coupon input {
	width: 60%;
}
.woocommerce-cart-form .coupon button {
	margin: 0px;
}
.woocommerce-cart-form .coupon button {
	width: 40%;
}
.woocommerce-cart-form .coupon button {
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
}
.woocommerce-cart-form .coupon button {
	font-weight: 700;
}
@media (min-width: 600px) {
     .woocommerce-cart-form .coupon input {
		width: 80%;
	}

     .woocommerce-cart-form .coupon button.button {
		margin-top: 0px;
	}

     .woocommerce-cart-form .coupon button.button {
		width: 20%;
	} 
  }
.cart__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}
.cart__actions button.button {
	margin-top: 1rem;
}
.cart__actions button.button {
	width: 100%;
}
.cart__actions button.button {
	--tw-bg-opacity: 1;
	background-color: rgba(208, 223, 229, var(--tw-bg-opacity));
}
@media (min-width: 600px) {
    .cart__actions button.button {
		margin-left: auto;
	}
    .cart__actions button.button {
		width: 33.333333%;
	}
    .cart__actions button.button {
		--tw-bg-opacity: 1;
		background-color: rgba(208, 223, 229, var(--tw-bg-opacity));
	}
  }
.billing-shipping label {
	display: block;
}
.billing-shipping label {
	margin-bottom: 0.5rem;
}
.billing-shipping input:not([type='checkbox']), .billing-shipping select, .billing-shipping textarea {
	display: block;
}
.billing-shipping input:not([type='checkbox']), .billing-shipping select, .billing-shipping textarea {
	width: 100%;
}
.billing-shipping .form-row {
	margin-bottom: 1rem;
}
.woocommerce-table--order-downloads, .woocommerce-table--order-details, .woocommerce-checkout-review-order-table {
	width: 100%;
}
.woocommerce-table--order-downloads td, .woocommerce-table--order-downloads th, .woocommerce-table--order-details td, .woocommerce-table--order-details th, .woocommerce-checkout-review-order-table td, .woocommerce-checkout-review-order-table th {
	padding-top: 0.25rem;
	padding-bottom: 0.25rem;
}
.woocommerce-table--order-downloads thead tr, .woocommerce-table--order-downloads tfoot tr, .woocommerce-table--order-downloads tbody tr:last-child, .woocommerce-table--order-details thead tr, .woocommerce-table--order-details tfoot tr, .woocommerce-table--order-details tbody tr:last-child, .woocommerce-checkout-review-order-table thead tr, .woocommerce-checkout-review-order-table tfoot tr, .woocommerce-checkout-review-order-table tbody tr:last-child {
	border-bottom-width: 1px;
}
.wc_payment_method {
	margin-bottom: 0.5rem;
	border-bottom-width: 1px;
	padding-bottom: 0.5rem;
}
.wc_payment_method label {
	display: flex;
}
.wc_payment_method label {
	flex-grow: 1;
}
.wc_payment_method label {
	align-items: center;
}
.wc_payment_method label {
	justify-content: space-between;
}
.wc_payment_method label span {
	display: block;
}
.wc_payment_method label span {
	width: auto;
}
.wc_payment_method label .icons {
	display: flex;
}
.wc_payment_method label .icons {
	justify-content: flex-end;
}
.wc_payment_method label img {
      max-height: 40px;
      width: auto;
    }
.wc_payment_method .about_paypal {
	display: none;
}
.wc_payment_method .payment_box p {
	font-size: 0.875rem;
	line-height: 1.25rem;
}
.woocommerce-privacy-policy-text p {
	margin-top: 0.75rem;
	margin-bottom: 0.75rem;
	font-size: 0.875rem;
	line-height: 1.25rem;
}
.place-order button {
	--tw-bg-opacity: 1;
	background-color: rgba(208, 223, 229, var(--tw-bg-opacity));
	font-weight: 700;
}
.woocommerce-pagination {
	margin-top: 0.75rem;
}
.woocommerce-pagination .page-numbers {
	display: flex;
}
.woocommerce-pagination .page-numbers {
	justify-content: center;
}
.woocommerce-pagination .page-numbers li {
	margin-right: 0.5rem;
}
.woocommerce-pagination .page-numbers li a,
  .woocommerce-pagination .page-numbers li span {
    width: 24px;
    height: 24px;
  }
.woocommerce-pagination .page-numbers li a, .woocommerce-pagination .page-numbers li span {
	display: flex;
}
.woocommerce-pagination .page-numbers li a, .woocommerce-pagination .page-numbers li span {
	align-items: center;
}
.woocommerce-pagination .page-numbers li a, .woocommerce-pagination .page-numbers li span {
	justify-content: center;
}
.woocommerce-pagination .page-numbers li a {
	--tw-bg-opacity: 1;
	background-color: rgba(208, 223, 229, var(--tw-bg-opacity));
}
/* =========================================
   RUBBER STUFF — MY ACCOUNT STYLING
   ========================================= */
/* -----------------------------------------
   ROW / COLUMN LAYOUT
   ----------------------------------------- */
/* Logged-in dashboard row (section.row) */
.woocommerce-account .woocommerce section.row {
  display: flex;
  flex-wrap: wrap;
}
.woocommerce-account .woocommerce section.row > .column {
  width: 100%;
}
/* Side-by-side nav + content on md+ */
@media (min-width: 768px) {
  .woocommerce-account .woocommerce section.row > .column:first-child {
    width: 25%;  /* nav */
  }

  .woocommerce-account .woocommerce section.row > .column:last-child {
    width: 75%;  /* content */
  }
}
/* Login row: centre the login form */
.woocommerce-account #customer_login {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.woocommerce-account #customer_login > .column {
  width: 100%;
  max-width: 420px;
}
/* -----------------------------------------
   SIDEBAR NAVIGATION
   ----------------------------------------- */
.woocommerce-MyAccount-navigation {
	width: 100%;
}
.woocommerce-MyAccount-navigation ul {
	margin: 0px;
}
.woocommerce-MyAccount-navigation ul {
	border-radius: 0.375rem;
}
.woocommerce-MyAccount-navigation ul {
	border-width: 1px;
}
.woocommerce-MyAccount-navigation ul {
	--tw-border-opacity: 1;
	border-color: rgba(229, 231, 235, var(--tw-border-opacity));
}
.woocommerce-MyAccount-navigation ul {
	--tw-bg-opacity: 1;
	background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}
.woocommerce-MyAccount-navigation ul {
	padding: 0px;
}
.woocommerce-MyAccount-navigation li {
	border-bottom-width: 1px;
}
.woocommerce-MyAccount-navigation li {
	--tw-border-opacity: 1;
	border-color: rgba(229, 231, 235, var(--tw-border-opacity));
}
.woocommerce-MyAccount-navigation li:last-child {
	border-width: 0px;
}
.woocommerce-MyAccount-navigation a {
	display: block;
}
.woocommerce-MyAccount-navigation a {
	padding-left: 1rem;
	padding-right: 1rem;
}
.woocommerce-MyAccount-navigation a {
	padding-top: 0.75rem;
	padding-bottom: 0.75rem;
}
.woocommerce-MyAccount-navigation a {
	font-size: 0.875rem;
	line-height: 1.25rem;
}
.woocommerce-MyAccount-navigation a {
	font-weight: 500;
}
.woocommerce-MyAccount-navigation a {
	--tw-text-opacity: 1;
	color: rgba(55, 65, 81, var(--tw-text-opacity));
}
.woocommerce-MyAccount-navigation a {
	transition-property: background-color, border-color, color, fill, stroke;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: 150ms;
}
.woocommerce-MyAccount-navigation a:hover {
	--tw-bg-opacity: 1;
	background-color: rgba(249, 250, 251, var(--tw-bg-opacity));
}
.woocommerce-MyAccount-navigation a:hover {
	--tw-text-opacity: 1;
	color: rgba(0, 0, 0, var(--tw-text-opacity));
}
.woocommerce-MyAccount-navigation .is-active a {
    background-color: #D4AF37; /* brand gold */
  }
.woocommerce-MyAccount-navigation .is-active a {
	--tw-text-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-text-opacity));
}
/* Kill bullets + indent everywhere, even inside .copy */
.woocommerce-account nav.woocommerce-MyAccount-navigation ul,
.woocommerce-account .woocommerce-MyAccount-navigation ul,
.copy .woocommerce-MyAccount-navigation ul {
  list-style: none !important;
  margin: 0;
  padding: 0;
}
/* -----------------------------------------
   MAIN CONTENT AREA
   ----------------------------------------- */
.woocommerce-MyAccount-content {
	width: 100%;
	border-radius: 0.375rem;
	border-width: 1px;
	--tw-border-opacity: 1;
	border-color: rgba(229, 231, 235, var(--tw-border-opacity));
	--tw-bg-opacity: 1;
	background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
	padding: 1.5rem;
}
.woocommerce-MyAccount-content h2, .woocommerce-MyAccount-content h3 {
	margin-bottom: 1rem;
}
.woocommerce-MyAccount-content h2, .woocommerce-MyAccount-content h3 {
	font-size: 1.25rem;
	line-height: 1.75rem;
}
.woocommerce-MyAccount-content h2, .woocommerce-MyAccount-content h3 {
	font-weight: 600;
}
.woocommerce-MyAccount-content p {
	margin-bottom: 0.75rem;
}
.woocommerce-MyAccount-content a {
    color: #D4AF37; /* brand gold */
  }
.woocommerce-MyAccount-content a {
	font-weight: 500;
}
.woocommerce-MyAccount-content a:hover {
	text-decoration: underline;
}
/* -----------------------------------------
   ORDERS & TABLES
   ----------------------------------------- */
.woocommerce-MyAccount-orders table, .woocommerce-MyAccount-paymentMethods table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.875rem;
	line-height: 1.25rem;
}
.woocommerce-MyAccount-orders th, .woocommerce-MyAccount-paymentMethods th {
	border-bottom-width: 1px;
	--tw-bg-opacity: 1;
	background-color: rgba(249, 250, 251, var(--tw-bg-opacity));
	padding-left: 0.75rem;
	padding-right: 0.75rem;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	text-align: left;
}
.woocommerce-MyAccount-orders td, .woocommerce-MyAccount-paymentMethods td {
	border-bottom-width: 1px;
	padding-left: 0.75rem;
	padding-right: 0.75rem;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}
/* Buttons inside tables */
.woocommerce-MyAccount-orders .button, .woocommerce-MyAccount-paymentMethods .button {
	display: inline-block;
	border-radius: 0.25rem;
	padding-left: 0.75rem;
	padding-right: 0.75rem;
	padding-top: 0.25rem;
	padding-bottom: 0.25rem;
	font-size: 0.75rem;
	line-height: 1rem;
	--tw-text-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-text-opacity));
  background-color: #D4AF37;
}
/* -----------------------------------------
   FORMS (ADDRESSES + ACCOUNT DETAILS)
   ----------------------------------------- */
.edit-account, .woocommerce-address-fields {
	max-width: 36rem;
}
.edit-account .form-row, .woocommerce-address-fields .form-row {
	margin-bottom: 1rem;
}
.edit-account label, .woocommerce-address-fields label {
	margin-bottom: 0.25rem;
}
.edit-account label, .woocommerce-address-fields label {
	display: block;
}
.edit-account label, .woocommerce-address-fields label {
	font-size: 0.875rem;
	line-height: 1.25rem;
}
.edit-account label, .woocommerce-address-fields label {
	font-weight: 600;
}
.edit-account input:not([type='checkbox']), .edit-account select, .edit-account textarea, .woocommerce-address-fields input:not([type='checkbox']), .woocommerce-address-fields select, .woocommerce-address-fields textarea {
	width: 100%;
}
.edit-account input:not([type='checkbox']), .edit-account select, .edit-account textarea, .woocommerce-address-fields input:not([type='checkbox']), .woocommerce-address-fields select, .woocommerce-address-fields textarea {
	border-radius: 0.375rem;
}
.edit-account input:not([type='checkbox']), .edit-account select, .edit-account textarea, .woocommerce-address-fields input:not([type='checkbox']), .woocommerce-address-fields select, .woocommerce-address-fields textarea {
	border-width: 1px;
}
.edit-account input:not([type='checkbox']), .edit-account select, .edit-account textarea, .woocommerce-address-fields input:not([type='checkbox']), .woocommerce-address-fields select, .woocommerce-address-fields textarea {
	--tw-border-opacity: 1;
	border-color: rgba(209, 213, 219, var(--tw-border-opacity));
}
.edit-account input:not([type='checkbox']), .edit-account select, .edit-account textarea, .woocommerce-address-fields input:not([type='checkbox']), .woocommerce-address-fields select, .woocommerce-address-fields textarea {
	padding-left: 0.75rem;
	padding-right: 0.75rem;
}
.edit-account input:not([type='checkbox']), .edit-account select, .edit-account textarea, .woocommerce-address-fields input:not([type='checkbox']), .woocommerce-address-fields select, .woocommerce-address-fields textarea {
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}
.edit-account input:not([type='checkbox']), .edit-account select, .edit-account textarea, .woocommerce-address-fields input:not([type='checkbox']), .woocommerce-address-fields select, .woocommerce-address-fields textarea {
	font-size: 0.875rem;
	line-height: 1.25rem;
}
.edit-account input:not([type='checkbox']):focus, .edit-account select:focus, .edit-account textarea:focus, .woocommerce-address-fields input:not([type='checkbox']):focus, .woocommerce-address-fields select:focus, .woocommerce-address-fields textarea:focus {
	outline: 2px solid transparent;
	outline-offset: 2px;
}
/* Plain CSS focus so we don't rely on Tailwind ring utilities */
.edit-account input:not([type='checkbox']):focus,
  .edit-account select:focus,
  .edit-account textarea:focus,
  .woocommerce-address-fields input:not([type='checkbox']):focus,
  .woocommerce-address-fields select:focus,
  .woocommerce-address-fields textarea:focus {
    border-color: #D4AF37; /* brand gold */
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.4);
  }
/* -----------------------------------------
   LOGIN / REGISTER
   ----------------------------------------- */
.woocommerce-form-login, .woocommerce-form-register {
	margin-left: auto;
	margin-right: auto;
	max-width: 28rem;
}
.woocommerce-form-login .form-row, .woocommerce-form-register .form-row {
	margin-bottom: 1rem;
}
.woocommerce-form-login label, .woocommerce-form-register label {
	margin-bottom: 0.25rem;
}
.woocommerce-form-login label, .woocommerce-form-register label {
	display: block;
}
.woocommerce-form-login label, .woocommerce-form-register label {
	font-size: 0.875rem;
	line-height: 1.25rem;
}
.woocommerce-form-login label, .woocommerce-form-register label {
	font-weight: 500;
}
.woocommerce-form-login input:not([type='checkbox']), .woocommerce-form-register input:not([type='checkbox']) {
	width: 100%;
}
.woocommerce-form-login input:not([type='checkbox']), .woocommerce-form-register input:not([type='checkbox']) {
	border-radius: 0.375rem;
}
.woocommerce-form-login input:not([type='checkbox']), .woocommerce-form-register input:not([type='checkbox']) {
	border-width: 1px;
}
.woocommerce-form-login input:not([type='checkbox']), .woocommerce-form-register input:not([type='checkbox']) {
	--tw-border-opacity: 1;
	border-color: rgba(209, 213, 219, var(--tw-border-opacity));
}
.woocommerce-form-login input:not([type='checkbox']), .woocommerce-form-register input:not([type='checkbox']) {
	padding-left: 0.75rem;
	padding-right: 0.75rem;
}
.woocommerce-form-login input:not([type='checkbox']), .woocommerce-form-register input:not([type='checkbox']) {
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}
.woocommerce-form-login input:not([type='checkbox']), .woocommerce-form-register input:not([type='checkbox']) {
	font-size: 0.875rem;
	line-height: 1.25rem;
}
.woocommerce-form-login__rememberme {
	margin-top: 0.5rem;
	display: flex;
	align-items: center;
	font-size: 0.875rem;
	line-height: 1.25rem;
}
.woocommerce-form-login__rememberme input {
	margin-right: 0.5rem;
}
.woocommerce-form-login__rememberme input {
	width: auto;
}
.woocommerce-form-login__submit {
	margin-top: 0.75rem;
	width: 100%;
	border-radius: 0.375rem;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	font-weight: 600;
	--tw-text-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-text-opacity));
  background-color: #D4AF37;
}
/* Lost password link */
.woocommerce-LostPassword.lost_password {
	margin-top: 0.75rem;
	font-size: 0.875rem;
	line-height: 1.25rem;
}
.woocommerce-LostPassword.lost_password a {
	text-decoration: underline;
}
.woocommerce-LostPassword.lost_password a:hover {
	text-decoration: none;
}
li.woocommerce-MyAccount-navigation-link {
    list-style: none !important;
}
/* -----------------------------------------
   NOTICES
   ----------------------------------------- */
.woocommerce-message, .woocommerce-error, .woocommerce-info {
	margin-bottom: 1rem;
	border-radius: 0.375rem;
	padding-left: 1rem;
	padding-right: 1rem;
	padding-top: 0.75rem;
	padding-bottom: 0.75rem;
	font-size: 0.875rem;
	line-height: 1.25rem;
}
.woocommerce-message {
	--tw-bg-opacity: 1;
	background-color: rgba(236, 253, 245, var(--tw-bg-opacity));
	--tw-text-opacity: 1;
	color: rgba(6, 95, 70, var(--tw-text-opacity));
}
.woocommerce-error {
	--tw-bg-opacity: 1;
	background-color: rgba(254, 242, 242, var(--tw-bg-opacity));
	--tw-text-opacity: 1;
	color: rgba(153, 27, 27, var(--tw-text-opacity));
}
.woocommerce-info {
	--tw-bg-opacity: 1;
	background-color: rgba(239, 246, 255, var(--tw-bg-opacity));
	--tw-text-opacity: 1;
	color: rgba(30, 64, 175, var(--tw-text-opacity));
}
.widget {
	margin-bottom: 2rem;
	--tw-bg-opacity: 1;
	background-color: rgba(229, 231, 235, var(--tw-bg-opacity));
	padding: 1rem;
}
.woocommerce-product-search input {
	margin-bottom: 1rem;
}
.woocommerce-product-search input {
	border-radius: 0.375rem;
}
.woocommerce-product-search button {
	margin-left: auto;
}
.woocommerce-product-search button {
	--tw-bg-opacity: 1;
	background-color: rgba(234, 234, 234, var(--tw-bg-opacity));
}
.widget_recently_viewed_products {
	margin-top: 2rem;
}
.widget_recently_viewed_products .product_list_widget {

  }
.widget_recently_viewed_products li {
	display: flex;
}
.widget_recently_viewed_products li {
	flex-direction: column;
}
.widget_recently_viewed_products li {
	align-items: center;
}
.widget_recently_viewed_products li {
	text-align: center;
}
.widget_recently_viewed_products li {
	font-size: 0.75rem;
	line-height: 1rem;
}
@media (min-width: 480px) {
    .widget_recently_viewed_products .product_list_widget {
		display: flex;
	}
    .widget_recently_viewed_products .product_list_widget {
		flex-wrap: wrap;
	}

    .widget_recently_viewed_products li {
		width: 50%;
	}

    .widget_recently_viewed_products li {
		padding: 0.5rem;
	}
  }
.row {
	margin-left: -15px;
	margin-right: -15px;
}
.column {
	padding-left: 15px;
	padding-right: 15px;
}
.screen-reader-text, .sr-only {
    display: none;
}
/* Extra Add On Content Normalize */
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu {
    margin-top: 20px !important;
}
ul.mega-sub-menu {
    padding-left:8px !important;
}
a.mega-menu-link:nth-child(2) {
    margin-left:8px  !important;
}
button.single_add_to_cart_button.button.alt, .wc-block-components-button__text {
    margin-top:36px;
    border: solid 1px #EDD157;
    padding: 8px 16px 8px 16px;
    border-radius: 32px;
	background-color: #EDD157;
}
button.single_add_to_cart_button.button.alt:hover{

    background: #000;
    color: #EDD157;
}
p { 
    margin-top:8px;
}
.copy a {
    color: #204C63;
    padding: 16px;
}
.quantity {
    padding-top: 32px;
    display: inline-grid;
    align-content: center;
    justify-content: center;
    align-items: center;
    justify-items: center;
}
.products .product {
    position: relative;
    text-align: center;
    list-style: none;
    padding: 12px;
}
mark.count {
    background-color: transparent;
}
span.wc-block-components-button__text  {
    border: solid 2px #204C63;
    padding: 15px 30px;
    border-radius: 30px;
    color: black;
}
a.wc-block-components-checkout-return-to-cart-button, a.wc-block-components-totals-coupon-link, a#wc-block-components-totals-shipping__change-address__link {
    color: black;
    text-decoration: underline;
    font-weight: bold;
}
button.components-button.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.contained {
    float: right;
    text-align: right;
    display: contents;
}
li.wc-block-grid__product {
    list-style: none !important;
    color: black;
}
.wc-block-grid__product-title {
    color: black;
    padding: 10px;
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: bold;
}
span.woocommerce-Price-amount.amount {
    color: #204C63;
    font-size: 1.125rem;
    line-height: 1.75rem;
    padding-bottom: 36px;
	font-size: 30px;
}
td.woocommerce-product-attributes-item__value {
    padding-left: 36px !important;
}
.wcpf-field-color-list .wcpf-color-list .wcpf-color-item {
    width: 40px !important;
    height: 40px !important;
}
span.vm_label_s.vm-swatch-above {
    font-size: 12px;
}
.wcpf-field-color-list .wcpf-color-list .wcpf-color-item.selected:after {
    top: 1px !important;
    height: 10px !important;
    width: 20px !important;
}
div#wtp-discount-list-container ul:not(.wtp-table) li {
    list-style: none;
}
div#wtp-discount-list-container ul li.wtp-selected {
    list-style: none;
}
label.screen-reader-text {
    display: none;
}
.single-product #var_form .woocommerce-variation-add-to-cart .quantity+button {
    margin: 30px 0 0 0;
}
.tags > a {
    font-size: 12px;
    padding: 5px;
    color: #fff;
    background: black;
    border-radius: 40px;
}
.wo_productcode > span, .wo_productcode_second > span {
    font-weight: bold;
}
span.stl_codenum, span.stl_codenum_second {
    font-weight: 100 !important;
    
}
.single-product .product_meta .wo_productcode, .sku-main {
    display: inline-block !important;
}
span.wo_productcode,span.wo_productcode_second, span.sku, span.stock, span.sales {
    border-right: 1px solid black;
    padding-right: 6px;
    margin-right: 6px;
}
.brand {
    display: flex;
    align-items: center;
    height: 100px;
}
table.variations tr td {
    display: inline !important;
}
hr.divide {
    margin-top: 32px;
    margin-bottom: 32px;
    border: 0;
    border-top: 1px solid #eed15a;
    max-width: 130px;
    margin: auto;
    padding-bottom: 32px;
}
/* Fixed/sticky icon bar (vertically aligned 50% from the top of the screen) */
.icon-bar {
    position: fixed;
    top: 15%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 99999;
  }
/* Style the icon bar links */
.icon-bar a {
    display: block;
    text-align: center;
    padding: 16px;
    transition: all 0.3s ease;
    color: white;
    font-size: 20px;
    
    
  }
/* Style the social media icons with color, if you want */
.icon-bar a:hover {  
    
  }
.facebook {
    background: #3B5998;
    color: white;
  }
.twitter {
    background: #000;
    color: white;
  }
.google {
    background: #ff0050;
    color: white;
  }
.linkedin {
    background: #d6249f;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
  box-shadow: 0px 3px 10px rgba(0,0,0,.25);
    color: white;
  }
.youtube {
    background: #bb0000;
    color: white;
    opacity:0.6;
  }
.share {
    font-family: 'Schoolbell', arial, serif; 
}
.social > ul.share {
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-content: center;
justify-content: center;
padding: 32px;
background: #eaeaea;
font-size: 18px;
}
a.social-links__link.social-links__link--facebook {
background-color: #3b5998;
padding: 8px;
color: #fff;
margin: 0 8px 0 8px
}
a.social-links__link.social-links__link--twitter {
background-color: #000;
padding: 8px;
color: #fff;
margin: 0 8px 0 0px
}
a.social-links__link.social-links__link--email {
background-color: #0072C6;
padding: 8px;
color: #fff;
margin: 0 8px 0 0px
}
a.social-links__link.social-links__link--linkedin {
background-color: #0A66C2;
padding: 8px;
color: #fff;
margin: 0 8px 0 0px
}
a.social-links__link.social-links__link--whatsapp {
background-color: #25d366;
padding: 8px;
color: #fff;
margin: 0 8px 0 0px
}
table.variations > tr {
    display: inline-block !important;
}
th.label {
    paadding-top: 10px !important;
    display: contents;
}
/*
td {
    display: contents;
}
    */
.before\:absolute::before {
	content: "";
	position: absolute;
}
.before\:left-2::before {
	content: "";
	left: 0.5rem;
}
.before\:h-full::before {
	content: "";
	height: 100%;
}
.before\:-translate-x-1\/2::before {
	content: "";
	--tw-translate-x: -50%;
	transform: var(--tw-transform);
}
.before\:translate-y-3::before {
	content: "";
	--tw-translate-y: 0.75rem;
	transform: var(--tw-transform);
}
.before\:self-start::before {
	content: "";
	align-self: flex-start;
}
.before\:bg-\[\#eaeaea\]::before {
	content: "";
	--tw-bg-opacity: 1;
	background-color: rgba(234, 234, 234, var(--tw-bg-opacity));
}
.before\:px-px::before {
	content: "";
	padding-left: 1px;
	padding-right: 1px;
}
.after\:absolute::after {
	content: "";
	position: absolute;
}
.after\:left-2::after {
	content: "";
	left: 0.5rem;
}
.after\:box-content::after {
	content: "";
	box-sizing: content-box;
}
.after\:h-2::after {
	content: "";
	height: 0.5rem;
}
.after\:w-2::after {
	content: "";
	width: 0.5rem;
}
.after\:-translate-x-1\/2::after {
	content: "";
	--tw-translate-x: -50%;
	transform: var(--tw-transform);
}
.after\:translate-y-1\.5::after {
	content: "";
	--tw-translate-y: 0.375rem;
	transform: var(--tw-transform);
}
.after\:translate-y-1::after {
	content: "";
	--tw-translate-y: 0.25rem;
	transform: var(--tw-transform);
}
.after\:rounded-full::after {
	content: "";
	border-radius: 9999px;
}
.after\:border-4::after {
	content: "";
	border-width: 4px;
}
.after\:bg-primary-dark::after {
	content: "";
	--tw-bg-opacity: 1;
	background-color: rgba(238, 209, 90, var(--tw-bg-opacity));
}
.hover\:scale-\[1\.02\]:hover {
	--tw-scale-x: 1.02;
	--tw-scale-y: 1.02;
	transform: var(--tw-transform);
}
.hover\:border-white:hover {
	--tw-border-opacity: 1;
	border-color: rgba(255, 255, 255, var(--tw-border-opacity));
}
.hover\:border-current:hover {
	--tw-border-opacity: 1;
	border-color: rgba(238, 209, 90, var(--tw-border-opacity));
}
.hover\:border-primary-button:hover {
	--tw-border-opacity: 1;
	border-color: rgba(238, 209, 90, var(--tw-border-opacity));
}
.hover\:bg-gray-200:hover {
	--tw-bg-opacity: 1;
	background-color: rgba(229, 231, 235, var(--tw-bg-opacity));
}
.hover\:bg-transparent:hover {
	background-color: transparent;
}
.hover\:bg-white:hover {
	--tw-bg-opacity: 1;
	background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}
.hover\:bg-black:hover {
	--tw-bg-opacity: 1;
	background-color: rgba(0, 0, 0, var(--tw-bg-opacity));
}
.hover\:bg-primary-button:hover {
	--tw-bg-opacity: 1;
	background-color: rgba(238, 209, 90, var(--tw-bg-opacity));
}
.hover\:bg-primary-light:hover {
	--tw-bg-opacity: 1;
	background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}
.hover\:bg-blue-700:hover {
	--tw-bg-opacity: 1;
	background-color: rgba(29, 78, 216, var(--tw-bg-opacity));
}
.hover\:fill-current:hover {
	fill: currentColor;
}
.hover\:stroke-current:hover {
	stroke: currentColor;
}
.hover\:text-primary-button:hover {
	--tw-text-opacity: 1;
	color: rgba(238, 209, 90, var(--tw-text-opacity));
}
.hover\:text-indigo-600:hover {
	--tw-text-opacity: 1;
	color: rgba(79, 70, 229, var(--tw-text-opacity));
}
.hover\:text-\[\#EED15A\]:hover {
	--tw-text-opacity: 1;
	color: rgba(238, 209, 90, var(--tw-text-opacity));
}
.hover\:text-primary-light:hover {
	--tw-text-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-text-opacity));
}
.hover\:text-gray-900:hover {
	--tw-text-opacity: 1;
	color: rgba(17, 24, 39, var(--tw-text-opacity));
}
.hover\:text-white:hover {
	--tw-text-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-text-opacity));
}
.hover\:text-primary-dark:hover {
	--tw-text-opacity: 1;
	color: rgba(238, 209, 90, var(--tw-text-opacity));
}
.hover\:text-black:hover {
	--tw-text-opacity: 1;
	color: rgba(0, 0, 0, var(--tw-text-opacity));
}
.hover\:shadow-xl:hover {
	--tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.hover\:shadow-lg:hover {
	--tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.hover\:shadow:hover {
	--tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.focus\:bg-blue-700:focus {
	--tw-bg-opacity: 1;
	background-color: rgba(29, 78, 216, var(--tw-bg-opacity));
}
.focus\:text-primary-button:focus {
	--tw-text-opacity: 1;
	color: rgba(238, 209, 90, var(--tw-text-opacity));
}
.focus\:shadow-lg:focus {
	--tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.focus\:outline-none:focus {
	outline: 2px solid transparent;
	outline-offset: 2px;
}
.focus\:ring-0:focus {
	--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
	--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
	box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.active\:bg-blue-800:active {
	--tw-bg-opacity: 1;
	background-color: rgba(30, 64, 175, var(--tw-bg-opacity));
}
.active\:shadow-lg:active {
	--tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.group:last-child .group-last\:before\:hidden::before {
	content: "";
	display: none;
}
.group:hover .group-hover\:scale-\[1\.01\] {
	--tw-scale-x: 1.01;
	--tw-scale-y: 1.01;
	transform: var(--tw-transform);
}
.group:hover .group-hover\:opacity-50 {
	opacity: 0.5;
}
.group:hover .group-hover\:opacity-70 {
	opacity: 0.7;
}
@media (min-width: 480px) {

	.xs\:w-1\/2 {
		width: 50%;
	}

	.xs\:p-2 {
		padding: 0.5rem;
	}
}
@media (min-width: 600px) {

	.sm\:absolute {
		position: absolute;
	}

	.sm\:mx-32 {
		margin-left: 8rem;
		margin-right: 8rem;
	}

	.sm\:mb-0 {
		margin-bottom: 0px;
	}

	.sm\:mt-32 {
		margin-top: 8rem;
	}

	.sm\:mt-6 {
		margin-top: 1.5rem;
	}

	.sm\:h-64 {
		height: 16rem;
	}

	.sm\:w-10\/12 {
		width: 83.333333%;
	}

	.sm\:grid-cols-2 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.sm\:flex-row {
		flex-direction: row;
	}

	.sm\:p-8 {
		padding: 2rem;
	}

	.sm\:px-6 {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}

	.sm\:pl-32 {
		padding-left: 8rem;
	}

	.sm\:text-center {
		text-align: center;
	}

	.sm\:text-4xl {
		font-size: 2.25rem;
		line-height: 2.5rem;
	}

	.sm\:text-5xl {
		font-size: 3rem;
		line-height: 1;
	}

	.sm\:text-3xl {
		font-size: 1.875rem;
		line-height: 2.25rem;
	}

	.sm\:before\:left-0::before {
		content: "";
		left: 0px;
	}

	.sm\:before\:ml-\[6\.5rem\]::before {
		content: "";
		margin-left: 6.5rem;
	}

	.sm\:after\:left-0::after {
		content: "";
		left: 0px;
	}

	.sm\:after\:ml-\[6\.5rem\]::after {
		content: "";
		margin-left: 6.5rem;
	}

	[dir="ltr"] .ltr\:sm\:text-left {
		text-align: left;
	}

	[dir="rtl"] .rtl\:sm\:text-right {
		text-align: right;
	}
}
@media (min-width: 768px) {

	.md\:left-6 {
		left: 1.5rem;
	}

	.md\:right-6 {
		right: 1.5rem;
	}

	.md\:col-span-2 {
		grid-column: span 2 / span 2;
	}

	.md\:col-start-2 {
		grid-column-start: 2;
	}

	.md\:m-auto {
		margin: auto;
	}

	.md\:mx-32 {
		margin-left: 8rem;
		margin-right: 8rem;
	}

	.md\:mx-auto {
		margin-left: auto;
		margin-right: auto;
	}

	.md\:my-8 {
		margin-top: 2rem;
		margin-bottom: 2rem;
	}

	.md\:mt-16 {
		margin-top: 4rem;
	}

	.md\:mb-12 {
		margin-bottom: 3rem;
	}

	.md\:mb-0 {
		margin-bottom: 0px;
	}

	.md\:mt-0 {
		margin-top: 0px;
	}

	.md\:ml-0 {
		margin-left: 0px;
	}

	.md\:mr-0 {
		margin-right: 0px;
	}

	.md\:block {
		display: block;
	}

	.md\:flex {
		display: flex;
	}

	.md\:grid {
		display: grid;
	}

	.md\:min-h-\[500px\] {
		min-height: 500px;
	}

	.md\:w-1\/2 {
		width: 50%;
	}

	.md\:w-6\/12 {
		width: 50%;
	}

	.md\:w-4\/12 {
		width: 33.333333%;
	}

	.md\:w-8\/12 {
		width: 66.666667%;
	}

	.md\:max-w-\[80vw\] {
		max-width: 80vw;
	}

	.md\:grid-cols-4 {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.md\:grid-cols-3 {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.md\:grid-cols-2 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.md\:grid-cols-6 {
		grid-template-columns: repeat(6, minmax(0, 1fr));
	}

	.md\:justify-center {
		justify-content: center;
	}

	.md\:gap-4 {
		gap: 1rem;
	}

	.md\:gap-0 {
		gap: 0px;
	}

	.md\:gap-12 {
		gap: 3rem;
	}

	.md\:gap-6 {
		gap: 1.5rem;
	}

	.md\:border-l-0 {
		border-left-width: 0px;
	}

	.md\:border-t {
		border-top-width: 1px;
	}

	.md\:p-16 {
		padding: 4rem;
	}

	.md\:p-12 {
		padding: 3rem;
	}

	.md\:px-32 {
		padding-left: 8rem;
		padding-right: 8rem;
	}

	.md\:px-36 {
		padding-left: 9rem;
		padding-right: 9rem;
	}

	.md\:py-24 {
		padding-top: 6rem;
		padding-bottom: 6rem;
	}

	.md\:px-8 {
		padding-left: 2rem;
		padding-right: 2rem;
	}

	.md\:pt-36 {
		padding-top: 9rem;
	}

	.md\:pt-0 {
		padding-top: 0px;
	}

	.md\:text-3xl {
		font-size: 1.875rem;
		line-height: 2.25rem;
	}

	.md\:text-4xl {
		font-size: 2.25rem;
		line-height: 2.5rem;
	}

	.md\:text-2xl {
		font-size: 1.5rem;
		line-height: 2rem;
	}

	.md\:text-base {
		font-size: 1rem;
		line-height: 1.5rem;
	}

	.md\:text-lg {
		font-size: 1.125rem;
		line-height: 1.75rem;
	}
}
@media (min-width: 1024px) {

	.lg\:col-span-2 {
		grid-column: span 2 / span 2;
	}

	.lg\:my-32 {
		margin-top: 8rem;
		margin-bottom: 8rem;
	}

	.lg\:my-16 {
		margin-top: 4rem;
		margin-bottom: 4rem;
	}

	.lg\:mx-0 {
		margin-left: 0px;
		margin-right: 0px;
	}

	.lg\:mb-0 {
		margin-bottom: 0px;
	}

	.lg\:mt-8 {
		margin-top: 2rem;
	}

	.lg\:block {
		display: block;
	}

	.lg\:inline-block {
		display: inline-block;
	}

	.lg\:flex {
		display: flex;
	}

	.lg\:hidden {
		display: none;
	}

	.lg\:w-6\/12 {
		width: 50%;
	}

	.lg\:w-4\/12 {
		width: 33.333333%;
	}

	.lg\:w-1\/3 {
		width: 33.333333%;
	}

	.lg\:w-2\/3 {
		width: 66.666667%;
	}

	.lg\:w-3\/12 {
		width: 25%;
	}

	.lg\:grid-cols-2 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.lg\:grid-cols-4 {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.lg\:grid-cols-3 {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.lg\:flex-row {
		flex-direction: row;
	}

	.lg\:items-center {
		align-items: center;
	}

	.lg\:gap-16 {
		gap: 4rem;
	}

	.lg\:gap-4 {
		gap: 1rem;
	}

	.lg\:space-x-12 > :not([hidden]) ~ :not([hidden]) {
		--tw-space-x-reverse: 0;
		margin-right: calc(3rem * var(--tw-space-x-reverse));
		margin-left: calc(3rem * calc(1 - var(--tw-space-x-reverse)));
	}

	.lg\:p-6 {
		padding: 1.5rem;
	}

	.lg\:p-12 {
		padding: 3rem;
	}

	.lg\:py-16 {
		padding-top: 4rem;
		padding-bottom: 4rem;
	}

	.lg\:px-8 {
		padding-left: 2rem;
		padding-right: 2rem;
	}

	.lg\:py-20 {
		padding-top: 5rem;
		padding-bottom: 5rem;
	}

	.lg\:py-4 {
		padding-top: 1rem;
		padding-bottom: 1rem;
	}

	.lg\:pt-0 {
		padding-top: 0px;
	}

	.lg\:text-left {
		text-align: left;
	}

	.lg\:text-2xl {
		font-size: 1.5rem;
		line-height: 2rem;
	}

	.lg\:text-5xl {
		font-size: 3rem;
		line-height: 1;
	}

	.lg\:text-xl {
		font-size: 1.25rem;
		line-height: 1.75rem;
	}
}
@media (min-width: 1280px) {

	.xl\:grid-cols-3 {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.xl\:grid-cols-4 {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.xl\:p-12 {
		padding: 3rem;
	}

	.xl\:py-24 {
		padding-top: 6rem;
		padding-bottom: 6rem;
	}
}