
.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  touch-action: none;
  -moz-user-select: none;
  user-select: none;
  box-sizing: border-box;
}
.noUi-target {
  position: relative;
  margin: 0px 20px 0px 10px;
}
.noUi-base,
.noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
/* Wrapper for all connect elements.
*/
.noUi-connects {
  overflow: hidden;
  z-index: 0;
}
.noUi-connect,
.noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  -webkit-transform-style: preserve-3d;
  transform-origin: 0 0;
  transform-style: flat;
}
/* Offset direction
*/
.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
  left: 0;
  right: auto;
}
/* Give origins 0 height/width so they don't interfere with clicking the
* connect elements.
*/
.noUi-vertical .noUi-origin {
  top: -100%;
  width: 0;
}
.noUi-horizontal .noUi-origin {
  height: 0;
}
.noUi-handle {
  backface-visibility: hidden;
  position: absolute;
}
.noUi-touch-area {
  height: 100%;
  width: 100%;
}
.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
  transition: transform 0.3s;
}
.noUi-state-drag * {
  cursor: inherit !important;
}
/* Slider size and handle placement;
*/
.noUi-horizontal {
  height: 5px;
}
.noUi-horizontal .noUi-handle {
  width: 22px;
  height: 22px;
  right: -17px;
  top: -10px;
  border-radius: 50px;
  cursor: pointer;
}
.noUi-vertical {
  width: 18px;
}
.noUi-vertical .noUi-handle {
  width: 28px;
  height: 34px;
  right: -6px;
  bottom: -17px;
}
.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
  left: -17px;
  right: auto;
}
/* Styling;
* Giving the connect element a border radius causes issues with using transform: scale
*/
.noUi-target {
  background: #f1f1f1;
  border-radius: 4px;
  cursor: pointer;
  /*
  border: 1px solid #D3D3D3;
  box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB;
  */
}
.noUi-connects {
  border-radius: 3px;
}
.noUi-connect {
  background: #cf9190;
}
/* Handles and cursors;
*/
.noUi-draggable {
  cursor: ew-resize;
}
.noUi-vertical .noUi-draggable {
  cursor: ns-resize;
}
.noUi-handle {
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #FFF;
  cursor: default;
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #EBEBEB, 0 3px 6px -3px #BBB;
}
.noUi-active {
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #DDD, 0 3px 6px -3px #BBB;
}
/* Handle stripes;
*/
/*
.noUi-handle:before,
.noUi-handle:after {
  content: "";
  display: block;
  position: absolute;
  height: 14px;
  width: 1px;
  background: #E8E7E6;
  left: 14px;
  top: 6px;
}
*/
.noUi-handle:after {
  left: 17px;
}
.noUi-vertical .noUi-handle:before,
.noUi-vertical .noUi-handle:after {
  width: 14px;
  height: 1px;
  left: 6px;
  top: 14px;
}
.noUi-vertical .noUi-handle:after {
  top: 17px;
}
/* Disabled state;
*/
[disabled] .noUi-connect {
  background: #B8B8B8;
}
[disabled].noUi-target,
[disabled].noUi-handle,
[disabled] .noUi-handle {
  cursor: not-allowed;
}
/* Base;
*
*/
.noUi-pips,
.noUi-pips * {
  box-sizing: border-box;
}
.noUi-pips {
  position: absolute;
  color: #999;
}
/* Values;
*
*/
.noUi-value {
  position: absolute;
  white-space: nowrap;
  text-align: center;
}
.noUi-value-sub {
  color: #ccc;
  font-size: 10px;
}
/* Markings;
*
*/
.noUi-marker {
  position: absolute;
  background: #CCC;
}
.noUi-marker-sub {
  background: #AAA;
}
.noUi-marker-large {
  background: #AAA;
}
/* Horizontal layout;
*
*/
.noUi-pips-horizontal {
  padding: 10px 0;
  height: 80px;
  top: 100%;
  left: 0;
  width: 100%;
}
.noUi-value-horizontal {
  transform: translate(-50%, 50%);
}
.noUi-rtl .noUi-value-horizontal {
  transform: translate(50%, 50%);
}
.noUi-marker-horizontal.noUi-marker {
  margin-left: -1px;
  width: 2px;
  height: 5px;
}
.noUi-marker-horizontal.noUi-marker-sub {
  height: 10px;
}
.noUi-marker-horizontal.noUi-marker-large {
  height: 15px;
}
/* Vertical layout;
*
*/
.noUi-pips-vertical {
  padding: 0 10px;
  height: 100%;
  top: 0;
  left: 100%;
}
.noUi-value-vertical {
  transform: translate(0, -50%);
  padding-left: 25px;
}
.noUi-rtl .noUi-value-vertical {
  transform: translate(0, 50%);
}
.noUi-marker-vertical.noUi-marker {
  width: 5px;
  height: 2px;
  margin-top: -1px;
}
.noUi-marker-vertical.noUi-marker-sub {
  width: 10px;
}
.noUi-marker-vertical.noUi-marker-large {
  width: 15px;
}
.noUi-tooltip {
  display: block;
  position: absolute;
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #fff;
  color: #000;
  padding: 5px;
  text-align: center;
  white-space: nowrap;
}
.noUi-horizontal .noUi-tooltip {
  transform: translate(-50%, 0);
  left: 50%;
  bottom: 120%;
}
.noUi-vertical .noUi-tooltip {
  transform: translate(0, -50%);
  top: 50%;
  right: 120%;
}
.noUi-horizontal .noUi-origin > .noUi-tooltip {
  transform: translate(50%, 0);
  left: auto;
  bottom: 10px;
}
.noUi-vertical .noUi-origin > .noUi-tooltip {
  transform: translate(0, -18px);
  top: auto;
  right: 28px;
}

:root {
  --main: #f9fafb;
  --secondary: #055983;
  --lightsecondary: #8fd7fb;
  --dark: #1d1d1f;
  --gray: #c4c4c4;
  --red: #dc3545;
  --lightgray: #f5f5f5;
  --green: #3bb509;
  --border: #ced4da;
  --pink: #ecdede;
  --checkoutbg: #f4f4f4;
  --white: #ffffff;
  --black: #1d1d1f;
  --extraTiny: 9px;
  --tiny: 11px;
  --small: 13px;
  --base: 14px;
  --h6: 16px;
  --h5: 18px;
  --h4: 20px;
  --h3: 23px;
  --h2: 26px;
  --h1: 34px;
  --huge: 42px;
}

/*! 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;
	-o-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] {
	-webkit-text-decoration: underline dotted;
	        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: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 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::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1;
  color: #a1a1aa;
}

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

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));
  border-color: currentColor;
  --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;
}

[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{
  -webkit-appearance: none;
     -moz-appearance: none;
          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;
  --tw-shadow: 0 0 #0000;
}

[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);
  border-color: #2563eb;
}

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

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;
  -webkit-print-color-adjust: exact;
          color-adjust: exact;
}

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

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

[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);
}

[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;
}
.glide {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}
.glide * {
  box-sizing: inherit;
}
.glide__track {
  overflow: hidden;
}
.glide__slides {
  position: relative;
  width: 100%;
  list-style: none;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  touch-action: pan-Y;
  overflow: hidden;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
}
.glide__slides--dragging {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.glide__slide {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  white-space: normal;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}
.glide__slide a {
  -webkit-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.glide__arrows {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.glide__bullets {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.glide--rtl {
  direction: rtl;
}

@keyframes awn-fade-in {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes awn-fade-out {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes awn-slide-right {
  0% {
    opacity: 0;
    left: 100%;
  }
  to {
    opacity: 1;
    left: 0;
  }
}
@keyframes awn-slide-left {
  0% {
    opacity: 0;
    right: 100%;
  }
  to {
    opacity: 1;
    right: 0;
  }
}
@keyframes awn-bar {
  0% {
    right: 100%;
  }
  to {
    right: 0;
  }
}
.awn-popup-loading-dots,
.awn-popup-loading-dots:after,
.awn-popup-loading-dots:before {
  border-radius: 50%;
  width: 6px;
  height: 6px;
  animation-fill-mode: both;
  background: #fff;
  animation: awn-loading-dots 1s ease-in-out infinite;
}

.awn-popup-loading-dots {
  position: relative;
  margin-left: 24px;
  display: inline-block;
  color: #fff;
  animation-delay: -0.16s;
}

.awn-popup-loading-dots:after,
.awn-popup-loading-dots:before {
  content: "";
  position: absolute;
  top: 0;
}

.awn-popup-loading-dots:before {
  left: -16px;
  animation-delay: -0.32s;
}

.awn-popup-loading-dots:after {
  left: 16px;
}

@keyframes awn-loading-dots {
  0%, 80%, to {
    box-shadow: 0 0 0 0;
  }
  40% {
    box-shadow: 0 0 0 2px;
  }
}
#awn-popup-wrapper {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.7);
  z-index: 99999;
  opacity: 0;
  animation-name: awn-fade-in;
  animation-timing-function: ease-out;
  animation-fill-mode: both;
}

#awn-popup-wrapper.awn-hiding {
  animation-name: awn-fade-out;
}

#awn-popup-wrapper .awn-popup-body {
  position: relative;
  border-radius: 6px;
  word-break: break-word;
  background: #fff;
  padding: 24px;
  min-width: 320px;
  font-size: 14px;
  max-width: 500px;
}

#awn-popup-wrapper .awn-popup-body.awn-popup-confirm {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#awn-popup-wrapper .awn-popup-body.awn-popup-confirm .fa {
  font-size: 44px;
  color: #c26700;
}

#awn-popup-wrapper .awn-popup-body.awn-popup-async-block {
  background: transparent;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

#awn-popup-wrapper .awn-popup-title {
  font-size: 18px;
  font-weight: 600;
  margin-top: 8px;
}

#awn-popup-wrapper .awn-buttons {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

#awn-popup-wrapper .awn-buttons .awn-btn {
  border-radius: 4px;
  border: 0;
  font-weight: 500;
  transition: background 0.2s linear;
  font-size: 14px;
  width: 45%;
  line-height: 32px;
  color: #fff;
}

#awn-popup-wrapper .awn-buttons-1 .awn-btn {
  width: 100%;
}

#awn-popup-wrapper .awn-buttons .awn-btn-success {
  background: #DC2626;
}

#awn-popup-wrapper .awn-buttons .awn-btn-success:hover {
  background: #b42119;
}

#awn-popup-wrapper .awn-buttons .awn-btn-cancel {
  border: 1px solid #d0d2d6;
  color: #1d1d1f;
}

#awn-popup-wrapper .awn-buttons .awn-btn-cancel:hover {
  background: #d0d2d6;
}

#awn-toast-container {
  position: fixed;
  z-index: 99998;
  top: 0px;
  left: 24px;
  box-sizing: border-box;
}

#awn-toast-container.awn-top-left,
#awn-toast-container.awn-top-right {
  top: 24px;
  bottom: auto;
}

#awn-toast-container.awn-top-left .awn-toast:first-child,
#awn-toast-container.awn-top-right .awn-toast:first-child {
  margin-top: 16px;
}

#awn-toast-container.awn-bottom-left,
#awn-toast-container.awn-top-left {
  left: 24px;
  right: auto;
}

#awn-toast-container.awn-bottom-left .awn-toast,
#awn-toast-container.awn-top-left .awn-toast {
  right: 100%;
  animation-name: awn-slide-left;
}

#awn-toast-container.awn-bottom-left .awn-toast.awn-hiding,
#awn-toast-container.awn-top-left .awn-toast.awn-hiding {
  right: 0;
}

#awn-toast-container.awn-bottom-right .awn-toast,
#awn-toast-container.awn-top-right .awn-toast {
  left: 100%;
  animation-name: awn-slide-right;
}

#awn-toast-container.awn-bottom-right .awn-toast.awn-hiding,
#awn-toast-container.awn-top-right .awn-toast.awn-hiding {
  left: 0;
}

.awn-toast {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  opacity: 0;
  width: 320px;
  background: #ebebeb;
  margin-top: 16px;
  border-radius: 6px;
  color: grey;
  font-size: 14px;
  animation-timing-function: linear;
  animation-fill-mode: both;
}

.awn-toast-content {
  word-break: break-word;
}

.awn-toast-label {
  display: block;
  text-transform: uppercase;
  color: grey;
  font-size: 18px;
}

.awn-toast-icon {
  position: absolute;
  right: 16px;
  top: 6px;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.awn-toast-icon .fa {
  font-size: 44px;
  color: grey;
}

.awn-toast-wrapper {
  padding: 22px 88px 16px 16px;
  border: 2px solid #d1d1d1;
  border-radius: 6px;
}

.awn-toast-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
}

.awn-toast-progress-bar:after {
  content: " ";
  background: grey;
  position: absolute;
  width: 100%;
  right: 100%;
  top: 0;
  height: 6px;
  animation-name: awn-bar;
  animation-duration: inherit;
  animation-timing-function: linear;
  animation-fill-mode: both;
}

.awn-toast.awn-toast-progress-bar-paused .awn-toast-progress-bar:after {
  animation-play-state: paused;
}

.awn-toast.awn-hiding {
  animation-name: awn-fade-out !important;
}

.awn-toast.awn-toast-success {
  background: #055983;
  color: #ffffff;
}

.awn-toast.awn-toast-success .awn-toast-wrapper {
  border-color: #0a557a;
}

.awn-toast.awn-toast-success .fa,
.awn-toast.awn-toast-success b {
  color: #40871d;
}

.awn-toast.awn-toast-success .awn-toast-progress-bar:after {
  background: #ffffff;
}

.awn-toast.awn-toast-info {
  background: #d3ebf8;
  color: #1c76a6;
}

.awn-toast.awn-toast-info .awn-toast-wrapper {
  border-color: #9fd3ef;
}

.awn-toast.awn-toast-info .fa,
.awn-toast.awn-toast-info b {
  color: #1c76a6;
}

.awn-toast.awn-toast-info .awn-toast-progress-bar:after {
  background: #1c76a6;
}

.awn-toast.awn-toast-alert {
  background: #f8d5d3;
  color: #a92019;
}

.awn-toast.awn-toast-alert .awn-toast-wrapper {
  border-color: #f0a29d;
}

.awn-toast.awn-toast-alert .fa,
.awn-toast.awn-toast-alert b {
  color: #a92019;
}

.awn-toast.awn-toast-alert .awn-toast-progress-bar:after {
  background: #a92019;
}

.awn-toast.awn-toast-warning {
  background: #ffe7cc;
  color: #c26700;
}

.awn-toast.awn-toast-warning .awn-toast-wrapper {
  border-color: #ffc480;
}

.awn-toast.awn-toast-warning .fa,
.awn-toast.awn-toast-warning b {
  color: #c26700;
}

.awn-toast.awn-toast-warning .awn-toast-progress-bar:after {
  background: #c26700;
}

[class^=awn-] {
  box-sizing: border-box;
}

/*! PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*
	Styles for basic PhotoSwipe functionality (sliding area, open/close transitions)
*/
/* pswp = photoswipe */
.pswp {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  touch-action: none;
  z-index: 1500;
  -webkit-text-size-adjust: 100%;
  /* create separate layer, to avoid paint on window.onscroll in webkit/blink */
  -webkit-backface-visibility: hidden;
  outline: none;
}

.pswp * {
  box-sizing: border-box;
}

.pswp img {
  max-width: none;
}

/* style is added when JS option showHideOpacity is set to true */
.pswp--animate_opacity {
  /* 0.001, because opacity:0 doesn't trigger Paint action, which causes lag at start of transition */
  opacity: 0.001;
  will-change: opacity;
  /* for open/close transition */
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp--open {
  display: block;
}

.pswp--zoom-allowed .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.pswp--zoomed-in .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab;
}

.pswp--dragging .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}

/*
	Background is added as a separate element.
	As animating opacity is much faster than animating rgba() background-color.
*/
.pswp__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  will-change: opacity;
}

.pswp__scroll-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.pswp__container,
.pswp__zoom-wrap {
  touch-action: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.pswp__zoom-wrap {
  position: absolute;
  width: 100%;
  transform-origin: left top;
  /* for open/close transition */
  transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp__bg {
  will-change: opacity;
  /* for open/close transition */
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp--animated-in .pswp__bg,
.pswp--animated-in .pswp__zoom-wrap {
  transition: none;
}

.pswp__container,
.pswp__zoom-wrap {
  -webkit-backface-visibility: hidden;
}

.pswp__item {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
}

.pswp__img {
  position: absolute;
  width: auto;
  height: auto;
  top: 0;
  left: 0;
}

/*
	stretched thumbnail or div placeholder element (see below)
	style is added to avoid flickering in webkit/blink when layers overlap
*/
.pswp__img--placeholder {
  -webkit-backface-visibility: hidden;
}

/*
	div element that matches size of large image
	large image loads on top of it
*/
.pswp__img--placeholder--blank {
  background: #222;
}

.pswp--ie .pswp__img {
  width: 100% !important;
  height: auto !important;
  left: 0;
  top: 0;
}

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  margin-top: -8px;
  color: #CCC;
}

.pswp__error-msg a {
  color: #CCC;
  text-decoration: underline;
}

/*! PhotoSwipe Default UI CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*

	Contents:

	1. Buttons
	2. Share modal and links
	3. Index indicator ("1 of X" counter)
	4. Caption
	5. Loading indicator
	6. Additional styles (root element, top bar, idle state, hidden state, etc.)

*/
/*

	1. Buttons

 */
/* <button> css reset */
.pswp__button {
  width: 44px;
  height: 44px;
  position: relative;
  background: none;
  cursor: pointer;
  overflow: visible;
  -webkit-appearance: none;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  float: right;
  opacity: 0.75;
  transition: opacity 0.2s;
  box-shadow: none;
}

.pswp__button:focus, .pswp__button:hover {
  opacity: 1;
}

.pswp__button:active {
  outline: none;
  opacity: 0.9;
}

.pswp__button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* pswp__ui--over-close class it added when mouse is over element that should close gallery */
.pswp__ui--over-close .pswp__button--close {
  opacity: 1;
}

.pswp__button,
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  background: url(default-skin.png) 0 0 no-repeat;
  background-size: 264px 88px;
  width: 44px;
  height: 44px;
}

@media (-webkit-min-device-pixel-ratio: 1.1), (-webkit-min-device-pixel-ratio: 1.09375), (min-resolution: 105dpi), (min-resolution: 1.1dppx) {
  /* Serve SVG sprite if browser supports SVG and resolution is more than 105dpi */
  .pswp--svg .pswp__button,
  .pswp--svg .pswp__button--arrow--left:before,
  .pswp--svg .pswp__button--arrow--right:before {
    background-image: url(default-skin.svg);
  }
  .pswp--svg .pswp__button--arrow--left,
  .pswp--svg .pswp__button--arrow--right {
    background: none;
  }
}
.pswp__button--close {
  background-position: 0 -44px;
}

.pswp__button--share {
  background-position: -44px -44px;
}

.pswp__button--fs {
  display: none;
}

.pswp--supports-fs .pswp__button--fs {
  display: block;
}

.pswp--fs .pswp__button--fs {
  background-position: -44px 0;
}

.pswp__button--zoom {
  display: none;
  background-position: -88px 0;
}

.pswp--zoom-allowed .pswp__button--zoom {
  display: block;
}

.pswp--zoomed-in .pswp__button--zoom {
  background-position: -132px 0;
}

/* no arrows on touch screens */
.pswp--touch .pswp__button--arrow--left,
.pswp--touch .pswp__button--arrow--right {
  visibility: hidden;
}

/*
	Arrow buttons hit area
	(icon is added to :before pseudo-element)
*/
.pswp__button--arrow--left,
.pswp__button--arrow--right {
  background: none;
  top: 50%;
  margin-top: -50px;
  width: 70px;
  height: 100px;
  position: absolute;
}

.pswp__button--arrow--left {
  left: 0;
}

.pswp__button--arrow--right {
  right: 0;
}

.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  content: "";
  top: 35px;
  background-color: rgba(0, 0, 0, 0.3);
  height: 30px;
  width: 32px;
  position: absolute;
}

.pswp__button--arrow--left:before {
  left: 6px;
  background-position: -138px -44px;
}

.pswp__button--arrow--right:before {
  right: 6px;
  background-position: -94px -44px;
}

/*

	2. Share modal/popup and links

 */
.pswp__counter,
.pswp__share-modal {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.pswp__share-modal {
  display: block;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 10px;
  position: absolute;
  z-index: 1600;
  opacity: 0;
  transition: opacity 0.25s ease-out;
  -webkit-backface-visibility: hidden;
  will-change: opacity;
}

.pswp__share-modal--hidden {
  display: none;
}

.pswp__share-tooltip {
  z-index: 1620;
  position: absolute;
  background: #FFF;
  top: 56px;
  border-radius: 2px;
  display: block;
  width: auto;
  right: 44px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  transform: translateY(6px);
  transition: transform 0.25s;
  -webkit-backface-visibility: hidden;
  will-change: transform;
}

.pswp__share-tooltip a {
  display: block;
  padding: 8px 12px;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  line-height: 18px;
}

.pswp__share-tooltip a:hover {
  text-decoration: none;
  color: #000;
}

.pswp__share-tooltip a:first-child {
  /* round corners on the first/last list item */
  border-radius: 2px 2px 0 0;
}

.pswp__share-tooltip a:last-child {
  border-radius: 0 0 2px 2px;
}

.pswp__share-modal--fade-in {
  opacity: 1;
}

.pswp__share-modal--fade-in .pswp__share-tooltip {
  transform: translateY(0);
}

/* increase size of share links on touch devices */
.pswp--touch .pswp__share-tooltip a {
  padding: 16px 12px;
}

a.pswp__share--facebook:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: -12px;
  right: 15px;
  border: 6px solid transparent;
  border-bottom-color: #FFF;
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  pointer-events: none;
}

a.pswp__share--facebook:hover {
  background: #3E5C9A;
  color: #FFF;
}

a.pswp__share--facebook:hover:before {
  border-bottom-color: #3E5C9A;
}

a.pswp__share--twitter:hover {
  background: #55ACEE;
  color: #FFF;
}

a.pswp__share--pinterest:hover {
  background: #CCC;
  color: #CE272D;
}

a.pswp__share--download:hover {
  background: #DDD;
}

/*

	3. Index indicator ("1 of X" counter)

 */
.pswp__counter {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  font-size: 13px;
  line-height: 44px;
  color: #FFF;
  opacity: 0.75;
  padding: 0 10px;
}

/*

	4. Caption

 */
.pswp__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 44px;
}

.pswp__caption small {
  font-size: 11px;
  color: #BBB;
}

.pswp__caption__center {
  text-align: left;
  max-width: 420px;
  margin: 0 auto;
  font-size: 13px;
  padding: 10px;
  line-height: 20px;
  color: #CCC;
}

.pswp__caption--empty {
  display: none;
}

/* Fake caption element, used to calculate height of next/prev image */
.pswp__caption--fake {
  visibility: hidden;
}

/*

	5. Loading indicator (preloader)

	You can play with it here - http://codepen.io/dimsemenov/pen/yyBWoR

 */
.pswp__preloader {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -22px;
  opacity: 0;
  transition: opacity 0.25s ease-out;
  will-change: opacity;
  direction: ltr;
}

.pswp__preloader__icn {
  width: 20px;
  height: 20px;
  margin: 12px;
}

.pswp__preloader--active {
  opacity: 1;
}

.pswp__preloader--active .pswp__preloader__icn {
  /* We use .gif in browsers that don't support CSS animation */
  background: url(preloader.gif) 0 0 no-repeat;
}

.pswp--css_animation .pswp__preloader--active {
  opacity: 1;
}

.pswp--css_animation .pswp__preloader--active .pswp__preloader__icn {
  animation: clockwise 500ms linear infinite;
}

.pswp--css_animation .pswp__preloader--active .pswp__preloader__donut {
  animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
}

.pswp--css_animation .pswp__preloader__icn {
  background: none;
  opacity: 0.75;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 15px;
  top: 15px;
  margin: 0;
}

.pswp--css_animation .pswp__preloader__cut {
  /* 
  	The idea of animating inner circle is based on Polymer ("material") loading indicator 
  	 by Keanu Lee https://blog.keanulee.com/2014/10/20/the-tale-of-three-spinners.html
  */
  position: relative;
  width: 7px;
  height: 14px;
  overflow: hidden;
}

.pswp--css_animation .pswp__preloader__donut {
  box-sizing: border-box;
  width: 14px;
  height: 14px;
  border: 2px solid #FFF;
  border-radius: 50%;
  border-left-color: transparent;
  border-bottom-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  background: none;
  margin: 0;
}

@media screen and (max-width: 1024px) {
  .pswp__preloader {
    position: relative;
    left: auto;
    top: auto;
    margin: 0;
    float: right;
  }
}
@keyframes clockwise {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes donut-rotate {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(-140deg);
  }
  100% {
    transform: rotate(0);
  }
}
/*

	6. Additional styles

 */
/* root element of UI */
.pswp__ui {
  -webkit-font-smoothing: auto;
  visibility: visible;
  opacity: 1;
  z-index: 1550;
}

/* top black bar with buttons and "1 of X" indicator */
.pswp__top-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  width: 100%;
}

.pswp__caption,
.pswp__top-bar,
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  -webkit-backface-visibility: hidden;
  will-change: opacity;
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

/* pswp--has_mouse class is added only when two subsequent mousemove events occur */
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  visibility: visible;
}

.pswp__top-bar,
.pswp__caption {
  background-color: rgba(0, 0, 0, 0.5);
}

/* pswp__ui--fit class is added when main image "fits" between top bar and bottom bar (caption) */
.pswp__ui--fit .pswp__top-bar,
.pswp__ui--fit .pswp__caption {
  background-color: rgba(0, 0, 0, 0.3);
}

/* pswp__ui--idle class is added when mouse isn't moving for several seconds (JS option timeToIdle) */
.pswp__ui--idle .pswp__top-bar {
  opacity: 0;
}

.pswp__ui--idle .pswp__button--arrow--left,
.pswp__ui--idle .pswp__button--arrow--right {
  opacity: 0;
}

/*
	pswp__ui--hidden class is added when controls are hidden
	e.g. when user taps to toggle visibility of controls
*/
.pswp__ui--hidden .pswp__top-bar,
.pswp__ui--hidden .pswp__caption,
.pswp__ui--hidden .pswp__button--arrow--left,
.pswp__ui--hidden .pswp__button--arrow--right {
  /* Force paint & create composition layer for controls. */
  opacity: 0.001;
}

/* pswp__ui--one-slide class is added when there is just one item in gallery */
.pswp__ui--one-slide .pswp__button--arrow--left,
.pswp__ui--one-slide .pswp__button--arrow--right,
.pswp__ui--one-slide .pswp__counter {
  display: none;
}

.pswp__element--disabled {
  display: none !important;
}

.pswp--minimal--dark .pswp__top-bar {
  background: none;
}

a,
button,
input,
textarea,
select {
  outline: none;
}
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: none;
}

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

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

a:hover{
  color: var(--secondary);
}

[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{
  font-size: var(--base);
}

[x-cloak] {
  display: none !important;
}

body {
  font-family: "Open Sans", sans-serif;
  font-size: var(--base);
  color: var(--dark);
}

.glide__arrow {
  position: absolute;
  display: block;
  top: 50%;
  z-index: 2;
  color: white;
  text-transform: uppercase;
  padding: 0px;
  opacity: 1;
  cursor: pointer;
  transition: opacity 150ms ease, border 300ms ease-in-out;
  transform: translateY(-50%);
  line-height: 1;
}

.glide__arrow:focus {
  outline: none;
}

.glide__arrow:hover {
  border-color: white;
}

.glide__arrow--left {
  left: 2em;
}

.glide__arrow--right {
  right: 2em;
}

.glide__arrow--category--left {
  left: 0.2em;
}

.glide__arrow--category--right {
  right: 0.2em;
}

.glide__arrow--home--left {
  left: 1.2em;
}

.glide__arrow--home--right {
  right: 1.2em;
}

.glide__arrow--slideshow--left {
  left: 0.5em;
}

.glide__arrow--slideshow--right {
  right: 0.5em;
}

.glide__arrow--disabled {
  opacity: 0.33;
}
@sreen md {
  .glide__arrow--disabled {
    padding: 9px 12px;
  }
}

.glide__bullets {
  position: absolute;
  z-index: 2;
  bottom: 2em;
  left: 50%;
  display: inline-flex;
  list-style: none;
  transform: translateX(-50%);
}
.glide__bullets.glide__bullets__product {
  top: 1em;
  left: 5%;
  height: 10px;
}
.glide__bullets.glide__bullets__category {
  top: 10px;
  left: 40px;
  height: 10px;
}

.glide__bullet {
  background-color: rgba(255, 255, 255, 0.5);
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: all 300ms ease-in-out;
  cursor: pointer;
  line-height: 0;
  box-shadow: 0 0.25em 0.5em 0 rgba(0, 0, 0, 0.1);
  margin: 0 0.25em;
}
.glide__bullet.glide__bullet__product {
  width: 7px;
  height: 7px;
}
.glide__bullet.glide__bullet__category {
  width: 7px;
  height: 7px;
}

.glide__bullet:focus {
  outline: none;
}

.glide__bullet:hover, .glide__bullet:focus {
  border: 2px solid white;
  background-color: rgba(255, 255, 255, 0.5);
}

.glide__bullet--active {
  background-color: white;
}

.glide--swipeable {
  cursor: pointer;
  cursor: -webkit-grab;
}

.glide--dragging {
  cursor: grabbing;
  cursor: -webkit-grabbing;
}

.glide__track, .glide__slides {
  height: 100% !important;
}

.glide__track, .glide__slides__category {
  height: auto !important;
}

.glide__slide__product {
  padding: 0px !important;
}
@media (min-width: 768px) {
  .glide__slide__product {
    padding: 0px 10px !important;
  }
}
.glide__slide__product img{
  height: 100%;
  width: 100%;
}
@media (min-width: 768px) {
  .glide__slide__product img{
    height: 540px;
  }
  .glide__slide__product img{
    width: 405px;
  }
}

.glide__slide__category img{
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px) {
  .glide__slide__category img{
    height: 464px;
  }
  .glide__slide__category img{
    width: 348px;
  }
}

.glide__slide__home{
  padding-left: 10px;
  padding-right: 10px;
}
.glide__slide__home img{
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px) {
  .glide__slide__home img{
    height: 464px;
  }
  .glide__slide__home img{
    width: 348px;
  }
}

.sticky-position {
  position: sticky;
  top: 0;
  transition: box-shadow 0.3s ease;
}

.sticky-shadow {
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.15);
}
@media (min-width: 768px) {
  .sticky-shadow {
    box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.15);
  }
}

.fixed-position-filters{
  position: fixed;
  bottom: 70px;
  z-index: 60;
  border-color: var(--secondary);
  background-color: var(--secondary);
  color: var(--white);
  transition: box-shadow 0.3s ease;
  border-color: #cf9190 !important;
}
.fixed-position-filters:hover{
  opacity: 0.9;
  color: #ffffff !important;
}

.animate-fixed-filters {
  transition: width 1s, height 1s, background-color 1s, transform 1s;
}

.sticky-shadow-bottom {
  box-shadow: 0 3px 28px 0 rgba(0, 0, 0, 0.15);
}

.outline-none-ring:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
  --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);
}

footer ul li{
  padding-bottom: 5px;
}

.bottom-gradient {
  content: "";
  position: absolute;
  bottom: 0px;
  display: block;
  width: 100%;
  height: 140px;
  background-image: linear-gradient(to top, rgba(29, 29, 31, 0.5) 50%, rgba(29, 29, 31, 0));
  border-radius: 0px 0px 8px 8px;
  z-index: 1;
}

.bottom-gradient-light {
  content: "";
  position: absolute;
  bottom: 0px;
  display: block;
  width: 100%;
  height: 140px;
  background-image: linear-gradient(to top, rgba(29, 29, 31, 0.25) 50%, rgba(29, 29, 31, 0));
  border-radius: 0px 0px 8px 8px;
  z-index: 1;
}

.bottom-gradient-menu {
  content: "";
  position: absolute;
  bottom: 0px;
  display: block;
  width: 100%;
  height: 140px;
  background-image: linear-gradient(to top, rgba(29, 29, 31, 0.5) 50%, rgba(29, 29, 31, 0));
  z-index: 1;
}

.cart-sidepanel-container {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
}

.category-container{
  margin-bottom: 60px;
  width: 100%;
}
@media (min-width: 1024px) {
  .category-container {
    width: calc(100% - 250px);
  }
}

.product-container-sides{
  width: 100%;
}
@media (min-width: 1024px) {
  .product-container-sides {
    width: calc((100% - 400px) / 2);
  }
}
@media (min-width: 1260px) {
  .product-container-sides {
    width: calc((100% - 600px) / 2);
  }
}

.filters ul.grid-filters{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}
.filters ul.grid-filters li{
  position: relative;
}
.filters ul.grid-filters li a{
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-width: 1px;
  border-color: var(--border);
  padding: 10px;
  font-weight: 500;
}
.filters ul.grid-filters li a.colors{
  justify-content: flex-start;
}
.filters ul.grid-filters li a:hover{
  border-color: var(--secondary);
}
.filters ul.grid-filters li a.active{
  border-color: var(--secondary);
}
.filters ul.grid-filters li .disabled-filter{
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  cursor: not-allowed;
  background-color: var(--border);
  opacity: 0.8;
}
.filters ul.link-filters{
  padding-left: 5px;
}
.filters ul.link-filters li{
  margin-top: 20px;
  margin-bottom: 20px;
  cursor: pointer;
  font-weight: 500;
}
.filters ul.link-filters li a{
  display: flex;
  align-items: center;
}
.filters ul.link-filters li a:hover:before {
  background: var(--secondary);
  border: 0.1rem solid var(--secondary);
}
.filters ul.link-filters li a.active:before {
  padding: 5px;
  background: var(--secondary);
  border: 0.1rem solid var(--secondary);
}
.filters ul.link-filters li a:before {
  content: "";
  display: inline-block;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border: 0.1rem solid #e5e7eb;
  background: #f9f9f9;
  margin-right: 8px;
}

.rotate-chevron-180 .chevron{
  --tw-rotate: 180deg;
  transform: var(--tw-transform);
}

.rotate-chevron-360 .chevron{
  --tw-rotate: 360;
  transform: var(--tw-transform);
}

@media (min-width: 1024px) {
  .block-important {
    display: block !important;
  }
}

.price-crossed{
  position: relative;
  font-size: var(--small);
}
.price-crossed:before {
  content: "";
  position: absolute;
  top: 47%;
  left: -4%;
  width: 108%;
  height: 1px;
  background-color: #121314;
}

.underlined {
  border-bottom: 1px solid #000;
}

.account-bg {
  background-color: var(--secondary);
  background-image: linear-gradient(to bottom, #dfd6d5 0%, var(--secondary) 1000px);
}

.account-sidebar{
  z-index: 2;
  width: 100%;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  border-left-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-color: var(--border);
  background-color: var(--white);
  padding-top: 10px;
  padding-bottom: 20px;
}

@media (min-width: 768px){
  .account-sidebar{
    border-style: none;
  }
}
.account-sidebar > div{
  border-left-width: 4px;
  border-color: var(--white);
  padding: 10px;
}
.account-sidebar > div:hover{
  border-left-width: 1px;
  border-left-width: 4px;
  border-color: var(--secondary);
  --tw-bg-opacity: 1;
  background-color: rgba(243, 243, 243, var(--tw-bg-opacity));
}
.account-sidebar > div.active{
  border-left-width: 1px;
  border-left-width: 4px;
  border-color: var(--secondary);
  --tw-bg-opacity: 1;
  background-color: rgba(243, 243, 243, var(--tw-bg-opacity));
}
.account-sidebar > div > a{
  display: block;
}

.breadcrumbs{
  padding-top: 5px;
  color: var(--white);
}
.breadcrumbs ol{
  display: flex;
  align-items: center;
}
.breadcrumbs ol li{
  margin-right: 10px;
}
.breadcrumbs ol li a, .breadcrumbs ol li span{
  font-size: var(--base);
  color: var(--white);
}
.breadcrumbs ol li a:hover, .breadcrumbs ol li span:hover{
  text-decoration: underline;
}

.custom-underline-2px {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.active_color {
  width: 18px !important;
  height: 18px !important;
  border: 2px solid var(--gray) !important;
}

.active_color_box {
  width: 12px !important;
  height: 12px !important;
}

.active_color_border_box_product {
  width: 24px !important;
  height: 24px !important;
}

.active_color_box_product {
  width: 20px !important;
  height: 20px !important;
}

#cookieNotice {
  width: 280px;
  bottom: 20px !important;
  right: 20px !important;
  left: initial !important;
  line-height: 20px !important;
  border: 1px solid var(--secondary);
  border-radius: 3px;
}
#cookieNotice .confirm {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100px !important;
  height: 25px !important;
  margin: 0 auto !important;
  margin-top: 10px !important;
}

.pswp__img {
  -o-object-fit: contain;
     object-fit: contain;
}

.size-guide-table{
  width: 100%;
  width: 1000px;
  border-width: 1px;
  border-color: var(--border);
}
@media (min-width: 1024px) {
  .size-guide-table{
    width: 100%;
  }
}
.size-guide-table tr th{
  background-color: var(--secondary);
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
  color: var(--white);
}
.size-guide-table tr td{
  border-bottom-width: 1px;
  border-color: var(--border);
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
}

.disable-add-to-cart {
  opacity: 0.4 !important;
}
.disable-add-to-cart:hover {
  opacity: 0.4 !important;
}

#cart-items{
  overflow-y: auto;
  height: calc(100vh - 340px);
}

.cart-free-shipping-bg{
  position: relative;
  height: 105px;
  --tw-bg-opacity: 1;
  background-color: rgba(238, 238, 238, var(--tw-bg-opacity));
}
.cart-free-shipping-bg:before {
  content: "";
  position: absolute;
  top: -0.8px;
  left: -100vh;
  background: #eee;
  width: 100vh;
  height: 105px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cart-free-shipping-bg:after {
  content: "";
  position: absolute;
  top: -0.8px;
  right: -100vh;
  background: #eee;
  width: 100vh;
  height: 105px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.hero-image-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #000;
  filter: alpha(opacity=40);
  opacity: 0.4;
  z-index: 100;
}

/* agorasti css */
.menu-sidepanel-container {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  z-index: 2;
}

.dropdown-content{
  position: absolute;
  top: 42px;
  left: 0;
  z-index: 2;
  width: 200px;
  background-color: var(--white);
  padding: 10px;
}

.dark .dropdown-content{
  border-width: 1px;
  border-color: var(--white);
  background-color: var(--black);
}

.dropdown-content {
  border-radius: 0.375rem;
  --tw-shadow: 0 10px 15px -3px rgba(0,0,0,0.1),0 4px 6px -2px rgba(0,0,0,0.1);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 transparent), var(--tw-ring-shadow, 0 0 transparent), var(--tw-shadow);
}
.dropdown-content ul li{
  margin-top: 10px;
}
.dropdown-content ul li:first-child{
  margin-top: 0;
}
.dropdown-content ul li a{
  display: flex;
}
.dark .dropdown-content ul li a{
  color: var(--white);
}
.dropdown-content ul li button{
  width: 100%;
  text-align: left;
}

.menu{
  margin-top: 2px;
  margin-left: 40px;
  display: none;
  justify-content: center;
}
@media (min-width: 1024px) {
  .menu{
    display: flex;
  }
}
.menu ul{
  display: flex;
}
.menu ul li{
  position: relative;
  margin-right: 20px;
}
.menu ul li:last-child{
  margin-right: 0;
}
.menu ul li a, .menu ul li div{
  cursor: pointer;
  font-size: var(--base);
}
.dark .menu ul li a, .dark .menu ul li div{
  background-color: var(--black);
}
@media (min-width: 1260px) {
  .menu ul li a, .menu ul li div{
    font-size: var(--h6);
  }
}
.menu ul li a.active, .menu ul li div.active{
  color: var(--secondary);
}
.dark .menu ul li a.active, .dark .menu ul li div.active{
  color: var(--white);
  text-decoration: underline;
}
.menu ul li .menu-dropdown{
  position: absolute;
  top: 42px;
  left: 0;
  z-index: 2;
  width: 250px;
  background-color: var(--white);
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 10px;
  border-radius: 0.275rem;
  box-shadow: 0 0 3px #ccc;
}
.menu ul li .menu-dropdown ul{
  display: block;
}
.menu ul li .menu-dropdown ul li{
  margin-right: 0;
  border-bottom-width: 1px;
  border-color: var(--border);
  padding-top: 15px;
  padding-bottom: 15px;
}
.menu ul li .menu-dropdown ul li:first-child{
  margin-top: 0;
}
.menu ul li .menu-dropdown ul li:last-child{
  border-style: none;
}
.menu ul li .menu-dropdown ul li a{
  display: flex;
  font-size: var(--base);
}
.menu ul li .menu-dropdown ul li button{
  width: 100%;
  text-align: left;
}

.mobile-menu{
  display: flex;
  justify-content: center;
}
.mobile-menu ul{
  width: 100%;
}
.mobile-menu ul li{
  position: relative;
  margin-bottom: 20px;
  text-align: center;
}
.mobile-menu ul li a, .mobile-menu ul li div{
  cursor: pointer;
  font-size: var(--h6);
}
.mobile-menu ul li a.active, .mobile-menu ul li div.active{
  color: var(--secondary);
}
.dark .mobile-menu ul li a.active, .dark .mobile-menu ul li div.active{
  color: var(--white);
  text-decoration: underline;
}
.mobile-menu ul li .menu-dropdown{
  z-index: 2;
  margin-top: 20px;
  width: 100%;
  --tw-bg-opacity: 1;
  background-color: rgba(245, 245, 245, var(--tw-bg-opacity));
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 10px;
  padding-right: 10px;
}
.dark .mobile-menu ul li .menu-dropdown{
  background-color: var(--black);
}
.mobile-menu ul li .menu-dropdown {
  box-shadow: 0 0 3px #ccc;
}
.mobile-menu ul li .menu-dropdown ul{
  display: block;
}
.mobile-menu ul li .menu-dropdown ul li{
  margin-bottom: 15px;
}
.mobile-menu ul li .menu-dropdown ul li a{
  display: flex;
  justify-content: center;
  font-size: var(--base);
}
.mobile-menu ul li .menu-dropdown ul li button{
  width: 100%;
  text-align: left;
}

.tax-bg {
  background-image: url("../images/home/tax-bg.jpg");
  background-color: #000;
  padding: 4.4rem 0;
  color: #fff;
  background-position: center bottom;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}

.tax-bg-image-bg {
  position: absolute;
  top: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  filter: alpha(opacity=80);
  opacity: 0.8;
}

.wcag-icon{
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 10;
  display: block;
  cursor: pointer;
  padding: 5px;
}
@media (min-width: 768px) {
  .wcag-icon{
    bottom: 50px;
  }
}

#enable-dark-mode:checked + label .switch-ball {
  background-color: white;
  transform: translateX(24px);
  transition: transform 0.3s linear;
}

.white .border-top-heading {
  border-bottom: 1px solid #ced4da !important;
}
.white .text-secondary, .white .text-lightsecondary {
  color: #1d1d1f !important;
}
.white .bg-secondary {
  background: #fff !important;
  color: #1d1d1f !important;
}
.white .bg-secondary .text-white {
  color: #1d1d1f !important;
}
.white .bg-secondary .breadcrumb-crumb span {
  color: #1d1d1f !important;
}
.white .bg-lightgray {
  background: #fff !important;
  color: #1d1d1f !important;
}
.white .bg-dark {
  background: #fff !important;
  color: #1d1d1f !important;
}
.white .bg-dark .text-lightsecondary {
  color: #1d1d1f !important;
}
.white .wcag-icon {
  background: #1d1d1f !important;
  color: #fff !important;
}
.white.hyperlinks a.breadcrumb-crumb span {
  color: #ffff00 !important;
}
.white #white-contrast{
  border-bottom-width: 1px;
  border-top-width: 1px;
  border-color: var(--border);
  background-color: var(--secondary);
  color: var(--white);
}

.dark #dark-contrast{
  border-bottom-width: 1px;
  border-top-width: 1px;
  border-color: var(--border);
  background-color: var(--secondary);
  color: var(--white);
}

.hyperlinks a {
  background: #1d1d1f !important;
  color: #ffff00 !important;
  text-decoration: underline !important;
}
.hyperlinks a.flex {
  display: inline-flex !important;
}
.hyperlinks a.text-secondary {
  color: #ffff00 !important;
}

.hyperlinks #hyperlinks{
  border-bottom-width: 1px;
  border-top-width: 1px;
  border-color: var(--border);
  background-color: var(--secondary);
  color: var(--white);
}

.legiblefont body {
  font-family: Arial, serif !important;
}
.legiblefont #legiblefont{
  border-bottom-width: 1px;
  border-top-width: 1px;
  border-color: var(--border);
  background-color: var(--secondary);
  color: var(--white);
}

.dyslexiafrienfly body {
  font-family: UDF, serif !important;
}
.dyslexiafrienfly #dyslexiafrienfly{
  border-bottom-width: 1px;
  border-top-width: 1px;
  border-color: var(--border);
  background-color: var(--secondary);
  color: var(--white);
}

.increasetext #increase-text{
  border-bottom-width: 1px;
  border-top-width: 1px;
  border-color: var(--border);
  background-color: var(--secondary);
  color: var(--white);
}

.decreasetext #decrease-text{
  border-bottom-width: 1px;
  border-top-width: 1px;
  border-color: var(--border);
  background-color: var(--secondary);
  color: var(--white);
}

footer ul li{
  margin-bottom: 5px;
}

.container{
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 640px){
  .container{
    max-width: 640px;
  }
}

@media (min-width: 768px){
  .container{
    max-width: 768px;
  }
}

@media (min-width: 1024px){
  .container{
    max-width: 1024px;
  }
}

@media (min-width: 1260px){
  .container{
    max-width: 1260px;
  }
}
.invisible{
  visibility: hidden;
}
.fixed{
  position: fixed;
}
.absolute{
  position: absolute;
}
.relative{
  position: relative;
}
.inset-0{
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.top-0{
  top: 0;
}
.right-0{
  right: 0;
}
.left-0{
  left: 0;
}
.bottom-0{
  bottom: 0;
}
.left-\[7px\]{
  left: 7px;
}
.top-\[15px\]{
  top: 15px;
}
.right-\[10px\]{
  right: 10px;
}
.top-\[40px\]{
  top: 40px;
}
.top-\[2px\]{
  top: 2px;
}
.top-\[-7px\]{
  top: -7px;
}
.left-\[-5px\]{
  left: -5px;
}
.top-\[1px\]{
  top: 1px;
}
.top-\[12px\]{
  top: 12px;
}
.right-\[-5px\]{
  right: -5px;
}
.bottom-\[10px\]{
  bottom: 10px;
}
.top-\[-1px\]{
  top: -1px;
}
.top-\[-2px\]{
  top: -2px;
}
.left-\[initial\]{
  left: initial;
}
.right-\[-18px\]{
  right: -18px;
}
.top-\[26px\]{
  top: 26px;
}
.top-\[20px\]{
  top: 20px;
}
.right-\[20px\]{
  right: 20px;
}
.top-\[5px\]{
  top: 5px;
}
.right-\[15px\]{
  right: 15px;
}
.right-\[5px\]{
  right: 5px;
}
.z-\[2\]{
  z-index: 2;
}
.z-\[100\]{
  z-index: 100;
}
.z-\[200\]{
  z-index: 200;
}
.z-\[3\]{
  z-index: 3;
}
.z-\[50\]{
  z-index: 50;
}
.z-\[90\]{
  z-index: 90;
}
.z-\[70\]{
  z-index: 70;
}
.z-\[10\]{
  z-index: 10;
}
.z-\[40\]{
  z-index: 40;
}
.z-50{
  z-index: 50;
}
.z-0{
  z-index: 0;
}
.z-10{
  z-index: 10;
}
.order-2{
  order: 2;
}
.order-1{
  order: 1;
}
.order-3{
  order: 3;
}
.my-20{
  margin-top: 20px;
  margin-bottom: 20px;
}
.mx-auto{
  margin-left: auto;
  margin-right: auto;
}
.my-30{
  margin-top: 30px;
  margin-bottom: 30px;
}
.mt-40{
  margin-top: 40px;
}
.mb-40{
  margin-bottom: 40px;
}
.mt-10{
  margin-top: 10px;
}
.mt-20{
  margin-top: 20px;
}
.mt-60{
  margin-top: 60px;
}
.mt-30{
  margin-top: 30px;
}
.mt-5{
  margin-top: 5px;
}
.mb-50{
  margin-bottom: 50px;
}
.mb-30{
  margin-bottom: 30px;
}
.mt-2{
  margin-top: 2px;
}
.mr-2{
  margin-right: 2px;
}
.ml-2{
  margin-left: 2px;
}
.mt-4{
  margin-top: 4px;
}
.ml-4{
  margin-left: 4px;
}
.mt-8{
  margin-top: 8px;
}
.ml-12{
  margin-left: 12px;
}
.-mt-px{
  margin-top: -1px;
}
.mr-10{
  margin-right: 10px;
}
.mb-5{
  margin-bottom: 5px;
}
.mb-2{
  margin-bottom: 2px;
}
.mb-4{
  margin-bottom: 4px;
}
.mb-80{
  margin-bottom: 80px;
}
.mb-20{
  margin-bottom: 20px;
}
.mr-8{
  margin-right: 8px;
}
.mb-90{
  margin-bottom: 90px;
}
.mb-35{
  margin-bottom: 35px;
}
.ml-10{
  margin-left: 10px;
}
.mt-15{
  margin-top: 15px;
}
.mr-20{
  margin-right: 20px;
}
.mr-15{
  margin-right: 15px;
}
.ml-5{
  margin-left: 5px;
}
.mb-\[54px\]{
  margin-bottom: 54px;
}
.mt-50{
  margin-top: 50px;
}
.mb-\[24px\]{
  margin-bottom: 24px;
}
.ml-15{
  margin-left: 15px;
}
.mt-6{
  margin-top: 6px;
}
.mt-3{
  margin-top: 3px;
}
.mb-10{
  margin-bottom: 10px;
}
.mr-5{
  margin-right: 5px;
}
.mt-45{
  margin-top: 45px;
}
.mr-3{
  margin-right: 3px;
}
.mt-\[50px\]{
  margin-top: 50px;
}
.-mr-2{
  margin-right: -2px;
}
.ml-20{
  margin-left: 20px;
}
.mt-80{
  margin-top: 80px;
}
.mt-\[23px\]{
  margin-top: 23px;
}
.mr-\[8px\]{
  margin-right: 8px;
}
.mt-100{
  margin-top: 100px;
}
.ml-3{
  margin-left: 3px;
}
.-ml-px{
  margin-left: -1px;
}
.mt-0{
  margin-top: 0;
}
.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;
}
.contents{
  display: contents;
}
.hidden{
  display: none;
}
.h-\[220px\]{
  height: 220px;
}
.h-300{
  height: 300px;
}
.h-50{
  height: 50px;
}
.h-25{
  height: 25px;
}
.h-5{
  height: 5px;
}
.h-8{
  height: 8px;
}
.h-16{
  height: 16px;
}
.h-15{
  height: 15px;
}
.h-20{
  height: 20px;
}
.h-\[33px\]{
  height: 33px;
}
.h-\[35px\]{
  height: 35px;
}
.h-full{
  height: 100%;
}
.h-30{
  height: 30px;
}
.h-80{
  height: 80px;
}
.h-\[34px\]{
  height: 34px;
}
.h-12{
  height: 12px;
}
.h-90{
  height: 90px;
}
.h-\[21px\]{
  height: 21px;
}
.h-px{
  height: 1px;
}
.h-\[160px\]{
  height: 160px;
}
.h-130{
  height: 130px;
}
.h-45{
  height: 45px;
}
.h-\[100vh\]{
  height: 100vh;
}
.h-\[0px\]{
  height: 0px;
}
.h-\[22px\]{
  height: 22px;
}
.h-18{
  height: 18px;
}
.h-\[29px\]{
  height: 29px;
}
.h-\[23px\]{
  height: 23px;
}
.h-40{
  height: 40px;
}
.h-\[17px\]{
  height: 17px;
}
.h-\[40px\]{
  height: 40px;
}
.h-10{
  height: 10px;
}
.h-4{
  height: 4px;
}
.h-6{
  height: 6px;
}
.h-200{
  height: 200px;
}
.h-\[19px\]{
  height: 19px;
}
.h-\[13px\]{
  height: 13px;
}
.h-\[16px\]{
  height: 16px;
}
.h-100{
  height: 100px;
}
.h-\[464px\]{
  height: 464px;
}
.h-14{
  height: 14px;
}
.min-h-screen{
  min-height: 100vh;
}
.min-h-\[100vh\]{
  min-height: 100vh;
}
.w-full{
  width: 100%;
}
.w-200{
  width: 200px;
}
.w-50{
  width: 50px;
}
.w-25{
  width: 25px;
}
.w-250{
  width: 250px;
}
.w-5{
  width: 5px;
}
.w-8{
  width: 8px;
}
.w-auto{
  width: auto;
}
.w-15{
  width: 15px;
}
.w-20{
  width: 20px;
}
.w-1\/2{
  width: 50%;
}
.w-\[150px\]{
  width: 150px;
}
.w-\[30px\]{
  width: 30px;
}
.w-\[13px\]{
  width: 13px;
}
.w-\[213px\]{
  width: 213px;
}
.w-\[87px\]{
  width: 87px;
}
.w-1\/4{
  width: 25%;
}
.w-30{
  width: 30px;
}
.w-12{
  width: 12px;
}
.w-0{
  width: 0;
}
.w-90{
  width: 90px;
}
.w-100{
  width: 100px;
}
.w-\[17px\]{
  width: 17px;
}
.w-\[22px\]{
  width: 22px;
}
.w-18{
  width: 18px;
}
.w-\[20px\]{
  width: 20px;
}
.w-120{
  width: 120px;
}
.w-\[14px\]{
  width: 14px;
}
.w-\[220px\]{
  width: 220px;
}
.w-\[172px\]{
  width: 172px;
}
.w-\[21px\]{
  width: 21px;
}
.w-px{
  width: 1px;
}
.w-\[15px\]{
  width: 15px;
}
.w-40{
  width: 40px;
}
.w-300{
  width: 300px;
}
.w-\[290px\]{
  width: 290px;
}
.w-\[100px\]{
  width: 100px;
}
.w-4{
  width: 4px;
}
.w-6{
  width: 6px;
}
.w-\[19px\]{
  width: 19px;
}
.w-\[16px\]{
  width: 16px;
}
.w-\[958px\]{
  width: 958px;
}
.w-150{
  width: 150px;
}
.w-1\/3{
  width: 33.333333%;
}
.w-14{
  width: 14px;
}
.w-10{
  width: 10px;
}
.flex-1{
  flex: 1 1 0%;
}
.flex-shrink-0{
  flex-shrink: 0;
}
.origin-top-left{
  transform-origin: top left;
}
.origin-top{
  transform-origin: top;
}
.origin-top-right{
  transform-origin: top right;
}
.-translate-x-full{
  --tw-translate-x: -100%;
  transform: var(--tw-transform);
}
.translate-x-full{
  --tw-translate-x: 100%;
  transform: var(--tw-transform);
}
.translate-x-0{
  --tw-translate-x: 0;
  transform: var(--tw-transform);
}
.-translate-y-full{
  --tw-translate-y: -100%;
  transform: var(--tw-transform);
}
.rotate-90{
  --tw-rotate: 90deg;
  transform: var(--tw-transform);
}
.rotate-180{
  --tw-rotate: 180deg;
  transform: var(--tw-transform);
}
.rotate-\[135deg\]{
  --tw-rotate: 135deg;
  transform: var(--tw-transform);
}
.-rotate-90{
  --tw-rotate: -90deg;
  transform: var(--tw-transform);
}
.scale-90{
  --tw-scale-x: .9;
  --tw-scale-y: .9;
  transform: var(--tw-transform);
}
.scale-100{
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  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;
}
.cursor-default{
  cursor: default;
}
.resize-none{
  resize: none;
}
.appearance-none{
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.grid-cols-1{
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.flex-col{
  flex-direction: column;
}
.flex-wrap{
  flex-wrap: wrap;
}
.content-center{
  align-content: center;
}
.items-end{
  align-items: flex-end;
}
.items-center{
  align-items: center;
}
.justify-start{
  justify-content: flex-start;
}
.justify-end{
  justify-content: flex-end;
}
.justify-center{
  justify-content: center;
}
.justify-between{
  justify-content: space-between;
}
.gap-15{
  gap: 15px;
}
.gap-x-15{
  -moz-column-gap: 15px;
       column-gap: 15px;
}
.gap-y-30{
  row-gap: 30px;
}
.gap-x-0{
  -moz-column-gap: 0;
       column-gap: 0;
}
.gap-y-0{
  row-gap: 0;
}
.space-x-8 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(8px * var(--tw-space-x-reverse));
  margin-left: calc(8px * calc(1 - var(--tw-space-x-reverse)));
}
.overflow-hidden{
  overflow: hidden;
}
.overflow-x-hidden{
  overflow-x: hidden;
}
.overflow-y-scroll{
  overflow-y: scroll;
}
.truncate{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.whitespace-nowrap{
  white-space: nowrap;
}
.break-all{
  word-break: break-all;
}
.rounded-md{
  border-radius: 5px;
}
.rounded-full{
  border-radius: 9999px;
}
.rounded-lg{
  border-radius: 8px;
}
.rounded{
  border-radius: 3px;
}
.rounded-sm{
  border-radius: 2px;
}
.rounded-t-md{
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.rounded-b-md{
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}
.rounded-l-md{
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.rounded-r-md{
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.rounded-tr-md{
  border-top-right-radius: 5px;
}
.border{
  border-width: 1px;
}
.border-\[6px\]{
  border-width: 6px;
}
.border-2{
  border-width: 2px;
}
.border-0{
  border-width: 0px;
}
.border-t{
  border-top-width: 1px;
}
.border-b{
  border-bottom-width: 1px;
}
.border-b-2{
  border-bottom-width: 2px;
}
.border-l-4{
  border-left-width: 4px;
}
.border-r{
  border-right-width: 1px;
}
.border-b-\[1px\]{
  border-bottom-width: 1px;
}
.border-l{
  border-left-width: 1px;
}
.border-dashed{
  border-style: dashed;
}
.border-none{
  border-style: none;
}
.border-border{
  border-color: var(--border);
}
.border-secondary{
  border-color: var(--secondary);
}
.border-white{
  border-color: var(--white);
}
.border-dark{
  border-color: var(--dark);
}
.border-transparent{
  border-color: transparent;
}
.border-gray{
  border-color: var(--gray);
}
.border-\[\#f2f4f7\]{
  --tw-border-opacity: 1;
  border-color: rgba(242, 244, 247, var(--tw-border-opacity));
}
.bg-secondary{
  background-color: var(--secondary);
}
.bg-lightgray{
  background-color: var(--lightgray);
}
.bg-green{
  background-color: var(--green);
}
.bg-white{
  background-color: var(--white);
}
.bg-dark{
  background-color: var(--dark);
}
.bg-red{
  background-color: var(--red);
}
.bg-checkoutbg{
  background-color: var(--checkoutbg);
}
.bg-border{
  background-color: var(--border);
}
.bg-main{
  background-color: var(--main);
}
.bg-pink{
  background-color: var(--pink);
}
.fill-current{
  fill: currentColor;
}
.object-contain{
  -o-object-fit: contain;
     object-fit: contain;
}
.object-cover{
  -o-object-fit: cover;
     object-fit: cover;
}
.p-10{
  padding: 10px;
}
.p-6{
  padding: 6px;
}
.p-20{
  padding: 20px;
}
.p-5{
  padding: 5px;
}
.p-2{
  padding: 2px;
}
.p-px{
  padding: 1px;
}
.px-10{
  padding-left: 10px;
  padding-right: 10px;
}
.py-50{
  padding-top: 50px;
  padding-bottom: 50px;
}
.py-70{
  padding-top: 70px;
  padding-bottom: 70px;
}
.py-4{
  padding-top: 4px;
  padding-bottom: 4px;
}
.px-6{
  padding-left: 6px;
  padding-right: 6px;
}
.py-10{
  padding-top: 10px;
  padding-bottom: 10px;
}
.py-20{
  padding-top: 20px;
  padding-bottom: 20px;
}
.px-15{
  padding-left: 15px;
  padding-right: 15px;
}
.px-30{
  padding-left: 30px;
  padding-right: 30px;
}
.py-5{
  padding-top: 5px;
  padding-bottom: 5px;
}
.py-\[8px\]{
  padding-top: 8px;
  padding-bottom: 8px;
}
.py-30{
  padding-top: 30px;
  padding-bottom: 30px;
}
.px-20{
  padding-left: 20px;
  padding-right: 20px;
}
.px-\[10px\]{
  padding-left: 10px;
  padding-right: 10px;
}
.px-5{
  padding-left: 5px;
  padding-right: 5px;
}
.py-\[23px\]{
  padding-top: 23px;
  padding-bottom: 23px;
}
.py-2{
  padding-top: 2px;
  padding-bottom: 2px;
}
.px-0{
  padding-left: 0;
  padding-right: 0;
}
.px-4{
  padding-left: 4px;
  padding-right: 4px;
}
.py-3{
  padding-top: 3px;
  padding-bottom: 3px;
}
.px-3{
  padding-left: 3px;
  padding-right: 3px;
}
.py-8{
  padding-top: 8px;
  padding-bottom: 8px;
}
.px-2{
  padding-left: 2px;
  padding-right: 2px;
}
.pt-8{
  padding-top: 8px;
}
.pt-55{
  padding-top: 55px;
}
.pb-60{
  padding-bottom: 60px;
}
.pt-10{
  padding-top: 10px;
}
.pt-20{
  padding-top: 20px;
}
.pt-80{
  padding-top: 80px;
}
.pt-30{
  padding-top: 30px;
}
.pr-30{
  padding-right: 30px;
}
.pr-10{
  padding-right: 10px;
}
.pb-5{
  padding-bottom: 5px;
}
.pb-30{
  padding-bottom: 30px;
}
.pt-6{
  padding-top: 6px;
}
.pb-20{
  padding-bottom: 20px;
}
.pb-10{
  padding-bottom: 10px;
}
.pl-20{
  padding-left: 20px;
}
.pl-3{
  padding-left: 3px;
}
.pt-2{
  padding-top: 2px;
}
.pr-4{
  padding-right: 4px;
}
.pr-20{
  padding-right: 20px;
}
.pl-5{
  padding-left: 5px;
}
.pb-3{
  padding-bottom: 3px;
}
.pt-4{
  padding-top: 4px;
}
.text-center{
  text-align: center;
}
.text-right{
  text-align: right;
}
.align-middle{
  vertical-align: middle;
}
.font-sans{
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.text-h5{
  font-size: var(--h5);
}
.text-h1{
  font-size: var(--h1);
}
.text-h6{
  font-size: var(--h6);
}
.text-h3{
  font-size: var(--h3);
}
.text-h2{
  font-size: var(--h2);
}
.text-h4{
  font-size: var(--h4);
}
.text-\[100px\]{
  font-size: 100px;
}
.text-tiny{
  font-size: var(--tiny);
}
.text-small{
  font-size: var(--small);
}
.text-extraTiny{
  font-size: var(--extraTiny);
}
.text-base{
  font-size: var(--base);
}
.text-\[30px\]{
  font-size: 30px;
}
.font-bold{
  font-weight: 700;
}
.font-semibold{
  font-weight: 600;
}
.font-medium{
  font-weight: 500;
}
.uppercase{
  text-transform: uppercase;
}
.capitalize{
  text-transform: capitalize;
}
.italic{
  font-style: italic;
}
.leading-7{
  line-height: 1.75rem;
}
.leading-5{
  line-height: 1.25rem;
}
.leading-\[1\.76\]{
  line-height: 1.76;
}
.text-white{
  color: var(--white);
}
.text-lightsecondary{
  color: var(--lightsecondary);
}
.text-secondary{
  color: var(--secondary);
}
.text-red{
  color: var(--red);
}
.text-green{
  color: var(--green);
}
.text-dark{
  color: var(--dark);
}
.text-gray{
  color: var(--gray);
}
.underline{
  text-decoration: underline;
}
.line-through{
  text-decoration: line-through;
}
.antialiased{
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.opacity-0{
  opacity: 0;
}
.opacity-100{
  opacity: 1;
}
.shadow{
  --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);
}
.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-none{
  --tw-shadow: 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.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-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;
}
.ring-1{
  --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);
}
.ring-black{
  --tw-ring-color: var(--black);
}
.ring-opacity-5{
  --tw-ring-opacity: 0.05;
}
.transition{
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.duration-\[550ms\]{
  transition-duration: 550ms;
}
.duration-\[700ms\]{
  transition-duration: 700ms;
}
.duration-\[280ms\]{
  transition-duration: 280ms;
}
.duration-\[220ms\]{
  transition-duration: 220ms;
}
.duration-300{
  transition-duration: 300ms;
}
.duration-150{
  transition-duration: 150ms;
}
.duration-\[650ms\]{
  transition-duration: 650ms;
}
.duration-500{
  transition-duration: 500ms;
}
.duration-200{
  transition-duration: 200ms;
}
.duration-75{
  transition-duration: 75ms;
}
.ease-linear{
  transition-timing-function: linear;
}
.ease-out{
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
.ease-in{
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}
.ease-in-out{
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.hover\:border-secondary:hover{
  border-color: var(--secondary);
}
.hover\:border-dark:hover{
  border-color: var(--dark);
}
.hover\:bg-white:hover{
  background-color: var(--white);
}
.hover\:bg-secondary:hover{
  background-color: var(--secondary);
}
.hover\:text-white:hover{
  color: var(--white);
}
.hover\:text-dark:hover{
  color: var(--dark);
}
.hover\:text-secondary:hover{
  color: var(--secondary);
}
.hover\:underline:hover{
  text-decoration: underline;
}
.hover\:opacity-\[0\.9\]:hover{
  opacity: 0.9;
}
.hover\:opacity-\[0\.8\]:hover{
  opacity: 0.8;
}
.hover\:opacity-\[0\.5\]:hover{
  opacity: 0.5;
}
.focus\:z-10:focus{
  z-index: 10;
}
.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);
}
.focus\:ring: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(3px + 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);
}
.dark .dark\:border-b{
  border-bottom-width: 1px;
}
.dark .dark\:border-white{
  border-color: var(--white);
}
.dark .dark\:bg-black{
  background-color: var(--black);
}
.dark .dark\:bg-white{
  background-color: var(--white);
}
.dark .dark\:text-white{
  color: var(--white);
}
.dark .dark\:text-dark{
  color: var(--dark);
}
.dark .dark\:text-secondary{
  color: var(--secondary);
}
.dark .dark\:underline{
  text-decoration: underline;
}
@media (min-width: 640px){
  .sm\:-my-px{
    margin-top: -1px;
    margin-bottom: -1px;
  }
  .sm\:ml-0{
    margin-left: 0;
  }
  .sm\:ml-10{
    margin-left: 10px;
  }
  .sm\:ml-6{
    margin-left: 6px;
  }
  .sm\:block{
    display: block;
  }
  .sm\:flex{
    display: flex;
  }
  .sm\:hidden{
    display: none;
  }
  .sm\:h-20{
    height: 20px;
  }
  .sm\:w-300{
    width: 300px;
  }
  .sm\:max-w-md{
    max-width: 768px;
  }
  .sm\:flex-1{
    flex: 1 1 0%;
  }
  .sm\:items-center{
    align-items: center;
  }
  .sm\:justify-start{
    justify-content: flex-start;
  }
  .sm\:justify-center{
    justify-content: center;
  }
  .sm\:justify-between{
    justify-content: space-between;
  }
  .sm\:rounded-lg{
    border-radius: 8px;
  }
  .sm\:px-6{
    padding-left: 6px;
    padding-right: 6px;
  }
  .sm\:px-10{
    padding-left: 10px;
    padding-right: 10px;
  }
  .sm\:pt-0{
    padding-top: 0;
  }
  .sm\:text-left{
    text-align: left;
  }
  .sm\:text-right{
    text-align: right;
  }
}
@media (min-width: 768px){
  .md\:top-0{
    top: 0;
  }
  .md\:order-none{
    order: 0;
  }
  .md\:my-50{
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .md\:mb-0{
    margin-bottom: 0;
  }
  .md\:mt-0{
    margin-top: 0;
  }
  .md\:ml-20{
    margin-left: 20px;
  }
  .md\:mr-15{
    margin-right: 15px;
  }
  .md\:mr-30{
    margin-right: 30px;
  }
  .md\:mr-40{
    margin-right: 40px;
  }
  .md\:mt-5{
    margin-top: 5px;
  }
  .md\:mt-\[100px\]{
    margin-top: 100px;
  }
  .md\:ml-\[190px\]{
    margin-left: 190px;
  }
  .md\:ml-\[220px\]{
    margin-left: 220px;
  }
  .md\:mt-30{
    margin-top: 30px;
  }
  .md\:mt-10{
    margin-top: 10px;
  }
  .md\:mr-20{
    margin-right: 20px;
  }
  .md\:mr-0{
    margin-right: 0;
  }
  .md\:block{
    display: block;
  }
  .md\:flex{
    display: flex;
  }
  .md\:hidden{
    display: none;
  }
  .md\:h-\[410px\]{
    height: 410px;
  }
  .md\:h-\[42px\]{
    height: 42px;
  }
  .md\:h-\[55px\]{
    height: 55px;
  }
  .md\:h-auto{
    height: auto;
  }
  .md\:h-\[23px\]{
    height: 23px;
  }
  .md\:h-\[34px\]{
    height: 34px;
  }
  .md\:w-1\/3{
    width: 33.333333%;
  }
  .md\:w-\[373px\]{
    width: 373px;
  }
  .md\:w-1\/2{
    width: 50%;
  }
  .md\:w-\[540px\]{
    width: 540px;
  }
  .md\:w-\[800px\]{
    width: 800px;
  }
  .md\:w-\[1100px\]{
    width: 1100px;
  }
  .md\:w-400{
    width: 400px;
  }
  .md\:w-\[700px\]{
    width: 700px;
  }
  .md\:w-\[600px\]{
    width: 600px;
  }
  .md\:w-\[180px\]{
    width: 180px;
  }
  .md\:w-\[140px\]{
    width: 140px;
  }
  .md\:w-\[1000px\]{
    width: 1000px;
  }
  .md\:w-2\/3{
    width: 66.666667%;
  }
  .md\:w-20{
    width: 20px;
  }
  .md\:w-\[460px\]{
    width: 460px;
  }
  .md\:w-1\/4{
    width: 25%;
  }
  .md\:w-\[260px\]{
    width: 260px;
  }
  .md\:w-300{
    width: 300px;
  }
  .md\:w-\[21px\]{
    width: 21px;
  }
  .md\:w-\[350px\]{
    width: 350px;
  }
  .md\:w-500{
    width: 500px;
  }
  .md\:w-\[850px\]{
    width: 850px;
  }
  .md\:w-\[25px\]{
    width: 25px;
  }
  .md\:w-200{
    width: 200px;
  }
  .md\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .md\:flex-row{
    flex-direction: row;
  }
  .md\:justify-start{
    justify-content: flex-start;
  }
  .md\:justify-end{
    justify-content: flex-end;
  }
  .md\:justify-between{
    justify-content: space-between;
  }
  .md\:overflow-y-auto{
    overflow-y: auto;
  }
  .md\:border-t-0{
    border-top-width: 0px;
  }
  .md\:border-l{
    border-left-width: 1px;
  }
  .md\:px-20{
    padding-left: 20px;
    padding-right: 20px;
  }
  .md\:px-30{
    padding-left: 30px;
    padding-right: 30px;
  }
  .md\:px-0{
    padding-left: 0;
    padding-right: 0;
  }
  .md\:px-50{
    padding-left: 50px;
    padding-right: 50px;
  }
  .md\:px-15{
    padding-left: 15px;
    padding-right: 15px;
  }
  .md\:py-15{
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .md\:pt-130{
    padding-top: 130px;
  }
  .md\:pr-20{
    padding-right: 20px;
  }
  .md\:pr-50{
    padding-right: 50px;
  }
  .md\:pl-60{
    padding-left: 60px;
  }
  .md\:pl-20{
    padding-left: 20px;
  }
  .md\:pl-40{
    padding-left: 40px;
  }
  .md\:text-left{
    text-align: left;
  }
  .md\:text-huge{
    font-size: var(--huge);
  }
  .md\:text-h2{
    font-size: var(--h2);
  }
  .md\:text-h1{
    font-size: var(--h1);
  }
  .md\:text-h3{
    font-size: var(--h3);
  }
  .md\:text-base{
    font-size: var(--base);
  }
  .md\:text-small{
    font-size: var(--small);
  }
  .md\:text-h5{
    font-size: var(--h5);
  }
  .md\:text-h4{
    font-size: var(--h4);
  }
  .md\:text-h6{
    font-size: var(--h6);
  }
}
@media (min-width: 1024px){
  .lg\:relative{
    position: relative;
  }
  .lg\:z-\[50\]{
    z-index: 50;
  }
  .lg\:order-none{
    order: 0;
  }
  .lg\:mb-0{
    margin-bottom: 0;
  }
  .lg\:ml-0{
    margin-left: 0;
  }
  .lg\:mr-30{
    margin-right: 30px;
  }
  .lg\:mr-5{
    margin-right: 5px;
  }
  .lg\:flex{
    display: flex;
  }
  .lg\:hidden{
    display: none;
  }
  .lg\:w-\[250px\]{
    width: 250px;
  }
  .lg\:w-400{
    width: 400px;
  }
  .lg\:w-\[1000px\]{
    width: 1000px;
  }
  .lg\:w-1\/2{
    width: 50%;
  }
  .lg\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .lg\:grid-cols-6{
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .lg\:flex-row{
    flex-direction: row;
  }
  .lg\:overflow-y-auto{
    overflow-y: auto;
  }
  .lg\:px-8{
    padding-left: 8px;
    padding-right: 8px;
  }
  .lg\:px-30{
    padding-left: 30px;
    padding-right: 30px;
  }
  .lg\:px-0{
    padding-left: 0;
    padding-right: 0;
  }
  .lg\:py-0{
    padding-top: 0;
    padding-bottom: 0;
  }
  .lg\:pl-40{
    padding-left: 40px;
  }
}
@media (min-width: 1260px){
  .xl\:w-\[850px\]{
    width: 850px;
  }
}
@media print{
  .print\:hidden{
    display: none;
  }
}
