.root {
    min-height: 600px;
    font-family: "Muli","Roboto","Helvetica",Arial,sans-serif;
}

.word-wrap {
    -webkit-hyphens: auto;
            hyphens: auto;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.jobposting-header {
    position: relative;
    width: 100%;
    height: 15rem;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.jobposting-no-header {
    position: relative;
    width: 100%;
    height: 12rem;
}

.jobposting-no-header .jobposting-logo-wrapper-no-header {
        top: 3rem;
    }

.jobposting-logo-wrapper {
    width: 100%;
    position: absolute;
    display: flex;
    justify-content: center;
    top: 11rem;
}

.jobposting-logo-wrapper .jobposting-logo {
        width: 8rem;
        height: 8rem;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        border-radius: 50%;
        border: 0.5rem solid #fff;
    }

.jobposting-details-extra-margin {
    margin-top: 4rem;
}

.h-8 {
    height: 2rem!important;
}

.w-66 {
    width: 66%;
}

.w-33 {
    width: 33%;
}

.flex-basis-full {
    flex-basis: 100%;
}

.jobposting-overview {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.jobposting-overview .jobposting-bullets {
        border: 1px solid rgba(0, 0, 0, 0.12);
        border-radius: 0.4rem;
        padding: 1.5rem;
        margin-top: 1rem;
        display: flex;
        flex-wrap: wrap;
    }

.jobposting-overview .jobposting-bullets .jobposting-bullet {
            display: flex;
            flex-basis: 100%;
            margin: 0.33rem 0;
        }

.jobposting-headline {
    font-size: 0.8rem;
    margin: 1rem 0;
    color: rgba(0, 0, 0, 0.87);
}

.jobposting-description p {
    padding: 0 0 0.5rem 0;
}

.jobposting-description ul {
    padding: 0 20px;
}

.jobposting-description ul li {
        padding: 2px 0
    }

.jobposting-description ul {
    list-style-type: disc;
}

.jobposting-description ul > ul {
    list-style-type: circle;
}

.jobposting-benefits {
    padding: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 0.4rem;
    margin-bottom: 2rem;
}

.jobposting-benefits .jobposting-title {
        font-size: 1.25rem;
    }

.jobposting-benefits .jobposting-benefit {
        padding: 0.75rem 0;
        display: flex;
        justify-content: space-between;
        flex-basis: 100%;
    }

.jobposting-hr {
    padding: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 0.4rem;
    display: flex;
    flex-direction: column;
}

.jobposting-hr .jobposting-contact-information {
        display: flex;
        flex-direction: column;
    }

.jobposting-hr .jobposting-avatar {
        border-radius: 50%;
        min-width: 12rem;
        min-height: 12rem;
        margin-bottom: 1.5rem;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        border: 2px solid #387CA3;
        align-self: center;
    }

.jobposting-hr .jobposting-name {
        font-weight: 700;
        font-size: 1rem;
        align-self: start;
        min-height: 1.5rem;
        display: flex;
        align-items: center;
    }

.jobposting-hr .jobposting-sub-title {
        font-weight: 600;
        font-size: 0.75rem;
        color: #9e9e9e;
        align-self: start;
    }

.jobposting-hr .jobposting-email {
        font-size: 1rem;
        align-self: start;
        min-height: 3rem;
        display: flex;
        align-items: center;
    }

.jobposting-icon-text {
    display: flex;
    align-items: center;
}

.jobposting-icon-text .jobposting-text {
        font-size: 1rem;
    }

.jobposting-icon-text .jobposting-icon .material-icons-outlined {
        font-size: 1.6rem;
        color: rgba(0, 0, 0, 0.54);
        display: flex;
        width: 2.4rem;
    }

.jobposting-back-button {
    display:flex;
    align-items:center;
}

.jobposting-back-button .jobposting-back-text {
        font-size: 0.8rem;
        margin-top: 0.3rem;
    }

.jobposting-back-button .jobposting-back-icon .material-icons-outlined {
        font-size: 1.4rem;
        color: rgba(0, 0, 0, 0.54);
        display: flex;
        width: 1.2rem;
    }

.jobposting-icon-tooltip {
    position: relative;
}

.jobposting-icon-tooltip .jobposting-icon-tooltip-text {
    font-size: 0.75rem;
    visibility: hidden;
    min-width: 6.25rem;
    max-width: 6.25rem;
    background-color: #555;
    color: #fff;
    text-align: center;
    padding: 0.5rem;
    border-radius: 0.4rem;

    /* Position the tooltip text */
    position: absolute;
    z-index: 1;
    bottom: 2.5rem;
    left: -0.9rem;

    /* Fade in tooltip */
    opacity: 0;
    transition: opacity 0.3s;
}

.jobposting-icon-tooltip .jobposting-icon-tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -0.5rem;
    border-width: 0.5rem;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.jobposting-icon-tooltip:hover .jobposting-icon-tooltip-text {
    visibility: visible;
    opacity: 1;
}

.rotate180 {
    transform: scaleY(-1);
}

.jobposting-open-sidebar-btn-native {
    position: fixed !important;
    transform: translateX(-50%);
    bottom: 1rem;
    left: 50%;
    text-transform: none !important;
}

.jobposting-sidebar .jobposting-close-icon {
        position: absolute;
        top: 1rem;
        left: 1rem;
        cursor: pointer;
    }

.jobposting-sidebar .jobposting-title {
        font-size: 3.2rem;
        font-weight: 400;
    }

/* TABLET */

@media (min-width: 768px) {
    .h-md-36 {
        height: 2.5rem!important;
    }

    .w-md-66 {
        width: 66%;
    }

    .w-md-33 {
        width: 33%;
    }

    .flex-basis-md-full {
        flex-basis: 100%;
    }

    .jobposting-headline {
        font-size: 0.625rem;
        margin: 0.625rem 0;
    }

    .jobposting-overview .jobposting-bullets .jobposting-bullet {
        flex-basis: 50%;
    }

    .jobposting-benefits .jobposting-benefit {
        flex-basis: 50%;
    }

    .jobposting-hr {
        flex-direction: row;
    }

        .jobposting-hr .jobposting-avatar {
            margin-bottom: 0;
        }

        .jobposting-hr .jobposting-contact-information {
            margin-left: 2rem;
        }
}

@media (min-width: 1200px) {
    .w-xl-66 {
        width: 66%;
    }

    .w-xl-33 {
        width: 33%;
    }

    .flex-basis-xl-full {
        flex-basis: 100%;
    }

    .jobposting-header {
        height: 15rem;
    }

    .jobposting-logo-wrapper {
        top: 11rem;
    }

    .jobposting-headline {
        font-size: 0.875rem;
        margin: 0.625rem 0;
    }

    .jobposting-overview .jobposting-bullets .jobposting-bullet {
        flex-basis: 33%;
    }

    .jobposting-benefits .jobposting-benefit {
        flex-basis: 100%;
    }

    .jobposting-hr {
        flex-direction: column;
    }

        .jobposting-hr .jobposting-avatar {
            margin-bottom: 1.5rem;
        }

        .jobposting-hr .jobposting-contact-information {
            margin-left: 0;
        }

    .jobposting-open-sidebar-btn-native {
        display: none;
    }

    .jobposting-sidebar {
        max-height: 100%;
        overflow-y: auto;
        color: #ffffff;
        background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
        transform: translateX(0);
    }

        .jobposting-sidebar .applyButton {
            text-transform: unset;
        }
}

.jobposting-sub-title {
    font-size: 0.5rem;
    color: rgba(0, 0, 0, 0.87);
}

@media (min-width: 1200px) {
    .jobposting-details .jobposting-main-info .jobposting-overview .jobposting-bullets .jobposting-bullet {
        min-width: 50%;
    }
}

@media (min-width: 1600px) {
    .jobposting-details .jobposting-main-info .jobposting-overview .jobposting-bullets .jobposting-bullet {
        min-width: 33%;
    }
}

@media print {
    .jobposting-overview .jobposting-bullets .jobposting-bullet {
        flex-basis: 50%;
    }

    .jobposting-benefits .jobposting-benefit {
        flex-basis: 50%;
    }

    .jobposting-hr {
        flex-direction: row;
    }

        .jobposting-hr .jobposting-avatar {
            border-radius: 50%;
            min-width: 12rem;
            min-height: 12rem;
            margin-bottom: 1.5rem;
            border: 2px solid #387CA3;
            align-self: center;
        }

        .jobposting-hr .jobposting-contact-information {
            margin-left: 2rem;
        }

    .h-print-full {
        height: 100% !important;
    }

    .d-flex-print-nowrap {
        flex-wrap: nowrap;
    }

    .page-break-inside-print-avoid {
        page-break-inside: avoid;
    }

    .jobposting-logo-wrapper-print {
        width: 100%;
        position: absolute;
        display: flex;
        justify-content: center;
        top: 7rem;
    }

        .jobposting-logo-wrapper-print .jobposting-logo-print {
            width: 5rem;
            height: 5rem;
            background-size: cover;
            border-radius: 50%;
            border: 0.3rem solid #fff;
        }
}

.display-6 {
    font-size:120%;

}

.h1-muted {
    font-size: 80%;

}

.jp-index-customer-logo {
    width:100px;
    max-height: 100px;
    display:flex;
}

.jp-index-customer-logo > img {
    width:100px;
    max-height: 100px;
}

.wordWrap {
    overflow-wrap: break-word;
    word-wrap: break-word;
    -webkit-hyphens: auto;
            hyphens: auto;
}

.jp-list-advanced-headlines {
    font-size: 0.625rem;
}

.jp-list-advanced-divider {
    width: 1px;
    margin: 5px 0;
    background-color: rgba(0,0,0,0.2);
}

.video-overlay {
    /* Position */
    left: 0;
    position: absolute;
    top: 0;

    /* Take full size */
    height: 100%;
    width: 100%;

    /* Center the content */
    align-items: center;
    display: flex;
    justify-content: center;

    /* Add a dark background */
    /* background-color: rgba(114, 179, 218, 0.25); */
}

.mana-video-modal {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.min-h-360 {
    min-height: 360px;
}

.min-h-10 {
    min-height: 10px;
}

.tp-card {
    width: 410px;
    height: 610px;
}

.tp-mana-avatar-circle {
    border-radius: 50%;
    width: 178px;
    height: 178px;
}

.tp-mana-avatar-logo {
    width: 100px;
    height: auto;
}

.tp-modal {
    width: 410px !important;
}

.tp-modal-header-no-bottom-border {
    border-bottom: none !important;
}

.tp-company-logo {
    margin-top: -36px;
}

/* ! tailwindcss v3.1.4 | MIT License | https://tailwindcss.com */

/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

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

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
*/

html {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
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)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

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

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

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

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

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font family by default.
2. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", 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;
}

/*
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)
3. Remove gaps between table borders by default.
*/

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

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

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

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

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

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

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

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

progress {
  vertical-align: baseline;
}

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

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

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

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

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

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

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

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

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

summary {
  display: list-item;
}

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

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

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

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

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

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

/*
Set the default cursor for buttons.
*/

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

/*
Make sure disabled buttons don't get the pointer cursor.
*/

:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

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-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x:  ;
    --tw-pan-y:  ;
    --tw-pinch-zoom:  ;
    --tw-scroll-snap-strictness: proximity;
    --tw-ordinal:  ;
    --tw-slashed-zero:  ;
    --tw-numeric-figure:  ;
    --tw-numeric-spacing:  ;
    --tw-numeric-fraction:  ;
    --tw-ring-inset:  ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgb(59 130 246 / 0.5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur:  ;
    --tw-brightness:  ;
    --tw-contrast:  ;
    --tw-grayscale:  ;
    --tw-hue-rotate:  ;
    --tw-invert:  ;
    --tw-saturate:  ;
    --tw-sepia:  ;
    --tw-drop-shadow:  ;
    --tw-backdrop-blur:  ;
    --tw-backdrop-brightness:  ;
    --tw-backdrop-contrast:  ;
    --tw-backdrop-grayscale:  ;
    --tw-backdrop-hue-rotate:  ;
    --tw-backdrop-invert:  ;
    --tw-backdrop-opacity:  ;
    --tw-backdrop-saturate:  ;
    --tw-backdrop-sepia:  ;
}

::-webkit-backdrop {
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x:  ;
    --tw-pan-y:  ;
    --tw-pinch-zoom:  ;
    --tw-scroll-snap-strictness: proximity;
    --tw-ordinal:  ;
    --tw-slashed-zero:  ;
    --tw-numeric-figure:  ;
    --tw-numeric-spacing:  ;
    --tw-numeric-fraction:  ;
    --tw-ring-inset:  ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgb(59 130 246 / 0.5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur:  ;
    --tw-brightness:  ;
    --tw-contrast:  ;
    --tw-grayscale:  ;
    --tw-hue-rotate:  ;
    --tw-invert:  ;
    --tw-saturate:  ;
    --tw-sepia:  ;
    --tw-drop-shadow:  ;
    --tw-backdrop-blur:  ;
    --tw-backdrop-brightness:  ;
    --tw-backdrop-contrast:  ;
    --tw-backdrop-grayscale:  ;
    --tw-backdrop-hue-rotate:  ;
    --tw-backdrop-invert:  ;
    --tw-backdrop-opacity:  ;
    --tw-backdrop-saturate:  ;
    --tw-backdrop-sepia:  ;
}

::backdrop {
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x:  ;
    --tw-pan-y:  ;
    --tw-pinch-zoom:  ;
    --tw-scroll-snap-strictness: proximity;
    --tw-ordinal:  ;
    --tw-slashed-zero:  ;
    --tw-numeric-figure:  ;
    --tw-numeric-spacing:  ;
    --tw-numeric-fraction:  ;
    --tw-ring-inset:  ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgb(59 130 246 / 0.5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur:  ;
    --tw-brightness:  ;
    --tw-contrast:  ;
    --tw-grayscale:  ;
    --tw-hue-rotate:  ;
    --tw-invert:  ;
    --tw-saturate:  ;
    --tw-sepia:  ;
    --tw-drop-shadow:  ;
    --tw-backdrop-blur:  ;
    --tw-backdrop-brightness:  ;
    --tw-backdrop-contrast:  ;
    --tw-backdrop-grayscale:  ;
    --tw-backdrop-hue-rotate:  ;
    --tw-backdrop-invert:  ;
    --tw-backdrop-opacity:  ;
    --tw-backdrop-saturate:  ;
    --tw-backdrop-sepia:  ;
}

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

.static {
    position: static;
}

.fixed {
    position: fixed;
}

.absolute {
    position: absolute;
}

.relative {
    position: relative;
}

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

.bottom-0 {
    bottom: 0px;
}

.order-1 {
    order: 1;
}

.order-2 {
    order: 2;
}

.order-4 {
    order: 4;
}

.order-3 {
    order: 3;
}

.order-5 {
    order: 5;
}

.m-2 {
    margin: 0.5rem;
}

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

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

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

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

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

.my-4 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.my-5 {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
}

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

.mt-auto {
    margin-top: auto;
}

.mr-auto {
    margin-right: auto;
}

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

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

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

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

.mt-5 {
    margin-top: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

.block {
    display: block;
}

.flex {
    display: flex;
}

.hidden {
    display: none;
}

.h-full {
    height: 100%;
}

.h-16 {
    height: 4rem;
}

.h-24 {
    height: 6rem;
}

.h-32 {
    height: 8rem;
}

.h-40 {
    height: 10rem;
}

.h-48 {
    height: 12rem;
}

.h-screen {
    height: 100vh;
}

.h-8 {
    height: 2rem;
}

.w-24 {
    width: 6rem;
}

.w-full {
    width: 100%;
}

.w-16 {
    width: 4rem;
}

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

.max-w-screen-sm {
    max-width: 640px;
}

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

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

.translate-y-5 {
    --tw-translate-y: 1.25rem;
    transform: translate(var(--tw-translate-x), 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));
}

.transform {
    transform: translate(var(--tw-translate-x), 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));
}

.cursor-pointer {
    cursor: pointer;
}

.cursor-default {
    cursor: default;
}

.resize {
    resize: both;
}

.flex-row-reverse {
    flex-direction: row-reverse;
}

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

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

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

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

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

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

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

.overflow-auto {
    overflow: auto;
}

.rounded {
    border-radius: 0.25rem;
}

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

.rounded-t-lg {
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}

.rounded-b-lg {
    border-bottom-right-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
}

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

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

.bg-cover {
    background-size: cover;
}

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

.p-3 {
    padding: 0.75rem;
}

.p-2 {
    padding: 0.5rem;
}

.p-4 {
    padding: 1rem;
}

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

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

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

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

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

.py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

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

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

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

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

.pr-2 {
    padding-right: 0.5rem;
}

.pr-4 {
    padding-right: 1rem;
}

.pl-4 {
    padding-left: 1rem;
}

.pb-6 {
    padding-bottom: 1.5rem;
}

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

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

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

.pl-3 {
    padding-left: 0.75rem;
}

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

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

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

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

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

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

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

.shadow {
    --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-sm {
    --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-none {
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-lg {
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

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

.backdrop-blur-sm {
    --tw-backdrop-blur: blur(4px);
    -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
            backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}

/* MATERIAL ICONS */

@font-face {
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    src: url("./assets/fonts/Material-Icons.woff2") format('woff2');
}

@font-face {
    font-family: 'Material Icons Outlined';
    font-style: normal;
    font-weight: 400;
    src: url("./assets/fonts/Material-Icons-Outlined.woff2") format('woff2');
}

.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

.material-icons-outlined {
    font-family: 'Material Icons Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

/* cyrillic-ext */

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    src: url('./assets/fonts/Roboto-Cyr-Ext-300.woff2') format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

/* cyrillic */

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    src: url('./assets/fonts/Roboto-Cyr-300.woff2') format('woff2');
    unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

/* greek-ext */

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    src: url('./assets/fonts/Roboto-Greek-Ext-300.woff2') format('woff2');
    unicode-range: U+1F00-1FFF;
  }

/* latin-ext */

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    src: url('./assets/fonts/Roboto-Lat-Ext-300.woff2') format('woff2');
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
  }

/* latin */

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    src: url('./assets/fonts/Roboto-Lat-300.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  }

/* latin-ext */

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    src: url('./assets/fonts/Roboto-Lat-Ext-400.woff2') format('woff2');
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
  }

/* latin */

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    src: url('./assets/fonts/Roboto-Lat-400.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  }

/* latin */

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 600;
    src: url('./assets/fonts/Roboto-Lat-600.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* latin-ext */

/* @font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    src: url('./assets/fonts/Roboto-Greek-Ext-300.woff2') format('woff2');
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
  } */

/* latin */

/* @font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    src: url('./assets/fonts/Roboto-Greek-Ext-300.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  } */

/* latin-ext */

/* @font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('./assets/fonts/Roboto-Greek-Ext-300.woff2') format('woff2');
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
  } */

/* latin */

/* @font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('./assets/fonts/Roboto-Greek-Ext-300.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  } */

/* Roboto-Mono */

/* latin-ext */

@font-face {
	font-family: 'Roboto Mono';
	font-style: normal;
	font-weight: 400;
	src: url('./assets/fonts/Roboto-Mono-Lat-Ext.woff') format('woff');
	unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */

@font-face {
	font-family: 'Roboto Mono';
	font-style: normal;
	font-weight: 400;
	src: url('./assets/fonts/Roboto-Mono-Lat.woff') format('woff');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
	font-family: 'PT Sans';
	font-style: normal;
	font-weight: 400;
	src: url('./assets/fonts/PT-Sans-Lat-Ext-400.woff2') format('woff2');
	unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
	font-family: 'PT Sans';
	font-style: normal;
	font-weight: 400;
	src: url('./assets/fonts/PT-Sans-Lat-400.woff2') format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 400;
	src: url('./assets/fonts/Manrope-Lat-Ext-400.woff') format('woff');
	unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 400;
	src: url('./assets/fonts/Manrope-Lat-400.woff') format('woff');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
	font-family: 'Actor';
	font-style: normal;
	font-weight: 400;
	src: url('./assets/fonts/Actor-Lat-400.woff2') format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
	font-family: 'PT Sans Caption';
	font-style: normal;
	font-weight: 400;
	src: url('./assets/fonts/PT-Sans-Caption-Lat-Ext-400.woff2') format('woff2');
	unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
	font-family: 'PT Sans Caption';
	font-style: normal;
	font-weight: 400;
	src: url('./assets/fonts/PT-Sans-Caption-Lat-400.woff2') format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
	font-family: 'Fira Sans Extra Condensed';
	font-style: normal;
	font-weight: 400;
	src: url('./assets/fonts/Fira-Sans-Condensed-Lat-Ext-400.woff2') format('woff2');
	unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
	font-family: 'Fira Sans Extra Condensed';
	font-style: normal;
	font-weight: 400;
	src: url('./assets/fonts/Fira-Sans-Condensed-Lat-400.woff2') format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
	font-family: 'Fira Sans';
	font-style: normal;
	font-weight: 400;
	src: url('./assets/fonts/Fira-Sans-Latin-Ext-400.woff2') format('woff2');
	unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
	font-family: 'Fira Sans';
	font-style: normal;
	font-weight: 400;
	src: url('./assets/fonts/Fira-Sans-Lat-400.woff2') format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* FONTS END */

body {
	margin: 0;
	font-family: Roboto, -apple-system, BlinkMacSystemFont, Segoe UI, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
	font-size: 14px;
	line-height: 1.5;
	color: #333;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0 0 0.5em 0;
	font-weight: 400;
	line-height: 1.2;
}

h1 {
	font-size: 2em;
}

a {
	color: inherit;
}

code {
	font-family: menlo, inconsolata, monospace;
	font-size: calc(1em - 2px);
	color: #555;
	background-color: #f0f0f0;
	padding: 0.2em 0.4em;
	border-radius: 2px;
}

/* --- CUSTOM STYLES --- */

.hover\:even-shadow:hover {
	box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.05);
}

.button-shaped-round {
	border-radius: 999px !important;
}

.word-break {
	overflow-wrap: break-word;
	word-wrap: break-word;
	-webkit-hyphens: auto;
	        hyphens: auto;
}

.w-75 {
	width: 18.75rem;
}

.w-150 {
	width: 37.5rem;
}

.h-50 {
	height: 12.5rem;
}

.h-80 {
	height: 20rem;
}

.h-100 {
	height: 25rem;
}

.h-120 {
	height: 30rem;
}

.h-140 {
	height: 35rem;
}

.h-160 {
	height: 40rem;
}

.min-w-75 {
	min-width: 18.75rem;
}

.min-w-150 {
	min-width: 37.5rem;
}

.min-h-20 {
	min-height: 5rem;
}

.min-h-50 {
	min-height: 12.5rem;
}

.min-h-100 {
	min-height: 25rem;
}

.min-h-160 {
	min-height: 40rem;
}

.min-h-main-full {
	min-height: calc(100vh - 137px);
}

.mana-sticky-cta {
  /* padding-bottom: env(safe-area-inset-bottom) !important; */
  padding: 1rem;
  padding-bottom: env(safe-area-inset-bottom);
}

@media (min-width: 1024px) {
	.lg\:min-w-150 {
		min-width: 37.5rem;
	}
}

@media (min-width: 400px) {
	body {
		font-size: 16px;
	}
}