@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

/*! modern-normalize v1.0.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).
*/

:root {
  -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.
*/

/**
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: 'inter', 'helvetica', 'arial', '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 {
  color: #C6C6C6;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #C6C6C6;
}

input::placeholder,
textarea::placeholder {
  color: #C6C6C6;
}

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: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

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

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

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

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


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

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

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

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

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

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='%23ADADAD' 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;
      -ms-user-select: none;
          user-select: none;
  flex-shrink: 0;
  height: 1rem;
  width: 1rem;
  color: #2563eb;
  background-color: #fff;
  border-color: #ADADAD;
  border-width: 1px;
}

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

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


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


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

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

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


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

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


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

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

[type='file']:focus{
  outline: 1px auto -webkit-focus-ring-color;
}

/* -----------------------------------

	Place webfonts here

	---------------------------------- */

@media print{

html {
    font-size: 0.65rem
}
  }

/* @tailwindcss/forms overrides */

[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{
  --tw-border-opacity: 1;
  border-color: rgba(222, 222, 222, var(--tw-border-opacity));
  border-radius: 0.25rem;
}

[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 {
    --tw-ring-color: #D30D50;
    --tw-border-opacity: 1;
    border-color: rgba(211, 13, 80, var(--tw-border-opacity));
  }

.question [type='text'], .question [type='email'], .question [type='url'], .question [type='password'], .question [type='number'], .question [type='date'], .question [type='datetime-local'], .question [type='month'], .question [type='search'], .question [type='tel'], .question [type='time'], .question [type='week'], .question [multiple], .question textarea, .question select {
    --tw-bg-opacity: 1;
    background-color: rgba(233, 234, 236, var(--tw-bg-opacity));
    --tw-border-opacity: 1;
    border-color: rgba(222, 222, 222, var(--tw-border-opacity));
  }

.question [type='text']:focus, .question [type='email']:focus, .question [type='url']:focus, .question [type='password']:focus, .question [type='number']:focus, .question [type='date']:focus, .question [type='datetime-local']:focus, .question [type='month']:focus, .question [type='search']:focus, .question [type='tel']:focus, .question [type='time']:focus, .question [type='week']:focus, .question [multiple]:focus, .question textarea:focus, .question select:focus {
      --tw-ring-color: #00132D;
      --tw-border-opacity: 1;
      border-color: rgba(0, 19, 45, var(--tw-border-opacity));
    }

[type='text'][disabled], [type='text'][readonly], [type='email'][disabled], [type='email'][readonly], [type='url'][disabled], [type='url'][readonly], [type='password'][disabled], [type='password'][readonly], [type='number'][disabled], [type='number'][readonly], [type='date'][disabled], [type='date'][readonly], [type='datetime-local'][disabled], [type='datetime-local'][readonly], [type='month'][disabled], [type='month'][readonly], [type='search'][disabled], [type='search'][readonly], [type='tel'][disabled], [type='tel'][readonly], [type='time'][disabled], [type='time'][readonly], [type='week'][disabled], [type='week'][readonly], [multiple][disabled], [multiple][readonly], textarea[disabled], textarea[readonly], select[disabled], select[readonly] {
    cursor: not-allowed;
  }

input:placeholder {
    --tw-text-opacity: 1;
    color: rgba(222, 222, 222, var(--tw-text-opacity));
  }

textarea:placeholder {
    --tw-text-opacity: 1;
    color: rgba(222, 222, 222, var(--tw-text-opacity));
  }

[type='checkbox'], [type='radio']{
  --tw-border-opacity: 1;
  border-color: rgba(222, 222, 222, var(--tw-border-opacity));
  --tw-text-opacity: 1;
  color: rgba(211, 13, 80, var(--tw-text-opacity));
}

[type='checkbox']:focus, [type='radio']:focus {
    --tw-ring-color: #FBE7EE;
    --tw-border-opacity: 1;
    border-color: rgba(222, 222, 222, var(--tw-border-opacity));
  }

[type='checkbox'][disabled], [type='radio'][disabled] {
    cursor: not-allowed;
  }

.form {
  width: 100%;
}

/* 
Default Table Style 
Not use inside .prose.
*/

/* *:not(.prose) > table {
    @apply border border-gray-200;
    border-collapse: collapse;
    text-align: left;

    thead th,
    tfoot th {
        @apply bg-gray-200;
    }

    caption {
        @apply px-4 py-2;
    }

    th,
    td {
        @apply border border-gray-200 px-4 py-2;
    }
} */

.table thead th, .table tfoot th{
    --tw-bg-opacity: 1;
    background-color: rgba(235, 235, 235, var(--tw-bg-opacity));
    font-size: 0.875rem;
  }

.table th, .table td{
    --tw-border-opacity: 1;
    border-color: rgba(235, 235, 235, var(--tw-border-opacity));
    border-width: 1px;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

.table input {
    width: 100%;
  }

.btn {
  --tw-bg-opacity: 1;
  background-color: rgba(211, 13, 80, var(--tw-bg-opacity));
  border-radius: 0.25rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  height: 3rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
  width: 100%;
  white-space: nowrap;
}

.btn:not(.btn--loading, [disabled]):hover {
    --tw-bg-opacity: 1;
    background-color: rgba(190, 12, 72, var(--tw-bg-opacity));
  }

.btn:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
  }

@media (min-width: 768px){

.btn {
    width: auto
}
  }

.btn .icon {
    height: 1rem;
    margin-right: 1rem;
    width: 1rem;
  }

.btn[disabled] {
    opacity: 0.5;
    cursor: not-allowed !important;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }

.btn--primary {
    --tw-bg-opacity: 1;
    background-color: rgba(211, 13, 80, var(--tw-bg-opacity));
    --tw-text-opacity: 1;
    color: rgba(255, 255, 255, var(--tw-text-opacity));
  }

.btn--primary:not(.btn--loading, [disabled]):hover {
      --tw-bg-opacity: 1;
      background-color: rgba(190, 12, 72, var(--tw-bg-opacity));
    }

.btn--secondary {
    --tw-bg-opacity: 1;
    background-color: rgba(0, 19, 45, var(--tw-bg-opacity));
    --tw-text-opacity: 1;
    color: rgba(255, 255, 255, var(--tw-text-opacity));
  }

.btn--secondary:not(.btn--loading, [disabled]):hover {
      --tw-bg-opacity: 1;
      background-color: rgba(0, 17, 41, var(--tw-bg-opacity));
    }

.btn--tertiary {
    --tw-bg-opacity: 1;
    background-color: rgba(29, 45, 69, var(--tw-bg-opacity));
    --tw-text-opacity: 1;
    color: rgba(255, 255, 255, var(--tw-text-opacity));
  }

.btn--tertiary:not(.btn--loading, [disabled]):hover {
      --tw-bg-opacity: 1;
      background-color: rgba(26, 41, 62, var(--tw-bg-opacity));
    }

.btn--quaternary {
    --tw-bg-opacity: 1;
    background-color: rgba(239, 68, 68, var(--tw-bg-opacity));
    --tw-text-opacity: 1;
    color: rgba(255, 255, 255, var(--tw-text-opacity));
  }

.btn--quaternary:not(.btn--loading, [disabled]):hover {
      --tw-bg-opacity: 1;
      background-color: rgba(215, 61, 61, var(--tw-bg-opacity));
    }

.btn--light {
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
    --tw-text-opacity: 1;
    color: rgba(0, 19, 45, var(--tw-text-opacity));
  }

.btn--light:not(.btn--loading, [disabled]):hover {
      --tw-bg-opacity: 1;
      background-color: rgba(247, 247, 247, var(--tw-bg-opacity));
    }

.btn--warning {
    background-color: transparent;
    --tw-text-opacity: 1;
    color: rgba(239, 68, 68, var(--tw-text-opacity));
  }

.btn--warning:not(.btn--loading, [disabled]):hover {
      --tw-bg-opacity: 1;
      background-color: rgba(247, 247, 247, var(--tw-bg-opacity));
    }

.btn--outline {
    background-color: transparent;
    --tw-border-opacity: 1;
    border-color: rgba(211, 13, 80, var(--tw-border-opacity));
    border-width: 2px;
    --tw-text-opacity: 1;
    color: rgba(211, 13, 80, var(--tw-text-opacity));
  }

.btn--outline:not(.btn--loading, [disabled]):hover {
      --tw-bg-opacity: 1;
      background-color: rgba(211, 13, 80, var(--tw-bg-opacity));
      --tw-text-opacity: 1;
      color: rgba(255, 255, 255, var(--tw-text-opacity));
    }

.btn--outline-primary {
      background-color: transparent;
      --tw-border-opacity: 1;
      border-color: rgba(211, 13, 80, var(--tw-border-opacity));
      border-width: 2px;
      --tw-text-opacity: 1;
      color: rgba(211, 13, 80, var(--tw-text-opacity));
    }

.btn--outline-primary:not(.btn--loading, [disabled]):hover {
        --tw-bg-opacity: 1;
        background-color: rgba(211, 13, 80, var(--tw-bg-opacity));
        --tw-text-opacity: 1;
        color: rgba(255, 255, 255, var(--tw-text-opacity));
      }

.btn--outline-secondary {
      background-color: transparent;
      --tw-border-opacity: 1;
      border-color: rgba(0, 19, 45, var(--tw-border-opacity));
      border-width: 2px;
      --tw-text-opacity: 1;
      color: rgba(0, 19, 45, var(--tw-text-opacity));
    }

.btn--outline-secondary:not(.btn--loading, [disabled]):hover {
        --tw-bg-opacity: 1;
        background-color: rgba(0, 19, 45, var(--tw-bg-opacity));
        --tw-text-opacity: 1;
        color: rgba(255, 255, 255, var(--tw-text-opacity));
      }

.btn--outline-tertiary {
      background-color: transparent;
      --tw-border-opacity: 1;
      border-color: rgba(29, 45, 69, var(--tw-border-opacity));
      border-width: 2px;
      --tw-text-opacity: 1;
      color: rgba(29, 45, 69, var(--tw-text-opacity));
    }

.btn--outline-tertiary:not(.btn--loading, [disabled]):hover {
        --tw-bg-opacity: 1;
        background-color: rgba(29, 45, 69, var(--tw-bg-opacity));
        --tw-text-opacity: 1;
        color: rgba(255, 255, 255, var(--tw-text-opacity));
      }

.btn--outline-quaternary {
      background-color: transparent;
      --tw-border-opacity: 1;
      border-color: rgba(239, 68, 68, var(--tw-border-opacity));
      border-width: 2px;
      --tw-text-opacity: 1;
      color: rgba(239, 68, 68, var(--tw-text-opacity));
    }

.btn--outline-quaternary:not(.btn--loading, [disabled]):hover {
        --tw-bg-opacity: 1;
        background-color: rgba(239, 68, 68, var(--tw-bg-opacity));
        --tw-text-opacity: 1;
        color: rgba(255, 255, 255, var(--tw-text-opacity));
      }

.btn--icon-after {
    flex-direction: row-reverse;
  }

.btn--icon-after .icon {
      margin-right: 0px;
      margin-left: 0.75rem;
    }

.btn--icon-only {
    border-radius: 9999px;
    padding-left: 0px;
    padding-right: 0px;
    width: 3rem;
  }

.btn--icon-only .icon {
      margin-right: 0px;
      margin-left: 0px;
    }

.btn--loading {
    cursor: wait !important;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }

.btn--loading .icon {
      -webkit-animation: rotating 2.5s linear infinite;
              animation: rotating 2.5s linear infinite;
    }

.btn--large {
    height: 4rem;
    font-size: 1.5rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }

.btn--large .icon {
      height: 1.5rem;
      margin-right: 1.75rem;
      width: 1.5rem;
    }

.btn--large.btn--icon-after .icon {
        margin-right: 0px;
        margin-left: 1.75rem;
      }

.btn--large.btn--icon-only {
      padding-left: 0px;
      padding-right: 0px;
      width: 4rem;
    }

.btn--large.btn--icon-only .icon {
        height: 1.5rem;
        margin-right: 0px;
        margin-left: 0px;
        width: 1.5rem;
      }

.btn--small {
    height: 2.5rem;
    font-size: 0.875rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

.btn--small .icon {
      height: 1rem;
      width: 1rem;
    }

.btn--small.btn--icon-only {
      padding-left: 0px;
      padding-right: 0px;
      width: 2.5rem;
    }

.btn--small.btn--icon-only .icon {
        height: 1rem;
        width: 1rem;
      }

.btn--tab {
    background-color: transparent;
    border-radius: 0px;
    --tw-text-opacity: 1;
    color: rgba(0, 19, 45, var(--tw-text-opacity));
    text-align: left;
    justify-content: flex-start;
  }

.btn--tab--active, .btn--tab:not(.btn--loading, [disabled]):hover {
      --tw-bg-opacity: 1;
      background-color: rgba(191, 196, 203, var(--tw-bg-opacity))
    }

.btn--tab.btn--icon-only {
      border-radius: 0px;
      justify-content: center;
    }

.btn--has-notification {
    position: relative;
  }

.btn--has-notification:after {
      --tw-bg-opacity: 1;
      background-color: rgba(211, 13, 80, var(--tw-bg-opacity));
      border-radius: 9999px;
      height: 0.75rem;
      top: 0px;
      left: 0px;
      width: 0.75rem;
      content: '';
      position: absolute;
    }

.btn-group {
  display: flex;
}

.btn-group .btn {
    border-radius: 0px;
    margin-left: 0.05rem;
    margin-right: 0.05rem;
  }

.btn-group .btn:first-child {
      border-top-left-radius: 0.25rem;
      border-bottom-left-radius: 0.25rem;
    }

.btn-group .btn:last-child {
      border-top-right-radius: 0.25rem;
      border-bottom-right-radius: 0.25rem;
    }

.btn-group--snug .btn {
      margin-left: 0;
      margin-right: 0;
    }

@-webkit-keyframes rotating {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes rotating {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.modal {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  position: fixed;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  z-index: 9999;
  overflow-y: auto;
  background: rgba(0,19,45,0.6);
}

.modal__inner {
    max-width: 32rem;
    position: relative;
    margin: auto;
    min-width: 40%;
  }

@media (min-width: 1024px) {

.modal__inner {
      min-width: 600px
  }
    }

.modal--phone .modal__inner {
      min-width: auto;
    }

.modal__inner--image, .modal__inner--video {
      max-width: 42rem;
      width: auto;
    }

.modal__inner--phone, .modal__inner--grouped{
      margin: -2rem;
    }

.modal__content {
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
    border-radius: 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    --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);
    width: 100%;
    overflow: hidden;
    min-height: 25vh;
    position: relative;
  }

.modal__content > * {
      /* max-width: 100%; */
    }

@media all and (-ms-high-contrast:none) {

.modal__content {
      margin: 0
  }
    }

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

.modal__content .modal__inner--text, .modal__content .modal__inner--sound, .modal__content .modal__inner--image, .modal__content .modal__inner--video, .modal__content .modal__inner--phone, .modal__content .modal__inner--grouped{
      margin: -2rem;
    }

.modal__inner--image .modal__content {
      height: auto;
      padding: 0px;
      width: auto;
      min-height: initial;
    }

.modal__inner--video .modal__content {
      padding: 0px;
      min-height: initial;
    }

.modal__inner--video .modal__content .video-player {
        position: relative;
      }

.modal__close {
    top: 0px;
    right: 0px;
    position: absolute;
    border-radius: 50%;
    transform: translate(50%, -50%);
    z-index: 99;
  }

@media (max-width: 639px){

.modal__close {

      height: 2.5rem;

      margin: 1rem;

      width: 2.5rem
  }
      .modal__close svg {
        height: 1rem;
        width: 1rem;
      }
    }

.modal__title {
    font-family: 'inter', 'helvetica', 'arial', 'sans-serif';
    font-weight: 900;
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
  }

.modal__subtitle {
    display: block;
    font-family: 'inter', 'helvetica', 'arial', 'sans-serif';
    --tw-text-opacity: 1;
    color: rgba(104, 104, 104, var(--tw-text-opacity));
  }

.modal__actions {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
  }

.modal__actions .btn {
      flex: 1 1 0%;
      margin-left: 0.25rem;
      margin-right: 0.25rem;
    }

.modal__image {
    display: flex;
    flex-direction: column;
  }

.modal__image img {
      flex: 1 1 0%;
    }

.modal__image__caption {
      --tw-bg-opacity: 1;
      background-color: rgba(0, 19, 45, var(--tw-bg-opacity));
      flex: 1 1 0%;
      font-size: 0.75rem;
      line-height: 1.25;
      padding-top: 0.75rem;
      padding-bottom: 0.75rem;
      padding-left: 1rem;
      padding-right: 1rem;
      --tw-text-opacity: 1;
      color: rgba(255, 255, 255, var(--tw-text-opacity));
      max-width: -webkit-fit-content;
      max-width: -moz-fit-content;
      max-width: fit-content;
      min-width: 100%;
    }

@media (min-width: 640px){

.modal {

    padding: 3rem
}
    .modal .modal__content {
      padding: 3rem;
    }

    .modal .modal__inner--text, .modal .modal__inner--sound, .modal .modal__inner--image, .modal .modal__inner--video, .modal .modal__inner--phone, .modal .modal__inner--grouped{
      margin: -3rem;
    }
  }

.phone__lockscreen {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: space-evenly;
    align-items: flex-end;
    padding-bottom: 20px;
  }

.video-player {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.video-player:before {
    --tw-bg-opacity: 1;
    background-color: rgba(211, 13, 80, var(--tw-bg-opacity));
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    content: '';
    opacity: .8;
    pointer-events: none;
    z-index: 9;
    transition: 200ms opacity ease;
  }

body.video-playing .video-player:before {
      opacity: 0;
    }

.video-player video {
    position: relative;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    cursor: pointer;
  }

.video-player__btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 300ms all ease;
    z-index: 99;
  }

.video-player__btn svg {
      height: 8rem;
      --tw-text-opacity: 1;
      color: rgba(255, 255, 255, var(--tw-text-opacity));
      width: 8rem;
    }

.video-player__btn:focus {
      outline: none;
    }

.video-player__btn:hover {
      transform: translate(-50%, -50%) scale(1.1);
    }

.video-player-progress {
    height: 0.5rem;
    position: absolute;
    width: 100%;
    z-index: 10;
    bottom: -1px;
    left: 0;
  }

.video-player-progress__unit {
      --tw-bg-opacity: 1;
      background-color: rgba(211, 13, 80, var(--tw-bg-opacity));
      height: 100%;
    }

.grid-lines {
  background-image:
      repeating-linear-gradient(rgba(97, 108, 125, 0.4) 0 1px, transparent 1px 100%),
      repeating-linear-gradient(90deg, rgba(97, 108, 125, 0.4) 0 1px, transparent 1px 100%);
  background-size: 12rem 12rem;
}

.bullet-nav {
  display: flex;
}

.bullet-nav__item button {
      --tw-bg-opacity: 1;
      background-color: rgba(191, 196, 203, var(--tw-bg-opacity));
      border-radius: 9999px;
      height: 0.5rem;
      margin: 0.5rem;
      width: 0.5rem;
    }

.bullet-nav__item button span {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border-width: 0;
      }

.bullet-nav__item.is-current button {
        --tw-bg-opacity: 1;
        background-color: rgba(0, 19, 45, var(--tw-bg-opacity))
      }

.card {
  position: relative;
}

.card__inner {
    display: flex;
    flex-direction: column;
  }

.card__figure {
    --tw-bg-opacity: 1;
    background-color: rgba(230, 231, 234, var(--tw-bg-opacity));
    border-radius: 0.75rem;
    overflow: hidden;
    position: relative;
    will-change: transform;
    min-height: 100px;
    transition: 200ms transform ease;
  }

.card__figure img {
      width: 100%;
      min-height: 100px;
      -o-object-fit: cover;
         object-fit: cover;
    }

.card__content {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    display: flex;
    flex-direction: column;
  }

.card__title {
    line-height: 1.25;
    margin-bottom: 0.5rem;
  }

.card__title:last-child {
      margin-bottom: 0px;
    }

.card__labels {
    display: flex;
    flex-wrap: wrap;
    padding: 0.25rem;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }

.card__label {
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
    border-radius: 9999px;
    font-size: 0.65rem;
    margin: 0.5rem;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    --tw-text-opacity: 1;
    color: rgba(211, 13, 80, var(--tw-text-opacity));
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

.card__link {
    height: 100%;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 10;
    position: absolute;
  }

.card__link:hover + .card__inner .card__figure {
      transform: scale(1.025);
    }

.card__link:focus {
      border-style: none;
      outline: 2px solid transparent;
      outline-offset: 2px;
    }

.card__add {
    --tw-bg-opacity: 1;
    background-color: rgba(211, 13, 80, var(--tw-bg-opacity));
    border-radius: 9999px;
    height: 2rem;
    top: 0px;
    right: 0px;
    --tw-text-opacity: 1;
    color: rgba(255, 255, 255, var(--tw-text-opacity));
    width: 2rem;
    --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));
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    transform: translate(50%, -50%);
    transition: 200ms transform ease;
    will-change: transform;
    z-index: 99;
  }

.card__add .icon {
      height: 0.75rem;
      width: 0.75rem;
      pointer-events: none;
    }

.card__add:focus {
      border-style: none;
      outline: 2px solid transparent;
      outline-offset: 2px;
    }

.card__add:hover {
      transform: translate(50%, -50%) scale(1.05);
    }

.panel__toggle {
    background-image: none;
    border-top-left-radius: 0.125rem;
    border-top-right-radius: 0.125rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
    font-size: 1.5rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    text-align: left;
    width: 100%;
  }

.panel__toggle.is-active {
      --tw-bg-opacity: 1;
      background-color: rgba(230, 231, 234, var(--tw-bg-opacity));
    }

.tag {
  --tw-bg-opacity: 1;
  background-color: rgba(242, 243, 245, var(--tw-bg-opacity));
  border-radius: 0.375rem;
  display: inline-flex;
  align-items: center;
  font-size: 0.875rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.tag svg {
    height: 1rem;
    margin-right: 0.5rem;
    width: 1rem;
  }

.tag--success {
    --tw-bg-opacity: 1;
    background-color: rgba(243, 252, 249, var(--tw-bg-opacity));
    --tw-text-opacity: 1;
    color: rgba(5, 56, 39, var(--tw-text-opacity));
  }

.tag--awaiting {
    --tw-bg-opacity: 1;
    background-color: rgba(255, 250, 230, var(--tw-bg-opacity));
    --tw-text-opacity: 1;
    color: rgba(77, 61, 2, var(--tw-text-opacity));
  }

.tag--rejected {
    --tw-bg-opacity: 1;
    background-color: rgba(255, 250, 230, var(--tw-bg-opacity));
    --tw-text-opacity: 1;
    color: rgba(77, 61, 2, var(--tw-text-opacity));
    --tw-bg-opacity: 1;
    background-color: rgba(253, 236, 236, var(--tw-bg-opacity));
    --tw-text-opacity: 1;
    color: rgba(72, 20, 20, var(--tw-text-opacity));
  }

.question__question {
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.25;
    margin-bottom: 0.5rem;
    display: block;
  }

.question__question:last-child {
      margin-bottom: 0px;
    }

.question__input {
    position: relative;
    clear: both;
  }

.question__input .readonly-icon {
      height: 1.5rem;
      top: 0.75rem;
      right: 0.75rem;
      --tw-text-opacity: 1;
      color: rgba(153, 161, 171, var(--tw-text-opacity));
      width: 1.5rem;
      position: absolute;
    }

.question__input textarea[disabled] {
      cursor: not-allowed;
    }

.question__image {
    border-radius: 0.25rem;
    margin-top: 0px;
    position: relative;
    float: right;
    width: 100px;
    height: 100px;
    cursor: pointer;
    overflow: hidden;
  }

.question__image:before {
      --tw-bg-opacity: 1;
      background-color: rgba(0, 0, 0, var(--tw-bg-opacity));
      top: 0px;
      right: 0px;
      bottom: 0px;
      left: 0px;
      content: '';
      position: absolute;
      opacity: .25;
      z-index: 2;
    }

.question__image .icon {
      height: 2rem;
      --tw-text-opacity: 1;
      color: rgba(255, 255, 255, var(--tw-text-opacity));
      width: 2rem;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      opacity: 0.75;
      transition: 300ms all ease;
      z-index: 3;
    }

.question__image img {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 100px;
      height: 100px;
      -o-object-fit: cover;
         object-fit: cover;
      -o-object-position: center center;
         object-position: center center;
      z-index: 1;
      transition: 300ms all ease;
      will-change: transform;
    }

.question__image:hover img {
        transform: translate(-50%, -50%) scale(1.1);
      }

.question--image .question__question {
      float: left;
      width: calc(100% - 200px);
    }

.questions-next-btn {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
}

.chapter-progress {
  display: flex;
  justify-content: space-between;
}

.chapter-progress > .chapter-progress {
    flex: 4;
    justify-content: center;
    gap: 4px;
  }

.chapter-progress-item {
    display: flex;
    align-items: center;
    position: relative;
  }

.chapter-progress-item button {
      font-size: 0.875rem;
      --tw-text-opacity: 1;
      color: rgba(255, 255, 255, var(--tw-text-opacity));
      text-transform: uppercase;
    }

.chapter-progress-item button:focus {
        outline: 2px solid transparent;
        outline-offset: 2px;
      }

.chapter-progress-item__feedback-icon {
      --tw-text-opacity: 1;
      color: rgba(255, 255, 255, var(--tw-text-opacity));
      --tw-text-opacity: 0.5;
      position: absolute;
      top: 0;
      right: 0;
      transform: translate(50%, -50%);
    }

.chapter-progress-item__feedback-icon svg {
        height: 1rem;
        width: 1rem;
      }

.chapter-progress-item--intro {
      flex: 1;
    }

.chapter-progress-item--intro button:focus {
        border-bottom-width: 2px;
      }

.chapter-progress-item--outro {
      flex: 1;
      justify-content: flex-end;
    }

.chapter-progress-item--outro .btn {
        box-shadow: inset 0px -2px 0px 0px rgba(255,255,255,0.2);
        transform: all 200ms ease-in-out;
      }

.chapter-progress-item--outro .btn:hover {
          --tw-bg-opacity: 1;
          background-color: rgba(0, 0, 0, var(--tw-bg-opacity));
          transform: translate(0px, 1px);
          box-shadow: inset 0px 0px 0px 0px rgba(255,255,255,0.4);
        }

.chapter-progress-item--outro .btn:focus {
          outline: 2px solid white;
        }

.chapter-progress-item--active {
      font-weight: 700;
    }

.chapter-progress-item--active button {
        border-bottom-width: 2px;
      }

.chapter-progress-item--asignment {
      padding: 0.25rem;
      display: flex;
      justify-content: center;
      align-items: center;
    }

.chapter-progress-item--asignment button {
        background-color: transparent;
        --tw-border-opacity: 1;
        border-color: rgba(255, 255, 255, var(--tw-border-opacity));
        border-radius: 9999px;
        border-width: 2px;
        --tw-text-opacity: 1;
        color: rgba(255, 255, 255, var(--tw-text-opacity));
        width: 12px;
        height: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
      }

.chapter-progress-item--asignment button svg {
          position: absolute;
          top: 100%;
          width: 16px;
          height: 16px;
        }

.chapter-progress-item--asignment button:hover {
          --tw-bg-opacity: 1;
          background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
          --tw-text-opacity: 1;
          color: rgba(211, 13, 80, var(--tw-text-opacity));
        }

.chapter-progress-item--asignment button:focus {
          outline: 2px solid white;
        }

.chapter-progress-item--asignment:hover {
        border-color: transparent;
      }

.chapter-progress-item--asignment.chapter-progress-item--active {
        border-style: none;
        outline: 2px solid transparent;
        outline-offset: 2px;
      }

.chapter-progress-item--asignment.chapter-progress-item--active button {
          outline: 2px dotted white;
          outline-offset: 2px;
          outline-style: solid;
        }

.chapter-progress-item--asignment.is-done button {
          --tw-bg-opacity: 1;
          background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
        }

.chapter-progress .__react_component_tooltip {
    border-radius: 0.25rem;
    font-size: 0.75rem;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    --tw-text-opacity: 1;
    color: rgba(211, 13, 80, var(--tw-text-opacity));
    text-transform: uppercase;
  }

.chapter-top {
  margin-bottom: 1.5rem;
  margin-top: -0.75rem;
  gap: 1rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  text-align: center;
}

.chapter-top-left {
    flex: 1;
  }

.chapter-top-left .btn {
      border-color: rgba(255,255,255,0.2);
    }

.chapter-top-left .btn:focus, .chapter-top-left .btn:hover{
        --tw-border-opacity: 1;
        border-color: rgba(255, 255, 255, var(--tw-border-opacity));
      }

.chapter-top-right {
    flex: 1;
    justify-content: flex-end;
    display: flex;
  }

.chapter-top__chapter {
    font-weight: 900;
    --tw-text-opacity: 1;
    color: rgba(255, 255, 255, var(--tw-text-opacity));
    text-transform: uppercase;
    flex: auto;
    text-align: center;
    display: flex;
    justify-content: center;
  }

.chapter-top__status {
    background-color: transparent;
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
    border-radius: 0.25rem;
    font-weight: 700;
    height: 2rem;
    font-size: 0.75rem;
    line-height: 1;
    padding-left: 1rem;
    padding-right: 1rem;
    --tw-text-opacity: 1;
    color: rgba(211, 13, 80, var(--tw-text-opacity));
    display: flex;
    align-items: center;
    text-transform: uppercase;
  }

.chapter-top__status svg {
      height: 0.75rem;
      margin-right: 0.25rem;
      width: 0.75rem;
    }

.chapter-label {
  --tw-bg-opacity: 1;
  background-color: rgba(0, 19, 45, var(--tw-bg-opacity));
  display: inline-flex;
  align-items: center;
  font-weight: 300;
  height: 2.5rem;
  font-size: 0.875rem;
  padding-left: 1rem;
  padding-right: 1rem;
  top: 2rem;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
  position: absolute;
  left: 0;
  text-transform: uppercase;
}

.chapter-label:after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    transform: translateX(100%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 1.25rem 1.25rem 0 0;
    border-color: #00132D transparent transparent transparent;
  }

.chapter-label:before {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    transform: translateX(100%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 1.25rem 0 0 1.25rem;
    border-color: transparent transparent transparent #00132D;
  }

.teamtabs {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
}

.teamtabs-tab {
    --tw-bg-opacity: 1;
    background-color: rgba(211, 13, 80, var(--tw-bg-opacity));
    --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);
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100vw - 5rem);
    height: 100vh;
    transform: translateX(-100%);
  }

.teamtabs-tab:before {
      top: 0px;
      right: 0px;
      bottom: 0px;
      left: 0px;
      content: '';
      position: absolute;
      background-image: url('/assets/images/grain-1.png');
      background-repeat: repeat;
      pointer-events: none;
      mix-blend-mode: multiply;
      z-index: -1;
    }

@media (min-width: 1024px) {

.teamtabs-tab {
      width: calc(1024px - 10rem)
  }
    }

.teamtabs-tab__toggle {
      --tw-bg-opacity: 1;
      background-color: rgba(211, 13, 80, var(--tw-bg-opacity));
      border-top-right-radius: 1rem;
      border-bottom-right-radius: 1rem;
      height: 12rem;
      overflow: hidden;
      padding-top: 1.75rem;
      padding-bottom: 1.75rem;
      top: 2rem;
      --tw-text-opacity: 1;
      color: rgba(255, 255, 255, var(--tw-text-opacity));
      width: 5rem;
      position: absolute;
      right: 0;
      transform: translateX(100%);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-between;
    }

.teamtabs-tab__toggle:before {
        top: 0px;
        right: 0px;
        bottom: 0px;
        left: 0px;
        content: '';
        position: absolute;
        background-image: url('/assets/images/grain-1.png');
        background-repeat: repeat;
        pointer-events: none;
        mix-blend-mode: multiply;
        z-index: -1;
      }

.teamtabs-tab__toggle span {
        font-weight: 300;
        font-size: 0.875rem;
        line-height: 1.25;
        margin-bottom: 2rem;
        letter-spacing: 0.025em;
        transform: rotate(90deg);
        text-transform: uppercase;
        text-align: center;
      }

.teamtabs-tab__toggle .icon {
        height: 2.25rem;
        width: 2.25rem;
      }

.teamtabs-tab__toggle:focus {
        outline: 2px solid transparent;
        outline-offset: 2px;
      }

.teamtabs-tab__close {
      height: 5rem;
      right: -5rem;
      --tw-text-opacity: 1;
      color: rgba(255, 255, 255, var(--tw-text-opacity));
      width: 5rem;
      position: absolute;
      bottom: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transition: 300ms all ease;
    }

.teamtabs-tab__close .icon {
        height: 2.25rem;
        width: 2.25rem;
      }

.teamtabs-tab__close:focus {
        border-style: none;
        outline: 2px solid transparent;
        outline-offset: 2px;
      }

.teamtabs-tab__close:hover {
        transform: translateX(0.25rem);
      }

.teamtabs-tab__content {
      height: 100vh;
      overflow-y: auto;
      padding-top: 3rem;
      padding-right: 4rem;
      padding-left: 4rem;
      padding-bottom: 6rem;  /* IE and Edge */  /* Firefox */
    }

.teamtabs-tab__content::-webkit-scrollbar {
        display: none;
      }

.teamtabs-tab__content{
      -ms-overflow-style: none;
      scrollbar-width: none;
}

.teamtabs-tab:nth-child(2) {
      --tw-bg-opacity: 1;
      background-color: rgba(190, 12, 72, var(--tw-bg-opacity));
    }

.teamtabs-tab:nth-child(2) .teamtabs-tab__toggle {
        --tw-bg-opacity: 1;
        background-color: rgba(190, 12, 72, var(--tw-bg-opacity));
        top: calc( 12rem + 1rem + 2rem);
      }

.teamtabs-tab:nth-child(3) {
      --tw-bg-opacity: 1;
      background-color: rgba(127, 8, 48, var(--tw-bg-opacity));
    }

.teamtabs-tab:nth-child(3) .teamtabs-tab__toggle {
        --tw-bg-opacity: 1;
        background-color: rgba(127, 8, 48, var(--tw-bg-opacity));
        top: calc( 2 * 12rem + 1rem + 3rem);
      }

.teamtabs-tab:nth-child(3) .teamtabs-tab__toggle span {
          margin-bottom: 1.5rem;
        }

.papercontainer {
  position: relative;
}

.team-intro__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 25vw;
    max-width: calc(25vw + 25vh);
  }

.team-intro__title {
    font-weight: 900;
    line-height: 1;
    --tw-text-opacity: 1;
    color: rgba(255, 255, 255, var(--tw-text-opacity));
    text-align: center;
    text-transform: uppercase;
    font-size: 2.25rem;
    font-size: clamp(2.25rem, calc(3vw + 3vh), 7rem);
  }

.team-intro__sub {
    margin-top: 3rem;
    padding-left: 50%;
  }

.team-intro__excerpt {
    margin-bottom: 2rem;
    --tw-text-opacity: 1;
    color: rgba(255, 255, 255, var(--tw-text-opacity));
  }

.team-intro__image {
    position: absolute;
  }

.team-intro__image img {
      height: auto;
      width: calc(20vw + 20vh);
    }

.adminteamdetailnav {
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
  --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);
  overflow: hidden;
  right: 0;
  left: 0;
  bottom: 0;
  position: fixed;
}

@media (min-width: 768px){

.adminteamdetailnav {
    left: 16rem
}
  }

@media print {

.adminteamdetailnav {
    display: none
}
  }

.adminteamdetailnav__tabs {
    display: flex;
    justify-content: space-between;
  }

.adminteamdetailnav__items {
    display: flex;
    overflow-y: auto;
  }

.adminteamdetailnav .btn {
    height: 4.5rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }

.adminteamchapternav {
  --tw-bg-opacity: 1;
  background-color: rgba(251, 251, 251, var(--tw-bg-opacity));
  overflow: hidden;
  right: 0;
  left: 0;
  top: 0;
  position: -webkit-sticky;
  position: sticky;
}

@media print {

.adminteamchapternav {
    display: none
}
  }

.adminteamchapternav__tabs {
    display: flex;
    justify-content: flex-start;
  }

.adminteamchapternav__items {
    display: flex;
    overflow-y: auto;
  }

.adminteamchapternav .btn {
    background-color: transparent;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
    height: 4rem;
    font-size: 1.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

.adminteamchapternav .btn--tab--active {
      --tw-bg-opacity: 1;
      background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
      --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);
    }

.team-feedback-cnt {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

.team-feedback-form textarea {
      --tw-border-opacity: 1;
      border-color: rgba(191, 196, 203, var(--tw-border-opacity));
      border-radius: 0.375rem;
      border-width: 1px;
      resize: none;
    }

.team-feedback-form textarea: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);
      }

.team-feedback-form textarea:-moz-read-only {
        border-style: none;
        display: none;
        opacity: 0.2;
      }

.team-feedback-form textarea:read-only {
        border-style: none;
        display: none;
        opacity: 0.2;
      }

.bubble {
  --tw-bg-opacity: 1;
  background-color: rgba(251, 251, 251, var(--tw-bg-opacity));
  border-radius: 0.375rem;
  display: flex;
  flex-direction: column;
  padding: 0.5rem;
}

.bubble__text {
  }

.bubble__date {
    font-size: 0.65rem;
    margin-top: 0.5rem;
  }

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

.prose{
  color: #4E4E4E;
  max-width: 65ch;
}

.prose [class~="lead"]{
  color: #00132D;
  font-size: 1.25em;
  line-height: 1.6;
  margin-top: 1.2em;
  margin-bottom: 1.2em;
}

.prose a{
  color: #00132D;
  text-decoration: underline;
  font-weight: 500;
}

.prose strong{
  color: #00132D;
  font-weight: 600;
}

.prose ol[type="A"]{
  --list-counter-style: upper-alpha;
}

.prose ol[type="a"]{
  --list-counter-style: lower-alpha;
}

.prose ol[type="I"]{
  --list-counter-style: upper-roman;
}

.prose ol[type="i"]{
  --list-counter-style: lower-roman;
}

.prose ol[type="1"]{
  --list-counter-style: decimal;
}

.prose ol > li{
  position: relative;
  padding-left: 1.75em;
}

.prose ol > li::before{
  content: counter(list-item, var(--list-counter-style, decimal)) ".";
  position: absolute;
  font-weight: 400;
  color: #00132D;
  left: 0;
}

.prose ul > li{
  position: relative;
  padding-left: 1.75em;
}

.prose ul > li::before{
  content: "";
  position: absolute;
  background-color: #00132D;
  border-radius: 50%;
  width: 0.375em;
  height: 0.375em;
  top: calc(0.875em - 0.1875em);
  left: 0.25em;
}

.prose hr{
  border-color: #00132D;
  border-top-width: 1px;
  margin-top: 3em;
  margin-bottom: 3em;
}

.prose blockquote{
  font-weight: 500;
  font-style: italic;
  color: #00132D;
  border-left-width: 0.25rem;
  border-left-color: #D30D50;
  quotes: "\201C""\201D""\2018""\2019";
  margin-top: 1.6em;
  margin-bottom: 1.6em;
  padding-left: 1em;
}

.prose blockquote p:first-of-type::before{
  content: open-quote;
}

.prose blockquote p:last-of-type::after{
  content: close-quote;
}

.prose h1{
  color: #00132D;
  font-weight: 800;
  font-size: 2.25em;
  margin-top: 0;
  margin-bottom: 0.8888889em;
  line-height: 1.1111111;
  font-family: 'inter', 'helvetica', 'arial', 'sans-serif';
}

.prose h2{
  color: #00132D;
  font-weight: 700;
  font-size: 1.5em;
  margin-top: 2em;
  margin-bottom: 1em;
  line-height: 1.3333333;
  font-family: 'inter', 'helvetica', 'arial', 'sans-serif';
}

.prose h3{
  color: #00132D;
  font-weight: 600;
  font-size: 1.25em;
  margin-top: 1.6em;
  margin-bottom: 0.6em;
  line-height: 1.6;
  font-family: 'inter', 'helvetica', 'arial', 'sans-serif';
}

.prose h4{
  color: #00132D;
  font-weight: 600;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  line-height: 1.5;
  font-family: 'inter', 'helvetica', 'arial', 'sans-serif';
}

.prose figure figcaption{
  color: #00132D;
  font-size: 0.875em;
  line-height: 1.4285714;
  margin-top: 0.8571429em;
}

.prose code{
  color: #00132D;
  font-weight: 600;
  font-size: 0.875em;
}

.prose code::before{
  content: "`";
}

.prose code::after{
  content: "`";
}

.prose a code{
  color: #343434;
}

.prose pre{
  color: #00132D;
  background-color: #D30D50;
  overflow-x: auto;
  font-size: 0.875em;
  line-height: 1.7142857;
  margin-top: 1.7142857em;
  margin-bottom: 1.7142857em;
  border-radius: 0.375rem;
  padding-top: 0.8571429em;
  padding-right: 1.1428571em;
  padding-bottom: 0.8571429em;
  padding-left: 1.1428571em;
}

.prose pre code{
  background-color: transparent;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-weight: 400;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
}

.prose pre code::before{
  content: none;
}

.prose pre code::after{
  content: none;
}

.prose table{
  width: 100%;
  table-layout: auto;
  text-align: left;
  margin-top: 2em;
  margin-bottom: 2em;
  font-size: 0.875em;
  line-height: 1.7142857;
}

.prose thead{
  color: #343434;
  font-weight: 600;
  border-bottom-width: 1px;
  border-bottom-color: #DEDEDE;
}

.prose thead th{
  vertical-align: bottom;
  padding-right: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-left: 0.5714286em;
}

.prose tbody tr{
  border-bottom-width: 1px;
  border-bottom-color: #EBEBEB;
}

.prose tbody tr:last-child{
  border-bottom-width: 0;
}

.prose tbody td{
  vertical-align: top;
  padding-top: 0.5714286em;
  padding-right: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-left: 0.5714286em;
}

.prose{
  font-size: 17px;
  line-height: 1.75;
}

.prose p{
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}

.prose img{
  margin-top: 2em;
  margin-bottom: 2em;
}

.prose video{
  margin-top: 2em;
  margin-bottom: 2em;
}

.prose figure{
  margin-top: 2em;
  margin-bottom: 2em;
}

.prose figure > *{
  margin-top: 0;
  margin-bottom: 0;
}

.prose h2 code{
  font-size: 0.875em;
}

.prose h3 code{
  font-size: 0.9em;
}

.prose ol{
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}

.prose ul{
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}

.prose li{
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

.prose > ul > li p{
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}

.prose > ul > li > *:first-child{
  margin-top: 1.25em;
}

.prose > ul > li > *:last-child{
  margin-bottom: 1.25em;
}

.prose > ol > li > *:first-child{
  margin-top: 1.25em;
}

.prose > ol > li > *:last-child{
  margin-bottom: 1.25em;
}

.prose ul ul, .prose ul ol, .prose ol ul, .prose ol ol{
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}

.prose hr + *{
  margin-top: 0;
}

.prose h2 + *{
  margin-top: 0;
}

.prose h3 + *{
  margin-top: 0;
}

.prose h4 + *{
  margin-top: 0;
}

.prose thead th:first-child{
  padding-left: 0;
}

.prose thead th:last-child{
  padding-right: 0;
}

.prose tbody td:first-child{
  padding-left: 0;
}

.prose tbody td:last-child{
  padding-right: 0;
}

.prose > :first-child{
  margin-top: 0;
}

.prose > :last-child{
  margin-bottom: 0;
}

.prose{
  font-family: 'Georgia', 'Cambria', 'Times New Roman', 'Times', 'serif';
}

.prose-sans{
  font-family: 'inter', 'helvetica', 'arial', 'sans-serif';
  color: #00132D;
}

.divide-y > :not([hidden]) ~ :not([hidden]){
  --tw-divide-y-reverse: 0;
  border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
}

.divide-gray-300 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(222, 222, 222, var(--tw-divide-opacity));
}

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

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

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

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

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

.bg-gray-50{
  --tw-bg-opacity: 1;
  background-color: rgba(251, 251, 251, var(--tw-bg-opacity));
}

.bg-gray-100{
  --tw-bg-opacity: 1;
  background-color: rgba(247, 247, 247, var(--tw-bg-opacity));
}

.bg-gray-200{
  --tw-bg-opacity: 1;
  background-color: rgba(235, 235, 235, var(--tw-bg-opacity));
}

.bg-gray-400{
  --tw-bg-opacity: 1;
  background-color: rgba(198, 198, 198, var(--tw-bg-opacity));
}

.bg-primary-400{
  --tw-bg-opacity: 1;
  background-color: rgba(224, 86, 133, var(--tw-bg-opacity));
}

.bg-secondary-100{
  --tw-bg-opacity: 1;
  background-color: rgba(230, 231, 234, var(--tw-bg-opacity));
}

.bg-secondary-200{
  --tw-bg-opacity: 1;
  background-color: rgba(191, 196, 203, var(--tw-bg-opacity));
}

.bg-secondary-500{
  --tw-bg-opacity: 1;
  background-color: rgba(0, 19, 45, var(--tw-bg-opacity));
}

.bg-tertiary-500{
  --tw-bg-opacity: 1;
  background-color: rgba(29, 45, 69, var(--tw-bg-opacity));
}

.bg-warning-200{
  --tw-bg-opacity: 1;
  background-color: rgba(251, 208, 208, var(--tw-bg-opacity));
}

.bg-succes-100{
  --tw-bg-opacity: 1;
  background-color: rgba(231, 248, 242, var(--tw-bg-opacity));
}

.bg-succes-200{
  --tw-bg-opacity: 1;
  background-color: rgba(195, 238, 224, var(--tw-bg-opacity));
}

.hover\:bg-secondary-100:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(230, 231, 234, var(--tw-bg-opacity));
}

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

.border-gray-50{
  --tw-border-opacity: 1;
  border-color: rgba(251, 251, 251, var(--tw-border-opacity));
}

.border-gray-200{
  --tw-border-opacity: 1;
  border-color: rgba(235, 235, 235, var(--tw-border-opacity));
}

.border-gray-300{
  --tw-border-opacity: 1;
  border-color: rgba(222, 222, 222, var(--tw-border-opacity));
}

.border-gray-600{
  --tw-border-opacity: 1;
  border-color: rgba(156, 156, 156, var(--tw-border-opacity));
}

.border-gray-800{
  --tw-border-opacity: 1;
  border-color: rgba(78, 78, 78, var(--tw-border-opacity));
}

.border-secondary-50{
  --tw-border-opacity: 1;
  border-color: rgba(242, 243, 245, var(--tw-border-opacity));
}

.border-secondary-100{
  --tw-border-opacity: 1;
  border-color: rgba(230, 231, 234, var(--tw-border-opacity));
}

.border-secondary-500{
  --tw-border-opacity: 1;
  border-color: rgba(0, 19, 45, var(--tw-border-opacity));
}

.border-warning-300{
  --tw-border-opacity: 1;
  border-color: rgba(249, 180, 180, var(--tw-border-opacity));
}

.border-succes-300{
  --tw-border-opacity: 1;
  border-color: rgba(159, 227, 205, var(--tw-border-opacity));
}

.rounded-sm{
  border-radius: 0.125rem;
}

.rounded{
  border-radius: 0.25rem;
}

.rounded-md{
  border-radius: 0.375rem;
}

.rounded-lg{
  border-radius: 0.5rem;
}

.rounded-xl{
  border-radius: 0.75rem;
}

.rounded-full{
  border-radius: 9999px;
}

.rounded-l-lg{
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}

.rounded-tl-md{
  border-top-left-radius: 0.375rem;
}

.rounded-bl-md{
  border-bottom-left-radius: 0.375rem;
}

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

.border-0{
  border-width: 0px;
}

.border-2{
  border-width: 2px;
}

.border{
  border-width: 1px;
}

.border-t-2{
  border-top-width: 2px;
}

.border-b-2{
  border-bottom-width: 2px;
}

.border-b{
  border-bottom-width: 1px;
}

.last\:border-b-0:last-child{
  border-bottom-width: 0px;
}

.cursor-not-allowed{
  cursor: not-allowed;
}

.cursor-resize{
  cursor: col-resize;
}

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

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

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

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

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

.flex-1{
  flex: 1 1 0%;
}

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

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

.font-sans{
  font-family: 'inter', 'helvetica', 'arial', 'sans-serif';
}

.font-mono{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.font-light{
  font-weight: 300;
}

.font-normal{
  font-weight: 400;
}

.font-medium{
  font-weight: 500;
}

.font-semibold{
  font-weight: 600;
}

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

.font-black{
  font-weight: 900;
}

.h-1{
  height: 0.25rem;
}

.h-4{
  height: 1rem;
}

.h-5{
  height: 1.25rem;
}

.h-7{
  height: 1.75rem;
}

.h-8{
  height: 2rem;
}

.h-10{
  height: 2.5rem;
}

.h-12{
  height: 3rem;
}

.h-14{
  height: 3.5rem;
}

.h-16{
  height: 4rem;
}

.h-24{
  height: 6rem;
}

.h-32{
  height: 8rem;
}

.h-40{
  height: 10rem;
}

.h-full{
  height: 100%;
}

.h-screen{
  height: 100vh;
}

.text-xxs{
  font-size: 0.65rem;
}

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

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

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

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

.text-xl{
  font-size: 1.25rem;
}

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

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

.text-4xl{
  font-size: 2.25rem;
}

.text-5xl{
  font-size: 3rem;
}

.text-6xl{
  font-size: 4rem;
}

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

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

.leading-normal{
  line-height: 1.5;
}

.m-1{
  margin: 0.25rem;
}

.m-2{
  margin: 0.5rem;
}

.m-4{
  margin: 1rem;
}

.m-8{
  margin: 2rem;
}

.m-10{
  margin: 2.5rem;
}

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

.mx-4{
  margin-left: 1rem;
  margin-right: 1rem;
}

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

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

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

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

.-mx-4{
  margin-left: -1rem;
  margin-right: -1rem;
}

.-mx-5{
  margin-left: -1.25rem;
  margin-right: -1.25rem;
}

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

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

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

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

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

.mr-3{
  margin-right: 0.75rem;
}

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

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

.mr-4{
  margin-right: 1rem;
}

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

.ml-4{
  margin-left: 1rem;
}

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

.mb-6{
  margin-bottom: 1.5rem;
}

.ml-6{
  margin-left: 1.5rem;
}

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

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

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

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

.mb-10{
  margin-bottom: 2.5rem;
}

.ml-10{
  margin-left: 2.5rem;
}

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

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

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

.mb-20{
  margin-bottom: 5rem;
}

.ml-24{
  margin-left: 6rem;
}

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

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

.max-h-12{
  max-height: 3rem;
}

.max-w-none{
  max-width: none;
}

.max-w-xl{
  max-width: 36rem;
}

.max-w-3xl{
  max-width: 48rem;
}

.min-h-full{
  min-height: 100%;
}

.min-h-screen{
  min-height: 100vh;
}

.opacity-70{
  opacity: 0.7;
}

.hover\:opacity-70:hover{
  opacity: 0.7;
}

.hover\:opacity-80:hover{
  opacity: 0.8;
}

.outline-none{
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.focus\:outline-none:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.overflow-hidden{
  overflow: hidden;
}

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

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

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

.p-2{
  padding: 0.5rem;
}

.p-4{
  padding: 1rem;
}

.p-5{
  padding: 1.25rem;
}

.p-6{
  padding: 1.5rem;
}

.p-8{
  padding: 2rem;
}

.p-16{
  padding: 4rem;
}

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

.py-2{
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

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

.py-3{
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

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

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

.px-5{
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.py-6{
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

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

.py-8{
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-12{
  padding-top: 3rem;
  padding-bottom: 3rem;
}

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

.pb-2{
  padding-bottom: 0.5rem;
}

.pb-4{
  padding-bottom: 1rem;
}

.pt-8{
  padding-top: 2rem;
}

.pt-12{
  padding-top: 3rem;
}

.pb-20{
  padding-bottom: 5rem;
}

.pt-24{
  padding-top: 6rem;
}

.pointer-events-none{
  pointer-events: none;
}

.pointer-events-auto{
  pointer-events: auto;
}

.static{
  position: static;
}

.fixed{
  position: fixed;
}

.absolute{
  position: absolute;
}

.relative{
  position: relative;
}

.sticky{
  position: -webkit-sticky;
  position: sticky;
}

.top-0{
  top: 0px;
}

.right-0{
  right: 0px;
}

.bottom-0{
  bottom: 0px;
}

.left-0{
  left: 0px;
}

.top-4{
  top: 1rem;
}

.left-4{
  left: 1rem;
}

.top-1\/2{
  top: 50%;
}

.resize{
  resize: both;
}

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

.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-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-xl{
  --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-xs{
  --tw-shadow: 0 0 0 1px 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);
}

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

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

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

.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(222, 222, 222, var(--tw-text-opacity));
}

.text-gray-500{
  --tw-text-opacity: 1;
  color: rgba(173, 173, 173, var(--tw-text-opacity));
}

.text-gray-700{
  --tw-text-opacity: 1;
  color: rgba(104, 104, 104, var(--tw-text-opacity));
}

.text-gray-800{
  --tw-text-opacity: 1;
  color: rgba(78, 78, 78, var(--tw-text-opacity));
}

.text-primary-500{
  --tw-text-opacity: 1;
  color: rgba(211, 13, 80, var(--tw-text-opacity));
}

.text-secondary-200{
  --tw-text-opacity: 1;
  color: rgba(191, 196, 203, var(--tw-text-opacity));
}

.text-secondary-300{
  --tw-text-opacity: 1;
  color: rgba(153, 161, 171, var(--tw-text-opacity));
}

.text-secondary-500{
  --tw-text-opacity: 1;
  color: rgba(0, 19, 45, var(--tw-text-opacity));
}

.text-warning-500{
  --tw-text-opacity: 1;
  color: rgba(239, 68, 68, var(--tw-text-opacity));
}

.text-succes-500{
  --tw-text-opacity: 1;
  color: rgba(16, 185, 129, var(--tw-text-opacity));
}

.hover\:text-gray-800:hover{
  --tw-text-opacity: 1;
  color: rgba(78, 78, 78, var(--tw-text-opacity));
}

.hover\:text-primary-500:hover{
  --tw-text-opacity: 1;
  color: rgba(211, 13, 80, var(--tw-text-opacity));
}

.hover\:text-opacity-70:hover{
  --tw-text-opacity: 0.7;
}

.italic{
  font-style: italic;
}

.not-italic{
  font-style: normal;
}

.uppercase{
  text-transform: uppercase;
}

.normal-case{
  text-transform: none;
}

.underline{
  text-decoration: underline;
}

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

.group:hover .group-hover\:underline{
  text-decoration: underline;
}

.hover\:underline:hover{
  text-decoration: underline;
}

.tracking-wide{
  letter-spacing: 0.025em;
}

.tracking-widest{
  letter-spacing: 0.1em;
}

.align-top{
  vertical-align: top;
}

.align-middle{
  vertical-align: middle;
}

.visible{
  visibility: visible;
}

.invisible{
  visibility: hidden;
}

.w-1{
  width: 0.25rem;
}

.w-2{
  width: 0.5rem;
}

.w-4{
  width: 1rem;
}

.w-5{
  width: 1.25rem;
}

.w-7{
  width: 1.75rem;
}

.w-8{
  width: 2rem;
}

.w-10{
  width: 2.5rem;
}

.w-12{
  width: 3rem;
}

.w-14{
  width: 3.5rem;
}

.w-16{
  width: 4rem;
}

.w-24{
  width: 6rem;
}

.w-32{
  width: 8rem;
}

.w-64{
  width: 16rem;
}

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

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

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

.w-1\/4{
  width: 25%;
}

.w-3\/4{
  width: 75%;
}

.w-1\/12{
  width: 8.333333%;
}

.w-full{
  width: 100%;
}

.w-screen{
  width: 100vw;
}

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

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

.gap-1{
  gap: 0.25rem;
}

.gap-2{
  gap: 0.5rem;
}

.gap-4{
  gap: 1rem;
}

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

.-translate-y-1\/2{
  --tw-translate-y: -50%;
}

.transition{
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

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

.post-it-editor {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: wrap;
  text-align: center;
}

@media (min-width: 640px){
  .sm\:flex-nowrap{
    flex-wrap: nowrap;
  }

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

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

  .sm\:w-1\/4{
    width: 25%;
  }

  .sm\:w-3\/4{
    width: 75%;
  }

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

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

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

@media (min-width: 1024px){
  .lg\:w-1\/2{
    width: 50%;
  }
}

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

@media (max-width: 1279px){
}

@media (max-width: 1023px){
}

@media (max-width: 767px){
}

@media (max-width: 639px){
}

@media print{
  .print\:rounded-none{
    border-radius: 0px;
  }

  .print\:hidden{
    display: none;
  }

  .print\:p-0{
    padding: 0px;
  }

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