/* include TailwindCSS and provide custom styles */

/* ! tailwindcss v2.2.2 | 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.
*/

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

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

/**
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.
*/

/**
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.
*/

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

/*
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;
}

/**
 * Work around a Firefox/IE bug where the transparent `button` background
 * results in a loss of the default `button` focus styles.
 */

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

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: HK Grotesk, 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::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1;
  color: #9ca3af;
}

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

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

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

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: Space Mono, 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;
}

*, ::before, ::after {
  --tw-border-opacity: 1;
  border-color: rgba(229, 231, 235, var(--tw-border-opacity));
}

/* SANS */

/* HK Grotesk-200 - latin */

@font-face {
  font-family: 'HK Grotesk';

  font-style: normal;

  font-weight: 200;

  src: url('../fonts/hk-grotesk/HKGrotesk-Light.eot'); /* IE9 Compat Modes */

  src: local(''),
       url('../fonts/hk-grotesk/HKGrotesk-Light.eot?#iefix') format('embedded-opentype'), 
       url('../fonts/hk-grotesk/HKGrotesk-Light.woff2') format('woff2'), 
       url('../fonts/hk-grotesk/HKGrotesk-Light.woff') format('woff'), 
       url('../fonts/hk-grotesk/HKGrotesk-Light.ttf') format('truetype'); /* Safari, Android, iOS */
}

/* HK Grotesk-regular - latin */

@font-face {
  font-family: 'HK Grotesk';

  font-style: normal;

  font-weight: 400;

  src: url('../fonts/hk-grotesk/HKGrotesk-Regular.eot'); /* IE9 Compat Modes */

  src: local(''),
       url('../fonts/hk-grotesk/HKGrotesk-Regular.eot?#iefix') format('embedded-opentype'), 
       url('../fonts/hk-grotesk/HKGrotesk-Regular.woff2') format('woff2'), 
       url('../fonts/hk-grotesk/HKGrotesk-Regular.woff') format('woff'), 
       url('../fonts/hk-grotesk/HKGrotesk-Regular.ttf') format('truetype'); /* Safari, Android, iOS */
}

/* HK Grotesk-italic - latin */

@font-face {
  font-family: 'HK Grotesk';

  font-style: italic;

  font-weight: 400;

  src: url('../fonts/hk-grotesk/HKGrotesk-Italic.eot'); /* IE9 Compat Modes */

  src: local(''),
       url('../fonts/hk-grotesk/HKGrotesk-Italic.eot?#iefix') format('embedded-opentype'), 
       url('../fonts/hk-grotesk/HKGrotesk-Italic.woff2') format('woff2'), 
       url('../fonts/hk-grotesk/HKGrotesk-Italic.woff') format('woff'), 
       url('../fonts/hk-grotesk/HKGrotesk-Italic.ttf') format('truetype'); /* Safari, Android, iOS */
}

/* HK Grotesk-700 - latin */

@font-face {
  font-family: 'HK Grotesk';

  font-style: normal;

  font-weight: 700;

  src: url('../fonts/hk-grotesk/HKGrotesk-Bold.eot'); /* IE9 Compat Modes */

  src: local(''),
       url('../fonts/hk-grotesk/HKGrotesk-Bold.eot?#iefix') format('embedded-opentype'), 
       url('../fonts/hk-grotesk/HKGrotesk-Bold.woff2') format('woff2'), 
       url('../fonts/hk-grotesk/HKGrotesk-Bold.woff') format('woff'), 
       url('../fonts/hk-grotesk/HKGrotesk-Bold.ttf') format('truetype'); /* Safari, Android, iOS */
}

/* HK Grotesk-700italic - latin */

@font-face {
  font-family: 'HK Grotesk';

  font-style: italic;

  font-weight: 700;

  src: url('../fonts/hk-grotesk/HKGrotesk-BoldItalic.eot'); /* IE9 Compat Modes */

  src: local(''),
       url('../fonts/hk-grotesk/HKGrotesk-BoldItalic.eot?#iefix') format('embedded-opentype'), 
       url('../fonts/hk-grotesk/HKGrotesk-BoldItalic.woff2') format('woff2'), 
       url('../fonts/hk-grotesk/HKGrotesk-BoldItalic.woff') format('woff'), 
       url('../fonts/hk-grotesk/HKGrotesk-BoldItalic.ttf') format('truetype'); /* Safari, Android, iOS */
}

/* HK Grotesk-900 - latin */

@font-face {
  font-family: 'HK Grotesk';

  font-style: normal;

  font-weight: 900;

  src: url('../fonts/hk-grotesk/HKGrotesk-ExtraBold.eot'); /* IE9 Compat Modes */

  src: local(''),
       url('../fonts/hk-grotesk/HKGrotesk-ExtraBold.eot?#iefix') format('embedded-opentype'), 
       url('../fonts/hk-grotesk/HKGrotesk-ExtraBold.woff2') format('woff2'), 
       url('../fonts/hk-grotesk/HKGrotesk-ExtraBold.woff') format('woff'), 
       url('../fonts/hk-grotesk/HKGrotesk-ExtraBold.ttf') format('truetype'); /* Safari, Android, iOS */
}

/* SANS-WIDE */

/* HK Grotesk Wide-regular - latin */

@font-face {
  font-family: 'HK Grotesk Wide';

  font-style: normal;

  font-weight: 400;

  src: local(''),
       url('../fonts/hk-grotesk-wide/HKGroteskWide-Regular.woff') format('woff'); /* Modern Browsers */
}

/* HK Grotesk Wide-italic - latin */

@font-face {
  font-family: 'HK Grotesk Wide';

  font-style: italic;

  font-weight: 400;

  src: local(''),
       url('../fonts/hk-grotesk-wide/HKGroteskWide-Italic.woff') format('woff'); /* Modern Browsers */
}

/* HK Grotesk Wide-700 - latin */

@font-face {
  font-family: 'HK Grotesk Wide';

  font-style: normal;

  font-weight: 700;

  src: local(''),
       url('../fonts/hk-grotesk-wide/HKGroteskWide-Bold.woff') format('woff'); /* Modern Browsers */
}

/* HK Grotesk Wide-900 - latin */

@font-face {
  font-family: 'HK Grotesk Wide';

  font-style: normal;

  font-weight: 900;

  src: local(''),
       url('../fonts/hk-grotesk-wide/HKGroteskWide-ExtraBold.woff') format('woff'); /* Modern Browsers */
}

/* MONO */

/* space-mono-regular - latin */

@font-face {
  font-family: 'Space Mono';

  font-style: normal;

  font-weight: 400;

  src: url('../fonts/space-mono/space-mono-v6-latin-regular.eot'); /* IE9 Compat Modes */

  src: local(''),
       url('../fonts/space-mono/space-mono-v6-latin-regular.eot?#iefix') format('embedded-opentype'), 
       url('../fonts/space-mono/space-mono-v6-latin-regular.woff2') format('woff2'), 
       url('../fonts/space-mono/space-mono-v6-latin-regular.woff') format('woff'), 
       url('../fonts/space-mono/space-mono-v6-latin-regular.ttf') format('truetype'), 
       url('../fonts/space-mono/space-mono-v6-latin-regular.svg#SpaceMono') format('svg'); /* Legacy iOS */
}

/* space-mono-italic - latin */

@font-face {
  font-family: 'Space Mono';

  font-style: italic;

  font-weight: 400;

  src: url('../fonts/space-mono/space-mono-v6-latin-italic.eot'); /* IE9 Compat Modes */

  src: local(''),
       url('../fonts/space-mono/space-mono-v6-latin-italic.eot?#iefix') format('embedded-opentype'), 
       url('../fonts/space-mono/space-mono-v6-latin-italic.woff2') format('woff2'), 
       url('../fonts/space-mono/space-mono-v6-latin-italic.woff') format('woff'), 
       url('../fonts/space-mono/space-mono-v6-latin-italic.ttf') format('truetype'), 
       url('../fonts/space-mono/space-mono-v6-latin-italic.svg#SpaceMono') format('svg'); /* Legacy iOS */
}

/* space-mono-700 - latin */

@font-face {
  font-family: 'Space Mono';

  font-style: normal;

  font-weight: 700;

  src: url('../fonts/space-mono/space-mono-v6-latin-700.eot'); /* IE9 Compat Modes */

  src: local(''),
       url('../fonts/space-mono/space-mono-v6-latin-700.eot?#iefix') format('embedded-opentype'), 
       url('../fonts/space-mono/space-mono-v6-latin-700.woff2') format('woff2'), 
       url('../fonts/space-mono/space-mono-v6-latin-700.woff') format('woff'), 
       url('../fonts/space-mono/space-mono-v6-latin-700.ttf') format('truetype'), 
       url('../fonts/space-mono/space-mono-v6-latin-700.svg#SpaceMono') format('svg'); /* Legacy iOS */
}

/* space-mono-700italic - latin */

@font-face {
  font-family: 'Space Mono';

  font-style: italic;

  font-weight: 700;

  src: url('../fonts/space-mono/space-mono-v6-latin-700italic.eot'); /* IE9 Compat Modes */

  src: local(''),
       url('../fonts/space-mono/space-mono-v6-latin-700italic.eot?#iefix') format('embedded-opentype'), 
       url('../fonts/space-mono/space-mono-v6-latin-700italic.woff2') format('woff2'), 
       url('../fonts/space-mono/space-mono-v6-latin-700italic.woff') format('woff'), 
       url('../fonts/space-mono/space-mono-v6-latin-700italic.ttf') format('truetype'), 
       url('../fonts/space-mono/space-mono-v6-latin-700italic.svg#SpaceMono') format('svg'); /* Legacy iOS */
}

.container {
  width: 100%;
}

@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: 1280px) {
  .container {
    max-width: 1280px;
  }
}

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

/* Layout for the Klaro Cookie Consent (https://github.com/KIProtect/klaro) window */

.klaro a, .klaro button {
    text-decoration: underline;
    font-weight: 700;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

.klaro a:first-child, .klaro button:first-child {
      padding-left: 0px;
    }

.klaro a:last-child, .klaro button:last-child {
      padding-right: 0px;
    }

/* Cookie Notice */

.klaro .cookie-notice {
    z-index: 30;
    width: 100%;
    position: fixed;
    bottom: 0px;
    left: 0px;
  }

.klaro .cookie-notice .cn-body {
      --tw-bg-opacity: 1;
      background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
      border-width: 1px;
      border-style: solid;
      --tw-border-opacity: 1;
      border-color: rgba(0, 0, 0, var(--tw-border-opacity));
      padding: 0.75rem;
    }

.klaro .cookie-notice .cn-body p {
      }

.klaro .cookie-notice .cn-body .cn-ok {
      }

/* Cookie Modal */

.klaro .cookie-modal {
    z-index: 30;
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    overflow: hidden;
  }

.klaro .cookie-modal .cm-bg {
      --tw-bg-opacity: 1;
      background-color: rgba(0, 0, 0, var(--tw-bg-opacity));
      --tw-bg-opacity: 0.5;
      height: 100%;
      width: 100%;
      position: fixed;
      top: 0px;
      left: 0px;
    }

.klaro .cookie-modal .cm-modal {
      z-index: 40;
      position: fixed;
      width: 100%;
      max-height: 100%;
      top: 50%;
      transform: translateY(-50%);
      overflow: auto;
      --tw-bg-opacity: 1;
      background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
      --tw-text-opacity: 1;
      color: rgba(0, 0, 0, var(--tw-text-opacity));
    }

@media (min-width: 1024px) {

.klaro .cookie-modal .cm-modal {
        max-height: 98%;

        margin: 0 auto;

        max-width: 640px
    }
      }

@media (min-width: 1024px) {

.klaro .cookie-modal .cm-modal {
        position: relative;

        height: auto;

        width: auto;

        border-width: 1px;

        border-style: solid;

        --tw-border-opacity: 1;

        border-color: rgba(0, 0, 0, var(--tw-border-opacity))
    }
      }

.klaro .cookie-modal .cm-header, .klaro .cookie-modal .cm-body, .klaro .cookie-modal .cm-footer {
      /*@apply px-3;*/
    }

.klaro .cookie-modal .cm-header {
      margin-left: 0.75rem;
      margin-right: 0.75rem;
      margin-top: 0.5rem;
      margin-bottom: 0.5rem;
    }

.klaro .cookie-modal .cm-header .hide {
        position: absolute;
        right: 10px;
        top: 10px;
      }

.klaro .cookie-modal .cm-header .hide svg {
          stroke: #000;
        }

.klaro .cookie-modal .cm-header h1 {
        font-size: 1.25rem;
        line-height: 1.75rem;
      }

.klaro .cookie-modal .cm-header p {
      }

.klaro .cookie-modal .cm-header a {
        font-weight: 400;
      }

.klaro .cookie-modal .cm-body {
      margin-top: 0.25rem;
      margin-bottom: 0.25rem;
    }

.klaro .cookie-modal .cm-body .cm-apps .cm-app {
          padding-top: 0.5rem;
          padding-bottom: 0.5rem;
        }

.klaro .cookie-modal .cm-body .cm-apps .cm-app div {
            margin-left: 0.75rem;
            margin-right: 0.75rem;
          }

.klaro .cookie-modal .cm-body .cm-apps .cm-app .cm-app-input {
            padding-left: 0.5rem;
          }

.klaro .cookie-modal .cm-body .cm-apps .cm-app .cm-app-label {
            margin-left: 0.5rem;
            font-weight: 500;
          }

.klaro .cookie-modal .cm-body .cm-apps .cm-app .cm-app-description {
            padding: 0px;
          }

.klaro .cookie-modal .cm-body .cm-apps .cm-app .purposes {
            font-size: 0.875rem;
            line-height: 1.25rem;
            padding: 0px;
          }

.klaro .cookie-modal .cm-body .cm-apps .cm-toggle-all {
          --tw-bg-opacity: 1;
          background-color: rgba(229, 231, 235, var(--tw-bg-opacity));
        }

.klaro .cookie-modal .cm-footer {
      margin-left: 0.75rem;
      margin-right: 0.75rem;
      margin-bottom: 0.75rem;
      padding-top: 0.75rem;
      padding-bottom: 0.75rem;
    }

.klaro .cookie-modal .cm-footer .cm-footer-buttons .cm-btn-accept {
        }

.klaro .cookie-modal .cm-footer .cm-footer-buttons .cm-btn-decline {
        }

.klaro .cookie-modal .cm-footer .cm-powered-by {
        text-align: center;
        font-size: 0.75rem;
        line-height: 1rem;
        --tw-text-opacity: 1;
        color: rgba(107, 114, 128, var(--tw-text-opacity));
        margin-top: 0.5rem;
        /*@apply hidden;*/
      }

.klaro .cookie-modal .cm-footer .cm-powered-by a {
          font-weight: 400;
        }

/* Appearance of external content which is hidden if embedded content is not accepted in the cookie settings */

.klaro.disabled-content iframe {
      --tw-bg-opacity: 1;
      background-color: rgba(107, 114, 128, var(--tw-bg-opacity));
      background-image: repeating-linear-gradient(45deg, transparent, transparent 35px, rgb(255,255,255) 35px, rgb(255,255,255) 70px);
    }

.klaro.disabled-content p {
      font-weight: 400;
      --tw-text-opacity: 1;
      color: rgba(107, 114, 128, var(--tw-text-opacity));
    }

.klaro.disabled-content a {
      text-decoration: underline;
    }

/* custom layouts for Ein Quartier macht Theater */

/* Focus styling */

:focus {
  outline: 1px dashed #E6E6E6;
}

/* Text Selection */

::-moz-selection {
  background: #ffb7b7; /* WebKit/Blink Browsers */
}

::selection {
  background: #ffb7b7; /* WebKit/Blink Browsers */
}

::-moz-selection {
  background: #ffb7b7; /* Gecko Browsers */
}

/* basic layout */

body, html {
  height:  100%;
  width:  100%;
  overflow-x: hidden;
}

body {
  display: flex;
  flex-direction: column;
}

/* main layout */

main {
  flex:  1 0 auto;
}

footer {
  flex-shrink: 0;
}

/* Kirbytext-layout */

.kirbytext h1, .kirbytext h2, .kirbytext h3, .kirbytext h4, .kirbytext h5, .kirbytext h6 {
    font-weight: 700;
    margin-bottom: 0.25rem;
  }

.kirbytext h1 {
    font-size: 1.5rem;
    line-height: 2rem;
  }

.kirbytext h2 {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

.kirbytext p {
    margin-bottom: 0.5rem;
  }

.kirbytext a {
    text-decoration: underline;
  }

.kirbytext a:hover {
    text-decoration: none;
  }

.kirbytext ul {
    line-height: 1.375;
  }

.kirbytext ul li {
      margin-bottom: 0.5rem;
    }

.kirbytext .button {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    display: inline-block;
    border-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity));
    text-decoration: none;
  }

.kirbytext .button:hover {
    --tw-bg-opacity: 1;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity));
    --tw-text-opacity: 1;
    color: rgba(255, 255, 255, var(--tw-text-opacity));
  }

.kirbytext blockquote {
    font-family: Space Mono, monospace;
    font-size: 0.875rem;
    line-height: 1.25rem;
    line-height: 1;
    margin-right: 0.5rem;
    margin-left: 0.5rem;
  }

.kirbytext code {
    font-family: Space Mono, monospace;
  }

.kirbytext figure.rotate-center {
      margin-left: auto;
      margin-right: auto;
      text-align: center;
      display: grid;
      justify-content: center;
    }

@media (min-width: 768px) {

.kirbytext figure.rotate-center img {

          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;

          transition-duration: 300ms;

          --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;

          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-rotate: 1deg
      }
          .kirbytext figure.rotate-center img:hover {
            --tw-rotate: 0deg;
          }
        }

.kirbytext figure.rotate-center figcaption {
        text-align: center;
      }

.kirbytext figure.inline-left {
      margin-top: 1rem;
      margin-bottom: 1rem;
    }

.kirbytext figure.inline-left img {
        margin-left: auto;
        margin-right: auto;
      }

@media (min-width: 768px) {

.kirbytext figure.inline-left {
        text-align: left;

        float: left;

        margin-top: 0px;

        margin-bottom: 0px
    }
      }

@media (min-width: 1024px) {

.kirbytext figure.inline-left {
        margin-right: 0.5rem
    }
      }

.kirbytext figure.inline-right {
      margin-top: 1rem;
      margin-bottom: 1rem;
    }

.kirbytext figure.inline-right img {
        margin-left: auto;
        margin-right: auto;
      }

@media (min-width: 768px) {

.kirbytext figure.inline-right {
        text-align: right;

        float: right;

        margin-top: 0px;

        margin-bottom: 0px
    }
      }

@media (min-width: 1024px) {

.kirbytext figure.inline-right {
        margin-left: 0.5rem
    }
      }

/* grascale image */

.kirbytext figure.gray {
      filter: grayscale(100%);
      --tw-grayscale: grayscale(100%);
    }

.kirbytext figure.gray:hover {
        filter: grayscale(0%);
      }

/* dimmed (less saturation) image */

.kirbytext figure.dimmed {
      --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,/*!*/ /*!*/);
      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);
      --tw-saturate: saturate(.4);
    }

.kirbytext figure.dimmed:hover {
        --tw-saturate: saturate(1);
      }

.kirbytext figcaption {
    font-size: 0.75rem;
    line-height: 1rem;
    --tw-text-opacity: 1;
    color: rgba(75, 85, 99, var(--tw-text-opacity));
    text-align: center;
  }

@media (min-width: 768px) {

.kirbytext figcaption {
      text-align: left
  }
    }

/* grascale */

.grayscale {
  filter: grayscale(100%);
}

.grayscale-50 {
  filter: grayscale(50%);
}

.grayscale-70 {
  filter: grayscale(70%);
}

.no-grayscale {
  filter: grayscale(0%);
}

.hover\:grayscale:hover {
  filter: grayscale(100%);
}

.hover\:grayscale-50:hover {
  filter: grayscale(50%);
}

.hover\:grayscale-70:hover {
  filter: grayscale(70%);
}

.hover\:no-grayscale:hover {
  filter: grayscale(0%);
}

/* video wrapper (from https://css-tricks.com/fluid-width-video/) */

.videoWrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}

.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/******************************************************************************/

/* fullscreen video */
/* 2025-03-10 */

.max-w-lg:has(.fs-video) {
    max-width: 100%;
    margin-top: 0px;
}

.fs-video {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
}

.fs-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*******************************************************************************/
/* new style for klanglabor */
/* RP  Mon Mar 10 21:32:06 2025 */

/* FALLBACK IF .fs-video CLASS IS NOT GIVEN */
/* => MAKE SURE THAT THESE VALUES ARE IN SYNC */

/* SHOULD BE THE SAME AS: */
/* .max-w-lg:has(.fs-video) */
#klanglabor-instrument-video {
    max-width: 100%;
    margin-top: 0px;
}

/* SHOULD BE THE SAME AS: */
/* .fs-video */
#klanglabor-instrument-video:has(div) {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
}

/* SHOULD BE THE SAME AS: */
/* .fs-video iframe */
#klanglabor-instrument-video:has(div) iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/******************************************************************************/

/* Save-data features (cf. https://css-tricks.com/help-users-save-data/) */

/* font-aliases */

.save-data .font-sans-wide {
    font-family: HK Grotesk, sans-serif;
  }

.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;
}

.static {
  position: static;
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.sticky {
  position: sticky;
}

.top-0 {
  top: 0px;
}

.right-0 {
  right: 0px;
}

.bottom-0 {
  bottom: 0px;
}

.left-0 {
  left: 0px;
}

.z-10 {
  z-index: 10;
}

.z-20 {
  z-index: 20;
}

.z-30 {
  z-index: 30;
}

.z-40 {
  z-index: 40;
}

.z-50 {
  z-index: 50;
}

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

.mx-2 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.mx-3 {
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}

.mx-10 {
  margin-left: 2.5rem;
  margin-right: 2.5rem;
}

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

.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

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

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-4 {
  margin-top: 1rem;
}

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

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

.mr-10 {
  margin-right: 2.5rem;
}

.-mr-8 {
  margin-right: -2rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.-ml-8 {
  margin-left: -2rem;
}

.block {
  display: block;
}

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

.inline {
  display: inline;
}

.flex {
  display: flex;
}

.table {
  display: table;
}

.grid {
  display: grid;
}

.contents {
  display: contents;
}

.hidden {
  display: none;
}

.h-6 {
  height: 1.5rem;
}

.h-8 {
  height: 2rem;
}

.h-20 {
  height: 5rem;
}

.h-48 {
  height: 12rem;
}

.h-4\/5 {
  height: 80%;
}

.h-full {
  height: 100%;
}

.h-screen {
  height: 100vh;
}

.w-6 {
  width: 1.5rem;
}

.w-8 {
  width: 2rem;
}

.w-auto {
  width: auto;
}

.w-full {
  width: 100%;
}

.w-screen {
  width: 100vw;
}

.max-w-lg {
  max-width: 32rem;
}

.max-w-screen-md {
  max-width: 768px;
}

.max-w-screen-lg {
  max-width: 1024px;
}

.max-w-screen-2xl {
  max-width: 1536px;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.flex-shrink {
  flex-shrink: 1;
}

.transform {
  --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;
  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));
}

.rotate-0 {
  --tw-rotate: 0deg;
}

.rotate-1 {
  --tw-rotate: 1deg;
}

.rotate-2 {
  --tw-rotate: 2deg;
}

.rotate-3 {
  --tw-rotate: 3deg;
}

.rotate-45 {
  --tw-rotate: 45deg;
}

.rotate-90 {
  --tw-rotate: 90deg;
}

.rotate-180 {
  --tw-rotate: 180deg;
}

@-webkit-keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

@-webkit-keyframes pulse {
  50% {
    opacity: .5;
  }
}

@keyframes pulse {
  50% {
    opacity: .5;
  }
}

@-webkit-keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    -webkit-animation-timing-function: cubic-bezier(0.8,0,1,1);
            animation-timing-function: cubic-bezier(0.8,0,1,1);
  }

  50% {
    transform: none;
    -webkit-animation-timing-function: cubic-bezier(0,0,0.2,1);
            animation-timing-function: cubic-bezier(0,0,0.2,1);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    -webkit-animation-timing-function: cubic-bezier(0.8,0,1,1);
            animation-timing-function: cubic-bezier(0.8,0,1,1);
  }

  50% {
    transform: none;
    -webkit-animation-timing-function: cubic-bezier(0,0,0.2,1);
            animation-timing-function: cubic-bezier(0,0,0.2,1);
  }
}

.cursor-default {
  cursor: default;
}

.cursor-cell {
  cursor: cell;
}

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

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

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

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

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

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

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

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

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

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

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

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

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.place-items-stretch {
  place-items: stretch;
}

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

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

.justify-between {
  justify-content: space-between;
}

.gap-4 {
  gap: 1rem;
}

.gap-8 {
  gap: 2rem;
}

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

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

.self-start {
  align-self: flex-start;
}

.self-end {
  align-self: flex-end;
}

.justify-self-end {
  justify-self: end;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-x-hidden {
  overflow-x: hidden;
}

.overflow-y-scroll {
  overflow-y: scroll;
}

.border {
  border-width: 1px;
}

.border-solid {
  border-style: solid;
}

.border-none {
  border-style: none;
}

.border-black {
  --tw-border-opacity: 1;
  border-color: rgba(0, 0, 0, var(--tw-border-opacity));
}

.bg-transparent {
  background-color: transparent;
}

.bg-black {
  --tw-bg-opacity: 1;
  background-color: rgba(0, 0, 0, var(--tw-bg-opacity));
}

.bg-gray-800 {
  --tw-bg-opacity: 1;
  background-color: rgba(31, 41, 55, var(--tw-bg-opacity));
}

.hover\:bg-transparent:hover {
  background-color: transparent;
}

.hover\:bg-black:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(0, 0, 0, var(--tw-bg-opacity));
}

.hover\:bg-gray-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(55, 65, 81, var(--tw-bg-opacity));
}

.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.object-center {
  -o-object-position: center;
     object-position: center;
}

.p-1 {
  padding: 0.25rem;
}

.p-4 {
  padding: 1rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.pt-4 {
  padding-top: 1rem;
}

.pb-3 {
  padding-bottom: 0.75rem;
}

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

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

.text-right {
  text-align: right;
}

.font-sans {
  font-family: HK Grotesk, sans-serif;
}

.font-sans-wide {
  font-family: HK Grotesk Wide, sans-serif;
}

.font-mono {
  font-family: Space Mono, monospace;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

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

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

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

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

.font-bold {
  font-weight: 700;
}

.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.italic {
  font-style: italic;
}

.leading-none {
  line-height: 1;
}

.leading-tight {
  line-height: 1.25;
}

.text-black {
  --tw-text-opacity: 1;
  color: rgba(0, 0, 0, var(--tw-text-opacity));
}

.text-white {
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.text-gray-300 {
  --tw-text-opacity: 1;
  color: rgba(209, 213, 219, var(--tw-text-opacity));
}

.hover\:text-black:hover {
  --tw-text-opacity: 1;
  color: rgba(0, 0, 0, var(--tw-text-opacity));
}

.hover\:text-white:hover {
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.underline {
  text-decoration: underline;
}

.line-through {
  text-decoration: line-through;
}

.opacity-0 {
  opacity: 0;
}

.mix-blend-saturation {
  mix-blend-mode: saturation;
}

*, ::before, ::after {
  --tw-shadow: 0 0 #0000;
}

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

*, ::before, ::after {
  --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;
}

.ring {
  --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);
}

.filter {
  --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,/*!*/ /*!*/);
  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);
}

.grayscale {
  --tw-grayscale: grayscale(100%);
}

.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-100 {
  transition-duration: 100ms;
}

.duration-200 {
  transition-duration: 200ms;
}

.duration-300 {
  transition-duration: 300ms;
}

.duration-500 {
  transition-duration: 500ms;
}

@media (min-width: 640px) {
}

@media (min-width: 768px) {
  .md\:col-span-1 {
    grid-column: span 1 / span 1;
  }

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

  .md\:mx-1 {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }

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

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

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

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

  .md\:mt-10 {
    margin-top: 2.5rem;
  }

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

  .md\:-mt-1 {
    margin-top: -0.25rem;
  }

  .md\:-mt-12 {
    margin-top: -3rem;
  }

  .md\:-mt-20 {
    margin-top: -5rem;
  }

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

  .md\:mb-16 {
    margin-bottom: 4rem;
  }

  .md\:-ml-16 {
    margin-left: -4rem;
  }

  .md\:block {
    display: block;
  }

  .md\:flex {
    display: flex;
  }

  .md\:hidden {
    display: none;
  }

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

  .md\:h-2\/3 {
    height: 66.666667%;
  }

  .md\:h-full {
    height: 100%;
  }

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

  .md\:w-full {
    width: 100%;
  }

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

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

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

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

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

  .md\:items-end {
    align-items: flex-end;
  }

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

  .md\:justify-end {
    justify-content: flex-end;
  }

  .md\:justify-between {
    justify-content: space-between;
  }

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

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

  .md\:overflow-hidden {
    overflow: hidden;
  }

  .md\:overflow-x-scroll {
    overflow-x: scroll;
  }

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

  .md\:border-black {
    --tw-border-opacity: 1;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity));
  }

  .md\:px-0 {
    padding-left: 0px;
    padding-right: 0px;
  }

  .md\:px-1 {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .md\:pt-1 {
    padding-top: 0.25rem;
  }

  .md\:pr-1 {
    padding-right: 0.25rem;
  }

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

  .md\:text-right {
    text-align: right;
  }

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

  .md\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }

  .md\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

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

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

  .md\:opacity-100 {
    opacity: 1;
  }
}

@media (min-width: 1024px) {
  .lg\:col-span-1 {
    grid-column: span 1 / span 1;
  }

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

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

  .lg\:grid {
    display: grid;
  }

  .lg\:h-48 {
    height: 12rem;
  }

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

  .lg\:justify-start {
    justify-content: flex-start;
  }

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

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

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

@media (min-width: 1280px) {
  .xl\:block {
    display: block;
  }

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

}

@media (min-width: 1536px) {
  .\32xl\:mt-16 {
    margin-top: 4rem;
  }

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

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

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