/*
* Cirrus 0.7.2
* Stanley Lim, Copyright 2023
* https://spiderpig86.github.io/Cirrus
*/
@charset "UTF-8";
:root {
    --cirrus-fg: #0f172a;
    --cirrus-bg: #ffffff;
    --cirrus-select-bg: rgba(0, 161, 255, 0.2);
    --cirrus-code-bg: rgba(255, 218, 221, 1);
    --cirrus-code-fg: #dc4753;
    --cirrus-form-group-bg: rgba(248, 249, 250, 1);
    --cirrus-form-group-fg: rgba(144, 144, 144, 1);
    --toast-primary-bg: rgba(49, 59, 80, 0.9);
    --animation-duration: 0.2s;
    --focus-opacity: 0.55;
    --font-size-xs: 0.75rem;
    --font-size-s: 0.875rem;
    --font-size-m: 1rem;
    --font-size-l: 1.25rem;
    --font-size-xl: 1.5rem;
    --bg-opacity: 1;
    --color-opacity: 1;
    --border-opacity: 1;
    --grid-template-column: repeat(12, minmax(0, 1fr));
    --grid-template-rows: repeat(6, minmax(0, 1fr));
    --grid-column-start: auto;
    --grid-column-end: auto;
    --grid-row-start: auto;
    --grid-row-end: auto;
}
*,
::after,
::before {
    box-sizing: border-box;
    border: 0 solid currentColor;
    text-rendering: optimizeLegibility;
    -webkit-tap-highlight-color: transparent;
}
blockquote,
body,
dd,
dl,
dt,
fieldset,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
html,
iframe,
legend,
li,
ol,
p,
pre,
textarea,
ul {
    margin: 0;
    padding: 0;
}
body,
html {
    border: none;
    height: 100%;
}
body {
    letter-spacing: 0.01rem;
    line-height: 1.8;
    font-size: 1rem;
    font-weight: 400;
    font-family:
        'Nunito Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        'Helvetica Neue',
        Arial,
        sans-serif,
        'Apple Color Emoji',
        'Segoe UI Emoji',
        'Segoe UI Symbol';
    color: var(--cirrus-fg);
}
ul {
    list-style: none;
    list-style: disc;
}
audio,
canvas,
embed,
iframe,
img,
object,
svg,
video {
    display: block;
    max-width: 100%;
    height: auto;
}
iframe {
    outline: 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
article,
aside,
figure,
footer,
header,
hgroup,
section {
    display: block;
}
button,
input,
optgroup,
select,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
}
label {
    display: inline-block;
}
fieldset {
    padding: 1rem;
}
fieldset legend {
    font-weight: 700;
}
[hidden] {
    display: none !important;
}
::selection {
    background-color: var(--cirrus-select-bg);
}
:focus {
    outline: Highlight auto 5px;
    outline: -webkit-focus-ring-color auto 5px;
}
@media (prefers-reduced-motion: reduce) {
    html:focus-within {
        scroll-behavior: auto;
    }
    *,
    ::after,
    ::before {
        animation-duration: 0s !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0s !important;
        scroll-behavior: auto !important;
    }
}
@keyframes loading {
    from {
        transform: rotate(0);
    }
    to {
        transform: rotate(359deg);
    }
}
@keyframes pound {
    to {
        transform: scale(1.1);
    }
}
@keyframes bounce {
    20%,
    53%,
    80%,
    from,
    to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transform: translate3d(0, 0, 0);
    }
    40%,
    43% {
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transform: translate3d(0, -30px, 0);
    }
    70% {
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transform: translate3d(0, -15px, 0);
    }
    90% {
        transform: translate3d(0, -4px, 0);
    }
}
@keyframes bounceIn {
    20%,
    40%,
    60%,
    80%,
    from,
    to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }
    20% {
        transform: scale3d(1.1, 1.1, 1.1);
    }
    40% {
        transform: scale3d(0.9, 0.9, 0.9);
    }
    60% {
        opacity: 1;
        transform: scale3d(1.03, 1.03, 1.03);
    }
    80% {
        transform: scale3d(0.97, 0.97, 0.97);
    }
    to {
        opacity: 1;
        transform: scale3d(1, 1, 1);
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes pulse {
    50% {
        opacity: 0.5;
    }
}
@keyframes ping {
    100%,
    75% {
        transform: scale(2);
        opacity: 0;
    }
}
.hover-grow {
    transition-duration: 0.32s;
}
.hover-grow:hover {
    transform: scale(1.1);
    transition-duration: 80ms;
}
.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}
.animated.loading {
    display: block;
    position: relative;
}
.animated.loading::after {
    border: 2px solid #ced4da;
    border-radius: 50%;
    border-right-color: transparent;
    border-top-color: transparent;
    content: '';
    display: block;
    height: 1rem;
    width: 1rem;
    left: calc(50% - 0.5rem);
    top: calc(50% - 0.5rem);
    position: absolute;
    animation: 0.5s linear infinite loading;
}
.animated.loading.loading-white::after {
    border-left-color: #fff;
    border-bottom-color: #fff;
}
.animated.loading.loading-left {
    padding-left: 3rem;
}
.animated.loading.loading-left::after {
    left: 1rem;
    right: auto;
}
.animated.loading.loading-right {
    padding-right: 3rem;
}
.animated.loading.loading-right::after {
    left: auto;
    right: 1rem;
}
.animated.loading.hide-text {
    color: transparent !important;
}
.animated.pound {
    animation: 0.35s infinite alternate pound;
    vertical-align: baseline;
}
.animated.bounce {
    animation-name: bounce;
    transform-origin: center bottom;
}
.animated.bounceIn {
    animation-name: bounceIn;
}
.animated.fadeIn {
    animation-name: fadeIn;
}
.animated.infinite {
    animation-iteration-count: infinite;
}
.animated.infinite.alternate {
    animation-direction: alternate;
}
.animated.paused {
    animation-play-state: paused !important;
}
.animated.pulse {
    animation: 1.25s cubic-bezier(0.4, 0, 0.6, 1) infinite pulse;
}
.animated.ping {
    animation: 1s cubic-bezier(0, 0, 0.2, 1) infinite ping;
}
h6 {
    font-size: 1.25rem;
    font-family:
        Montserrat,
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        'Helvetica Neue',
        Arial,
        sans-serif,
        'Apple Color Emoji',
        'Segoe UI Emoji',
        'Segoe UI Symbol';
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}
h5 {
    font-size: 1.5rem;
    font-family:
        Montserrat,
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        'Helvetica Neue',
        Arial,
        sans-serif,
        'Apple Color Emoji',
        'Segoe UI Emoji',
        'Segoe UI Symbol';
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}
h4 {
    font-size: 1.75rem;
    font-family:
        Montserrat,
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        'Helvetica Neue',
        Arial,
        sans-serif,
        'Apple Color Emoji',
        'Segoe UI Emoji',
        'Segoe UI Symbol';
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}
h3 {
    font-size: 2rem;
    font-family:
        Montserrat,
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        'Helvetica Neue',
        Arial,
        sans-serif,
        'Apple Color Emoji',
        'Segoe UI Emoji',
        'Segoe UI Symbol';
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}
h2 {
    font-size: 2.5rem;
    font-family:
        Montserrat,
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        'Helvetica Neue',
        Arial,
        sans-serif,
        'Apple Color Emoji',
        'Segoe UI Emoji',
        'Segoe UI Symbol';
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}
h1 {
    font-size: 3rem;
    letter-spacing: 0.025rem;
    font-family:
        Montserrat,
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        'Helvetica Neue',
        Arial,
        sans-serif,
        'Apple Color Emoji',
        'Segoe UI Emoji',
        'Segoe UI Symbol';
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.headline-4 {
    font-size: 3.5rem;
    letter-spacing: 0.05rem;
}
.headline-3 {
    font-size: 4.5rem;
    letter-spacing: 0.05rem;
}
.headline-2 {
    font-size: 5.5rem;
    letter-spacing: 0.05rem;
}
.headline-1 {
    font-size: 6.5rem;
    letter-spacing: 0.05rem;
}
.text-xs {
    font-size: 0.75rem !important;
    line-height: 1.5rem !important;
}
.text-sm {
    font-size: 0.875rem !important;
    line-height: 1.75rem !important;
}
.text-md {
    font-size: 1rem !important;
    line-height: 2rem !important;
}
.text-lg {
    font-size: 1.25rem !important;
    line-height: 2.25rem !important;
}
.text-xl {
    font-size: 1.5rem !important;
    line-height: 2.25rem !important;
}
article,
blockquote,
p {
    font-size: 1rem;
    line-height: 2;
    margin-bottom: 1rem;
}
p.lead {
    font-size: 1.2rem;
}
blockquote {
    background-color: #f8f9fa;
    border-left: 5px solid #e9ecef;
    border-radius: 3px;
    margin-bottom: 1rem;
    padding: 1rem 2rem;
}
blockquote.text--large {
    font-size: 1.15rem;
}
blockquote p {
    margin: 0;
}
cite {
    opacity: 0.7;
}
.mark,
mark {
    padding: 0.2em;
    background-color: #f0e8c4;
}
.font-primary {
    font-family:
        Montserrat,
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        'Helvetica Neue',
        Arial,
        sans-serif,
        'Apple Color Emoji',
        'Segoe UI Emoji',
        'Segoe UI Symbol';
}
.font-alt,
.font-secondary {
    font-family:
        'Nunito Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        'Helvetica Neue',
        Arial,
        sans-serif,
        'Apple Color Emoji',
        'Segoe UI Emoji',
        'Segoe UI Symbol';
}
.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
    line-height: 1.125em;
    margin: 1rem 0;
}
.title {
    font-weight: 700;
}
.subtitle:not(:last-child),
.title:not(:last-child) {
    margin-bottom: 1rem;
}
.title + .subtitle {
    margin-top: -0.75rem;
}
.card-tile article,
.card-tile blockquote,
.card-tile p {
    line-height: inherit;
}
.font-extrathin {
    font-weight: 100;
}
.font-thin {
    font-weight: 200;
}
.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-extrabold {
    font-weight: 800;
}
.font-black {
    font-weight: 900;
}
.uppercase {
    text-transform: uppercase;
}
.lowercase {
    text-transform: lowercase;
}
.capitalize {
    text-transform: capitalize;
}
.normal-case {
    text-transform: none;
}
.font-style-normal {
    font-style: normal;
}
.font-style-italics {
    font-style: italics;
}
.rtl {
    direction: rtl;
}
.icon {
    display: inline-block;
    text-align: center;
    width: 1.5rem;
    vertical-align: baseline;
}
.icon.x-small {
    margin: 0.55rem 0 0 0.1rem;
}
.icon.small {
    margin: 0.95rem 0 0 0.1rem;
}
.icon .fa-wrapper {
    font-size: inherit;
}
.info {
    display: block;
    font-size: var(--font-size-s);
    margin-top: 0.25rem;
    color: #868e96;
}
.info.inline {
    display: inline-block;
    margin-left: 0.5rem;
}
.caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px dashed;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}
abbr[title] {
    border-bottom: 0.1rem dotted;
    cursor: help;
    text-decoration: none;
}
kbd {
    background-color: var(--cirrus-fg);
    border-radius: 0.2rem;
    color: #fff;
    display: inline-block;
    line-height: 1;
    padding: 0.5rem;
    vertical-align: baseline;
}
.tracking-tightest {
    letter-spacing: -0.075em !important;
}
.tracking-tighter {
    letter-spacing: -0.05em !important;
}
.tracking-tight {
    letter-spacing: -0.025em !important;
}
.tracking-normal {
    letter-spacing: 0 !important;
}
.tracking-loose {
    letter-spacing: 0.025em !important;
}
.tracking-looser {
    letter-spacing: 0.05em !important;
}
.tracking-loosest {
    letter-spacing: 0.1em !important;
}
.leading-none {
    line-height: 1 !important;
}
.leading-tighter {
    line-height: 1.25 !important;
}
.leading-tight {
    line-height: 1.375 !important;
}
.leading-normal {
    line-height: 1.5 !important;
}
.leading-loose {
    line-height: 1.625 !important;
}
.leading-looser {
    line-height: 2 !important;
}
@media screen and (max-width: 639px) {
    h6 {
        font-size: 1rem;
    }
    h5 {
        font-size: 1.25rem;
    }
    h4 {
        font-size: 1.5rem;
    }
    h3 {
        font-size: 1.75rem;
    }
    h2 {
        font-size: 2rem;
    }
    h1 {
        font-size: 2.25rem;
    }
    .headline-4 {
        font-size: 3rem;
    }
    .headline-3 {
        font-size: 3.25rem;
    }
    .headline-2 {
        font-size: 3.5rem;
    }
    .headline-1 {
        font-size: 3.75rem;
    }
    article,
    blockquote,
    p {
        margin: 1rem 0;
    }
}
.grid {
    display: grid;
    grid-gap: var(--grid-gap);
    grid-template-columns: var(--grid-template-column);
}
.grid-flow-row {
    grid-auto-flow: row;
}
.grid-flow-col {
    grid-auto-flow: column;
}
.grid-cols-1 {
    --grid-template-column: repeat(1, minmax(0, 1fr));
}
.grid-c-1 {
    grid-column: span 1 / span 1;
}
.grid-cs-1 {
    grid-column-start: 1;
}
.grid-ce-1 {
    grid-column-end: 2;
}
.grid-cols-2 {
    --grid-template-column: repeat(2, minmax(0, 1fr));
}
.grid-c-2 {
    grid-column: span 2 / span 2;
}
.grid-cs-2 {
    grid-column-start: 2;
}
.grid-ce-2 {
    grid-column-end: 3;
}
.grid-cols-3 {
    --grid-template-column: repeat(3, minmax(0, 1fr));
}
.grid-c-3 {
    grid-column: span 3 / span 3;
}
.grid-cs-3 {
    grid-column-start: 3;
}
.grid-ce-3 {
    grid-column-end: 4;
}
.grid-cols-4 {
    --grid-template-column: repeat(4, minmax(0, 1fr));
}
.grid-c-4 {
    grid-column: span 4 / span 4;
}
.grid-cs-4 {
    grid-column-start: 4;
}
.grid-ce-4 {
    grid-column-end: 5;
}
.grid-cols-5 {
    --grid-template-column: repeat(5, minmax(0, 1fr));
}
.grid-c-5 {
    grid-column: span 5 / span 5;
}
.grid-cs-5 {
    grid-column-start: 5;
}
.grid-ce-5 {
    grid-column-end: 6;
}
.grid-cols-6 {
    --grid-template-column: repeat(6, minmax(0, 1fr));
}
.grid-c-6 {
    grid-column: span 6 / span 6;
}
.grid-cs-6 {
    grid-column-start: 6;
}
.grid-ce-6 {
    grid-column-end: 7;
}
.grid-cols-7 {
    --grid-template-column: repeat(7, minmax(0, 1fr));
}
.grid-c-7 {
    grid-column: span 7 / span 7;
}
.grid-cs-7 {
    grid-column-start: 7;
}
.grid-ce-7 {
    grid-column-end: 8;
}
.grid-cols-8 {
    --grid-template-column: repeat(8, minmax(0, 1fr));
}
.grid-c-8 {
    grid-column: span 8 / span 8;
}
.grid-cs-8 {
    grid-column-start: 8;
}
.grid-ce-8 {
    grid-column-end: 9;
}
.grid-cols-9 {
    --grid-template-column: repeat(9, minmax(0, 1fr));
}
.grid-c-9 {
    grid-column: span 9 / span 9;
}
.grid-cs-9 {
    grid-column-start: 9;
}
.grid-ce-9 {
    grid-column-end: 10;
}
.grid-cols-10 {
    --grid-template-column: repeat(10, minmax(0, 1fr));
}
.grid-c-10 {
    grid-column: span 10 / span 10;
}
.grid-cs-10 {
    grid-column-start: 10;
}
.grid-ce-10 {
    grid-column-end: 11;
}
.grid-cols-11 {
    --grid-template-column: repeat(11, minmax(0, 1fr));
}
.grid-c-11 {
    grid-column: span 11 / span 11;
}
.grid-cs-11 {
    grid-column-start: 11;
}
.grid-ce-11 {
    grid-column-end: 12;
}
.grid-cols-12 {
    --grid-template-column: repeat(12, minmax(0, 1fr));
}
.grid-c-12 {
    grid-column: span 12 / span 12;
}
.grid-cs-12 {
    grid-column-start: 12;
}
.grid-ce-12 {
    grid-column-end: 13;
}
.grid-rows-1 {
    --grid-template-row: repeat(1, minmax(0, 1fr));
    grid-template-rows: var(--grid-template-row);
}
.grid-r-1 {
    grid-row: span 1 / span 1;
}
.grid-rs-1 {
    grid-row-start: 1;
}
.grid-re-1 {
    grid-row-end: 2;
}
.grid-rows-2 {
    --grid-template-row: repeat(2, minmax(0, 1fr));
    grid-template-rows: var(--grid-template-row);
}
.grid-r-2 {
    grid-row: span 2 / span 2;
}
.grid-rs-2 {
    grid-row-start: 2;
}
.grid-re-2 {
    grid-row-end: 3;
}
.grid-rows-3 {
    --grid-template-row: repeat(3, minmax(0, 1fr));
    grid-template-rows: var(--grid-template-row);
}
.grid-r-3 {
    grid-row: span 3 / span 3;
}
.grid-rs-3 {
    grid-row-start: 3;
}
.grid-re-3 {
    grid-row-end: 4;
}
.grid-rows-4 {
    --grid-template-row: repeat(4, minmax(0, 1fr));
    grid-template-rows: var(--grid-template-row);
}
.grid-r-4 {
    grid-row: span 4 / span 4;
}
.grid-rs-4 {
    grid-row-start: 4;
}
.grid-re-4 {
    grid-row-end: 5;
}
.grid-rows-5 {
    --grid-template-row: repeat(5, minmax(0, 1fr));
    grid-template-rows: var(--grid-template-row);
}
.grid-r-5 {
    grid-row: span 5 / span 5;
}
.grid-rs-5 {
    grid-row-start: 5;
}
.grid-re-5 {
    grid-row-end: 6;
}
.grid-rows-6 {
    --grid-template-row: repeat(6, minmax(0, 1fr));
    grid-template-rows: var(--grid-template-row);
}
.grid-r-6 {
    grid-row: span 6 / span 6;
}
.grid-rs-6 {
    grid-row-start: 6;
}
.grid-re-6 {
    grid-row-end: 7;
}
.grid-ce-end {
    grid-column-end: -1;
}
.grid-re-end {
    grid-row-end: -1;
}
.grid-ce-auto {
    grid-column-end: auto;
}
.grid-re-auto {
    grid-row-end: auto;
}
@media screen and (min-width: 640px) {
    .grid-sm {
        display: grid;
        grid-gap: var(--grid-gap);
        grid-template-columns: var(--grid-template-column);
    }
    .grid-flow-row-sm {
        grid-auto-flow: row;
    }
    .grid-flow-col-sm {
        grid-auto-flow: column;
    }
    .grid-cols-1-sm {
        --grid-template-column: repeat(1, minmax(0, 1fr));
    }
    .grid-c-1-sm {
        grid-column: span 1 / span 1;
    }
    .grid-cs-1-sm {
        grid-column-start: 1;
    }
    .grid-ce-1-sm {
        grid-column-end: 2;
    }
    .grid-cols-2-sm {
        --grid-template-column: repeat(2, minmax(0, 1fr));
    }
    .grid-c-2-sm {
        grid-column: span 2 / span 2;
    }
    .grid-cs-2-sm {
        grid-column-start: 2;
    }
    .grid-ce-2-sm {
        grid-column-end: 3;
    }
    .grid-cols-3-sm {
        --grid-template-column: repeat(3, minmax(0, 1fr));
    }
    .grid-c-3-sm {
        grid-column: span 3 / span 3;
    }
    .grid-cs-3-sm {
        grid-column-start: 3;
    }
    .grid-ce-3-sm {
        grid-column-end: 4;
    }
    .grid-cols-4-sm {
        --grid-template-column: repeat(4, minmax(0, 1fr));
    }
    .grid-c-4-sm {
        grid-column: span 4 / span 4;
    }
    .grid-cs-4-sm {
        grid-column-start: 4;
    }
    .grid-ce-4-sm {
        grid-column-end: 5;
    }
    .grid-cols-5-sm {
        --grid-template-column: repeat(5, minmax(0, 1fr));
    }
    .grid-c-5-sm {
        grid-column: span 5 / span 5;
    }
    .grid-cs-5-sm {
        grid-column-start: 5;
    }
    .grid-ce-5-sm {
        grid-column-end: 6;
    }
    .grid-cols-6-sm {
        --grid-template-column: repeat(6, minmax(0, 1fr));
    }
    .grid-c-6-sm {
        grid-column: span 6 / span 6;
    }
    .grid-cs-6-sm {
        grid-column-start: 6;
    }
    .grid-ce-6-sm {
        grid-column-end: 7;
    }
    .grid-cols-7-sm {
        --grid-template-column: repeat(7, minmax(0, 1fr));
    }
    .grid-c-7-sm {
        grid-column: span 7 / span 7;
    }
    .grid-cs-7-sm {
        grid-column-start: 7;
    }
    .grid-ce-7-sm {
        grid-column-end: 8;
    }
    .grid-cols-8-sm {
        --grid-template-column: repeat(8, minmax(0, 1fr));
    }
    .grid-c-8-sm {
        grid-column: span 8 / span 8;
    }
    .grid-cs-8-sm {
        grid-column-start: 8;
    }
    .grid-ce-8-sm {
        grid-column-end: 9;
    }
    .grid-cols-9-sm {
        --grid-template-column: repeat(9, minmax(0, 1fr));
    }
    .grid-c-9-sm {
        grid-column: span 9 / span 9;
    }
    .grid-cs-9-sm {
        grid-column-start: 9;
    }
    .grid-ce-9-sm {
        grid-column-end: 10;
    }
    .grid-cols-10-sm {
        --grid-template-column: repeat(10, minmax(0, 1fr));
    }
    .grid-c-10-sm {
        grid-column: span 10 / span 10;
    }
    .grid-cs-10-sm {
        grid-column-start: 10;
    }
    .grid-ce-10-sm {
        grid-column-end: 11;
    }
    .grid-cols-11-sm {
        --grid-template-column: repeat(11, minmax(0, 1fr));
    }
    .grid-c-11-sm {
        grid-column: span 11 / span 11;
    }
    .grid-cs-11-sm {
        grid-column-start: 11;
    }
    .grid-ce-11-sm {
        grid-column-end: 12;
    }
    .grid-cols-12-sm {
        --grid-template-column: repeat(12, minmax(0, 1fr));
    }
    .grid-c-12-sm {
        grid-column: span 12 / span 12;
    }
    .grid-cs-12-sm {
        grid-column-start: 12;
    }
    .grid-ce-12-sm {
        grid-column-end: 13;
    }
    .grid-rows-1-sm {
        --grid-template-row: repeat(1, minmax(0, 1fr));
        grid-template-rows: var(--grid-template-row);
    }
    .grid-r-1-sm {
        grid-row: span 1 / span 1;
    }
    .grid-rs-1-sm {
        grid-row-start: 1;
    }
    .grid-re-1-sm {
        grid-row-end: 2;
    }
    .grid-rows-2-sm {
        --grid-template-row: repeat(2, minmax(0, 1fr));
        grid-template-rows: var(--grid-template-row);
    }
    .grid-r-2-sm {
        grid-row: span 2 / span 2;
    }
    .grid-rs-2-sm {
        grid-row-start: 2;
    }
    .grid-re-2-sm {
        grid-row-end: 3;
    }
    .grid-rows-3-sm {
        --grid-template-row: repeat(3, minmax(0, 1fr));
        grid-template-rows: var(--grid-template-row);
    }
    .grid-r-3-sm {
        grid-row: span 3 / span 3;
    }
    .grid-rs-3-sm {
        grid-row-start: 3;
    }
    .grid-re-3-sm {
        grid-row-end: 4;
    }
    .grid-rows-4-sm {
        --grid-template-row: repeat(4, minmax(0, 1fr));
        grid-template-rows: var(--grid-template-row);
    }
    .grid-r-4-sm {
        grid-row: span 4 / span 4;
    }
    .grid-rs-4-sm {
        grid-row-start: 4;
    }
    .grid-re-4-sm {
        grid-row-end: 5;
    }
    .grid-rows-5-sm {
        --grid-template-row: repeat(5, minmax(0, 1fr));
        grid-template-rows: var(--grid-template-row);
    }
    .grid-r-5-sm {
        grid-row: span 5 / span 5;
    }
    .grid-rs-5-sm {
        grid-row-start: 5;
    }
    .grid-re-5-sm {
        grid-row-end: 6;
    }
    .grid-rows-6-sm {
        --grid-template-row: repeat(6, minmax(0, 1fr));
        grid-template-rows: var(--grid-template-row);
    }
    .grid-r-6-sm {
        grid-row: span 6 / span 6;
    }
    .grid-rs-6-sm {
        grid-row-start: 6;
    }
    .grid-re-6-sm {
        grid-row-end: 7;
    }
    .grid-ce-end-sm {
        grid-column-end: -1;
    }
    .grid-re-end-sm {
        grid-row-end: -1;
    }
    .grid-ce-auto-sm {
        grid-column-end: auto;
    }
    .grid-re-auto-sm {
        grid-row-end: auto;
    }
}
@media screen and (min-width: 768px) {
    .grid-md {
        display: grid;
        grid-gap: var(--grid-gap);
        grid-template-columns: var(--grid-template-column);
    }
    .grid-flow-row-md {
        grid-auto-flow: row;
    }
    .grid-flow-col-md {
        grid-auto-flow: column;
    }
    .grid-cols-1-md {
        --grid-template-column: repeat(1, minmax(0, 1fr));
    }
    .grid-c-1-md {
        grid-column: span 1 / span 1;
    }
    .grid-cs-1-md {
        grid-column-start: 1;
    }
    .grid-ce-1-md {
        grid-column-end: 2;
    }
    .grid-cols-2-md {
        --grid-template-column: repeat(2, minmax(0, 1fr));
    }
    .grid-c-2-md {
        grid-column: span 2 / span 2;
    }
    .grid-cs-2-md {
        grid-column-start: 2;
    }
    .grid-ce-2-md {
        grid-column-end: 3;
    }
    .grid-cols-3-md {
        --grid-template-column: repeat(3, minmax(0, 1fr));
    }
    .grid-c-3-md {
        grid-column: span 3 / span 3;
    }
    .grid-cs-3-md {
        grid-column-start: 3;
    }
    .grid-ce-3-md {
        grid-column-end: 4;
    }
    .grid-cols-4-md {
        --grid-template-column: repeat(4, minmax(0, 1fr));
    }
    .grid-c-4-md {
        grid-column: span 4 / span 4;
    }
    .grid-cs-4-md {
        grid-column-start: 4;
    }
    .grid-ce-4-md {
        grid-column-end: 5;
    }
    .grid-cols-5-md {
        --grid-template-column: repeat(5, minmax(0, 1fr));
    }
    .grid-c-5-md {
        grid-column: span 5 / span 5;
    }
    .grid-cs-5-md {
        grid-column-start: 5;
    }
    .grid-ce-5-md {
        grid-column-end: 6;
    }
    .grid-cols-6-md {
        --grid-template-column: repeat(6, minmax(0, 1fr));
    }
    .grid-c-6-md {
        grid-column: span 6 / span 6;
    }
    .grid-cs-6-md {
        grid-column-start: 6;
    }
    .grid-ce-6-md {
        grid-column-end: 7;
    }
    .grid-cols-7-md {
        --grid-template-column: repeat(7, minmax(0, 1fr));
    }
    .grid-c-7-md {
        grid-column: span 7 / span 7;
    }
    .grid-cs-7-md {
        grid-column-start: 7;
    }
    .grid-ce-7-md {
        grid-column-end: 8;
    }
    .grid-cols-8-md {
        --grid-template-column: repeat(8, minmax(0, 1fr));
    }
    .grid-c-8-md {
        grid-column: span 8 / span 8;
    }
    .grid-cs-8-md {
        grid-column-start: 8;
    }
    .grid-ce-8-md {
        grid-column-end: 9;
    }
    .grid-cols-9-md {
        --grid-template-column: repeat(9, minmax(0, 1fr));
    }
    .grid-c-9-md {
        grid-column: span 9 / span 9;
    }
    .grid-cs-9-md {
        grid-column-start: 9;
    }
    .grid-ce-9-md {
        grid-column-end: 10;
    }
    .grid-cols-10-md {
        --grid-template-column: repeat(10, minmax(0, 1fr));
    }
    .grid-c-10-md {
        grid-column: span 10 / span 10;
    }
    .grid-cs-10-md {
        grid-column-start: 10;
    }
    .grid-ce-10-md {
        grid-column-end: 11;
    }
    .grid-cols-11-md {
        --grid-template-column: repeat(11, minmax(0, 1fr));
    }
    .grid-c-11-md {
        grid-column: span 11 / span 11;
    }
    .grid-cs-11-md {
        grid-column-start: 11;
    }
    .grid-ce-11-md {
        grid-column-end: 12;
    }
    .grid-cols-12-md {
        --grid-template-column: repeat(12, minmax(0, 1fr));
    }
    .grid-c-12-md {
        grid-column: span 12 / span 12;
    }
    .grid-cs-12-md {
        grid-column-start: 12;
    }
    .grid-ce-12-md {
        grid-column-end: 13;
    }
    .grid-rows-1-md {
        --grid-template-row: repeat(1, minmax(0, 1fr));
        grid-template-rows: var(--grid-template-row);
    }
    .grid-r-1-md {
        grid-row: span 1 / span 1;
    }
    .grid-rs-1-md {
        grid-row-start: 1;
    }
    .grid-re-1-md {
        grid-row-end: 2;
    }
    .grid-rows-2-md {
        --grid-template-row: repeat(2, minmax(0, 1fr));
        grid-template-rows: var(--grid-template-row);
    }
    .grid-r-2-md {
        grid-row: span 2 / span 2;
    }
    .grid-rs-2-md {
        grid-row-start: 2;
    }
    .grid-re-2-md {
        grid-row-end: 3;
    }
    .grid-rows-3-md {
        --grid-template-row: repeat(3, minmax(0, 1fr));
        grid-template-rows: var(--grid-template-row);
    }
    .grid-r-3-md {
        grid-row: span 3 / span 3;
    }
    .grid-rs-3-md {
        grid-row-start: 3;
    }
    .grid-re-3-md {
        grid-row-end: 4;
    }
    .grid-rows-4-md {
        --grid-template-row: repeat(4, minmax(0, 1fr));
        grid-template-rows: var(--grid-template-row);
    }
    .grid-r-4-md {
        grid-row: span 4 / span 4;
    }
    .grid-rs-4-md {
        grid-row-start: 4;
    }
    .grid-re-4-md {
        grid-row-end: 5;
    }
    .grid-rows-5-md {
        --grid-template-row: repeat(5, minmax(0, 1fr));
        grid-template-rows: var(--grid-template-row);
    }
    .grid-r-5-md {
        grid-row: span 5 / span 5;
    }
    .grid-rs-5-md {
        grid-row-start: 5;
    }
    .grid-re-5-md {
        grid-row-end: 6;
    }
    .grid-rows-6-md {
        --grid-template-row: repeat(6, minmax(0, 1fr));
        grid-template-rows: var(--grid-template-row);
    }
    .grid-r-6-md {
        grid-row: span 6 / span 6;
    }
    .grid-rs-6-md {
        grid-row-start: 6;
    }
    .grid-re-6-md {
        grid-row-end: 7;
    }
    .grid-ce-end-md {
        grid-column-end: -1;
    }
    .grid-re-end-md {
        grid-row-end: -1;
    }
    .grid-ce-auto-md {
        grid-column-end: auto;
    }
    .grid-re-auto-md {
        grid-row-end: auto;
    }
}
section {
    display: block;
}
.content {
    max-width: 48em;
    margin: 0 auto 1.5em;
    width: 100%;
}
@media screen and (min-width: 1024px) {
    .grid-lg {
        display: grid;
        grid-gap: var(--grid-gap);
        grid-template-columns: var(--grid-template-column);
    }
    .grid-flow-row-lg {
        grid-auto-flow: row;
    }
    .grid-flow-col-lg {
        grid-auto-flow: column;
    }
    .grid-cols-1-lg {
        --grid-template-column: repeat(1, minmax(0, 1fr));
    }
    .grid-c-1-lg {
        grid-column: span 1 / span 1;
    }
    .grid-cs-1-lg {
        grid-column-start: 1;
    }
    .grid-ce-1-lg {
        grid-column-end: 2;
    }
    .grid-cols-2-lg {
        --grid-template-column: repeat(2, minmax(0, 1fr));
    }
    .grid-c-2-lg {
        grid-column: span 2 / span 2;
    }
    .grid-cs-2-lg {
        grid-column-start: 2;
    }
    .grid-ce-2-lg {
        grid-column-end: 3;
    }
    .grid-cols-3-lg {
        --grid-template-column: repeat(3, minmax(0, 1fr));
    }
    .grid-c-3-lg {
        grid-column: span 3 / span 3;
    }
    .grid-cs-3-lg {
        grid-column-start: 3;
    }
    .grid-ce-3-lg {
        grid-column-end: 4;
    }
    .grid-cols-4-lg {
        --grid-template-column: repeat(4, minmax(0, 1fr));
    }
    .grid-c-4-lg {
        grid-column: span 4 / span 4;
    }
    .grid-cs-4-lg {
        grid-column-start: 4;
    }
    .grid-ce-4-lg {
        grid-column-end: 5;
    }
    .grid-cols-5-lg {
        --grid-template-column: repeat(5, minmax(0, 1fr));
    }
    .grid-c-5-lg {
        grid-column: span 5 / span 5;
    }
    .grid-cs-5-lg {
        grid-column-start: 5;
    }
    .grid-ce-5-lg {
        grid-column-end: 6;
    }
    .grid-cols-6-lg {
        --grid-template-column: repeat(6, minmax(0, 1fr));
    }
    .grid-c-6-lg {
        grid-column: span 6 / span 6;
    }
    .grid-cs-6-lg {
        grid-column-start: 6;
    }
    .grid-ce-6-lg {
        grid-column-end: 7;
    }
    .grid-cols-7-lg {
        --grid-template-column: repeat(7, minmax(0, 1fr));
    }
    .grid-c-7-lg {
        grid-column: span 7 / span 7;
    }
    .grid-cs-7-lg {
        grid-column-start: 7;
    }
    .grid-ce-7-lg {
        grid-column-end: 8;
    }
    .grid-cols-8-lg {
        --grid-template-column: repeat(8, minmax(0, 1fr));
    }
    .grid-c-8-lg {
        grid-column: span 8 / span 8;
    }
    .grid-cs-8-lg {
        grid-column-start: 8;
    }
    .grid-ce-8-lg {
        grid-column-end: 9;
    }
    .grid-cols-9-lg {
        --grid-template-column: repeat(9, minmax(0, 1fr));
    }
    .grid-c-9-lg {
        grid-column: span 9 / span 9;
    }
    .grid-cs-9-lg {
        grid-column-start: 9;
    }
    .grid-ce-9-lg {
        grid-column-end: 10;
    }
    .grid-cols-10-lg {
        --grid-template-column: repeat(10, minmax(0, 1fr));
    }
    .grid-c-10-lg {
        grid-column: span 10 / span 10;
    }
    .grid-cs-10-lg {
        grid-column-start: 10;
    }
    .grid-ce-10-lg {
        grid-column-end: 11;
    }
    .grid-cols-11-lg {
        --grid-template-column: repeat(11, minmax(0, 1fr));
    }
    .grid-c-11-lg {
        grid-column: span 11 / span 11;
    }
    .grid-cs-11-lg {
        grid-column-start: 11;
    }
    .grid-ce-11-lg {
        grid-column-end: 12;
    }
    .grid-cols-12-lg {
        --grid-template-column: repeat(12, minmax(0, 1fr));
    }
    .grid-c-12-lg {
        grid-column: span 12 / span 12;
    }
    .grid-cs-12-lg {
        grid-column-start: 12;
    }
    .grid-ce-12-lg {
        grid-column-end: 13;
    }
    .grid-rows-1-lg {
        --grid-template-row: repeat(1, minmax(0, 1fr));
        grid-template-rows: var(--grid-template-row);
    }
    .grid-r-1-lg {
        grid-row: span 1 / span 1;
    }
    .grid-rs-1-lg {
        grid-row-start: 1;
    }
    .grid-re-1-lg {
        grid-row-end: 2;
    }
    .grid-rows-2-lg {
        --grid-template-row: repeat(2, minmax(0, 1fr));
        grid-template-rows: var(--grid-template-row);
    }
    .grid-r-2-lg {
        grid-row: span 2 / span 2;
    }
    .grid-rs-2-lg {
        grid-row-start: 2;
    }
    .grid-re-2-lg {
        grid-row-end: 3;
    }
    .grid-rows-3-lg {
        --grid-template-row: repeat(3, minmax(0, 1fr));
        grid-template-rows: var(--grid-template-row);
    }
    .grid-r-3-lg {
        grid-row: span 3 / span 3;
    }
    .grid-rs-3-lg {
        grid-row-start: 3;
    }
    .grid-re-3-lg {
        grid-row-end: 4;
    }
    .grid-rows-4-lg {
        --grid-template-row: repeat(4, minmax(0, 1fr));
        grid-template-rows: var(--grid-template-row);
    }
    .grid-r-4-lg {
        grid-row: span 4 / span 4;
    }
    .grid-rs-4-lg {
        grid-row-start: 4;
    }
    .grid-re-4-lg {
        grid-row-end: 5;
    }
    .grid-rows-5-lg {
        --grid-template-row: repeat(5, minmax(0, 1fr));
        grid-template-rows: var(--grid-template-row);
    }
    .grid-r-5-lg {
        grid-row: span 5 / span 5;
    }
    .grid-rs-5-lg {
        grid-row-start: 5;
    }
    .grid-re-5-lg {
        grid-row-end: 6;
    }
    .grid-rows-6-lg {
        --grid-template-row: repeat(6, minmax(0, 1fr));
        grid-template-rows: var(--grid-template-row);
    }
    .grid-r-6-lg {
        grid-row: span 6 / span 6;
    }
    .grid-rs-6-lg {
        grid-row-start: 6;
    }
    .grid-re-6-lg {
        grid-row-end: 7;
    }
    .grid-ce-end-lg {
        grid-column-end: -1;
    }
    .grid-re-end-lg {
        grid-row-end: -1;
    }
    .grid-ce-auto-lg {
        grid-column-end: auto;
    }
    .grid-re-auto-lg {
        grid-row-end: auto;
    }
    .content {
        max-width: 64em;
    }
}
@media screen and (min-width: 1280px) {
    .grid-xl {
        display: grid;
        grid-gap: var(--grid-gap);
        grid-template-columns: var(--grid-template-column);
    }
    .grid-flow-row-xl {
        grid-auto-flow: row;
    }
    .grid-flow-col-xl {
        grid-auto-flow: column;
    }
    .grid-cols-1-xl {
        --grid-template-column: repeat(1, minmax(0, 1fr));
    }
    .grid-c-1-xl {
        grid-column: span 1 / span 1;
    }
    .grid-cs-1-xl {
        grid-column-start: 1;
    }
    .grid-ce-1-xl {
        grid-column-end: 2;
    }
    .grid-cols-2-xl {
        --grid-template-column: repeat(2, minmax(0, 1fr));
    }
    .grid-c-2-xl {
        grid-column: span 2 / span 2;
    }
    .grid-cs-2-xl {
        grid-column-start: 2;
    }
    .grid-ce-2-xl {
        grid-column-end: 3;
    }
    .grid-cols-3-xl {
        --grid-template-column: repeat(3, minmax(0, 1fr));
    }
    .grid-c-3-xl {
        grid-column: span 3 / span 3;
    }
    .grid-cs-3-xl {
        grid-column-start: 3;
    }
    .grid-ce-3-xl {
        grid-column-end: 4;
    }
    .grid-cols-4-xl {
        --grid-template-column: repeat(4, minmax(0, 1fr));
    }
    .grid-c-4-xl {
        grid-column: span 4 / span 4;
    }
    .grid-cs-4-xl {
        grid-column-start: 4;
    }
    .grid-ce-4-xl {
        grid-column-end: 5;
    }
    .grid-cols-5-xl {
        --grid-template-column: repeat(5, minmax(0, 1fr));
    }
    .grid-c-5-xl {
        grid-column: span 5 / span 5;
    }
    .grid-cs-5-xl {
        grid-column-start: 5;
    }
    .grid-ce-5-xl {
        grid-column-end: 6;
    }
    .grid-cols-6-xl {
        --grid-template-column: repeat(6, minmax(0, 1fr));
    }
    .grid-c-6-xl {
        grid-column: span 6 / span 6;
    }
    .grid-cs-6-xl {
        grid-column-start: 6;
    }
    .grid-ce-6-xl {
        grid-column-end: 7;
    }
    .grid-cols-7-xl {
        --grid-template-column: repeat(7, minmax(0, 1fr));
    }
    .grid-c-7-xl {
        grid-column: span 7 / span 7;
    }
    .grid-cs-7-xl {
        grid-column-start: 7;
    }
    .grid-ce-7-xl {
        grid-column-end: 8;
    }
    .grid-cols-8-xl {
        --grid-template-column: repeat(8, minmax(0, 1fr));
    }
    .grid-c-8-xl {
        grid-column: span 8 / span 8;
    }
    .grid-cs-8-xl {
        grid-column-start: 8;
    }
    .grid-ce-8-xl {
        grid-column-end: 9;
    }
    .grid-cols-9-xl {
        --grid-template-column: repeat(9, minmax(0, 1fr));
    }
    .grid-c-9-xl {
        grid-column: span 9 / span 9;
    }
    .grid-cs-9-xl {
        grid-column-start: 9;
    }
    .grid-ce-9-xl {
        grid-column-end: 10;
    }
    .grid-cols-10-xl {
        --grid-template-column: repeat(10, minmax(0, 1fr));
    }
    .grid-c-10-xl {
        grid-column: span 10 / span 10;
    }
    .grid-cs-10-xl {
        grid-column-start: 10;
    }
    .grid-ce-10-xl {
        grid-column-end: 11;
    }
    .grid-cols-11-xl {
        --grid-template-column: repeat(11, minmax(0, 1fr));
    }
    .grid-c-11-xl {
        grid-column: span 11 / span 11;
    }
    .grid-cs-11-xl {
        grid-column-start: 11;
    }
    .grid-ce-11-xl {
        grid-column-end: 12;
    }
    .grid-cols-12-xl {
        --grid-template-column: repeat(12, minmax(0, 1fr));
    }
    .grid-c-12-xl {
        grid-column: span 12 / span 12;
    }
    .grid-cs-12-xl {
        grid-column-start: 12;
    }
    .grid-ce-12-xl {
        grid-column-end: 13;
    }
    .grid-rows-1-xl {
        --grid-template-row: repeat(1, minmax(0, 1fr));
        grid-template-rows: var(--grid-template-row);
    }
    .grid-r-1-xl {
        grid-row: span 1 / span 1;
    }
    .grid-rs-1-xl {
        grid-row-start: 1;
    }
    .grid-re-1-xl {
        grid-row-end: 2;
    }
    .grid-rows-2-xl {
        --grid-template-row: repeat(2, minmax(0, 1fr));
        grid-template-rows: var(--grid-template-row);
    }
    .grid-r-2-xl {
        grid-row: span 2 / span 2;
    }
    .grid-rs-2-xl {
        grid-row-start: 2;
    }
    .grid-re-2-xl {
        grid-row-end: 3;
    }
    .grid-rows-3-xl {
        --grid-template-row: repeat(3, minmax(0, 1fr));
        grid-template-rows: var(--grid-template-row);
    }
    .grid-r-3-xl {
        grid-row: span 3 / span 3;
    }
    .grid-rs-3-xl {
        grid-row-start: 3;
    }
    .grid-re-3-xl {
        grid-row-end: 4;
    }
    .grid-rows-4-xl {
        --grid-template-row: repeat(4, minmax(0, 1fr));
        grid-template-rows: var(--grid-template-row);
    }
    .grid-r-4-xl {
        grid-row: span 4 / span 4;
    }
    .grid-rs-4-xl {
        grid-row-start: 4;
    }
    .grid-re-4-xl {
        grid-row-end: 5;
    }
    .grid-rows-5-xl {
        --grid-template-row: repeat(5, minmax(0, 1fr));
        grid-template-rows: var(--grid-template-row);
    }
    .grid-r-5-xl {
        grid-row: span 5 / span 5;
    }
    .grid-rs-5-xl {
        grid-row-start: 5;
    }
    .grid-re-5-xl {
        grid-row-end: 6;
    }
    .grid-rows-6-xl {
        --grid-template-row: repeat(6, minmax(0, 1fr));
        grid-template-rows: var(--grid-template-row);
    }
    .grid-r-6-xl {
        grid-row: span 6 / span 6;
    }
    .grid-rs-6-xl {
        grid-row-start: 6;
    }
    .grid-re-6-xl {
        grid-row-end: 7;
    }
    .grid-ce-end-xl {
        grid-column-end: -1;
    }
    .grid-re-end-xl {
        grid-row-end: -1;
    }
    .grid-ce-auto-xl {
        grid-column-end: auto;
    }
    .grid-re-auto-xl {
        grid-row-end: auto;
    }
    .content {
        max-width: 80em;
    }
}
@media screen and (min-width: 1536px) {
    .content {
        max-width: 96em;
    }
}
.fullscreen {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 100vh;
}
.divider {
    border-top: 0.05rem solid rgba(173, 181, 189, 0.5);
    height: 0.1rem;
    margin: 1.8rem 0 1.6rem;
    position: relative;
}
.divider[data-content] {
    margin: 0.8rem 0;
}
.divider--v[data-content]::after,
.divider[data-content]::after {
    background: #fff;
    color: #adb5bd;
    content: attr(data-content);
    left: 50%;
    display: inline-block;
    padding: 0 0.4rem;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
}
.divider--v,
.divider--v[data-content] {
    display: block;
    padding: 0.8rem;
}
.divider--v::before,
.divider--v[data-content]::before {
    border-left: 0.05rem solid rgba(173, 181, 189, 0.5);
    bottom: 0.4rem;
    content: '';
    display: block;
    left: 50%;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
}
.divider--v[data-content] {
    left: 50%;
    padding: 0.2rem 0;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}
.hero-img {
    background-size: cover;
}
.parallax-img {
    background-attachment: fixed !important;
}
.hero {
    align-items: stretch;
    display: flex;
    justify-content: space-between;
}
.hero .hero-body {
    flex-grow: 1;
    flex-shrink: 0;
    padding: 3rem 1.5rem;
    align-items: center;
    display: flex;
    width: 100%;
}
.space {
    display: block;
    width: 100%;
    height: 1rem;
}
.space.space--lg {
    padding: 1rem 0;
}
.space.space--xl {
    padding: 2rem 0;
}
.row {
    flex: 1;
    flex-wrap: wrap;
    padding: 0.5rem 0;
    display: flex;
}
.row::after {
    content: '';
    clear: both;
    display: table;
}
.row.row--no-wrap {
    flex-wrap: nowrap;
    overflow-x: auto;
}
.row .col {
    display: block;
    flex: 1;
    padding: 0.15rem 0.75rem;
}
.row .offset-right {
    margin-left: 0;
    margin-right: auto;
}
.row .offset-center {
    margin-left: auto;
    margin-right: auto;
}
.row .offset-left {
    margin-left: auto;
    margin-right: 0;
}
.row.divided [class*=' col'],
.row.divided [class^='col'] {
    box-shadow: 0 -1px 0 0 rgba(173, 181, 189, 0.5);
}
.row [class*=' col-'],
.row [class^='col-'] {
    width: 100%;
    margin-left: 0;
    padding: 0 0.5rem;
}
@media screen and (min-width: 768px) {
    .row .col-1 {
        width: 8.3333333333%;
    }
    .row .col-2 {
        width: 16.6666666667%;
    }
    .row .col-3 {
        width: 25%;
    }
    .row .col-4 {
        width: 33.3333333333%;
    }
    .row .col-5 {
        width: 41.6666666667%;
    }
    .row .col-6 {
        width: 50%;
    }
    .row .col-7 {
        width: 58.3333333333%;
    }
    .row .col-8 {
        width: 66.6666666667%;
    }
    .row .col-9 {
        width: 75%;
    }
    .row .col-10 {
        width: 83.3333333333%;
    }
    .row .col-11 {
        width: 91.6666666667%;
    }
    .row .col-12 {
        width: 100%;
    }
}
.row .col-xs-1 {
    width: 8.3333333333%;
}
.row .col-xs-2 {
    width: 16.6666666667%;
}
.row .col-xs-3 {
    width: 25%;
}
.row .col-xs-4 {
    width: 33.3333333333%;
}
.row .col-xs-5 {
    width: 41.6666666667%;
}
.row .col-xs-6 {
    width: 50%;
}
.row .col-xs-7 {
    width: 58.3333333333%;
}
.row .col-xs-8 {
    width: 66.6666666667%;
}
.row .col-xs-9 {
    width: 75%;
}
.row .col-xs-10 {
    width: 83.3333333333%;
}
.row .col-xs-11 {
    width: 91.6666666667%;
}
.row .col-xs-12 {
    width: 100%;
}
@media screen and (min-width: 640px) {
    .row .col-sm-1 {
        width: 8.3333333333%;
    }
    .row .col-sm-2 {
        width: 16.6666666667%;
    }
    .row .col-sm-3 {
        width: 25%;
    }
    .row .col-sm-4 {
        width: 33.3333333333%;
    }
    .row .col-sm-5 {
        width: 41.6666666667%;
    }
    .row .col-sm-6 {
        width: 50%;
    }
    .row .col-sm-7 {
        width: 58.3333333333%;
    }
    .row .col-sm-8 {
        width: 66.6666666667%;
    }
    .row .col-sm-9 {
        width: 75%;
    }
    .row .col-sm-10 {
        width: 83.3333333333%;
    }
    .row .col-sm-11 {
        width: 91.6666666667%;
    }
    .row .col-sm-12 {
        width: 100%;
    }
    .row .offset-1 {
        margin-left: 8.3333333333%;
    }
}
@media screen and (min-width: 768px) {
    .row .col-md-1 {
        width: 8.3333333333%;
    }
    .row .col-md-2 {
        width: 16.6666666667%;
    }
    .row .col-md-3 {
        width: 25%;
    }
    .row .col-md-4 {
        width: 33.3333333333%;
    }
    .row .col-md-5 {
        width: 41.6666666667%;
    }
    .row .col-md-6 {
        width: 50%;
    }
    .row .col-md-7 {
        width: 58.3333333333%;
    }
    .row .col-md-8 {
        width: 66.6666666667%;
    }
    .row .col-md-9 {
        width: 75%;
    }
    .row .col-md-10 {
        width: 83.3333333333%;
    }
    .row .col-md-11 {
        width: 91.6666666667%;
    }
    .row .col-md-12 {
        width: 100%;
    }
}
@media screen and (min-width: 1024px) {
    .row .col-lg-1 {
        width: 8.3333333333%;
    }
    .row .col-lg-2 {
        width: 16.6666666667%;
    }
    .row .col-lg-3 {
        width: 25%;
    }
    .row .col-lg-4 {
        width: 33.3333333333%;
    }
    .row .col-lg-5 {
        width: 41.6666666667%;
    }
    .row .col-lg-6 {
        width: 50%;
    }
    .row .col-lg-7 {
        width: 58.3333333333%;
    }
    .row .col-lg-8 {
        width: 66.6666666667%;
    }
    .row .col-lg-9 {
        width: 75%;
    }
    .row .col-lg-10 {
        width: 83.3333333333%;
    }
    .row .col-lg-11 {
        width: 91.6666666667%;
    }
    .row .col-lg-12 {
        width: 100%;
    }
}
@media screen and (min-width: 1280px) {
    .row .col-xl-1 {
        width: 8.3333333333%;
    }
    .row .col-xl-2 {
        width: 16.6666666667%;
    }
    .row .col-xl-3 {
        width: 25%;
    }
    .row .col-xl-4 {
        width: 33.3333333333%;
    }
    .row .col-xl-5 {
        width: 41.6666666667%;
    }
    .row .col-xl-6 {
        width: 50%;
    }
    .row .col-xl-7 {
        width: 58.3333333333%;
    }
    .row .col-xl-8 {
        width: 66.6666666667%;
    }
    .row .col-xl-9 {
        width: 75%;
    }
    .row .col-xl-10 {
        width: 83.3333333333%;
    }
    .row .col-xl-11 {
        width: 91.6666666667%;
    }
    .row .col-xl-12 {
        width: 100%;
    }
}
.row.no-space [class*=' col-'],
.row.no-space [class^='col-'] {
    padding: 0;
}
.level {
    align-items: center;
    justify-content: space-between;
}
.level .level-item {
    align-items: center;
    display: flex;
    flex-basis: auto;
    flex-grow: 0;
    flex-shrink: 0;
    justify-content: center;
}
.level .level-content {
    flex-basis: auto;
    flex-grow: 1;
    flex-shrink: 1;
    text-align: left;
    width: 100%;
}
.h-0 {
    height: 0 !important;
}
.h-px {
    height: 1px !important;
}
.h-1 {
    height: 0.5rem !important;
}
.h-2 {
    height: 1rem !important;
}
.h-3 {
    height: 1.5rem !important;
}
.h-4 {
    height: 2rem !important;
}
.h-5 {
    height: 2.5rem !important;
}
.h-6 {
    height: 3rem !important;
}
.h-8 {
    height: 4rem !important;
}
.h-10 {
    height: 5rem !important;
}
.h-12 {
    height: 6rem !important;
}
.h-16 {
    height: 8rem !important;
}
.h-20 {
    height: 10rem !important;
}
.h-24 {
    height: 12rem !important;
}
.h-32 {
    height: 16rem !important;
}
.h-48 {
    height: 24rem !important;
}
.h-64 {
    height: 32rem !important;
}
.h-10p {
    height: 10% !important;
}
.h-20p {
    height: 20% !important;
}
.h-30p {
    height: 30% !important;
}
.h-40p {
    height: 40% !important;
}
.h-50p {
    height: 50% !important;
}
.h-60p {
    height: 60% !important;
}
.h-70p {
    height: 70% !important;
}
.h-80p {
    height: 80% !important;
}
.h-90p {
    height: 90% !important;
}
.h-100p {
    height: 100% !important;
}
.h-auto {
    height: auto !important;
}
.h-screen {
    height: 100vh !important;
}
.w-0 {
    width: 0 !important;
}
.w-auto {
    width: auto !important;
}
.w-screen {
    width: 100vw !important;
}
.w-10p {
    width: 10% !important;
}
.w-20p {
    width: 20% !important;
}
.w-30p {
    width: 30% !important;
}
.w-40p {
    width: 40% !important;
}
.w-50p {
    width: 50% !important;
}
.w-60p {
    width: 60% !important;
}
.w-70p {
    width: 70% !important;
}
.w-80p {
    width: 80% !important;
}
.w-90p {
    width: 90% !important;
}
.w-100p {
    width: 100% !important;
}
.w-px {
    width: 1px !important;
}
.w-1 {
    width: 0.5rem !important;
}
.w-2 {
    width: 1rem !important;
}
.w-3 {
    width: 1.5rem !important;
}
.w-4 {
    width: 2rem !important;
}
.w-5 {
    width: 2.5rem !important;
}
.w-6 {
    width: 3rem !important;
}
.w-8 {
    width: 4rem !important;
}
.w-10 {
    width: 5rem !important;
}
.w-12 {
    width: 6rem !important;
}
.w-16 {
    width: 8rem !important;
}
.w-20 {
    width: 10rem !important;
}
.w-24 {
    width: 12rem !important;
}
.w-32 {
    width: 16rem !important;
}
.w-48 {
    width: 24rem !important;
}
.w-64 {
    width: 32rem !important;
}
@media screen and (min-width: 640px) {
    .row .offset-2 {
        margin-left: 16.6666666667%;
    }
    .row .offset-3 {
        margin-left: 25%;
    }
    .row .offset-4 {
        margin-left: 33.3333333333%;
    }
    .row .offset-5 {
        margin-left: 41.6666666667%;
    }
    .row .offset-6 {
        margin-left: 50%;
    }
    .row .offset-7 {
        margin-left: 58.3333333333%;
    }
    .row .offset-8 {
        margin-left: 66.6666666667%;
    }
    .row .offset-9 {
        margin-left: 75%;
    }
    .row .offset-10 {
        margin-left: 83.3333333333%;
    }
    .row .offset-11 {
        margin-left: 91.6666666667%;
    }
    .row .offset-12 {
        margin-left: 100%;
    }
    .h-0-sm {
        height: 0 !important;
    }
    .h-px-sm {
        height: 1px !important;
    }
    .h-1-sm {
        height: 0.5rem !important;
    }
    .h-2-sm {
        height: 1rem !important;
    }
    .h-3-sm {
        height: 1.5rem !important;
    }
    .h-4-sm {
        height: 2rem !important;
    }
    .h-5-sm {
        height: 2.5rem !important;
    }
    .h-6-sm {
        height: 3rem !important;
    }
    .h-8-sm {
        height: 4rem !important;
    }
    .h-10-sm {
        height: 5rem !important;
    }
    .h-12-sm {
        height: 6rem !important;
    }
    .h-16-sm {
        height: 8rem !important;
    }
    .h-20-sm {
        height: 10rem !important;
    }
    .h-24-sm {
        height: 12rem !important;
    }
    .h-32-sm {
        height: 16rem !important;
    }
    .h-48-sm {
        height: 24rem !important;
    }
    .h-64-sm {
        height: 32rem !important;
    }
    .h-10p-sm {
        height: 10% !important;
    }
    .h-20p-sm {
        height: 20% !important;
    }
    .h-30p-sm {
        height: 30% !important;
    }
    .h-40p-sm {
        height: 40% !important;
    }
    .h-50p-sm {
        height: 50% !important;
    }
    .h-60p-sm {
        height: 60% !important;
    }
    .h-70p-sm {
        height: 70% !important;
    }
    .h-80p-sm {
        height: 80% !important;
    }
    .h-90p-sm {
        height: 90% !important;
    }
    .h-100p-sm {
        height: 100% !important;
    }
    .h-auto-sm {
        height: auto !important;
    }
    .h-screen-sm {
        height: 100vh !important;
    }
    .w-0-sm {
        width: 0 !important;
    }
    .w-auto-sm {
        width: auto !important;
    }
    .w-screen-sm {
        width: 100vw !important;
    }
    .w-10p-sm {
        width: 10% !important;
    }
    .w-20p-sm {
        width: 20% !important;
    }
    .w-30p-sm {
        width: 30% !important;
    }
    .w-40p-sm {
        width: 40% !important;
    }
    .w-50p-sm {
        width: 50% !important;
    }
    .w-60p-sm {
        width: 60% !important;
    }
    .w-70p-sm {
        width: 70% !important;
    }
    .w-80p-sm {
        width: 80% !important;
    }
    .w-90p-sm {
        width: 90% !important;
    }
    .w-100p-sm {
        width: 100% !important;
    }
    .w-px-sm {
        width: 1px !important;
    }
    .w-1-sm {
        width: 0.5rem !important;
    }
    .w-2-sm {
        width: 1rem !important;
    }
    .w-3-sm {
        width: 1.5rem !important;
    }
    .w-4-sm {
        width: 2rem !important;
    }
    .w-5-sm {
        width: 2.5rem !important;
    }
    .w-6-sm {
        width: 3rem !important;
    }
    .w-8-sm {
        width: 4rem !important;
    }
    .w-10-sm {
        width: 5rem !important;
    }
    .w-12-sm {
        width: 6rem !important;
    }
    .w-16-sm {
        width: 8rem !important;
    }
    .w-20-sm {
        width: 10rem !important;
    }
    .w-24-sm {
        width: 12rem !important;
    }
    .w-32-sm {
        width: 16rem !important;
    }
    .w-48-sm {
        width: 24rem !important;
    }
    .w-64-sm {
        width: 32rem !important;
    }
}
@media screen and (min-width: 768px) {
    .h-0-md {
        height: 0 !important;
    }
    .h-px-md {
        height: 1px !important;
    }
    .h-1-md {
        height: 0.5rem !important;
    }
    .h-2-md {
        height: 1rem !important;
    }
    .h-3-md {
        height: 1.5rem !important;
    }
    .h-4-md {
        height: 2rem !important;
    }
    .h-5-md {
        height: 2.5rem !important;
    }
    .h-6-md {
        height: 3rem !important;
    }
    .h-8-md {
        height: 4rem !important;
    }
    .h-10-md {
        height: 5rem !important;
    }
    .h-12-md {
        height: 6rem !important;
    }
    .h-16-md {
        height: 8rem !important;
    }
    .h-20-md {
        height: 10rem !important;
    }
    .h-24-md {
        height: 12rem !important;
    }
    .h-32-md {
        height: 16rem !important;
    }
    .h-48-md {
        height: 24rem !important;
    }
    .h-64-md {
        height: 32rem !important;
    }
    .h-10p-md {
        height: 10% !important;
    }
    .h-20p-md {
        height: 20% !important;
    }
    .h-30p-md {
        height: 30% !important;
    }
    .h-40p-md {
        height: 40% !important;
    }
    .h-50p-md {
        height: 50% !important;
    }
    .h-60p-md {
        height: 60% !important;
    }
    .h-70p-md {
        height: 70% !important;
    }
    .h-80p-md {
        height: 80% !important;
    }
    .h-90p-md {
        height: 90% !important;
    }
    .h-100p-md {
        height: 100% !important;
    }
    .h-auto-md {
        height: auto !important;
    }
    .h-screen-md {
        height: 100vh !important;
    }
    .w-0-md {
        width: 0 !important;
    }
    .w-auto-md {
        width: auto !important;
    }
    .w-screen-md {
        width: 100vw !important;
    }
    .w-10p-md {
        width: 10% !important;
    }
    .w-20p-md {
        width: 20% !important;
    }
    .w-30p-md {
        width: 30% !important;
    }
    .w-40p-md {
        width: 40% !important;
    }
    .w-50p-md {
        width: 50% !important;
    }
    .w-60p-md {
        width: 60% !important;
    }
    .w-70p-md {
        width: 70% !important;
    }
    .w-80p-md {
        width: 80% !important;
    }
    .w-90p-md {
        width: 90% !important;
    }
    .w-100p-md {
        width: 100% !important;
    }
    .w-px-md {
        width: 1px !important;
    }
    .w-1-md {
        width: 0.5rem !important;
    }
    .w-2-md {
        width: 1rem !important;
    }
    .w-3-md {
        width: 1.5rem !important;
    }
    .w-4-md {
        width: 2rem !important;
    }
    .w-5-md {
        width: 2.5rem !important;
    }
    .w-6-md {
        width: 3rem !important;
    }
    .w-8-md {
        width: 4rem !important;
    }
    .w-10-md {
        width: 5rem !important;
    }
    .w-12-md {
        width: 6rem !important;
    }
    .w-16-md {
        width: 8rem !important;
    }
    .w-20-md {
        width: 10rem !important;
    }
    .w-24-md {
        width: 12rem !important;
    }
    .w-32-md {
        width: 16rem !important;
    }
    .w-48-md {
        width: 24rem !important;
    }
    .w-64-md {
        width: 32rem !important;
    }
    .level,
    .level-left,
    .level-right {
        display: flex;
    }
}
@media screen and (min-width: 1024px) {
    .h-0-lg {
        height: 0 !important;
    }
    .h-px-lg {
        height: 1px !important;
    }
    .h-1-lg {
        height: 0.5rem !important;
    }
    .h-2-lg {
        height: 1rem !important;
    }
    .h-3-lg {
        height: 1.5rem !important;
    }
    .h-4-lg {
        height: 2rem !important;
    }
    .h-5-lg {
        height: 2.5rem !important;
    }
    .h-6-lg {
        height: 3rem !important;
    }
    .h-8-lg {
        height: 4rem !important;
    }
    .h-10-lg {
        height: 5rem !important;
    }
    .h-12-lg {
        height: 6rem !important;
    }
    .h-16-lg {
        height: 8rem !important;
    }
    .h-20-lg {
        height: 10rem !important;
    }
    .h-24-lg {
        height: 12rem !important;
    }
    .h-32-lg {
        height: 16rem !important;
    }
    .h-48-lg {
        height: 24rem !important;
    }
    .h-64-lg {
        height: 32rem !important;
    }
    .h-10p-lg {
        height: 10% !important;
    }
    .h-20p-lg {
        height: 20% !important;
    }
    .h-30p-lg {
        height: 30% !important;
    }
    .h-40p-lg {
        height: 40% !important;
    }
    .h-50p-lg {
        height: 50% !important;
    }
    .h-60p-lg {
        height: 60% !important;
    }
    .h-70p-lg {
        height: 70% !important;
    }
    .h-80p-lg {
        height: 80% !important;
    }
    .h-90p-lg {
        height: 90% !important;
    }
    .h-100p-lg {
        height: 100% !important;
    }
    .h-auto-lg {
        height: auto !important;
    }
    .h-screen-lg {
        height: 100vh !important;
    }
    .w-0-lg {
        width: 0 !important;
    }
    .w-auto-lg {
        width: auto !important;
    }
    .w-screen-lg {
        width: 100vw !important;
    }
    .w-10p-lg {
        width: 10% !important;
    }
    .w-20p-lg {
        width: 20% !important;
    }
    .w-30p-lg {
        width: 30% !important;
    }
    .w-40p-lg {
        width: 40% !important;
    }
    .w-50p-lg {
        width: 50% !important;
    }
    .w-60p-lg {
        width: 60% !important;
    }
    .w-70p-lg {
        width: 70% !important;
    }
    .w-80p-lg {
        width: 80% !important;
    }
    .w-90p-lg {
        width: 90% !important;
    }
    .w-100p-lg {
        width: 100% !important;
    }
    .w-px-lg {
        width: 1px !important;
    }
    .w-1-lg {
        width: 0.5rem !important;
    }
    .w-2-lg {
        width: 1rem !important;
    }
    .w-3-lg {
        width: 1.5rem !important;
    }
    .w-4-lg {
        width: 2rem !important;
    }
    .w-5-lg {
        width: 2.5rem !important;
    }
    .w-6-lg {
        width: 3rem !important;
    }
    .w-8-lg {
        width: 4rem !important;
    }
    .w-10-lg {
        width: 5rem !important;
    }
    .w-12-lg {
        width: 6rem !important;
    }
    .w-16-lg {
        width: 8rem !important;
    }
    .w-20-lg {
        width: 10rem !important;
    }
    .w-24-lg {
        width: 12rem !important;
    }
    .w-32-lg {
        width: 16rem !important;
    }
    .w-48-lg {
        width: 24rem !important;
    }
    .w-64-lg {
        width: 32rem !important;
    }
}
@media screen and (min-width: 1280px) {
    .h-0-xl {
        height: 0 !important;
    }
    .h-px-xl {
        height: 1px !important;
    }
    .h-1-xl {
        height: 0.5rem !important;
    }
    .h-2-xl {
        height: 1rem !important;
    }
    .h-3-xl {
        height: 1.5rem !important;
    }
    .h-4-xl {
        height: 2rem !important;
    }
    .h-5-xl {
        height: 2.5rem !important;
    }
    .h-6-xl {
        height: 3rem !important;
    }
    .h-8-xl {
        height: 4rem !important;
    }
    .h-10-xl {
        height: 5rem !important;
    }
    .h-12-xl {
        height: 6rem !important;
    }
    .h-16-xl {
        height: 8rem !important;
    }
    .h-20-xl {
        height: 10rem !important;
    }
    .h-24-xl {
        height: 12rem !important;
    }
    .h-32-xl {
        height: 16rem !important;
    }
    .h-48-xl {
        height: 24rem !important;
    }
    .h-64-xl {
        height: 32rem !important;
    }
    .h-10p-xl {
        height: 10% !important;
    }
    .h-20p-xl {
        height: 20% !important;
    }
    .h-30p-xl {
        height: 30% !important;
    }
    .h-40p-xl {
        height: 40% !important;
    }
    .h-50p-xl {
        height: 50% !important;
    }
    .h-60p-xl {
        height: 60% !important;
    }
    .h-70p-xl {
        height: 70% !important;
    }
    .h-80p-xl {
        height: 80% !important;
    }
    .h-90p-xl {
        height: 90% !important;
    }
    .h-100p-xl {
        height: 100% !important;
    }
    .h-auto-xl {
        height: auto !important;
    }
    .h-screen-xl {
        height: 100vh !important;
    }
    .w-0-xl {
        width: 0 !important;
    }
    .w-auto-xl {
        width: auto !important;
    }
    .w-screen-xl {
        width: 100vw !important;
    }
    .w-10p-xl {
        width: 10% !important;
    }
    .w-20p-xl {
        width: 20% !important;
    }
    .w-30p-xl {
        width: 30% !important;
    }
    .w-40p-xl {
        width: 40% !important;
    }
    .w-50p-xl {
        width: 50% !important;
    }
    .w-60p-xl {
        width: 60% !important;
    }
    .w-70p-xl {
        width: 70% !important;
    }
    .w-80p-xl {
        width: 80% !important;
    }
    .w-90p-xl {
        width: 90% !important;
    }
    .w-100p-xl {
        width: 100% !important;
    }
    .w-px-xl {
        width: 1px !important;
    }
    .w-1-xl {
        width: 0.5rem !important;
    }
    .w-2-xl {
        width: 1rem !important;
    }
    .w-3-xl {
        width: 1.5rem !important;
    }
    .w-4-xl {
        width: 2rem !important;
    }
    .w-5-xl {
        width: 2.5rem !important;
    }
    .w-6-xl {
        width: 3rem !important;
    }
    .w-8-xl {
        width: 4rem !important;
    }
    .w-10-xl {
        width: 5rem !important;
    }
    .w-12-xl {
        width: 6rem !important;
    }
    .w-16-xl {
        width: 8rem !important;
    }
    .w-20-xl {
        width: 10rem !important;
    }
    .w-24-xl {
        width: 12rem !important;
    }
    .w-32-xl {
        width: 16rem !important;
    }
    .w-48-xl {
        width: 24rem !important;
    }
    .w-64-xl {
        width: 32rem !important;
    }
}
.min-h-10p {
    min-height: 10% !important;
}
.min-h-20p {
    min-height: 20% !important;
}
.min-h-30p {
    min-height: 30% !important;
}
.min-h-40p {
    min-height: 40% !important;
}
.min-h-50p {
    min-height: 50% !important;
}
.min-h-60p {
    min-height: 60% !important;
}
.min-h-70p {
    min-height: 70% !important;
}
.min-h-80p {
    min-height: 80% !important;
}
.min-h-90p {
    min-height: 90% !important;
}
.min-h-100p {
    min-height: 100% !important;
}
.min-h-0 {
    min-height: 0 !important;
}
.min-h-screen {
    min-height: 100vh !important;
}
.min-w-xs {
    min-width: 640px !important;
}
.min-w-sm {
    min-width: 768px !important;
}
.min-w-md {
    min-width: 1024px !important;
}
.min-w-lg {
    min-width: 1280px !important;
}
.min-w-xl {
    min-width: 1536px !important;
}
.min-w-10p {
    min-width: 10% !important;
}
.min-w-20p {
    min-width: 20% !important;
}
.min-w-30p {
    min-width: 30% !important;
}
.min-w-40p {
    min-width: 40% !important;
}
.min-w-50p {
    min-width: 50% !important;
}
.min-w-60p {
    min-width: 60% !important;
}
.min-w-70p {
    min-width: 70% !important;
}
.min-w-80p {
    min-width: 80% !important;
}
.min-w-90p {
    min-width: 90% !important;
}
.min-w-100p {
    min-width: 100% !important;
}
.min-w-0 {
    min-width: 0 !important;
}
.min-w-screen {
    min-width: 100vw !important;
}
.max-h-10p {
    max-height: 10% !important;
}
.max-h-20p {
    max-height: 20% !important;
}
.max-h-30p {
    max-height: 30% !important;
}
.max-h-40p {
    max-height: 40% !important;
}
.max-h-50p {
    max-height: 50% !important;
}
.max-h-60p {
    max-height: 60% !important;
}
.max-h-70p {
    max-height: 70% !important;
}
.max-h-80p {
    max-height: 80% !important;
}
.max-h-90p {
    max-height: 90% !important;
}
.max-h-100p {
    max-height: 100% !important;
}
.max-h-none {
    max-height: none !important;
}
.max-h-screen {
    max-height: 100vh !important;
}
.max-w-xs {
    max-width: 640px !important;
}
.max-w-sm {
    max-width: 768px !important;
}
.max-w-md {
    max-width: 1024px !important;
}
.max-w-lg {
    max-width: 1280px !important;
}
.max-w-xl {
    max-width: 1536px !important;
}
.max-w-10p {
    max-width: 10% !important;
}
.max-w-20p {
    max-width: 20% !important;
}
.max-w-30p {
    max-width: 30% !important;
}
.max-w-40p {
    max-width: 40% !important;
}
.max-w-50p {
    max-width: 50% !important;
}
.max-w-60p {
    max-width: 60% !important;
}
.max-w-70p {
    max-width: 70% !important;
}
.max-w-80p {
    max-width: 80% !important;
}
.max-w-90p {
    max-width: 90% !important;
}
.max-w-100p {
    max-width: 100% !important;
}
.max-w-none {
    max-width: none !important;
}
.max-w-screen {
    max-width: 100vw !important;
}
@media screen and (min-width: 768px) {
    .level-right {
        margin-left: 1rem;
    }
    .level.fill-height {
        align-items: stretch;
        display: flex;
    }
}
@media screen and (max-width: 767px) {
    .container {
        width: 100%;
    }
    .row {
        margin-top: 0;
    }
    .divided > .row [class*=' col-'],
    .divided > .row [class^='col-'] {
        box-shadow: 0 -1px 0 0 rgba(34, 36, 38, 0.15);
    }
    .level.fill-height {
        display: inherit;
    }
    .hero-body {
        padding: 0;
    }
}
video.video-fullscreen {
    position: absolute;
    height: 100vh;
    object-fit: cover;
    width: 100%;
    z-index: -1;
}
.hero.fullscreen video {
    height: 100%;
    object-fit: fill;
    position: absolute;
    width: 100%;
    z-index: -1;
}
.media-stretch {
    display: block;
    padding: 0;
    overflow: hidden;
    width: 100%;
    position: relative;
}
.media-stretch::before {
    content: '';
    display: block;
    padding-bottom: 56.25%;
}
.media-stretch embed,
.media-stretch iframe,
.media-stretch object {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.media-stretch.rat-4-3::before {
    padding-bottom: 75%;
}
.media-stretch.rat-1-1::before {
    padding-bottom: 100%;
}
.media-stretch video {
    height: auto;
    max-width: 100%;
    width: 100%;
}
.fig {
    margin: 0 0 0.5rem;
}
.fig .fig-caption {
    margin-top: 1rem;
}
.img-stretch {
    max-width: 100%;
    height: auto;
    display: block;
}
.img-cover {
    object-fit: cover;
}
.img-contain {
    object-fit: contain;
}
.btn.btn--pilled,
[type='button'].btn--pilled,
[type='reset'].btn--pilled,
[type='submit'].btn--pilled,
button.btn--pilled {
    border-radius: 6.25rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}
.btn.btn--circle,
[type='button'].btn--circle,
[type='reset'].btn--circle,
[type='submit'].btn--circle,
button.btn--circle {
    border-radius: 100%;
    min-width: 60px;
    overflow: hidden;
    padding: 0;
    text-align: center;
}
.btn.btn--circle:before,
[type='button'].btn--circle:before,
[type='reset'].btn--circle:before,
[type='submit'].btn--circle:before,
button.btn--circle:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    padding-top: 100%;
}
.btn.btn--circle *,
[type='button'].btn--circle *,
[type='reset'].btn--circle *,
[type='submit'].btn--circle *,
button.btn--circle * {
    display: inline;
    max-width: 90%;
    vertical-align: middle;
    white-space: pre-wrap;
}
.input-control--pilled {
    border-radius: 6.25rem !important;
}
.bg-primary {
    --btn-color: 240, 61, 77;
    --btn-shadow: 0 0 0 0.2rem rgba(240, 61, 77, 0.5);
    background-color: rgba(240, 61, 77, var(--bg-opacity)) !important;
}
.text-primary {
    --btn-fg: 240, 61, 77;
    --btn-border-color: 240, 61, 77;
    color: rgba(240, 61, 77, var(--color-opacity)) !important;
    border-color: rgba(240, 61, 77, var(--border-opacity));
}
.border-primary {
    --btn-border-color: 240, 61, 77;
    --btn-shadow: 0 0 0 0.2rem rgba(240, 61, 77, 0.5) !important;
    border-color: rgba(240, 61, 77, var(--border-opacity)) !important;
}
.bg-success {
    --btn-color: 13, 209, 87;
    --btn-shadow: 0 0 0 0.2rem rgba(13, 209, 87, 0.5);
    background-color: rgba(13, 209, 87, var(--bg-opacity)) !important;
}
.text-success {
    --btn-fg: 13, 209, 87;
    --btn-border-color: 13, 209, 87;
    color: rgba(13, 209, 87, var(--color-opacity)) !important;
    border-color: rgba(13, 209, 87, var(--border-opacity));
}
.border-success {
    --btn-border-color: 13, 209, 87;
    --btn-shadow: 0 0 0 0.2rem rgba(13, 209, 87, 0.5) !important;
    border-color: rgba(13, 209, 87, var(--border-opacity)) !important;
}
.bg-warning {
    --btn-color: 250, 182, 51;
    --btn-shadow: 0 0 0 0.2rem rgba(250, 182, 51, 0.5);
    background-color: rgba(250, 182, 51, var(--bg-opacity)) !important;
}
.text-warning {
    --btn-fg: 250, 182, 51;
    --btn-border-color: 250, 182, 51;
    color: rgba(250, 182, 51, var(--color-opacity)) !important;
    border-color: rgba(250, 182, 51, var(--border-opacity));
}
.border-warning {
    --btn-border-color: 250, 182, 51;
    --btn-shadow: 0 0 0 0.2rem rgba(250, 182, 51, 0.5) !important;
    border-color: rgba(250, 182, 51, var(--border-opacity)) !important;
}
.bg-danger {
    --btn-color: 251, 65, 67;
    --btn-shadow: 0 0 0 0.2rem rgba(251, 65, 67, 0.5);
    background-color: rgba(251, 65, 67, var(--bg-opacity)) !important;
}
.text-danger {
    --btn-fg: 251, 65, 67;
    --btn-border-color: 251, 65, 67;
    color: rgba(251, 65, 67, var(--color-opacity)) !important;
    border-color: rgba(251, 65, 67, var(--border-opacity));
}
.border-danger {
    --btn-border-color: 251, 65, 67;
    --btn-shadow: 0 0 0 0.2rem rgba(251, 65, 67, 0.5) !important;
    border-color: rgba(251, 65, 67, var(--border-opacity)) !important;
}
.bg-light {
    --btn-color: 246, 249, 252;
    --btn-shadow: 0 0 0 0.2rem rgba(246, 249, 252, 0.5);
    background-color: rgba(246, 249, 252, var(--bg-opacity)) !important;
}
.text-light {
    --btn-fg: 246, 249, 252;
    --btn-border-color: 246, 249, 252;
    color: rgba(246, 249, 252, var(--color-opacity)) !important;
    border-color: rgba(246, 249, 252, var(--border-opacity));
}
.border-light {
    --btn-border-color: 246, 249, 252;
    --btn-shadow: 0 0 0 0.2rem rgba(246, 249, 252, 0.5) !important;
    border-color: rgba(246, 249, 252, var(--border-opacity)) !important;
}
.bg-dark {
    --btn-color: 54, 54, 54;
    --btn-shadow: 0 0 0 0.2rem rgba(54, 54, 54, 0.5);
    background-color: rgba(54, 54, 54, var(--bg-opacity)) !important;
}
.text-dark {
    --btn-fg: 54, 54, 54;
    --btn-border-color: 54, 54, 54;
    color: rgba(54, 54, 54, var(--color-opacity)) !important;
    border-color: rgba(54, 54, 54, var(--border-opacity));
}
.border-dark {
    --btn-border-color: 54, 54, 54;
    --btn-shadow: 0 0 0 0.2rem rgba(54, 54, 54, 0.5) !important;
    border-color: rgba(54, 54, 54, var(--border-opacity)) !important;
}
.bg-link {
    --btn-color: 94, 92, 199;
    --btn-shadow: 0 0 0 0.2rem rgba(94, 92, 199, 0.5);
    background-color: rgba(94, 92, 199, var(--bg-opacity)) !important;
}
.text-link {
    --btn-fg: 94, 92, 199;
    --btn-border-color: 94, 92, 199;
    color: rgba(94, 92, 199, var(--color-opacity)) !important;
    border-color: rgba(94, 92, 199, var(--border-opacity));
}
.border-link {
    --btn-border-color: 94, 92, 199;
    --btn-shadow: 0 0 0 0.2rem rgba(94, 92, 199, 0.5) !important;
    border-color: rgba(94, 92, 199, var(--border-opacity)) !important;
}
.bg-link-dark {
    --btn-color: 70, 67, 226;
    --btn-shadow: 0 0 0 0.2rem rgba(70, 67, 226, 0.5);
    background-color: rgba(70, 67, 226, var(--bg-opacity)) !important;
}
.text-link-dark {
    --btn-fg: 70, 67, 226;
    --btn-border-color: 70, 67, 226;
    color: rgba(70, 67, 226, var(--color-opacity)) !important;
    border-color: rgba(70, 67, 226, var(--border-opacity));
}
.border-link-dark {
    --btn-border-color: 70, 67, 226;
    --btn-shadow: 0 0 0 0.2rem rgba(70, 67, 226, 0.5) !important;
    border-color: rgba(70, 67, 226, var(--border-opacity)) !important;
}
.bg-info {
    --btn-color: 41, 114, 250;
    --btn-shadow: 0 0 0 0.2rem rgba(41, 114, 250, 0.5);
    background-color: rgba(41, 114, 250, var(--bg-opacity)) !important;
}
.text-info {
    --btn-fg: 41, 114, 250;
    --btn-border-color: 41, 114, 250;
    color: rgba(41, 114, 250, var(--color-opacity)) !important;
    border-color: rgba(41, 114, 250, var(--border-opacity));
}
.border-info {
    --btn-border-color: 41, 114, 250;
    --btn-shadow: 0 0 0 0.2rem rgba(41, 114, 250, 0.5) !important;
    border-color: rgba(41, 114, 250, var(--border-opacity)) !important;
}
.bg-black {
    --btn-color: 0, 0, 0;
    --btn-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.5);
    background-color: rgba(0, 0, 0, var(--bg-opacity)) !important;
}
.text-black {
    --btn-fg: 0, 0, 0;
    --btn-border-color: 0, 0, 0;
    color: rgba(0, 0, 0, var(--color-opacity)) !important;
    border-color: rgba(0, 0, 0, var(--border-opacity));
}
.border-black {
    --btn-border-color: 0, 0, 0;
    --btn-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.5) !important;
    border-color: rgba(0, 0, 0, var(--border-opacity)) !important;
}
.bg-white {
    --btn-color: 255, 255, 255;
    --btn-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
    background-color: rgba(255, 255, 255, var(--bg-opacity)) !important;
}
.text-white {
    --btn-fg: 255, 255, 255;
    --btn-border-color: 255, 255, 255;
    color: rgba(255, 255, 255, var(--color-opacity)) !important;
    border-color: rgba(255, 255, 255, var(--border-opacity));
}
.border-white {
    --btn-border-color: 255, 255, 255;
    --btn-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5) !important;
    border-color: rgba(255, 255, 255, var(--border-opacity)) !important;
}
.bg-transparent {
    background-color: transparent !important;
}
.text-transparent {
    border-color: transparent !important;
    color: transparent !important;
}
.bg-pink-100:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 252, 232, 243;
    --btn-hover-color: 249, 209, 231 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(252, 232, 243, 0.5);
}
.bg-pink-100:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(252, 232, 243, var(--bg-opacity)) !important;
}
.text-pink-100 {
    --btn-fg: 252, 232, 243;
    --btn-border-color: 252, 232, 243;
    color: rgba(252, 232, 243, var(--color-opacity)) !important;
    border-color: rgba(252, 232, 243, var(--border-opacity));
}
.border-pink-100 {
    --btn-border-color: 252, 232, 243 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(252, 232, 243, 0.5);
    border-color: rgba(252, 232, 243, var(--border-opacity)) !important;
}
.bg-pink-200:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 250, 209, 232;
    --btn-hover-color: 248, 186, 221 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(250, 209, 232, 0.5);
}
.bg-pink-200:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(250, 209, 232, var(--bg-opacity)) !important;
}
.text-pink-200 {
    --btn-fg: 250, 209, 232;
    --btn-border-color: 250, 209, 232;
    color: rgba(250, 209, 232, var(--color-opacity)) !important;
    border-color: rgba(250, 209, 232, var(--border-opacity));
}
.border-pink-200 {
    --btn-border-color: 250, 209, 232 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(250, 209, 232, 0.5);
    border-color: rgba(250, 209, 232, var(--border-opacity)) !important;
}
.bg-pink-300:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 248, 180, 217;
    --btn-hover-color: 246, 157, 205 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(248, 180, 217, 0.5);
}
.bg-pink-300:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(248, 180, 217, var(--bg-opacity)) !important;
}
.text-pink-300 {
    --btn-fg: 248, 180, 217;
    --btn-border-color: 248, 180, 217;
    color: rgba(248, 180, 217, var(--color-opacity)) !important;
    border-color: rgba(248, 180, 217, var(--border-opacity));
}
.border-pink-300 {
    --btn-border-color: 248, 180, 217 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(248, 180, 217, 0.5);
    border-color: rgba(248, 180, 217, var(--border-opacity)) !important;
}
.bg-pink-400:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 241, 126, 184;
    --btn-hover-color: 239, 103, 171 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(241, 126, 184, 0.5);
}
.bg-pink-400:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(241, 126, 184, var(--bg-opacity)) !important;
}
.text-pink-400 {
    --btn-fg: 241, 126, 184;
    --btn-border-color: 241, 126, 184;
    color: rgba(241, 126, 184, var(--color-opacity)) !important;
    border-color: rgba(241, 126, 184, var(--border-opacity));
}
.border-pink-400 {
    --btn-border-color: 241, 126, 184 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(241, 126, 184, 0.5);
    border-color: rgba(241, 126, 184, var(--border-opacity)) !important;
}
.bg-pink-500:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 231, 70, 148;
    --btn-hover-color: 234, 93, 161 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(231, 70, 148, 0.5);
}
.bg-pink-500:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(231, 70, 148, var(--bg-opacity)) !important;
}
.text-pink-500 {
    --btn-fg: 231, 70, 148;
    --btn-border-color: 231, 70, 148;
    color: rgba(231, 70, 148, var(--color-opacity)) !important;
    border-color: rgba(231, 70, 148, var(--border-opacity));
}
.border-pink-500 {
    --btn-border-color: 231, 70, 148 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(231, 70, 148, 0.5);
    border-color: rgba(231, 70, 148, var(--border-opacity)) !important;
}
.bg-pink-600:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 214, 31, 105;
    --btn-hover-color: 225, 46, 118 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(214, 31, 105, 0.5);
}
.bg-pink-600:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(214, 31, 105, var(--bg-opacity)) !important;
}
.text-pink-600 {
    --btn-fg: 214, 31, 105;
    --btn-border-color: 214, 31, 105;
    color: rgba(214, 31, 105, var(--color-opacity)) !important;
    border-color: rgba(214, 31, 105, var(--border-opacity));
}
.border-pink-600 {
    --btn-border-color: 214, 31, 105 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(214, 31, 105, 0.5);
    border-color: rgba(214, 31, 105, var(--border-opacity)) !important;
}
.bg-pink-700:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 191, 18, 93;
    --btn-hover-color: 214, 20, 104 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(191, 18, 93, 0.5);
}
.bg-pink-700:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(191, 18, 93, var(--bg-opacity)) !important;
}
.text-pink-700 {
    --btn-fg: 191, 18, 93;
    --btn-border-color: 191, 18, 93;
    color: rgba(191, 18, 93, var(--color-opacity)) !important;
    border-color: rgba(191, 18, 93, var(--border-opacity));
}
.border-pink-700 {
    --btn-border-color: 191, 18, 93 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(191, 18, 93, 0.5);
    border-color: rgba(191, 18, 93, var(--border-opacity)) !important;
}
.bg-pink-800:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 153, 21, 75;
    --btn-hover-color: 175, 24, 86 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(153, 21, 75, 0.5);
}
.bg-pink-800:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(153, 21, 75, var(--bg-opacity)) !important;
}
.text-pink-800 {
    --btn-fg: 153, 21, 75;
    --btn-border-color: 153, 21, 75;
    color: rgba(153, 21, 75, var(--color-opacity)) !important;
    border-color: rgba(153, 21, 75, var(--border-opacity));
}
.border-pink-800 {
    --btn-border-color: 153, 21, 75 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(153, 21, 75, 0.5);
    border-color: rgba(153, 21, 75, var(--border-opacity)) !important;
}
.bg-pink-900:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 117, 26, 61;
    --btn-hover-color: 138, 31, 72 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(117, 26, 61, 0.5);
}
.bg-pink-900:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(117, 26, 61, var(--bg-opacity)) !important;
}
.text-pink-900 {
    --btn-fg: 117, 26, 61;
    --btn-border-color: 117, 26, 61;
    color: rgba(117, 26, 61, var(--color-opacity)) !important;
    border-color: rgba(117, 26, 61, var(--border-opacity));
}
.border-pink-900 {
    --btn-border-color: 117, 26, 61 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(117, 26, 61, 0.5);
    border-color: rgba(117, 26, 61, var(--border-opacity)) !important;
}
.bg-red-100:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 253, 232, 232;
    --btn-hover-color: 251, 209, 209 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(253, 232, 232, 0.5);
}
.bg-red-100:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(253, 232, 232, var(--bg-opacity)) !important;
}
.text-red-100 {
    --btn-fg: 253, 232, 232;
    --btn-border-color: 253, 232, 232;
    color: rgba(253, 232, 232, var(--color-opacity)) !important;
    border-color: rgba(253, 232, 232, var(--border-opacity));
}
.border-red-100 {
    --btn-border-color: 253, 232, 232 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(253, 232, 232, 0.5);
    border-color: rgba(253, 232, 232, var(--border-opacity)) !important;
}
.bg-red-200:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 251, 213, 213;
    --btn-hover-color: 249, 190, 190 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(251, 213, 213, 0.5);
}
.bg-red-200:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(251, 213, 213, var(--bg-opacity)) !important;
}
.text-red-200 {
    --btn-fg: 251, 213, 213;
    --btn-border-color: 251, 213, 213;
    color: rgba(251, 213, 213, var(--color-opacity)) !important;
    border-color: rgba(251, 213, 213, var(--border-opacity));
}
.border-red-200 {
    --btn-border-color: 251, 213, 213 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(251, 213, 213, 0.5);
    border-color: rgba(251, 213, 213, var(--border-opacity)) !important;
}
.bg-red-300:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 248, 180, 180;
    --btn-hover-color: 246, 157, 157 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(248, 180, 180, 0.5);
}
.bg-red-300:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(248, 180, 180, var(--bg-opacity)) !important;
}
.text-red-300 {
    --btn-fg: 248, 180, 180;
    --btn-border-color: 248, 180, 180;
    color: rgba(248, 180, 180, var(--color-opacity)) !important;
    border-color: rgba(248, 180, 180, var(--border-opacity));
}
.border-red-300 {
    --btn-border-color: 248, 180, 180 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(248, 180, 180, 0.5);
    border-color: rgba(248, 180, 180, var(--border-opacity)) !important;
}
.bg-red-400:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 249, 128, 128;
    --btn-hover-color: 248, 104, 104 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(249, 128, 128, 0.5);
}
.bg-red-400:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(249, 128, 128, var(--bg-opacity)) !important;
}
.text-red-400 {
    --btn-fg: 249, 128, 128;
    --btn-border-color: 249, 128, 128;
    color: rgba(249, 128, 128, var(--color-opacity)) !important;
    border-color: rgba(249, 128, 128, var(--border-opacity));
}
.border-red-400 {
    --btn-border-color: 249, 128, 128 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(249, 128, 128, 0.5);
    border-color: rgba(249, 128, 128, var(--border-opacity)) !important;
}
.bg-red-500:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 240, 82, 82;
    --btn-hover-color: 242, 105, 105 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(240, 82, 82, 0.5);
}
.bg-red-500:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(240, 82, 82, var(--bg-opacity)) !important;
}
.text-red-500 {
    --btn-fg: 240, 82, 82;
    --btn-border-color: 240, 82, 82;
    color: rgba(240, 82, 82, var(--color-opacity)) !important;
    border-color: rgba(240, 82, 82, var(--border-opacity));
}
.border-red-500 {
    --btn-border-color: 240, 82, 82 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(240, 82, 82, 0.5);
    border-color: rgba(240, 82, 82, var(--border-opacity)) !important;
}
.bg-red-600:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 224, 36, 36;
    --btn-hover-color: 227, 58, 58 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(224, 36, 36, 0.5);
}
.bg-red-600:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(224, 36, 36, var(--bg-opacity)) !important;
}
.text-red-600 {
    --btn-fg: 224, 36, 36;
    --btn-border-color: 224, 36, 36;
    color: rgba(224, 36, 36, var(--color-opacity)) !important;
    border-color: rgba(224, 36, 36, var(--border-opacity));
}
.border-red-600 {
    --btn-border-color: 224, 36, 36 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(224, 36, 36, 0.5);
    border-color: rgba(224, 36, 36, var(--border-opacity)) !important;
}
.bg-red-700:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 200, 30, 30;
    --btn-hover-color: 222, 34, 34 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(200, 30, 30, 0.5);
}
.bg-red-700:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(200, 30, 30, var(--bg-opacity)) !important;
}
.text-red-700 {
    --btn-fg: 200, 30, 30;
    --btn-border-color: 200, 30, 30;
    color: rgba(200, 30, 30, var(--color-opacity)) !important;
    border-color: rgba(200, 30, 30, var(--border-opacity));
}
.border-red-700 {
    --btn-border-color: 200, 30, 30 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(200, 30, 30, 0.5);
    border-color: rgba(200, 30, 30, var(--border-opacity)) !important;
}
.bg-red-800:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 155, 28, 28;
    --btn-hover-color: 177, 32, 32 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(155, 28, 28, 0.5);
}
.bg-red-800:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(155, 28, 28, var(--bg-opacity)) !important;
}
.text-red-800 {
    --btn-fg: 155, 28, 28;
    --btn-border-color: 155, 28, 28;
    color: rgba(155, 28, 28, var(--color-opacity)) !important;
    border-color: rgba(155, 28, 28, var(--border-opacity));
}
.border-red-800 {
    --btn-border-color: 155, 28, 28 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(155, 28, 28, 0.5);
    border-color: rgba(155, 28, 28, var(--border-opacity)) !important;
}
.bg-red-900:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 119, 29, 29;
    --btn-hover-color: 140, 34, 34 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(119, 29, 29, 0.5);
}
.bg-red-900:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(119, 29, 29, var(--bg-opacity)) !important;
}
.text-red-900 {
    --btn-fg: 119, 29, 29;
    --btn-border-color: 119, 29, 29;
    color: rgba(119, 29, 29, var(--color-opacity)) !important;
    border-color: rgba(119, 29, 29, var(--border-opacity));
}
.border-red-900 {
    --btn-border-color: 119, 29, 29 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(119, 29, 29, 0.5);
    border-color: rgba(119, 29, 29, var(--border-opacity)) !important;
}
.bg-orange-100:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 254, 236, 220;
    --btn-hover-color: 253, 223, 195 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(254, 236, 220, 0.5);
}
.bg-orange-100:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(254, 236, 220, var(--bg-opacity)) !important;
}
.text-orange-100 {
    --btn-fg: 254, 236, 220;
    --btn-border-color: 254, 236, 220;
    color: rgba(254, 236, 220, var(--color-opacity)) !important;
    border-color: rgba(254, 236, 220, var(--border-opacity));
}
.border-orange-100 {
    --btn-border-color: 254, 236, 220 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(254, 236, 220, 0.5);
    border-color: rgba(254, 236, 220, var(--border-opacity)) !important;
}
.bg-orange-200:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 252, 217, 189;
    --btn-hover-color: 251, 203, 165 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(252, 217, 189, 0.5);
}
.bg-orange-200:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(252, 217, 189, var(--bg-opacity)) !important;
}
.text-orange-200 {
    --btn-fg: 252, 217, 189;
    --btn-border-color: 252, 217, 189;
    color: rgba(252, 217, 189, var(--color-opacity)) !important;
    border-color: rgba(252, 217, 189, var(--border-opacity));
}
.border-orange-200 {
    --btn-border-color: 252, 217, 189 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(252, 217, 189, 0.5);
    border-color: rgba(252, 217, 189, var(--border-opacity)) !important;
}
.bg-orange-300:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 253, 186, 140;
    --btn-hover-color: 253, 171, 115 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(253, 186, 140, 0.5);
}
.bg-orange-300:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(253, 186, 140, var(--bg-opacity)) !important;
}
.text-orange-300 {
    --btn-fg: 253, 186, 140;
    --btn-border-color: 253, 186, 140;
    color: rgba(253, 186, 140, var(--color-opacity)) !important;
    border-color: rgba(253, 186, 140, var(--border-opacity));
}
.border-orange-300 {
    --btn-border-color: 253, 186, 140 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(253, 186, 140, 0.5);
    border-color: rgba(253, 186, 140, var(--border-opacity)) !important;
}
.bg-orange-400:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 255, 138, 76;
    --btn-hover-color: 255, 121, 51 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(255, 138, 76, 0.5);
}
.bg-orange-400:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(255, 138, 76, var(--bg-opacity)) !important;
}
.text-orange-400 {
    --btn-fg: 255, 138, 76;
    --btn-border-color: 255, 138, 76;
    color: rgba(255, 138, 76, var(--color-opacity)) !important;
    border-color: rgba(255, 138, 76, var(--border-opacity));
}
.border-orange-400 {
    --btn-border-color: 255, 138, 76 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(255, 138, 76, 0.5);
    border-color: rgba(255, 138, 76, var(--border-opacity)) !important;
}
.bg-orange-500:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 255, 90, 31;
    --btn-hover-color: 255, 109, 57 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(255, 90, 31, 0.5);
}
.bg-orange-500:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(255, 90, 31, var(--bg-opacity)) !important;
}
.text-orange-500 {
    --btn-fg: 255, 90, 31;
    --btn-border-color: 255, 90, 31;
    color: rgba(255, 90, 31, var(--color-opacity)) !important;
    border-color: rgba(255, 90, 31, var(--border-opacity));
}
.border-orange-500 {
    --btn-border-color: 255, 90, 31 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(255, 90, 31, 0.5);
    border-color: rgba(255, 90, 31, var(--border-opacity)) !important;
}
.bg-orange-600:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 208, 56, 1;
    --btn-hover-color: 233, 63, 1 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(208, 56, 1, 0.5);
}
.bg-orange-600:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(208, 56, 1, var(--bg-opacity)) !important;
}
.text-orange-600 {
    --btn-fg: 208, 56, 1;
    --btn-border-color: 208, 56, 1;
    color: rgba(208, 56, 1, var(--color-opacity)) !important;
    border-color: rgba(208, 56, 1, var(--border-opacity));
}
.border-orange-600 {
    --btn-border-color: 208, 56, 1 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(208, 56, 1, 0.5);
    border-color: rgba(208, 56, 1, var(--border-opacity)) !important;
}
.bg-orange-700:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 180, 52, 3;
    --btn-hover-color: 205, 59, 3 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(180, 52, 3, 0.5);
}
.bg-orange-700:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(180, 52, 3, var(--bg-opacity)) !important;
}
.text-orange-700 {
    --btn-fg: 180, 52, 3;
    --btn-border-color: 180, 52, 3;
    color: rgba(180, 52, 3, var(--color-opacity)) !important;
    border-color: rgba(180, 52, 3, var(--border-opacity));
}
.border-orange-700 {
    --btn-border-color: 180, 52, 3 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(180, 52, 3, 0.5);
    border-color: rgba(180, 52, 3, var(--border-opacity)) !important;
}
.bg-orange-800:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 138, 44, 13;
    --btn-hover-color: 161, 51, 15 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(138, 44, 13, 0.5);
}
.bg-orange-800:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(138, 44, 13, var(--bg-opacity)) !important;
}
.text-orange-800 {
    --btn-fg: 138, 44, 13;
    --btn-border-color: 138, 44, 13;
    color: rgba(138, 44, 13, var(--color-opacity)) !important;
    border-color: rgba(138, 44, 13, var(--border-opacity));
}
.border-orange-800 {
    --btn-border-color: 138, 44, 13 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(138, 44, 13, 0.5);
    border-color: rgba(138, 44, 13, var(--border-opacity)) !important;
}
.bg-orange-900:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 115, 35, 13;
    --btn-hover-color: 138, 42, 16 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(115, 35, 13, 0.5);
}
.bg-orange-900:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(115, 35, 13, var(--bg-opacity)) !important;
}
.text-orange-900 {
    --btn-fg: 115, 35, 13;
    --btn-border-color: 115, 35, 13;
    color: rgba(115, 35, 13, var(--color-opacity)) !important;
    border-color: rgba(115, 35, 13, var(--border-opacity));
}
.border-orange-900 {
    --btn-border-color: 115, 35, 13 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(115, 35, 13, 0.5);
    border-color: rgba(115, 35, 13, var(--border-opacity)) !important;
}
.bg-yellow-100:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 253, 246, 178;
    --btn-hover-color: 252, 243, 153 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(253, 246, 178, 0.5);
}
.bg-yellow-100:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(253, 246, 178, var(--bg-opacity)) !important;
}
.text-yellow-100 {
    --btn-fg: 253, 246, 178;
    --btn-border-color: 253, 246, 178;
    color: rgba(253, 246, 178, var(--color-opacity)) !important;
    border-color: rgba(253, 246, 178, var(--border-opacity));
}
.border-yellow-100 {
    --btn-border-color: 253, 246, 178 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(253, 246, 178, 0.5);
    border-color: rgba(253, 246, 178, var(--border-opacity)) !important;
}
.bg-yellow-200:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 252, 233, 106;
    --btn-hover-color: 251, 229, 81 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(252, 233, 106, 0.5);
}
.bg-yellow-200:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(252, 233, 106, var(--bg-opacity)) !important;
}
.text-yellow-200 {
    --btn-fg: 252, 233, 106;
    --btn-border-color: 252, 233, 106;
    color: rgba(252, 233, 106, var(--color-opacity)) !important;
    border-color: rgba(252, 233, 106, var(--border-opacity));
}
.border-yellow-200 {
    --btn-border-color: 252, 233, 106 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(252, 233, 106, 0.5);
    border-color: rgba(252, 233, 106, var(--border-opacity)) !important;
}
.bg-yellow-300:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 250, 202, 21;
    --btn-hover-color: 240, 191, 5 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(250, 202, 21, 0.5);
}
.bg-yellow-300:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(250, 202, 21, var(--bg-opacity)) !important;
}
.text-yellow-300 {
    --btn-fg: 250, 202, 21;
    --btn-border-color: 250, 202, 21;
    color: rgba(250, 202, 21, var(--color-opacity)) !important;
    border-color: rgba(250, 202, 21, var(--border-opacity));
}
.border-yellow-300 {
    --btn-border-color: 250, 202, 21 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(250, 202, 21, 0.5);
    border-color: rgba(250, 202, 21, var(--border-opacity)) !important;
}
.bg-yellow-400:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 227, 160, 8;
    --btn-hover-color: 202, 143, 7 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(227, 160, 8, 0.5);
}
.bg-yellow-400:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(227, 160, 8, var(--bg-opacity)) !important;
}
.text-yellow-400 {
    --btn-fg: 227, 160, 8;
    --btn-border-color: 227, 160, 8;
    color: rgba(227, 160, 8, var(--color-opacity)) !important;
    border-color: rgba(227, 160, 8, var(--border-opacity));
}
.border-yellow-400 {
    --btn-border-color: 227, 160, 8 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(227, 160, 8, 0.5);
    border-color: rgba(227, 160, 8, var(--border-opacity)) !important;
}
.bg-yellow-500:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 194, 120, 3;
    --btn-hover-color: 219, 136, 3 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(194, 120, 3, 0.5);
}
.bg-yellow-500:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(194, 120, 3, var(--bg-opacity)) !important;
}
.text-yellow-500 {
    --btn-fg: 194, 120, 3;
    --btn-border-color: 194, 120, 3;
    color: rgba(194, 120, 3, var(--color-opacity)) !important;
    border-color: rgba(194, 120, 3, var(--border-opacity));
}
.border-yellow-500 {
    --btn-border-color: 194, 120, 3 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(194, 120, 3, 0.5);
    border-color: rgba(194, 120, 3, var(--border-opacity)) !important;
}
.bg-yellow-600:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 159, 88, 10;
    --btn-hover-color: 183, 101, 12 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(159, 88, 10, 0.5);
}
.bg-yellow-600:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(159, 88, 10, var(--bg-opacity)) !important;
}
.text-yellow-600 {
    --btn-fg: 159, 88, 10;
    --btn-border-color: 159, 88, 10;
    color: rgba(159, 88, 10, var(--color-opacity)) !important;
    border-color: rgba(159, 88, 10, var(--border-opacity));
}
.border-yellow-600 {
    --btn-border-color: 159, 88, 10 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(159, 88, 10, 0.5);
    border-color: rgba(159, 88, 10, var(--border-opacity)) !important;
}
.bg-yellow-700:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 142, 75, 16;
    --btn-hover-color: 165, 87, 19 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(142, 75, 16, 0.5);
}
.bg-yellow-700:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(142, 75, 16, var(--bg-opacity)) !important;
}
.text-yellow-700 {
    --btn-fg: 142, 75, 16;
    --btn-border-color: 142, 75, 16;
    color: rgba(142, 75, 16, var(--color-opacity)) !important;
    border-color: rgba(142, 75, 16, var(--border-opacity));
}
.border-yellow-700 {
    --btn-border-color: 142, 75, 16 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(142, 75, 16, 0.5);
    border-color: rgba(142, 75, 16, var(--border-opacity)) !important;
}
.bg-yellow-800:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 114, 59, 19;
    --btn-hover-color: 136, 70, 23 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(114, 59, 19, 0.5);
}
.bg-yellow-800:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(114, 59, 19, var(--bg-opacity)) !important;
}
.text-yellow-800 {
    --btn-fg: 114, 59, 19;
    --btn-border-color: 114, 59, 19;
    color: rgba(114, 59, 19, var(--color-opacity)) !important;
    border-color: rgba(114, 59, 19, var(--border-opacity));
}
.border-yellow-800 {
    --btn-border-color: 114, 59, 19 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(114, 59, 19, 0.5);
    border-color: rgba(114, 59, 19, var(--border-opacity)) !important;
}
.bg-yellow-900:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 99, 49, 18;
    --btn-hover-color: 121, 60, 22 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(99, 49, 18, 0.5);
}
.bg-yellow-900:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(99, 49, 18, var(--bg-opacity)) !important;
}
.text-yellow-900 {
    --btn-fg: 99, 49, 18;
    --btn-border-color: 99, 49, 18;
    color: rgba(99, 49, 18, var(--color-opacity)) !important;
    border-color: rgba(99, 49, 18, var(--border-opacity));
}
.border-yellow-900 {
    --btn-border-color: 99, 49, 18 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(99, 49, 18, 0.5);
    border-color: rgba(99, 49, 18, var(--border-opacity)) !important;
}
.bg-green-100:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 222, 247, 236;
    --btn-hover-color: 201, 242, 224 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(222, 247, 236, 0.5);
}
.bg-green-100:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(222, 247, 236, var(--bg-opacity)) !important;
}
.text-green-100 {
    --btn-fg: 222, 247, 236;
    --btn-border-color: 222, 247, 236;
    color: rgba(222, 247, 236, var(--color-opacity)) !important;
    border-color: rgba(222, 247, 236, var(--border-opacity));
}
.border-green-100 {
    --btn-border-color: 222, 247, 236 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(222, 247, 236, 0.5);
    border-color: rgba(222, 247, 236, var(--border-opacity)) !important;
}
.bg-green-200:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 188, 240, 218;
    --btn-hover-color: 167, 235, 206 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(188, 240, 218, 0.5);
}
.bg-green-200:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(188, 240, 218, var(--bg-opacity)) !important;
}
.text-green-200 {
    --btn-fg: 188, 240, 218;
    --btn-border-color: 188, 240, 218;
    color: rgba(188, 240, 218, var(--color-opacity)) !important;
    border-color: rgba(188, 240, 218, var(--border-opacity));
}
.border-green-200 {
    --btn-border-color: 188, 240, 218 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(188, 240, 218, 0.5);
    border-color: rgba(188, 240, 218, var(--border-opacity)) !important;
}
.bg-green-300:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 132, 225, 188;
    --btn-hover-color: 112, 220, 177 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(132, 225, 188, 0.5);
}
.bg-green-300:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(132, 225, 188, var(--bg-opacity)) !important;
}
.text-green-300 {
    --btn-fg: 132, 225, 188;
    --btn-border-color: 132, 225, 188;
    color: rgba(132, 225, 188, var(--color-opacity)) !important;
    border-color: rgba(132, 225, 188, var(--border-opacity));
}
.border-green-300 {
    --btn-border-color: 132, 225, 188 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(132, 225, 188, 0.5);
    border-color: rgba(132, 225, 188, var(--border-opacity)) !important;
}
.bg-green-400:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 49, 196, 141;
    --btn-hover-color: 44, 176, 126 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(49, 196, 141, 0.5);
}
.bg-green-400:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(49, 196, 141, var(--bg-opacity)) !important;
}
.text-green-400 {
    --btn-fg: 49, 196, 141;
    --btn-border-color: 49, 196, 141;
    color: rgba(49, 196, 141, var(--color-opacity)) !important;
    border-color: rgba(49, 196, 141, var(--border-opacity));
}
.border-green-400 {
    --btn-border-color: 49, 196, 141 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(49, 196, 141, 0.5);
    border-color: rgba(49, 196, 141, var(--border-opacity)) !important;
}
.bg-green-500:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 14, 159, 110;
    --btn-hover-color: 16, 182, 126 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(14, 159, 110, 0.5);
}
.bg-green-500:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(14, 159, 110, var(--bg-opacity)) !important;
}
.text-green-500 {
    --btn-fg: 14, 159, 110;
    --btn-border-color: 14, 159, 110;
    color: rgba(14, 159, 110, var(--color-opacity)) !important;
    border-color: rgba(14, 159, 110, var(--border-opacity));
}
.border-green-500 {
    --btn-border-color: 14, 159, 110 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(14, 159, 110, 0.5);
    border-color: rgba(14, 159, 110, var(--border-opacity)) !important;
}
.bg-green-600:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 5, 122, 85;
    --btn-hover-color: 6, 146, 102 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(5, 122, 85, 0.5);
}
.bg-green-600:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(5, 122, 85, var(--bg-opacity)) !important;
}
.text-green-600 {
    --btn-fg: 5, 122, 85;
    --btn-border-color: 5, 122, 85;
    color: rgba(5, 122, 85, var(--color-opacity)) !important;
    border-color: rgba(5, 122, 85, var(--border-opacity));
}
.border-green-600 {
    --btn-border-color: 5, 122, 85 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(5, 122, 85, 0.5);
    border-color: rgba(5, 122, 85, var(--border-opacity)) !important;
}
.bg-green-700:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 4, 108, 78;
    --btn-hover-color: 5, 133, 96 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(4, 108, 78, 0.5);
}
.bg-green-700:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(4, 108, 78, var(--bg-opacity)) !important;
}
.text-green-700 {
    --btn-fg: 4, 108, 78;
    --btn-border-color: 4, 108, 78;
    color: rgba(4, 108, 78, var(--color-opacity)) !important;
    border-color: rgba(4, 108, 78, var(--border-opacity));
}
.border-green-700 {
    --btn-border-color: 4, 108, 78 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(4, 108, 78, 0.5);
    border-color: rgba(4, 108, 78, var(--border-opacity)) !important;
}
.bg-green-800:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 3, 84, 63;
    --btn-hover-color: 4, 109, 81 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(3, 84, 63, 0.5);
}
.bg-green-800:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(3, 84, 63, var(--bg-opacity)) !important;
}
.text-green-800 {
    --btn-fg: 3, 84, 63;
    --btn-border-color: 3, 84, 63;
    color: rgba(3, 84, 63, var(--color-opacity)) !important;
    border-color: rgba(3, 84, 63, var(--border-opacity));
}
.border-green-800 {
    --btn-border-color: 3, 84, 63 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(3, 84, 63, 0.5);
    border-color: rgba(3, 84, 63, var(--border-opacity)) !important;
}
.bg-green-900:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 1, 71, 55;
    --btn-hover-color: 1, 96, 74 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(1, 71, 55, 0.5);
}
.bg-green-900:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(1, 71, 55, var(--bg-opacity)) !important;
}
.text-green-900 {
    --btn-fg: 1, 71, 55;
    --btn-border-color: 1, 71, 55;
    color: rgba(1, 71, 55, var(--color-opacity)) !important;
    border-color: rgba(1, 71, 55, var(--border-opacity));
}
.border-green-900 {
    --btn-border-color: 1, 71, 55 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(1, 71, 55, 0.5);
    border-color: rgba(1, 71, 55, var(--border-opacity)) !important;
}
.bg-teal-100:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 213, 245, 246;
    --btn-hover-color: 192, 240, 242 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(213, 245, 246, 0.5);
}
.bg-teal-100:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(213, 245, 246, var(--bg-opacity)) !important;
}
.text-teal-100 {
    --btn-fg: 213, 245, 246;
    --btn-border-color: 213, 245, 246;
    color: rgba(213, 245, 246, var(--color-opacity)) !important;
    border-color: rgba(213, 245, 246, var(--border-opacity));
}
.border-teal-100 {
    --btn-border-color: 213, 245, 246 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(213, 245, 246, 0.5);
    border-color: rgba(213, 245, 246, var(--border-opacity)) !important;
}
.bg-teal-200:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 175, 236, 239;
    --btn-hover-color: 154, 231, 235 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(175, 236, 239, 0.5);
}
.bg-teal-200:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(175, 236, 239, var(--bg-opacity)) !important;
}
.text-teal-200 {
    --btn-fg: 175, 236, 239;
    --btn-border-color: 175, 236, 239;
    color: rgba(175, 236, 239, var(--color-opacity)) !important;
    border-color: rgba(175, 236, 239, var(--border-opacity));
}
.border-teal-200 {
    --btn-border-color: 175, 236, 239 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(175, 236, 239, 0.5);
    border-color: rgba(175, 236, 239, var(--border-opacity)) !important;
}
.bg-teal-300:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 126, 220, 226;
    --btn-hover-color: 105, 214, 221 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(126, 220, 226, 0.5);
}
.bg-teal-300:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(126, 220, 226, var(--bg-opacity)) !important;
}
.text-teal-300 {
    --btn-fg: 126, 220, 226;
    --btn-border-color: 126, 220, 226;
    color: rgba(126, 220, 226, var(--color-opacity)) !important;
    border-color: rgba(126, 220, 226, var(--border-opacity));
}
.border-teal-300 {
    --btn-border-color: 126, 220, 226 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(126, 220, 226, 0.5);
    border-color: rgba(126, 220, 226, var(--border-opacity)) !important;
}
.bg-teal-400:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 22, 189, 202;
    --btn-hover-color: 19, 167, 179 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(22, 189, 202, 0.5);
}
.bg-teal-400:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(22, 189, 202, var(--bg-opacity)) !important;
}
.text-teal-400 {
    --btn-fg: 22, 189, 202;
    --btn-border-color: 22, 189, 202;
    color: rgba(22, 189, 202, var(--color-opacity)) !important;
    border-color: rgba(22, 189, 202, var(--border-opacity));
}
.border-teal-400 {
    --btn-border-color: 22, 189, 202 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(22, 189, 202, 0.5);
    border-color: rgba(22, 189, 202, var(--border-opacity)) !important;
}
.bg-teal-500:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 6, 148, 162;
    --btn-hover-color: 7, 170, 187 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(6, 148, 162, 0.5);
}
.bg-teal-500:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(6, 148, 162, var(--bg-opacity)) !important;
}
.text-teal-500 {
    --btn-fg: 6, 148, 162;
    --btn-border-color: 6, 148, 162;
    color: rgba(6, 148, 162, var(--color-opacity)) !important;
    border-color: rgba(6, 148, 162, var(--border-opacity));
}
.border-teal-500 {
    --btn-border-color: 6, 148, 162 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(6, 148, 162, 0.5);
    border-color: rgba(6, 148, 162, var(--border-opacity)) !important;
}
.bg-teal-600:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 4, 116, 129;
    --btn-hover-color: 5, 138, 154 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(4, 116, 129, 0.5);
}
.bg-teal-600:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(4, 116, 129, var(--bg-opacity)) !important;
}
.text-teal-600 {
    --btn-fg: 4, 116, 129;
    --btn-border-color: 4, 116, 129;
    color: rgba(4, 116, 129, var(--color-opacity)) !important;
    border-color: rgba(4, 116, 129, var(--border-opacity));
}
.border-teal-600 {
    --btn-border-color: 4, 116, 129 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(4, 116, 129, 0.5);
    border-color: rgba(4, 116, 129, var(--border-opacity)) !important;
}
.bg-teal-700:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 3, 102, 114;
    --btn-hover-color: 4, 124, 139 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(3, 102, 114, 0.5);
}
.bg-teal-700:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(3, 102, 114, var(--bg-opacity)) !important;
}
.text-teal-700 {
    --btn-fg: 3, 102, 114;
    --btn-border-color: 3, 102, 114;
    color: rgba(3, 102, 114, var(--color-opacity)) !important;
    border-color: rgba(3, 102, 114, var(--border-opacity));
}
.border-teal-700 {
    --btn-border-color: 3, 102, 114 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(3, 102, 114, 0.5);
    border-color: rgba(3, 102, 114, var(--border-opacity)) !important;
}
.bg-teal-800:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 5, 80, 92;
    --btn-hover-color: 6, 101, 116 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(5, 80, 92, 0.5);
}
.bg-teal-800:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(5, 80, 92, var(--bg-opacity)) !important;
}
.text-teal-800 {
    --btn-fg: 5, 80, 92;
    --btn-border-color: 5, 80, 92;
    color: rgba(5, 80, 92, var(--color-opacity)) !important;
    border-color: rgba(5, 80, 92, var(--border-opacity));
}
.border-teal-800 {
    --btn-border-color: 5, 80, 92 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(5, 80, 92, 0.5);
    border-color: rgba(5, 80, 92, var(--border-opacity)) !important;
}
.bg-teal-900:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 1, 68, 81;
    --btn-hover-color: 1, 89, 106 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(1, 68, 81, 0.5);
}
.bg-teal-900:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(1, 68, 81, var(--bg-opacity)) !important;
}
.text-teal-900 {
    --btn-fg: 1, 68, 81;
    --btn-border-color: 1, 68, 81;
    color: rgba(1, 68, 81, var(--color-opacity)) !important;
    border-color: rgba(1, 68, 81, var(--border-opacity));
}
.border-teal-900 {
    --btn-border-color: 1, 68, 81 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(1, 68, 81, 0.5);
    border-color: rgba(1, 68, 81, var(--border-opacity)) !important;
}
.bg-blue-100:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 225, 239, 254;
    --btn-hover-color: 200, 226, 253 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(225, 239, 254, 0.5);
}
.bg-blue-100:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(225, 239, 254, var(--bg-opacity)) !important;
}
.text-blue-100 {
    --btn-fg: 225, 239, 254;
    --btn-border-color: 225, 239, 254;
    color: rgba(225, 239, 254, var(--color-opacity)) !important;
    border-color: rgba(225, 239, 254, var(--border-opacity));
}
.border-blue-100 {
    --btn-border-color: 225, 239, 254 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(225, 239, 254, 0.5);
    border-color: rgba(225, 239, 254, var(--border-opacity)) !important;
}
.bg-blue-200:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 195, 221, 253;
    --btn-hover-color: 170, 207, 252 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(195, 221, 253, 0.5);
}
.bg-blue-200:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(195, 221, 253, var(--bg-opacity)) !important;
}
.text-blue-200 {
    --btn-fg: 195, 221, 253;
    --btn-border-color: 195, 221, 253;
    color: rgba(195, 221, 253, var(--color-opacity)) !important;
    border-color: rgba(195, 221, 253, var(--border-opacity));
}
.border-blue-200 {
    --btn-border-color: 195, 221, 253 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(195, 221, 253, 0.5);
    border-color: rgba(195, 221, 253, var(--border-opacity)) !important;
}
.bg-blue-300:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 164, 202, 254;
    --btn-hover-color: 139, 187, 254 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(164, 202, 254, 0.5);
}
.bg-blue-300:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(164, 202, 254, var(--bg-opacity)) !important;
}
.text-blue-300 {
    --btn-fg: 164, 202, 254;
    --btn-border-color: 164, 202, 254;
    color: rgba(164, 202, 254, var(--color-opacity)) !important;
    border-color: rgba(164, 202, 254, var(--border-opacity));
}
.border-blue-300 {
    --btn-border-color: 164, 202, 254 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(164, 202, 254, 0.5);
    border-color: rgba(164, 202, 254, var(--border-opacity)) !important;
}
.bg-blue-400:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 118, 169, 250;
    --btn-hover-color: 93, 154, 249 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(118, 169, 250, 0.5);
}
.bg-blue-400:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(118, 169, 250, var(--bg-opacity)) !important;
}
.text-blue-400 {
    --btn-fg: 118, 169, 250;
    --btn-border-color: 118, 169, 250;
    color: rgba(118, 169, 250, var(--color-opacity)) !important;
    border-color: rgba(118, 169, 250, var(--border-opacity));
}
.border-blue-400 {
    --btn-border-color: 118, 169, 250 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(118, 169, 250, 0.5);
    border-color: rgba(118, 169, 250, var(--border-opacity)) !important;
}
.bg-blue-500:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 63, 131, 248;
    --btn-hover-color: 88, 147, 249 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(63, 131, 248, 0.5);
}
.bg-blue-500:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(63, 131, 248, var(--bg-opacity)) !important;
}
.text-blue-500 {
    --btn-fg: 63, 131, 248;
    --btn-border-color: 63, 131, 248;
    color: rgba(63, 131, 248, var(--color-opacity)) !important;
    border-color: rgba(63, 131, 248, var(--border-opacity));
}
.border-blue-500 {
    --btn-border-color: 63, 131, 248 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(63, 131, 248, 0.5);
    border-color: rgba(63, 131, 248, var(--border-opacity)) !important;
}
.bg-blue-600:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 28, 100, 242;
    --btn-hover-color: 52, 116, 243 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(28, 100, 242, 0.5);
}
.bg-blue-600:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(28, 100, 242, var(--bg-opacity)) !important;
}
.text-blue-600 {
    --btn-fg: 28, 100, 242;
    --btn-border-color: 28, 100, 242;
    color: rgba(28, 100, 242, var(--color-opacity)) !important;
    border-color: rgba(28, 100, 242, var(--border-opacity));
}
.border-blue-600 {
    --btn-border-color: 28, 100, 242 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(28, 100, 242, 0.5);
    border-color: rgba(28, 100, 242, var(--border-opacity)) !important;
}
.bg-blue-700:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 26, 86, 219;
    --btn-hover-color: 41, 100, 230 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(26, 86, 219, 0.5);
}
.bg-blue-700:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(26, 86, 219, var(--bg-opacity)) !important;
}
.text-blue-700 {
    --btn-fg: 26, 86, 219;
    --btn-border-color: 26, 86, 219;
    color: rgba(26, 86, 219, var(--color-opacity)) !important;
    border-color: rgba(26, 86, 219, var(--border-opacity));
}
.border-blue-700 {
    --btn-border-color: 26, 86, 219 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(26, 86, 219, 0.5);
    border-color: rgba(26, 86, 219, var(--border-opacity)) !important;
}
.bg-blue-800:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 30, 66, 159;
    --btn-hover-color: 34, 75, 180 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(30, 66, 159, 0.5);
}
.bg-blue-800:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(30, 66, 159, var(--bg-opacity)) !important;
}
.text-blue-800 {
    --btn-fg: 30, 66, 159;
    --btn-border-color: 30, 66, 159;
    color: rgba(30, 66, 159, var(--color-opacity)) !important;
    border-color: rgba(30, 66, 159, var(--border-opacity));
}
.border-blue-800 {
    --btn-border-color: 30, 66, 159 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(30, 66, 159, 0.5);
    border-color: rgba(30, 66, 159, var(--border-opacity)) !important;
}
.bg-blue-900:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 35, 56, 118;
    --btn-hover-color: 41, 65, 138 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(35, 56, 118, 0.5);
}
.bg-blue-900:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(35, 56, 118, var(--bg-opacity)) !important;
}
.text-blue-900 {
    --btn-fg: 35, 56, 118;
    --btn-border-color: 35, 56, 118;
    color: rgba(35, 56, 118, var(--color-opacity)) !important;
    border-color: rgba(35, 56, 118, var(--border-opacity));
}
.border-blue-900 {
    --btn-border-color: 35, 56, 118 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(35, 56, 118, 0.5);
    border-color: rgba(35, 56, 118, var(--border-opacity)) !important;
}
.bg-indigo-100:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 229, 237, 255;
    --btn-hover-color: 204, 219, 255 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(229, 237, 255, 0.5);
}
.bg-indigo-100:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(229, 237, 255, var(--bg-opacity)) !important;
}
.text-indigo-100 {
    --btn-fg: 229, 237, 255;
    --btn-border-color: 229, 237, 255;
    color: rgba(229, 237, 255, var(--color-opacity)) !important;
    border-color: rgba(229, 237, 255, var(--border-opacity));
}
.border-indigo-100 {
    --btn-border-color: 229, 237, 255 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(229, 237, 255, 0.5);
    border-color: rgba(229, 237, 255, var(--border-opacity)) !important;
}
.bg-indigo-200:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 205, 219, 254;
    --btn-hover-color: 180, 201, 254 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(205, 219, 254, 0.5);
}
.bg-indigo-200:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(205, 219, 254, var(--bg-opacity)) !important;
}
.text-indigo-200 {
    --btn-fg: 205, 219, 254;
    --btn-border-color: 205, 219, 254;
    color: rgba(205, 219, 254, var(--color-opacity)) !important;
    border-color: rgba(205, 219, 254, var(--border-opacity));
}
.border-indigo-200 {
    --btn-border-color: 205, 219, 254 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(205, 219, 254, 0.5);
    border-color: rgba(205, 219, 254, var(--border-opacity)) !important;
}
.bg-indigo-300:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 180, 198, 252;
    --btn-hover-color: 155, 179, 251 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(180, 198, 252, 0.5);
}
.bg-indigo-300:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(180, 198, 252, var(--bg-opacity)) !important;
}
.text-indigo-300 {
    --btn-fg: 180, 198, 252;
    --btn-border-color: 180, 198, 252;
    color: rgba(180, 198, 252, var(--color-opacity)) !important;
    border-color: rgba(180, 198, 252, var(--border-opacity));
}
.border-indigo-300 {
    --btn-border-color: 180, 198, 252 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(180, 198, 252, 0.5);
    border-color: rgba(180, 198, 252, var(--border-opacity)) !important;
}
.bg-indigo-400:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 141, 162, 251;
    --btn-hover-color: 116, 142, 250 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(141, 162, 251, 0.5);
}
.bg-indigo-400:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(141, 162, 251, var(--bg-opacity)) !important;
}
.text-indigo-400 {
    --btn-fg: 141, 162, 251;
    --btn-border-color: 141, 162, 251;
    color: rgba(141, 162, 251, var(--color-opacity)) !important;
    border-color: rgba(141, 162, 251, var(--border-opacity));
}
.border-indigo-400 {
    --btn-border-color: 141, 162, 251 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(141, 162, 251, 0.5);
    border-color: rgba(141, 162, 251, var(--border-opacity)) !important;
}
.bg-indigo-500:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 104, 117, 245;
    --btn-hover-color: 128, 139, 247 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(104, 117, 245, 0.5);
}
.bg-indigo-500:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(104, 117, 245, var(--bg-opacity)) !important;
}
.text-indigo-500 {
    --btn-fg: 104, 117, 245;
    --btn-border-color: 104, 117, 245;
    color: rgba(104, 117, 245, var(--color-opacity)) !important;
    border-color: rgba(104, 117, 245, var(--border-opacity));
}
.border-indigo-500 {
    --btn-border-color: 104, 117, 245 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(104, 117, 245, 0.5);
    border-color: rgba(104, 117, 245, var(--border-opacity)) !important;
}
.bg-indigo-600:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 88, 80, 236;
    --btn-hover-color: 110, 103, 238 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(88, 80, 236, 0.5);
}
.bg-indigo-600:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(88, 80, 236, var(--bg-opacity)) !important;
}
.text-indigo-600 {
    --btn-fg: 88, 80, 236;
    --btn-border-color: 88, 80, 236;
    color: rgba(88, 80, 236, var(--color-opacity)) !important;
    border-color: rgba(88, 80, 236, var(--border-opacity));
}
.border-indigo-600 {
    --btn-border-color: 88, 80, 236 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(88, 80, 236, 0.5);
    border-color: rgba(88, 80, 236, var(--border-opacity)) !important;
}
.bg-indigo-700:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 81, 69, 205;
    --btn-hover-color: 100, 89, 210 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(81, 69, 205, 0.5);
}
.bg-indigo-700:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(81, 69, 205, var(--bg-opacity)) !important;
}
.text-indigo-700 {
    --btn-fg: 81, 69, 205;
    --btn-border-color: 81, 69, 205;
    color: rgba(81, 69, 205, var(--color-opacity)) !important;
    border-color: rgba(81, 69, 205, var(--border-opacity));
}
.border-indigo-700 {
    --btn-border-color: 81, 69, 205 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(81, 69, 205, 0.5);
    border-color: rgba(81, 69, 205, var(--border-opacity)) !important;
}
.bg-indigo-800:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 66, 56, 157;
    --btn-hover-color: 74, 63, 176 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(66, 56, 157, 0.5);
}
.bg-indigo-800:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(66, 56, 157, var(--bg-opacity)) !important;
}
.text-indigo-800 {
    --btn-fg: 66, 56, 157;
    --btn-border-color: 66, 56, 157;
    color: rgba(66, 56, 157, var(--color-opacity)) !important;
    border-color: rgba(66, 56, 157, var(--border-opacity));
}
.border-indigo-800 {
    --btn-border-color: 66, 56, 157 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(66, 56, 157, 0.5);
    border-color: rgba(66, 56, 157, var(--border-opacity)) !important;
}
.bg-indigo-900:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 54, 47, 120;
    --btn-hover-color: 62, 54, 138 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(54, 47, 120, 0.5);
}
.bg-indigo-900:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(54, 47, 120, var(--bg-opacity)) !important;
}
.text-indigo-900 {
    --btn-fg: 54, 47, 120;
    --btn-border-color: 54, 47, 120;
    color: rgba(54, 47, 120, var(--color-opacity)) !important;
    border-color: rgba(54, 47, 120, var(--border-opacity));
}
.border-indigo-900 {
    --btn-border-color: 54, 47, 120 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(54, 47, 120, 0.5);
    border-color: rgba(54, 47, 120, var(--border-opacity)) !important;
}
.bg-purple-100:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 237, 235, 254;
    --btn-hover-color: 215, 211, 253 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(237, 235, 254, 0.5);
}
.bg-purple-100:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(237, 235, 254, var(--bg-opacity)) !important;
}
.text-purple-100 {
    --btn-fg: 237, 235, 254;
    --btn-border-color: 237, 235, 254;
    color: rgba(237, 235, 254, var(--color-opacity)) !important;
    border-color: rgba(237, 235, 254, var(--border-opacity));
}
.border-purple-100 {
    --btn-border-color: 237, 235, 254 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(237, 235, 254, 0.5);
    border-color: rgba(237, 235, 254, var(--border-opacity)) !important;
}
.bg-purple-200:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 220, 215, 254;
    --btn-hover-color: 198, 190, 253 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(220, 215, 254, 0.5);
}
.bg-purple-200:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(220, 215, 254, var(--bg-opacity)) !important;
}
.text-purple-200 {
    --btn-fg: 220, 215, 254;
    --btn-border-color: 220, 215, 254;
    color: rgba(220, 215, 254, var(--color-opacity)) !important;
    border-color: rgba(220, 215, 254, var(--border-opacity));
}
.border-purple-200 {
    --btn-border-color: 220, 215, 254 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(220, 215, 254, 0.5);
    border-color: rgba(220, 215, 254, var(--border-opacity)) !important;
}
.bg-purple-300:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 202, 191, 253;
    --btn-hover-color: 182, 166, 252 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(202, 191, 253, 0.5);
}
.bg-purple-300:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(202, 191, 253, var(--bg-opacity)) !important;
}
.text-purple-300 {
    --btn-fg: 202, 191, 253;
    --btn-border-color: 202, 191, 253;
    color: rgba(202, 191, 253, var(--color-opacity)) !important;
    border-color: rgba(202, 191, 253, var(--border-opacity));
}
.border-purple-300 {
    --btn-border-color: 202, 191, 253 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(202, 191, 253, 0.5);
    border-color: rgba(202, 191, 253, var(--border-opacity)) !important;
}
.bg-purple-400:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 172, 148, 250;
    --btn-hover-color: 153, 124, 249 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(172, 148, 250, 0.5);
}
.bg-purple-400:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(172, 148, 250, var(--bg-opacity)) !important;
}
.text-purple-400 {
    --btn-fg: 172, 148, 250;
    --btn-border-color: 172, 148, 250;
    color: rgba(172, 148, 250, var(--color-opacity)) !important;
    border-color: rgba(172, 148, 250, var(--border-opacity));
}
.border-purple-400 {
    --btn-border-color: 172, 148, 250 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(172, 148, 250, 0.5);
    border-color: rgba(172, 148, 250, var(--border-opacity)) !important;
}
.bg-purple-500:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 144, 97, 249;
    --btn-hover-color: 161, 122, 250 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(144, 97, 249, 0.5);
}
.bg-purple-500:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(144, 97, 249, var(--bg-opacity)) !important;
}
.text-purple-500 {
    --btn-fg: 144, 97, 249;
    --btn-border-color: 144, 97, 249;
    color: rgba(144, 97, 249, var(--color-opacity)) !important;
    border-color: rgba(144, 97, 249, var(--border-opacity));
}
.border-purple-500 {
    --btn-border-color: 144, 97, 249 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(144, 97, 249, 0.5);
    border-color: rgba(144, 97, 249, var(--border-opacity)) !important;
}
.bg-purple-600:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 126, 58, 242;
    --btn-hover-color: 142, 82, 244 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(126, 58, 242, 0.5);
}
.bg-purple-600:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(126, 58, 242, var(--bg-opacity)) !important;
}
.text-purple-600 {
    --btn-fg: 126, 58, 242;
    --btn-border-color: 126, 58, 242;
    color: rgba(126, 58, 242, var(--color-opacity)) !important;
    border-color: rgba(126, 58, 242, var(--border-opacity));
}
.border-purple-600 {
    --btn-border-color: 126, 58, 242 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(126, 58, 242, 0.5);
    border-color: rgba(126, 58, 242, var(--border-opacity)) !important;
}
.bg-purple-700:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 108, 43, 217;
    --btn-hover-color: 123, 65, 221 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(108, 43, 217, 0.5);
}
.bg-purple-700:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(108, 43, 217, var(--bg-opacity)) !important;
}
.text-purple-700 {
    --btn-fg: 108, 43, 217;
    --btn-border-color: 108, 43, 217;
    color: rgba(108, 43, 217, var(--color-opacity)) !important;
    border-color: rgba(108, 43, 217, var(--border-opacity));
}
.border-purple-700 {
    --btn-border-color: 108, 43, 217 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(108, 43, 217, 0.5);
    border-color: rgba(108, 43, 217, var(--border-opacity)) !important;
}
.bg-purple-800:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 85, 33, 181;
    --btn-hover-color: 95, 37, 203 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(85, 33, 181, 0.5);
}
.bg-purple-800:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(85, 33, 181, var(--bg-opacity)) !important;
}
.text-purple-800 {
    --btn-fg: 85, 33, 181;
    --btn-border-color: 85, 33, 181;
    color: rgba(85, 33, 181, var(--color-opacity)) !important;
    border-color: rgba(85, 33, 181, var(--border-opacity));
}
.border-purple-800 {
    --btn-border-color: 85, 33, 181 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(85, 33, 181, 0.5);
    border-color: rgba(85, 33, 181, var(--border-opacity)) !important;
}
.bg-purple-900:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 74, 29, 150;
    --btn-hover-color: 85, 33, 171 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(74, 29, 150, 0.5);
}
.bg-purple-900:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(74, 29, 150, var(--bg-opacity)) !important;
}
.text-purple-900 {
    --btn-fg: 74, 29, 150;
    --btn-border-color: 74, 29, 150;
    color: rgba(74, 29, 150, var(--color-opacity)) !important;
    border-color: rgba(74, 29, 150, var(--border-opacity));
}
.border-purple-900 {
    --btn-border-color: 74, 29, 150 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(74, 29, 150, 0.5);
    border-color: rgba(74, 29, 150, var(--border-opacity)) !important;
}
.bg-gray-000:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 248, 249, 250;
    --btn-hover-color: 233, 236, 239 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}
.bg-gray-000:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(248, 249, 250, var(--bg-opacity)) !important;
}
.text-gray-000 {
    --btn-fg: 248, 249, 250;
    --btn-border-color: 248, 249, 250;
    color: rgba(248, 249, 250, var(--color-opacity)) !important;
    border-color: rgba(248, 249, 250, var(--border-opacity));
}
.border-gray-000 {
    --btn-border-color: 248, 249, 250 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
    border-color: rgba(248, 249, 250, var(--border-opacity)) !important;
}
.bg-gray-100:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 241, 243, 245;
    --btn-hover-color: 226, 230, 234 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(241, 243, 245, 0.5);
}
.bg-gray-100:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(241, 243, 245, var(--bg-opacity)) !important;
}
.text-gray-100 {
    --btn-fg: 241, 243, 245;
    --btn-border-color: 241, 243, 245;
    color: rgba(241, 243, 245, var(--color-opacity)) !important;
    border-color: rgba(241, 243, 245, var(--border-opacity));
}
.border-gray-100 {
    --btn-border-color: 241, 243, 245 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(241, 243, 245, 0.5);
    border-color: rgba(241, 243, 245, var(--border-opacity)) !important;
}
.bg-gray-200:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 233, 236, 239;
    --btn-hover-color: 218, 223, 228 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(233, 236, 239, 0.5);
}
.bg-gray-200:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(233, 236, 239, var(--bg-opacity)) !important;
}
.text-gray-200 {
    --btn-fg: 233, 236, 239;
    --btn-border-color: 233, 236, 239;
    color: rgba(233, 236, 239, var(--color-opacity)) !important;
    border-color: rgba(233, 236, 239, var(--border-opacity));
}
.border-gray-200 {
    --btn-border-color: 233, 236, 239 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(233, 236, 239, 0.5);
    border-color: rgba(233, 236, 239, var(--border-opacity)) !important;
}
.bg-gray-300:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 222, 226, 230;
    --btn-hover-color: 207, 213, 219 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(222, 226, 230, 0.5);
}
.bg-gray-300:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(222, 226, 230, var(--bg-opacity)) !important;
}
.text-gray-300 {
    --btn-fg: 222, 226, 230;
    --btn-border-color: 222, 226, 230;
    color: rgba(222, 226, 230, var(--color-opacity)) !important;
    border-color: rgba(222, 226, 230, var(--border-opacity));
}
.border-gray-300 {
    --btn-border-color: 222, 226, 230 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(222, 226, 230, 0.5);
    border-color: rgba(222, 226, 230, var(--border-opacity)) !important;
}
.bg-gray-400:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 206, 212, 218;
    --btn-hover-color: 191, 199, 207 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(206, 212, 218, 0.5);
}
.bg-gray-400:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(206, 212, 218, var(--bg-opacity)) !important;
}
.text-gray-400 {
    --btn-fg: 206, 212, 218;
    --btn-border-color: 206, 212, 218;
    color: rgba(206, 212, 218, var(--color-opacity)) !important;
    border-color: rgba(206, 212, 218, var(--border-opacity));
}
.border-gray-400 {
    --btn-border-color: 206, 212, 218 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(206, 212, 218, 0.5);
    border-color: rgba(206, 212, 218, var(--border-opacity)) !important;
}
.bg-gray-500:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 173, 181, 189;
    --btn-hover-color: 159, 168, 178 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(173, 181, 189, 0.5);
}
.bg-gray-500:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(173, 181, 189, var(--bg-opacity)) !important;
}
.text-gray-500 {
    --btn-fg: 173, 181, 189;
    --btn-border-color: 173, 181, 189;
    color: rgba(173, 181, 189, var(--color-opacity)) !important;
    border-color: rgba(173, 181, 189, var(--border-opacity));
}
.border-gray-500 {
    --btn-border-color: 173, 181, 189 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(173, 181, 189, 0.5);
    border-color: rgba(173, 181, 189, var(--border-opacity)) !important;
}
.bg-gray-600:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 134, 142, 150;
    --btn-hover-color: 120, 129, 138 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(134, 142, 150, 0.5);
}
.bg-gray-600:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(134, 142, 150, var(--bg-opacity)) !important;
}
.text-gray-600 {
    --btn-fg: 134, 142, 150;
    --btn-border-color: 134, 142, 150;
    color: rgba(134, 142, 150, var(--color-opacity)) !important;
    border-color: rgba(134, 142, 150, var(--border-opacity));
}
.border-gray-600 {
    --btn-border-color: 134, 142, 150 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(134, 142, 150, 0.5);
    border-color: rgba(134, 142, 150, var(--border-opacity)) !important;
}
.bg-gray-700:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 73, 80, 87;
    --btn-hover-color: 85, 93, 101 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(73, 80, 87, 0.5);
}
.bg-gray-700:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(73, 80, 87, var(--bg-opacity)) !important;
}
.text-gray-700 {
    --btn-fg: 73, 80, 87;
    --btn-border-color: 73, 80, 87;
    color: rgba(73, 80, 87, var(--color-opacity)) !important;
    border-color: rgba(73, 80, 87, var(--border-opacity));
}
.border-gray-700 {
    --btn-border-color: 73, 80, 87 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(73, 80, 87, 0.5);
    border-color: rgba(73, 80, 87, var(--border-opacity)) !important;
}
.bg-gray-800:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 52, 58, 64;
    --btn-hover-color: 63, 71, 78 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}
.bg-gray-800:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(52, 58, 64, var(--bg-opacity)) !important;
}
.text-gray-800 {
    --btn-fg: 52, 58, 64;
    --btn-border-color: 52, 58, 64;
    color: rgba(52, 58, 64, var(--color-opacity)) !important;
    border-color: rgba(52, 58, 64, var(--border-opacity));
}
.border-gray-800 {
    --btn-border-color: 52, 58, 64 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
    border-color: rgba(52, 58, 64, var(--border-opacity)) !important;
}
.bg-gray-900:is(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    --btn-color: 33, 37, 41;
    --btn-hover-color: 44, 50, 55 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(33, 37, 41, 0.5);
}
.bg-gray-900:not(.btn, button, [type='submit'], [type='reset'], [type='button']) {
    background-color: rgba(33, 37, 41, var(--bg-opacity)) !important;
}
.text-gray-900 {
    --btn-fg: 33, 37, 41;
    --btn-border-color: 33, 37, 41;
    color: rgba(33, 37, 41, var(--color-opacity)) !important;
    border-color: rgba(33, 37, 41, var(--border-opacity));
}
.border-gray-900 {
    --btn-border-color: 33, 37, 41 !important;
    --btn-shadow: 0 0 0 0.2rem rgba(33, 37, 41, 0.5);
    border-color: rgba(33, 37, 41, var(--border-opacity)) !important;
}
.m-0 {
    margin: 0 !important;
}
.mt-0,
.my-0 {
    margin-top: 0 !important;
}
.mb-0,
.my-0 {
    margin-bottom: 0 !important;
}
.ml-0,
.mx-0 {
    margin-left: 0 !important;
}
.mr-0,
.mx-0 {
    margin-right: 0 !important;
}
.p-0 {
    padding: 0 !important;
}
.pt-0,
.py-0 {
    padding-top: 0 !important;
}
.pb-0,
.py-0 {
    padding-bottom: 0 !important;
}
.pl-0,
.px-0 {
    padding-left: 0 !important;
}
.pr-0,
.px-0 {
    padding-right: 0 !important;
}
.m-px {
    margin: 1px !important;
}
.mt-px,
.my-px {
    margin-top: 1px !important;
}
.mb-px,
.my-px {
    margin-bottom: 1px !important;
}
.ml-px,
.mx-px {
    margin-left: 1px !important;
}
.mr-px,
.mx-px {
    margin-right: 1px !important;
}
.p-px {
    padding: 1px !important;
}
.pt-px,
.py-px {
    padding-top: 1px !important;
}
.pb-px,
.py-px {
    padding-bottom: 1px !important;
}
.pl-px,
.px-px {
    padding-left: 1px !important;
}
.pr-px,
.px-px {
    padding-right: 1px !important;
}
.m-1 {
    margin: 0.5rem !important;
}
.mt-1,
.my-1 {
    margin-top: 0.5rem !important;
}
.mb-1,
.my-1 {
    margin-bottom: 0.5rem !important;
}
.ml-1,
.mx-1 {
    margin-left: 0.5rem !important;
}
.mr-1,
.mx-1 {
    margin-right: 0.5rem !important;
}
.p-1 {
    padding: 0.5rem !important;
}
.pt-1,
.py-1 {
    padding-top: 0.5rem !important;
}
.pb-1,
.py-1 {
    padding-bottom: 0.5rem !important;
}
.pl-1,
.px-1 {
    padding-left: 0.5rem !important;
}
.pr-1,
.px-1 {
    padding-right: 0.5rem !important;
}
.m-2 {
    margin: 1rem !important;
}
.mt-2,
.my-2 {
    margin-top: 1rem !important;
}
.mb-2,
.my-2 {
    margin-bottom: 1rem !important;
}
.ml-2,
.mx-2 {
    margin-left: 1rem !important;
}
.mr-2,
.mx-2 {
    margin-right: 1rem !important;
}
.p-2 {
    padding: 1rem !important;
}
.pt-2,
.py-2 {
    padding-top: 1rem !important;
}
.pb-2,
.py-2 {
    padding-bottom: 1rem !important;
}
.pl-2,
.px-2 {
    padding-left: 1rem !important;
}
.pr-2,
.px-2 {
    padding-right: 1rem !important;
}
.m-3 {
    margin: 1.5rem !important;
}
.mt-3,
.my-3 {
    margin-top: 1.5rem !important;
}
.mb-3,
.my-3 {
    margin-bottom: 1.5rem !important;
}
.ml-3,
.mx-3 {
    margin-left: 1.5rem !important;
}
.mr-3,
.mx-3 {
    margin-right: 1.5rem !important;
}
.p-3 {
    padding: 1.5rem !important;
}
.pt-3,
.py-3 {
    padding-top: 1.5rem !important;
}
.pb-3,
.py-3 {
    padding-bottom: 1.5rem !important;
}
.pl-3,
.px-3 {
    padding-left: 1.5rem !important;
}
.pr-3,
.px-3 {
    padding-right: 1.5rem !important;
}
.m-4 {
    margin: 2rem !important;
}
.mt-4,
.my-4 {
    margin-top: 2rem !important;
}
.mb-4,
.my-4 {
    margin-bottom: 2rem !important;
}
.ml-4,
.mx-4 {
    margin-left: 2rem !important;
}
.mr-4,
.mx-4 {
    margin-right: 2rem !important;
}
.p-4 {
    padding: 2rem !important;
}
.pt-4,
.py-4 {
    padding-top: 2rem !important;
}
.pb-4,
.py-4 {
    padding-bottom: 2rem !important;
}
.pl-4,
.px-4 {
    padding-left: 2rem !important;
}
.pr-4,
.px-4 {
    padding-right: 2rem !important;
}
.m-5 {
    margin: 2.5rem !important;
}
.mt-5,
.my-5 {
    margin-top: 2.5rem !important;
}
.mb-5,
.my-5 {
    margin-bottom: 2.5rem !important;
}
.ml-5,
.mx-5 {
    margin-left: 2.5rem !important;
}
.mr-5,
.mx-5 {
    margin-right: 2.5rem !important;
}
.p-5 {
    padding: 2.5rem !important;
}
.pt-5,
.py-5 {
    padding-top: 2.5rem !important;
}
.pb-5,
.py-5 {
    padding-bottom: 2.5rem !important;
}
.pl-5,
.px-5 {
    padding-left: 2.5rem !important;
}
.pr-5,
.px-5 {
    padding-right: 2.5rem !important;
}
.m-6 {
    margin: 3rem !important;
}
.mt-6,
.my-6 {
    margin-top: 3rem !important;
}
.mb-6,
.my-6 {
    margin-bottom: 3rem !important;
}
.ml-6,
.mx-6 {
    margin-left: 3rem !important;
}
.mr-6,
.mx-6 {
    margin-right: 3rem !important;
}
.p-6 {
    padding: 3rem !important;
}
.pt-6,
.py-6 {
    padding-top: 3rem !important;
}
.pb-6,
.py-6 {
    padding-bottom: 3rem !important;
}
.pl-6,
.px-6 {
    padding-left: 3rem !important;
}
.pr-6,
.px-6 {
    padding-right: 3rem !important;
}
.m-8 {
    margin: 4rem !important;
}
.mt-8,
.my-8 {
    margin-top: 4rem !important;
}
.mb-8,
.my-8 {
    margin-bottom: 4rem !important;
}
.ml-8,
.mx-8 {
    margin-left: 4rem !important;
}
.mr-8,
.mx-8 {
    margin-right: 4rem !important;
}
.p-8 {
    padding: 4rem !important;
}
.pt-8,
.py-8 {
    padding-top: 4rem !important;
}
.pb-8,
.py-8 {
    padding-bottom: 4rem !important;
}
.pl-8,
.px-8 {
    padding-left: 4rem !important;
}
.pr-8,
.px-8 {
    padding-right: 4rem !important;
}
.m-10 {
    margin: 5rem !important;
}
.mt-10,
.my-10 {
    margin-top: 5rem !important;
}
.mb-10,
.my-10 {
    margin-bottom: 5rem !important;
}
.ml-10,
.mx-10 {
    margin-left: 5rem !important;
}
.mr-10,
.mx-10 {
    margin-right: 5rem !important;
}
.p-10 {
    padding: 5rem !important;
}
.pt-10,
.py-10 {
    padding-top: 5rem !important;
}
.pb-10,
.py-10 {
    padding-bottom: 5rem !important;
}
.pl-10,
.px-10 {
    padding-left: 5rem !important;
}
.pr-10,
.px-10 {
    padding-right: 5rem !important;
}
.m-12 {
    margin: 6rem !important;
}
.mt-12,
.my-12 {
    margin-top: 6rem !important;
}
.mb-12,
.my-12 {
    margin-bottom: 6rem !important;
}
.ml-12,
.mx-12 {
    margin-left: 6rem !important;
}
.mr-12,
.mx-12 {
    margin-right: 6rem !important;
}
.p-12 {
    padding: 6rem !important;
}
.pt-12,
.py-12 {
    padding-top: 6rem !important;
}
.pb-12,
.py-12 {
    padding-bottom: 6rem !important;
}
.pl-12,
.px-12 {
    padding-left: 6rem !important;
}
.pr-12,
.px-12 {
    padding-right: 6rem !important;
}
.m-16 {
    margin: 8rem !important;
}
.mt-16,
.my-16 {
    margin-top: 8rem !important;
}
.mb-16,
.my-16 {
    margin-bottom: 8rem !important;
}
.ml-16,
.mx-16 {
    margin-left: 8rem !important;
}
.mr-16,
.mx-16 {
    margin-right: 8rem !important;
}
.p-16 {
    padding: 8rem !important;
}
.pt-16,
.py-16 {
    padding-top: 8rem !important;
}
.pb-16,
.py-16 {
    padding-bottom: 8rem !important;
}
.pl-16,
.px-16 {
    padding-left: 8rem !important;
}
.pr-16,
.px-16 {
    padding-right: 8rem !important;
}
.m-20 {
    margin: 10rem !important;
}
.mt-20,
.my-20 {
    margin-top: 10rem !important;
}
.mb-20,
.my-20 {
    margin-bottom: 10rem !important;
}
.ml-20,
.mx-20 {
    margin-left: 10rem !important;
}
.mr-20,
.mx-20 {
    margin-right: 10rem !important;
}
.p-20 {
    padding: 10rem !important;
}
.pt-20,
.py-20 {
    padding-top: 10rem !important;
}
.pb-20,
.py-20 {
    padding-bottom: 10rem !important;
}
.pl-20,
.px-20 {
    padding-left: 10rem !important;
}
.pr-20,
.px-20 {
    padding-right: 10rem !important;
}
.m-24 {
    margin: 12rem !important;
}
.mt-24,
.my-24 {
    margin-top: 12rem !important;
}
.mb-24,
.my-24 {
    margin-bottom: 12rem !important;
}
.ml-24,
.mx-24 {
    margin-left: 12rem !important;
}
.mr-24,
.mx-24 {
    margin-right: 12rem !important;
}
.p-24 {
    padding: 12rem !important;
}
.pt-24,
.py-24 {
    padding-top: 12rem !important;
}
.pb-24,
.py-24 {
    padding-bottom: 12rem !important;
}
.pl-24,
.px-24 {
    padding-left: 12rem !important;
}
.pr-24,
.px-24 {
    padding-right: 12rem !important;
}
.m-32 {
    margin: 16rem !important;
}
.mt-32,
.my-32 {
    margin-top: 16rem !important;
}
.mb-32,
.my-32 {
    margin-bottom: 16rem !important;
}
.ml-32,
.mx-32 {
    margin-left: 16rem !important;
}
.mr-32,
.mx-32 {
    margin-right: 16rem !important;
}
.p-32 {
    padding: 16rem !important;
}
.pt-32,
.py-32 {
    padding-top: 16rem !important;
}
.pb-32,
.py-32 {
    padding-bottom: 16rem !important;
}
.pl-32,
.px-32 {
    padding-left: 16rem !important;
}
.pr-32,
.px-32 {
    padding-right: 16rem !important;
}
.m-48 {
    margin: 24rem !important;
}
.mt-48,
.my-48 {
    margin-top: 24rem !important;
}
.mb-48,
.my-48 {
    margin-bottom: 24rem !important;
}
.ml-48,
.mx-48 {
    margin-left: 24rem !important;
}
.mr-48,
.mx-48 {
    margin-right: 24rem !important;
}
.p-48 {
    padding: 24rem !important;
}
.pt-48,
.py-48 {
    padding-top: 24rem !important;
}
.pb-48,
.py-48 {
    padding-bottom: 24rem !important;
}
.pl-48,
.px-48 {
    padding-left: 24rem !important;
}
.pr-48,
.px-48 {
    padding-right: 24rem !important;
}
.m-64 {
    margin: 32rem !important;
}
.mt-64,
.my-64 {
    margin-top: 32rem !important;
}
.mb-64,
.my-64 {
    margin-bottom: 32rem !important;
}
.ml-64,
.mx-64 {
    margin-left: 32rem !important;
}
.mr-64,
.mx-64 {
    margin-right: 32rem !important;
}
.p-64 {
    padding: 32rem !important;
}
.pt-64,
.py-64 {
    padding-top: 32rem !important;
}
.pb-64,
.py-64 {
    padding-bottom: 32rem !important;
}
.pl-64,
.px-64 {
    padding-left: 32rem !important;
}
.pr-64,
.px-64 {
    padding-right: 32rem !important;
}
.ml-auto,
.mx-auto {
    margin-left: auto !important;
}
.mr-auto,
.mx-auto {
    margin-right: auto !important;
}
.mt-auto,
.my-auto {
    margin-top: auto !important;
}
.mb-auto,
.my-auto {
    margin-bottom: auto !important;
}
@media screen and (min-width: 640px) {
    .m-0-sm {
        margin: 0 !important;
    }
    .mt-0-sm,
    .my-0-sm {
        margin-top: 0 !important;
    }
    .mb-0-sm,
    .my-0-sm {
        margin-bottom: 0 !important;
    }
    .ml-0-sm,
    .mx-0-sm {
        margin-left: 0 !important;
    }
    .mr-0-sm,
    .mx-0-sm {
        margin-right: 0 !important;
    }
    .p-0-sm {
        padding: 0 !important;
    }
    .pt-0-sm,
    .py-0-sm {
        padding-top: 0 !important;
    }
    .pb-0-sm,
    .py-0-sm {
        padding-bottom: 0 !important;
    }
    .pl-0-sm,
    .px-0-sm {
        padding-left: 0 !important;
    }
    .pr-0-sm,
    .px-0-sm {
        padding-right: 0 !important;
    }
    .m-px-sm {
        margin: 1px !important;
    }
    .mt-px-sm,
    .my-px-sm {
        margin-top: 1px !important;
    }
    .mb-px-sm,
    .my-px-sm {
        margin-bottom: 1px !important;
    }
    .ml-px-sm,
    .mx-px-sm {
        margin-left: 1px !important;
    }
    .mr-px-sm,
    .mx-px-sm {
        margin-right: 1px !important;
    }
    .p-px-sm {
        padding: 1px !important;
    }
    .pt-px-sm,
    .py-px-sm {
        padding-top: 1px !important;
    }
    .pb-px-sm,
    .py-px-sm {
        padding-bottom: 1px !important;
    }
    .pl-px-sm,
    .px-px-sm {
        padding-left: 1px !important;
    }
    .pr-px-sm,
    .px-px-sm {
        padding-right: 1px !important;
    }
    .m-1-sm {
        margin: 0.5rem !important;
    }
    .mt-1-sm,
    .my-1-sm {
        margin-top: 0.5rem !important;
    }
    .mb-1-sm,
    .my-1-sm {
        margin-bottom: 0.5rem !important;
    }
    .ml-1-sm,
    .mx-1-sm {
        margin-left: 0.5rem !important;
    }
    .mr-1-sm,
    .mx-1-sm {
        margin-right: 0.5rem !important;
    }
    .p-1-sm {
        padding: 0.5rem !important;
    }
    .pt-1-sm,
    .py-1-sm {
        padding-top: 0.5rem !important;
    }
    .pb-1-sm,
    .py-1-sm {
        padding-bottom: 0.5rem !important;
    }
    .pl-1-sm,
    .px-1-sm {
        padding-left: 0.5rem !important;
    }
    .pr-1-sm,
    .px-1-sm {
        padding-right: 0.5rem !important;
    }
    .m-2-sm {
        margin: 1rem !important;
    }
    .mt-2-sm,
    .my-2-sm {
        margin-top: 1rem !important;
    }
    .mb-2-sm,
    .my-2-sm {
        margin-bottom: 1rem !important;
    }
    .ml-2-sm,
    .mx-2-sm {
        margin-left: 1rem !important;
    }
    .mr-2-sm,
    .mx-2-sm {
        margin-right: 1rem !important;
    }
    .p-2-sm {
        padding: 1rem !important;
    }
    .pt-2-sm,
    .py-2-sm {
        padding-top: 1rem !important;
    }
    .pb-2-sm,
    .py-2-sm {
        padding-bottom: 1rem !important;
    }
    .pl-2-sm,
    .px-2-sm {
        padding-left: 1rem !important;
    }
    .pr-2-sm,
    .px-2-sm {
        padding-right: 1rem !important;
    }
    .m-3-sm {
        margin: 1.5rem !important;
    }
    .mt-3-sm,
    .my-3-sm {
        margin-top: 1.5rem !important;
    }
    .mb-3-sm,
    .my-3-sm {
        margin-bottom: 1.5rem !important;
    }
    .ml-3-sm,
    .mx-3-sm {
        margin-left: 1.5rem !important;
    }
    .mr-3-sm,
    .mx-3-sm {
        margin-right: 1.5rem !important;
    }
    .p-3-sm {
        padding: 1.5rem !important;
    }
    .pt-3-sm,
    .py-3-sm {
        padding-top: 1.5rem !important;
    }
    .pb-3-sm,
    .py-3-sm {
        padding-bottom: 1.5rem !important;
    }
    .pl-3-sm,
    .px-3-sm {
        padding-left: 1.5rem !important;
    }
    .pr-3-sm,
    .px-3-sm {
        padding-right: 1.5rem !important;
    }
    .m-4-sm {
        margin: 2rem !important;
    }
    .mt-4-sm,
    .my-4-sm {
        margin-top: 2rem !important;
    }
    .mb-4-sm,
    .my-4-sm {
        margin-bottom: 2rem !important;
    }
    .ml-4-sm,
    .mx-4-sm {
        margin-left: 2rem !important;
    }
    .mr-4-sm,
    .mx-4-sm {
        margin-right: 2rem !important;
    }
    .p-4-sm {
        padding: 2rem !important;
    }
    .pt-4-sm,
    .py-4-sm {
        padding-top: 2rem !important;
    }
    .pb-4-sm,
    .py-4-sm {
        padding-bottom: 2rem !important;
    }
    .pl-4-sm,
    .px-4-sm {
        padding-left: 2rem !important;
    }
    .pr-4-sm,
    .px-4-sm {
        padding-right: 2rem !important;
    }
    .m-5-sm {
        margin: 2.5rem !important;
    }
    .mt-5-sm,
    .my-5-sm {
        margin-top: 2.5rem !important;
    }
    .mb-5-sm,
    .my-5-sm {
        margin-bottom: 2.5rem !important;
    }
    .ml-5-sm,
    .mx-5-sm {
        margin-left: 2.5rem !important;
    }
    .mr-5-sm,
    .mx-5-sm {
        margin-right: 2.5rem !important;
    }
    .p-5-sm {
        padding: 2.5rem !important;
    }
    .pt-5-sm,
    .py-5-sm {
        padding-top: 2.5rem !important;
    }
    .pb-5-sm,
    .py-5-sm {
        padding-bottom: 2.5rem !important;
    }
    .pl-5-sm,
    .px-5-sm {
        padding-left: 2.5rem !important;
    }
    .pr-5-sm,
    .px-5-sm {
        padding-right: 2.5rem !important;
    }
    .m-6-sm {
        margin: 3rem !important;
    }
    .mt-6-sm,
    .my-6-sm {
        margin-top: 3rem !important;
    }
    .mb-6-sm,
    .my-6-sm {
        margin-bottom: 3rem !important;
    }
    .ml-6-sm,
    .mx-6-sm {
        margin-left: 3rem !important;
    }
    .mr-6-sm,
    .mx-6-sm {
        margin-right: 3rem !important;
    }
    .p-6-sm {
        padding: 3rem !important;
    }
    .pt-6-sm,
    .py-6-sm {
        padding-top: 3rem !important;
    }
    .pb-6-sm,
    .py-6-sm {
        padding-bottom: 3rem !important;
    }
    .pl-6-sm,
    .px-6-sm {
        padding-left: 3rem !important;
    }
    .pr-6-sm,
    .px-6-sm {
        padding-right: 3rem !important;
    }
    .m-8-sm {
        margin: 4rem !important;
    }
    .mt-8-sm,
    .my-8-sm {
        margin-top: 4rem !important;
    }
    .mb-8-sm,
    .my-8-sm {
        margin-bottom: 4rem !important;
    }
    .ml-8-sm,
    .mx-8-sm {
        margin-left: 4rem !important;
    }
    .mr-8-sm,
    .mx-8-sm {
        margin-right: 4rem !important;
    }
    .p-8-sm {
        padding: 4rem !important;
    }
    .pt-8-sm,
    .py-8-sm {
        padding-top: 4rem !important;
    }
    .pb-8-sm,
    .py-8-sm {
        padding-bottom: 4rem !important;
    }
    .pl-8-sm,
    .px-8-sm {
        padding-left: 4rem !important;
    }
    .pr-8-sm,
    .px-8-sm {
        padding-right: 4rem !important;
    }
    .m-10-sm {
        margin: 5rem !important;
    }
    .mt-10-sm,
    .my-10-sm {
        margin-top: 5rem !important;
    }
    .mb-10-sm,
    .my-10-sm {
        margin-bottom: 5rem !important;
    }
    .ml-10-sm,
    .mx-10-sm {
        margin-left: 5rem !important;
    }
    .mr-10-sm,
    .mx-10-sm {
        margin-right: 5rem !important;
    }
    .p-10-sm {
        padding: 5rem !important;
    }
    .pt-10-sm,
    .py-10-sm {
        padding-top: 5rem !important;
    }
    .pb-10-sm,
    .py-10-sm {
        padding-bottom: 5rem !important;
    }
    .pl-10-sm,
    .px-10-sm {
        padding-left: 5rem !important;
    }
    .pr-10-sm,
    .px-10-sm {
        padding-right: 5rem !important;
    }
    .m-12-sm {
        margin: 6rem !important;
    }
    .mt-12-sm,
    .my-12-sm {
        margin-top: 6rem !important;
    }
    .mb-12-sm,
    .my-12-sm {
        margin-bottom: 6rem !important;
    }
    .ml-12-sm,
    .mx-12-sm {
        margin-left: 6rem !important;
    }
    .mr-12-sm,
    .mx-12-sm {
        margin-right: 6rem !important;
    }
    .p-12-sm {
        padding: 6rem !important;
    }
    .pt-12-sm,
    .py-12-sm {
        padding-top: 6rem !important;
    }
    .pb-12-sm,
    .py-12-sm {
        padding-bottom: 6rem !important;
    }
    .pl-12-sm,
    .px-12-sm {
        padding-left: 6rem !important;
    }
    .pr-12-sm,
    .px-12-sm {
        padding-right: 6rem !important;
    }
    .m-16-sm {
        margin: 8rem !important;
    }
    .mt-16-sm,
    .my-16-sm {
        margin-top: 8rem !important;
    }
    .mb-16-sm,
    .my-16-sm {
        margin-bottom: 8rem !important;
    }
    .ml-16-sm,
    .mx-16-sm {
        margin-left: 8rem !important;
    }
    .mr-16-sm,
    .mx-16-sm {
        margin-right: 8rem !important;
    }
    .p-16-sm {
        padding: 8rem !important;
    }
    .pt-16-sm,
    .py-16-sm {
        padding-top: 8rem !important;
    }
    .pb-16-sm,
    .py-16-sm {
        padding-bottom: 8rem !important;
    }
    .pl-16-sm,
    .px-16-sm {
        padding-left: 8rem !important;
    }
    .pr-16-sm,
    .px-16-sm {
        padding-right: 8rem !important;
    }
    .m-20-sm {
        margin: 10rem !important;
    }
    .mt-20-sm,
    .my-20-sm {
        margin-top: 10rem !important;
    }
    .mb-20-sm,
    .my-20-sm {
        margin-bottom: 10rem !important;
    }
    .ml-20-sm,
    .mx-20-sm {
        margin-left: 10rem !important;
    }
    .mr-20-sm,
    .mx-20-sm {
        margin-right: 10rem !important;
    }
    .p-20-sm {
        padding: 10rem !important;
    }
    .pt-20-sm,
    .py-20-sm {
        padding-top: 10rem !important;
    }
    .pb-20-sm,
    .py-20-sm {
        padding-bottom: 10rem !important;
    }
    .pl-20-sm,
    .px-20-sm {
        padding-left: 10rem !important;
    }
    .pr-20-sm,
    .px-20-sm {
        padding-right: 10rem !important;
    }
    .m-24-sm {
        margin: 12rem !important;
    }
    .mt-24-sm,
    .my-24-sm {
        margin-top: 12rem !important;
    }
    .mb-24-sm,
    .my-24-sm {
        margin-bottom: 12rem !important;
    }
    .ml-24-sm,
    .mx-24-sm {
        margin-left: 12rem !important;
    }
    .mr-24-sm,
    .mx-24-sm {
        margin-right: 12rem !important;
    }
    .p-24-sm {
        padding: 12rem !important;
    }
    .pt-24-sm,
    .py-24-sm {
        padding-top: 12rem !important;
    }
    .pb-24-sm,
    .py-24-sm {
        padding-bottom: 12rem !important;
    }
    .pl-24-sm,
    .px-24-sm {
        padding-left: 12rem !important;
    }
    .pr-24-sm,
    .px-24-sm {
        padding-right: 12rem !important;
    }
    .m-32-sm {
        margin: 16rem !important;
    }
    .mt-32-sm,
    .my-32-sm {
        margin-top: 16rem !important;
    }
    .mb-32-sm,
    .my-32-sm {
        margin-bottom: 16rem !important;
    }
    .ml-32-sm,
    .mx-32-sm {
        margin-left: 16rem !important;
    }
    .mr-32-sm,
    .mx-32-sm {
        margin-right: 16rem !important;
    }
    .p-32-sm {
        padding: 16rem !important;
    }
    .pt-32-sm,
    .py-32-sm {
        padding-top: 16rem !important;
    }
    .pb-32-sm,
    .py-32-sm {
        padding-bottom: 16rem !important;
    }
    .pl-32-sm,
    .px-32-sm {
        padding-left: 16rem !important;
    }
    .pr-32-sm,
    .px-32-sm {
        padding-right: 16rem !important;
    }
    .m-48-sm {
        margin: 24rem !important;
    }
    .mt-48-sm,
    .my-48-sm {
        margin-top: 24rem !important;
    }
    .mb-48-sm,
    .my-48-sm {
        margin-bottom: 24rem !important;
    }
    .ml-48-sm,
    .mx-48-sm {
        margin-left: 24rem !important;
    }
    .mr-48-sm,
    .mx-48-sm {
        margin-right: 24rem !important;
    }
    .p-48-sm {
        padding: 24rem !important;
    }
    .pt-48-sm,
    .py-48-sm {
        padding-top: 24rem !important;
    }
    .pb-48-sm,
    .py-48-sm {
        padding-bottom: 24rem !important;
    }
    .pl-48-sm,
    .px-48-sm {
        padding-left: 24rem !important;
    }
    .pr-48-sm,
    .px-48-sm {
        padding-right: 24rem !important;
    }
    .m-64-sm {
        margin: 32rem !important;
    }
    .mt-64-sm,
    .my-64-sm {
        margin-top: 32rem !important;
    }
    .mb-64-sm,
    .my-64-sm {
        margin-bottom: 32rem !important;
    }
    .ml-64-sm,
    .mx-64-sm {
        margin-left: 32rem !important;
    }
    .mr-64-sm,
    .mx-64-sm {
        margin-right: 32rem !important;
    }
    .p-64-sm {
        padding: 32rem !important;
    }
    .pt-64-sm,
    .py-64-sm {
        padding-top: 32rem !important;
    }
    .pb-64-sm,
    .py-64-sm {
        padding-bottom: 32rem !important;
    }
    .pl-64-sm,
    .px-64-sm {
        padding-left: 32rem !important;
    }
    .pr-64-sm,
    .px-64-sm {
        padding-right: 32rem !important;
    }
    .ml-auto-sm,
    .mx-auto-sm {
        margin-left: auto !important;
    }
    .mr-auto-sm,
    .mx-auto-sm {
        margin-right: auto !important;
    }
    .mt-auto-sm,
    .my-auto-sm {
        margin-top: auto !important;
    }
    .mb-auto-sm,
    .my-auto-sm {
        margin-bottom: auto !important;
    }
}
@media screen and (min-width: 768px) {
    .m-0-md {
        margin: 0 !important;
    }
    .mt-0-md,
    .my-0-md {
        margin-top: 0 !important;
    }
    .mb-0-md,
    .my-0-md {
        margin-bottom: 0 !important;
    }
    .ml-0-md,
    .mx-0-md {
        margin-left: 0 !important;
    }
    .mr-0-md,
    .mx-0-md {
        margin-right: 0 !important;
    }
    .p-0-md {
        padding: 0 !important;
    }
    .pt-0-md,
    .py-0-md {
        padding-top: 0 !important;
    }
    .pb-0-md,
    .py-0-md {
        padding-bottom: 0 !important;
    }
    .pl-0-md,
    .px-0-md {
        padding-left: 0 !important;
    }
    .pr-0-md,
    .px-0-md {
        padding-right: 0 !important;
    }
    .m-px-md {
        margin: 1px !important;
    }
    .mt-px-md,
    .my-px-md {
        margin-top: 1px !important;
    }
    .mb-px-md,
    .my-px-md {
        margin-bottom: 1px !important;
    }
    .ml-px-md,
    .mx-px-md {
        margin-left: 1px !important;
    }
    .mr-px-md,
    .mx-px-md {
        margin-right: 1px !important;
    }
    .p-px-md {
        padding: 1px !important;
    }
    .pt-px-md,
    .py-px-md {
        padding-top: 1px !important;
    }
    .pb-px-md,
    .py-px-md {
        padding-bottom: 1px !important;
    }
    .pl-px-md,
    .px-px-md {
        padding-left: 1px !important;
    }
    .pr-px-md,
    .px-px-md {
        padding-right: 1px !important;
    }
    .m-1-md {
        margin: 0.5rem !important;
    }
    .mt-1-md,
    .my-1-md {
        margin-top: 0.5rem !important;
    }
    .mb-1-md,
    .my-1-md {
        margin-bottom: 0.5rem !important;
    }
    .ml-1-md,
    .mx-1-md {
        margin-left: 0.5rem !important;
    }
    .mr-1-md,
    .mx-1-md {
        margin-right: 0.5rem !important;
    }
    .p-1-md {
        padding: 0.5rem !important;
    }
    .pt-1-md,
    .py-1-md {
        padding-top: 0.5rem !important;
    }
    .pb-1-md,
    .py-1-md {
        padding-bottom: 0.5rem !important;
    }
    .pl-1-md,
    .px-1-md {
        padding-left: 0.5rem !important;
    }
    .pr-1-md,
    .px-1-md {
        padding-right: 0.5rem !important;
    }
    .m-2-md {
        margin: 1rem !important;
    }
    .mt-2-md,
    .my-2-md {
        margin-top: 1rem !important;
    }
    .mb-2-md,
    .my-2-md {
        margin-bottom: 1rem !important;
    }
    .ml-2-md,
    .mx-2-md {
        margin-left: 1rem !important;
    }
    .mr-2-md,
    .mx-2-md {
        margin-right: 1rem !important;
    }
    .p-2-md {
        padding: 1rem !important;
    }
    .pt-2-md,
    .py-2-md {
        padding-top: 1rem !important;
    }
    .pb-2-md,
    .py-2-md {
        padding-bottom: 1rem !important;
    }
    .pl-2-md,
    .px-2-md {
        padding-left: 1rem !important;
    }
    .pr-2-md,
    .px-2-md {
        padding-right: 1rem !important;
    }
    .m-3-md {
        margin: 1.5rem !important;
    }
    .mt-3-md,
    .my-3-md {
        margin-top: 1.5rem !important;
    }
    .mb-3-md,
    .my-3-md {
        margin-bottom: 1.5rem !important;
    }
    .ml-3-md,
    .mx-3-md {
        margin-left: 1.5rem !important;
    }
    .mr-3-md,
    .mx-3-md {
        margin-right: 1.5rem !important;
    }
    .p-3-md {
        padding: 1.5rem !important;
    }
    .pt-3-md,
    .py-3-md {
        padding-top: 1.5rem !important;
    }
    .pb-3-md,
    .py-3-md {
        padding-bottom: 1.5rem !important;
    }
    .pl-3-md,
    .px-3-md {
        padding-left: 1.5rem !important;
    }
    .pr-3-md,
    .px-3-md {
        padding-right: 1.5rem !important;
    }
    .m-4-md {
        margin: 2rem !important;
    }
    .mt-4-md,
    .my-4-md {
        margin-top: 2rem !important;
    }
    .mb-4-md,
    .my-4-md {
        margin-bottom: 2rem !important;
    }
    .ml-4-md,
    .mx-4-md {
        margin-left: 2rem !important;
    }
    .mr-4-md,
    .mx-4-md {
        margin-right: 2rem !important;
    }
    .p-4-md {
        padding: 2rem !important;
    }
    .pt-4-md,
    .py-4-md {
        padding-top: 2rem !important;
    }
    .pb-4-md,
    .py-4-md {
        padding-bottom: 2rem !important;
    }
    .pl-4-md,
    .px-4-md {
        padding-left: 2rem !important;
    }
    .pr-4-md,
    .px-4-md {
        padding-right: 2rem !important;
    }
    .m-5-md {
        margin: 2.5rem !important;
    }
    .mt-5-md,
    .my-5-md {
        margin-top: 2.5rem !important;
    }
    .mb-5-md,
    .my-5-md {
        margin-bottom: 2.5rem !important;
    }
    .ml-5-md,
    .mx-5-md {
        margin-left: 2.5rem !important;
    }
    .mr-5-md,
    .mx-5-md {
        margin-right: 2.5rem !important;
    }
    .p-5-md {
        padding: 2.5rem !important;
    }
    .pt-5-md,
    .py-5-md {
        padding-top: 2.5rem !important;
    }
    .pb-5-md,
    .py-5-md {
        padding-bottom: 2.5rem !important;
    }
    .pl-5-md,
    .px-5-md {
        padding-left: 2.5rem !important;
    }
    .pr-5-md,
    .px-5-md {
        padding-right: 2.5rem !important;
    }
    .m-6-md {
        margin: 3rem !important;
    }
    .mt-6-md,
    .my-6-md {
        margin-top: 3rem !important;
    }
    .mb-6-md,
    .my-6-md {
        margin-bottom: 3rem !important;
    }
    .ml-6-md,
    .mx-6-md {
        margin-left: 3rem !important;
    }
    .mr-6-md,
    .mx-6-md {
        margin-right: 3rem !important;
    }
    .p-6-md {
        padding: 3rem !important;
    }
    .pt-6-md,
    .py-6-md {
        padding-top: 3rem !important;
    }
    .pb-6-md,
    .py-6-md {
        padding-bottom: 3rem !important;
    }
    .pl-6-md,
    .px-6-md {
        padding-left: 3rem !important;
    }
    .pr-6-md,
    .px-6-md {
        padding-right: 3rem !important;
    }
    .m-8-md {
        margin: 4rem !important;
    }
    .mt-8-md,
    .my-8-md {
        margin-top: 4rem !important;
    }
    .mb-8-md,
    .my-8-md {
        margin-bottom: 4rem !important;
    }
    .ml-8-md,
    .mx-8-md {
        margin-left: 4rem !important;
    }
    .mr-8-md,
    .mx-8-md {
        margin-right: 4rem !important;
    }
    .p-8-md {
        padding: 4rem !important;
    }
    .pt-8-md,
    .py-8-md {
        padding-top: 4rem !important;
    }
    .pb-8-md,
    .py-8-md {
        padding-bottom: 4rem !important;
    }
    .pl-8-md,
    .px-8-md {
        padding-left: 4rem !important;
    }
    .pr-8-md,
    .px-8-md {
        padding-right: 4rem !important;
    }
    .m-10-md {
        margin: 5rem !important;
    }
    .mt-10-md,
    .my-10-md {
        margin-top: 5rem !important;
    }
    .mb-10-md,
    .my-10-md {
        margin-bottom: 5rem !important;
    }
    .ml-10-md,
    .mx-10-md {
        margin-left: 5rem !important;
    }
    .mr-10-md,
    .mx-10-md {
        margin-right: 5rem !important;
    }
    .p-10-md {
        padding: 5rem !important;
    }
    .pt-10-md,
    .py-10-md {
        padding-top: 5rem !important;
    }
    .pb-10-md,
    .py-10-md {
        padding-bottom: 5rem !important;
    }
    .pl-10-md,
    .px-10-md {
        padding-left: 5rem !important;
    }
    .pr-10-md,
    .px-10-md {
        padding-right: 5rem !important;
    }
    .m-12-md {
        margin: 6rem !important;
    }
    .mt-12-md,
    .my-12-md {
        margin-top: 6rem !important;
    }
    .mb-12-md,
    .my-12-md {
        margin-bottom: 6rem !important;
    }
    .ml-12-md,
    .mx-12-md {
        margin-left: 6rem !important;
    }
    .mr-12-md,
    .mx-12-md {
        margin-right: 6rem !important;
    }
    .p-12-md {
        padding: 6rem !important;
    }
    .pt-12-md,
    .py-12-md {
        padding-top: 6rem !important;
    }
    .pb-12-md,
    .py-12-md {
        padding-bottom: 6rem !important;
    }
    .pl-12-md,
    .px-12-md {
        padding-left: 6rem !important;
    }
    .pr-12-md,
    .px-12-md {
        padding-right: 6rem !important;
    }
    .m-16-md {
        margin: 8rem !important;
    }
    .mt-16-md,
    .my-16-md {
        margin-top: 8rem !important;
    }
    .mb-16-md,
    .my-16-md {
        margin-bottom: 8rem !important;
    }
    .ml-16-md,
    .mx-16-md {
        margin-left: 8rem !important;
    }
    .mr-16-md,
    .mx-16-md {
        margin-right: 8rem !important;
    }
    .p-16-md {
        padding: 8rem !important;
    }
    .pt-16-md,
    .py-16-md {
        padding-top: 8rem !important;
    }
    .pb-16-md,
    .py-16-md {
        padding-bottom: 8rem !important;
    }
    .pl-16-md,
    .px-16-md {
        padding-left: 8rem !important;
    }
    .pr-16-md,
    .px-16-md {
        padding-right: 8rem !important;
    }
    .m-20-md {
        margin: 10rem !important;
    }
    .mt-20-md,
    .my-20-md {
        margin-top: 10rem !important;
    }
    .mb-20-md,
    .my-20-md {
        margin-bottom: 10rem !important;
    }
    .ml-20-md,
    .mx-20-md {
        margin-left: 10rem !important;
    }
    .mr-20-md,
    .mx-20-md {
        margin-right: 10rem !important;
    }
    .p-20-md {
        padding: 10rem !important;
    }
    .pt-20-md,
    .py-20-md {
        padding-top: 10rem !important;
    }
    .pb-20-md,
    .py-20-md {
        padding-bottom: 10rem !important;
    }
    .pl-20-md,
    .px-20-md {
        padding-left: 10rem !important;
    }
    .pr-20-md,
    .px-20-md {
        padding-right: 10rem !important;
    }
    .m-24-md {
        margin: 12rem !important;
    }
    .mt-24-md,
    .my-24-md {
        margin-top: 12rem !important;
    }
    .mb-24-md,
    .my-24-md {
        margin-bottom: 12rem !important;
    }
    .ml-24-md,
    .mx-24-md {
        margin-left: 12rem !important;
    }
    .mr-24-md,
    .mx-24-md {
        margin-right: 12rem !important;
    }
    .p-24-md {
        padding: 12rem !important;
    }
    .pt-24-md,
    .py-24-md {
        padding-top: 12rem !important;
    }
    .pb-24-md,
    .py-24-md {
        padding-bottom: 12rem !important;
    }
    .pl-24-md,
    .px-24-md {
        padding-left: 12rem !important;
    }
    .pr-24-md,
    .px-24-md {
        padding-right: 12rem !important;
    }
    .m-32-md {
        margin: 16rem !important;
    }
    .mt-32-md,
    .my-32-md {
        margin-top: 16rem !important;
    }
    .mb-32-md,
    .my-32-md {
        margin-bottom: 16rem !important;
    }
    .ml-32-md,
    .mx-32-md {
        margin-left: 16rem !important;
    }
    .mr-32-md,
    .mx-32-md {
        margin-right: 16rem !important;
    }
    .p-32-md {
        padding: 16rem !important;
    }
    .pt-32-md,
    .py-32-md {
        padding-top: 16rem !important;
    }
    .pb-32-md,
    .py-32-md {
        padding-bottom: 16rem !important;
    }
    .pl-32-md,
    .px-32-md {
        padding-left: 16rem !important;
    }
    .pr-32-md,
    .px-32-md {
        padding-right: 16rem !important;
    }
    .m-48-md {
        margin: 24rem !important;
    }
    .mt-48-md,
    .my-48-md {
        margin-top: 24rem !important;
    }
    .mb-48-md,
    .my-48-md {
        margin-bottom: 24rem !important;
    }
    .ml-48-md,
    .mx-48-md {
        margin-left: 24rem !important;
    }
    .mr-48-md,
    .mx-48-md {
        margin-right: 24rem !important;
    }
    .p-48-md {
        padding: 24rem !important;
    }
    .pt-48-md,
    .py-48-md {
        padding-top: 24rem !important;
    }
    .pb-48-md,
    .py-48-md {
        padding-bottom: 24rem !important;
    }
    .pl-48-md,
    .px-48-md {
        padding-left: 24rem !important;
    }
    .pr-48-md,
    .px-48-md {
        padding-right: 24rem !important;
    }
    .m-64-md {
        margin: 32rem !important;
    }
    .mt-64-md,
    .my-64-md {
        margin-top: 32rem !important;
    }
    .mb-64-md,
    .my-64-md {
        margin-bottom: 32rem !important;
    }
    .ml-64-md,
    .mx-64-md {
        margin-left: 32rem !important;
    }
    .mr-64-md,
    .mx-64-md {
        margin-right: 32rem !important;
    }
    .p-64-md {
        padding: 32rem !important;
    }
    .pt-64-md,
    .py-64-md {
        padding-top: 32rem !important;
    }
    .pb-64-md,
    .py-64-md {
        padding-bottom: 32rem !important;
    }
    .pl-64-md,
    .px-64-md {
        padding-left: 32rem !important;
    }
    .pr-64-md,
    .px-64-md {
        padding-right: 32rem !important;
    }
    .ml-auto-md,
    .mx-auto-md {
        margin-left: auto !important;
    }
    .mr-auto-md,
    .mx-auto-md {
        margin-right: auto !important;
    }
    .mt-auto-md,
    .my-auto-md {
        margin-top: auto !important;
    }
    .mb-auto-md,
    .my-auto-md {
        margin-bottom: auto !important;
    }
}
@media screen and (min-width: 1024px) {
    .m-0-lg {
        margin: 0 !important;
    }
    .mt-0-lg,
    .my-0-lg {
        margin-top: 0 !important;
    }
    .mb-0-lg,
    .my-0-lg {
        margin-bottom: 0 !important;
    }
    .ml-0-lg,
    .mx-0-lg {
        margin-left: 0 !important;
    }
    .mr-0-lg,
    .mx-0-lg {
        margin-right: 0 !important;
    }
    .p-0-lg {
        padding: 0 !important;
    }
    .pt-0-lg,
    .py-0-lg {
        padding-top: 0 !important;
    }
    .pb-0-lg,
    .py-0-lg {
        padding-bottom: 0 !important;
    }
    .pl-0-lg,
    .px-0-lg {
        padding-left: 0 !important;
    }
    .pr-0-lg,
    .px-0-lg {
        padding-right: 0 !important;
    }
    .m-px-lg {
        margin: 1px !important;
    }
    .mt-px-lg,
    .my-px-lg {
        margin-top: 1px !important;
    }
    .mb-px-lg,
    .my-px-lg {
        margin-bottom: 1px !important;
    }
    .ml-px-lg,
    .mx-px-lg {
        margin-left: 1px !important;
    }
    .mr-px-lg,
    .mx-px-lg {
        margin-right: 1px !important;
    }
    .p-px-lg {
        padding: 1px !important;
    }
    .pt-px-lg,
    .py-px-lg {
        padding-top: 1px !important;
    }
    .pb-px-lg,
    .py-px-lg {
        padding-bottom: 1px !important;
    }
    .pl-px-lg,
    .px-px-lg {
        padding-left: 1px !important;
    }
    .pr-px-lg,
    .px-px-lg {
        padding-right: 1px !important;
    }
    .m-1-lg {
        margin: 0.5rem !important;
    }
    .mt-1-lg,
    .my-1-lg {
        margin-top: 0.5rem !important;
    }
    .mb-1-lg,
    .my-1-lg {
        margin-bottom: 0.5rem !important;
    }
    .ml-1-lg,
    .mx-1-lg {
        margin-left: 0.5rem !important;
    }
    .mr-1-lg,
    .mx-1-lg {
        margin-right: 0.5rem !important;
    }
    .p-1-lg {
        padding: 0.5rem !important;
    }
    .pt-1-lg,
    .py-1-lg {
        padding-top: 0.5rem !important;
    }
    .pb-1-lg,
    .py-1-lg {
        padding-bottom: 0.5rem !important;
    }
    .pl-1-lg,
    .px-1-lg {
        padding-left: 0.5rem !important;
    }
    .pr-1-lg,
    .px-1-lg {
        padding-right: 0.5rem !important;
    }
    .m-2-lg {
        margin: 1rem !important;
    }
    .mt-2-lg,
    .my-2-lg {
        margin-top: 1rem !important;
    }
    .mb-2-lg,
    .my-2-lg {
        margin-bottom: 1rem !important;
    }
    .ml-2-lg,
    .mx-2-lg {
        margin-left: 1rem !important;
    }
    .mr-2-lg,
    .mx-2-lg {
        margin-right: 1rem !important;
    }
    .p-2-lg {
        padding: 1rem !important;
    }
    .pt-2-lg,
    .py-2-lg {
        padding-top: 1rem !important;
    }
    .pb-2-lg,
    .py-2-lg {
        padding-bottom: 1rem !important;
    }
    .pl-2-lg,
    .px-2-lg {
        padding-left: 1rem !important;
    }
    .pr-2-lg,
    .px-2-lg {
        padding-right: 1rem !important;
    }
    .m-3-lg {
        margin: 1.5rem !important;
    }
    .mt-3-lg,
    .my-3-lg {
        margin-top: 1.5rem !important;
    }
    .mb-3-lg,
    .my-3-lg {
        margin-bottom: 1.5rem !important;
    }
    .ml-3-lg,
    .mx-3-lg {
        margin-left: 1.5rem !important;
    }
    .mr-3-lg,
    .mx-3-lg {
        margin-right: 1.5rem !important;
    }
    .p-3-lg {
        padding: 1.5rem !important;
    }
    .pt-3-lg,
    .py-3-lg {
        padding-top: 1.5rem !important;
    }
    .pb-3-lg,
    .py-3-lg {
        padding-bottom: 1.5rem !important;
    }
    .pl-3-lg,
    .px-3-lg {
        padding-left: 1.5rem !important;
    }
    .pr-3-lg,
    .px-3-lg {
        padding-right: 1.5rem !important;
    }
    .m-4-lg {
        margin: 2rem !important;
    }
    .mt-4-lg,
    .my-4-lg {
        margin-top: 2rem !important;
    }
    .mb-4-lg,
    .my-4-lg {
        margin-bottom: 2rem !important;
    }
    .ml-4-lg,
    .mx-4-lg {
        margin-left: 2rem !important;
    }
    .mr-4-lg,
    .mx-4-lg {
        margin-right: 2rem !important;
    }
    .p-4-lg {
        padding: 2rem !important;
    }
    .pt-4-lg,
    .py-4-lg {
        padding-top: 2rem !important;
    }
    .pb-4-lg,
    .py-4-lg {
        padding-bottom: 2rem !important;
    }
    .pl-4-lg,
    .px-4-lg {
        padding-left: 2rem !important;
    }
    .pr-4-lg,
    .px-4-lg {
        padding-right: 2rem !important;
    }
    .m-5-lg {
        margin: 2.5rem !important;
    }
    .mt-5-lg,
    .my-5-lg {
        margin-top: 2.5rem !important;
    }
    .mb-5-lg,
    .my-5-lg {
        margin-bottom: 2.5rem !important;
    }
    .ml-5-lg,
    .mx-5-lg {
        margin-left: 2.5rem !important;
    }
    .mr-5-lg,
    .mx-5-lg {
        margin-right: 2.5rem !important;
    }
    .p-5-lg {
        padding: 2.5rem !important;
    }
    .pt-5-lg,
    .py-5-lg {
        padding-top: 2.5rem !important;
    }
    .pb-5-lg,
    .py-5-lg {
        padding-bottom: 2.5rem !important;
    }
    .pl-5-lg,
    .px-5-lg {
        padding-left: 2.5rem !important;
    }
    .pr-5-lg,
    .px-5-lg {
        padding-right: 2.5rem !important;
    }
    .m-6-lg {
        margin: 3rem !important;
    }
    .mt-6-lg,
    .my-6-lg {
        margin-top: 3rem !important;
    }
    .mb-6-lg,
    .my-6-lg {
        margin-bottom: 3rem !important;
    }
    .ml-6-lg,
    .mx-6-lg {
        margin-left: 3rem !important;
    }
    .mr-6-lg,
    .mx-6-lg {
        margin-right: 3rem !important;
    }
    .p-6-lg {
        padding: 3rem !important;
    }
    .pt-6-lg,
    .py-6-lg {
        padding-top: 3rem !important;
    }
    .pb-6-lg,
    .py-6-lg {
        padding-bottom: 3rem !important;
    }
    .pl-6-lg,
    .px-6-lg {
        padding-left: 3rem !important;
    }
    .pr-6-lg,
    .px-6-lg {
        padding-right: 3rem !important;
    }
    .m-8-lg {
        margin: 4rem !important;
    }
    .mt-8-lg,
    .my-8-lg {
        margin-top: 4rem !important;
    }
    .mb-8-lg,
    .my-8-lg {
        margin-bottom: 4rem !important;
    }
    .ml-8-lg,
    .mx-8-lg {
        margin-left: 4rem !important;
    }
    .mr-8-lg,
    .mx-8-lg {
        margin-right: 4rem !important;
    }
    .p-8-lg {
        padding: 4rem !important;
    }
    .pt-8-lg,
    .py-8-lg {
        padding-top: 4rem !important;
    }
    .pb-8-lg,
    .py-8-lg {
        padding-bottom: 4rem !important;
    }
    .pl-8-lg,
    .px-8-lg {
        padding-left: 4rem !important;
    }
    .pr-8-lg,
    .px-8-lg {
        padding-right: 4rem !important;
    }
    .m-10-lg {
        margin: 5rem !important;
    }
    .mt-10-lg,
    .my-10-lg {
        margin-top: 5rem !important;
    }
    .mb-10-lg,
    .my-10-lg {
        margin-bottom: 5rem !important;
    }
    .ml-10-lg,
    .mx-10-lg {
        margin-left: 5rem !important;
    }
    .mr-10-lg,
    .mx-10-lg {
        margin-right: 5rem !important;
    }
    .p-10-lg {
        padding: 5rem !important;
    }
    .pt-10-lg,
    .py-10-lg {
        padding-top: 5rem !important;
    }
    .pb-10-lg,
    .py-10-lg {
        padding-bottom: 5rem !important;
    }
    .pl-10-lg,
    .px-10-lg {
        padding-left: 5rem !important;
    }
    .pr-10-lg,
    .px-10-lg {
        padding-right: 5rem !important;
    }
    .m-12-lg {
        margin: 6rem !important;
    }
    .mt-12-lg,
    .my-12-lg {
        margin-top: 6rem !important;
    }
    .mb-12-lg,
    .my-12-lg {
        margin-bottom: 6rem !important;
    }
    .ml-12-lg,
    .mx-12-lg {
        margin-left: 6rem !important;
    }
    .mr-12-lg,
    .mx-12-lg {
        margin-right: 6rem !important;
    }
    .p-12-lg {
        padding: 6rem !important;
    }
    .pt-12-lg,
    .py-12-lg {
        padding-top: 6rem !important;
    }
    .pb-12-lg,
    .py-12-lg {
        padding-bottom: 6rem !important;
    }
    .pl-12-lg,
    .px-12-lg {
        padding-left: 6rem !important;
    }
    .pr-12-lg,
    .px-12-lg {
        padding-right: 6rem !important;
    }
    .m-16-lg {
        margin: 8rem !important;
    }
    .mt-16-lg,
    .my-16-lg {
        margin-top: 8rem !important;
    }
    .mb-16-lg,
    .my-16-lg {
        margin-bottom: 8rem !important;
    }
    .ml-16-lg,
    .mx-16-lg {
        margin-left: 8rem !important;
    }
    .mr-16-lg,
    .mx-16-lg {
        margin-right: 8rem !important;
    }
    .p-16-lg {
        padding: 8rem !important;
    }
    .pt-16-lg,
    .py-16-lg {
        padding-top: 8rem !important;
    }
    .pb-16-lg,
    .py-16-lg {
        padding-bottom: 8rem !important;
    }
    .pl-16-lg,
    .px-16-lg {
        padding-left: 8rem !important;
    }
    .pr-16-lg,
    .px-16-lg {
        padding-right: 8rem !important;
    }
    .m-20-lg {
        margin: 10rem !important;
    }
    .mt-20-lg,
    .my-20-lg {
        margin-top: 10rem !important;
    }
    .mb-20-lg,
    .my-20-lg {
        margin-bottom: 10rem !important;
    }
    .ml-20-lg,
    .mx-20-lg {
        margin-left: 10rem !important;
    }
    .mr-20-lg,
    .mx-20-lg {
        margin-right: 10rem !important;
    }
    .p-20-lg {
        padding: 10rem !important;
    }
    .pt-20-lg,
    .py-20-lg {
        padding-top: 10rem !important;
    }
    .pb-20-lg,
    .py-20-lg {
        padding-bottom: 10rem !important;
    }
    .pl-20-lg,
    .px-20-lg {
        padding-left: 10rem !important;
    }
    .pr-20-lg,
    .px-20-lg {
        padding-right: 10rem !important;
    }
    .m-24-lg {
        margin: 12rem !important;
    }
    .mt-24-lg,
    .my-24-lg {
        margin-top: 12rem !important;
    }
    .mb-24-lg,
    .my-24-lg {
        margin-bottom: 12rem !important;
    }
    .ml-24-lg,
    .mx-24-lg {
        margin-left: 12rem !important;
    }
    .mr-24-lg,
    .mx-24-lg {
        margin-right: 12rem !important;
    }
    .p-24-lg {
        padding: 12rem !important;
    }
    .pt-24-lg,
    .py-24-lg {
        padding-top: 12rem !important;
    }
    .pb-24-lg,
    .py-24-lg {
        padding-bottom: 12rem !important;
    }
    .pl-24-lg,
    .px-24-lg {
        padding-left: 12rem !important;
    }
    .pr-24-lg,
    .px-24-lg {
        padding-right: 12rem !important;
    }
    .m-32-lg {
        margin: 16rem !important;
    }
    .mt-32-lg,
    .my-32-lg {
        margin-top: 16rem !important;
    }
    .mb-32-lg,
    .my-32-lg {
        margin-bottom: 16rem !important;
    }
    .ml-32-lg,
    .mx-32-lg {
        margin-left: 16rem !important;
    }
    .mr-32-lg,
    .mx-32-lg {
        margin-right: 16rem !important;
    }
    .p-32-lg {
        padding: 16rem !important;
    }
    .pt-32-lg,
    .py-32-lg {
        padding-top: 16rem !important;
    }
    .pb-32-lg,
    .py-32-lg {
        padding-bottom: 16rem !important;
    }
    .pl-32-lg,
    .px-32-lg {
        padding-left: 16rem !important;
    }
    .pr-32-lg,
    .px-32-lg {
        padding-right: 16rem !important;
    }
    .m-48-lg {
        margin: 24rem !important;
    }
    .mt-48-lg,
    .my-48-lg {
        margin-top: 24rem !important;
    }
    .mb-48-lg,
    .my-48-lg {
        margin-bottom: 24rem !important;
    }
    .ml-48-lg,
    .mx-48-lg {
        margin-left: 24rem !important;
    }
    .mr-48-lg,
    .mx-48-lg {
        margin-right: 24rem !important;
    }
    .p-48-lg {
        padding: 24rem !important;
    }
    .pt-48-lg,
    .py-48-lg {
        padding-top: 24rem !important;
    }
    .pb-48-lg,
    .py-48-lg {
        padding-bottom: 24rem !important;
    }
    .pl-48-lg,
    .px-48-lg {
        padding-left: 24rem !important;
    }
    .pr-48-lg,
    .px-48-lg {
        padding-right: 24rem !important;
    }
    .m-64-lg {
        margin: 32rem !important;
    }
    .mt-64-lg,
    .my-64-lg {
        margin-top: 32rem !important;
    }
    .mb-64-lg,
    .my-64-lg {
        margin-bottom: 32rem !important;
    }
    .ml-64-lg,
    .mx-64-lg {
        margin-left: 32rem !important;
    }
    .mr-64-lg,
    .mx-64-lg {
        margin-right: 32rem !important;
    }
    .p-64-lg {
        padding: 32rem !important;
    }
    .pt-64-lg,
    .py-64-lg {
        padding-top: 32rem !important;
    }
    .pb-64-lg,
    .py-64-lg {
        padding-bottom: 32rem !important;
    }
    .pl-64-lg,
    .px-64-lg {
        padding-left: 32rem !important;
    }
    .pr-64-lg,
    .px-64-lg {
        padding-right: 32rem !important;
    }
    .ml-auto-lg,
    .mx-auto-lg {
        margin-left: auto !important;
    }
    .mr-auto-lg,
    .mx-auto-lg {
        margin-right: auto !important;
    }
    .mt-auto-lg,
    .my-auto-lg {
        margin-top: auto !important;
    }
    .mb-auto-lg,
    .my-auto-lg {
        margin-bottom: auto !important;
    }
}
@media screen and (min-width: 1280px) {
    .m-0-xl {
        margin: 0 !important;
    }
    .mt-0-xl,
    .my-0-xl {
        margin-top: 0 !important;
    }
    .mb-0-xl,
    .my-0-xl {
        margin-bottom: 0 !important;
    }
    .ml-0-xl,
    .mx-0-xl {
        margin-left: 0 !important;
    }
    .mr-0-xl,
    .mx-0-xl {
        margin-right: 0 !important;
    }
    .p-0-xl {
        padding: 0 !important;
    }
    .pt-0-xl,
    .py-0-xl {
        padding-top: 0 !important;
    }
    .pb-0-xl,
    .py-0-xl {
        padding-bottom: 0 !important;
    }
    .pl-0-xl,
    .px-0-xl {
        padding-left: 0 !important;
    }
    .pr-0-xl,
    .px-0-xl {
        padding-right: 0 !important;
    }
    .m-px-xl {
        margin: 1px !important;
    }
    .mt-px-xl,
    .my-px-xl {
        margin-top: 1px !important;
    }
    .mb-px-xl,
    .my-px-xl {
        margin-bottom: 1px !important;
    }
    .ml-px-xl,
    .mx-px-xl {
        margin-left: 1px !important;
    }
    .mr-px-xl,
    .mx-px-xl {
        margin-right: 1px !important;
    }
    .p-px-xl {
        padding: 1px !important;
    }
    .pt-px-xl,
    .py-px-xl {
        padding-top: 1px !important;
    }
    .pb-px-xl,
    .py-px-xl {
        padding-bottom: 1px !important;
    }
    .pl-px-xl,
    .px-px-xl {
        padding-left: 1px !important;
    }
    .pr-px-xl,
    .px-px-xl {
        padding-right: 1px !important;
    }
    .m-1-xl {
        margin: 0.5rem !important;
    }
    .mt-1-xl,
    .my-1-xl {
        margin-top: 0.5rem !important;
    }
    .mb-1-xl,
    .my-1-xl {
        margin-bottom: 0.5rem !important;
    }
    .ml-1-xl,
    .mx-1-xl {
        margin-left: 0.5rem !important;
    }
    .mr-1-xl,
    .mx-1-xl {
        margin-right: 0.5rem !important;
    }
    .p-1-xl {
        padding: 0.5rem !important;
    }
    .pt-1-xl,
    .py-1-xl {
        padding-top: 0.5rem !important;
    }
    .pb-1-xl,
    .py-1-xl {
        padding-bottom: 0.5rem !important;
    }
    .pl-1-xl,
    .px-1-xl {
        padding-left: 0.5rem !important;
    }
    .pr-1-xl,
    .px-1-xl {
        padding-right: 0.5rem !important;
    }
    .m-2-xl {
        margin: 1rem !important;
    }
    .mt-2-xl,
    .my-2-xl {
        margin-top: 1rem !important;
    }
    .mb-2-xl,
    .my-2-xl {
        margin-bottom: 1rem !important;
    }
    .ml-2-xl,
    .mx-2-xl {
        margin-left: 1rem !important;
    }
    .mr-2-xl,
    .mx-2-xl {
        margin-right: 1rem !important;
    }
    .p-2-xl {
        padding: 1rem !important;
    }
    .pt-2-xl,
    .py-2-xl {
        padding-top: 1rem !important;
    }
    .pb-2-xl,
    .py-2-xl {
        padding-bottom: 1rem !important;
    }
    .pl-2-xl,
    .px-2-xl {
        padding-left: 1rem !important;
    }
    .pr-2-xl,
    .px-2-xl {
        padding-right: 1rem !important;
    }
    .m-3-xl {
        margin: 1.5rem !important;
    }
    .mt-3-xl,
    .my-3-xl {
        margin-top: 1.5rem !important;
    }
    .mb-3-xl,
    .my-3-xl {
        margin-bottom: 1.5rem !important;
    }
    .ml-3-xl,
    .mx-3-xl {
        margin-left: 1.5rem !important;
    }
    .mr-3-xl,
    .mx-3-xl {
        margin-right: 1.5rem !important;
    }
    .p-3-xl {
        padding: 1.5rem !important;
    }
    .pt-3-xl,
    .py-3-xl {
        padding-top: 1.5rem !important;
    }
    .pb-3-xl,
    .py-3-xl {
        padding-bottom: 1.5rem !important;
    }
    .pl-3-xl,
    .px-3-xl {
        padding-left: 1.5rem !important;
    }
    .pr-3-xl,
    .px-3-xl {
        padding-right: 1.5rem !important;
    }
    .m-4-xl {
        margin: 2rem !important;
    }
    .mt-4-xl,
    .my-4-xl {
        margin-top: 2rem !important;
    }
    .mb-4-xl,
    .my-4-xl {
        margin-bottom: 2rem !important;
    }
    .ml-4-xl,
    .mx-4-xl {
        margin-left: 2rem !important;
    }
    .mr-4-xl,
    .mx-4-xl {
        margin-right: 2rem !important;
    }
    .p-4-xl {
        padding: 2rem !important;
    }
    .pt-4-xl,
    .py-4-xl {
        padding-top: 2rem !important;
    }
    .pb-4-xl,
    .py-4-xl {
        padding-bottom: 2rem !important;
    }
    .pl-4-xl,
    .px-4-xl {
        padding-left: 2rem !important;
    }
    .pr-4-xl,
    .px-4-xl {
        padding-right: 2rem !important;
    }
    .m-5-xl {
        margin: 2.5rem !important;
    }
    .mt-5-xl,
    .my-5-xl {
        margin-top: 2.5rem !important;
    }
    .mb-5-xl,
    .my-5-xl {
        margin-bottom: 2.5rem !important;
    }
    .ml-5-xl,
    .mx-5-xl {
        margin-left: 2.5rem !important;
    }
    .mr-5-xl,
    .mx-5-xl {
        margin-right: 2.5rem !important;
    }
    .p-5-xl {
        padding: 2.5rem !important;
    }
    .pt-5-xl,
    .py-5-xl {
        padding-top: 2.5rem !important;
    }
    .pb-5-xl,
    .py-5-xl {
        padding-bottom: 2.5rem !important;
    }
    .pl-5-xl,
    .px-5-xl {
        padding-left: 2.5rem !important;
    }
    .pr-5-xl,
    .px-5-xl {
        padding-right: 2.5rem !important;
    }
    .m-6-xl {
        margin: 3rem !important;
    }
    .mt-6-xl,
    .my-6-xl {
        margin-top: 3rem !important;
    }
    .mb-6-xl,
    .my-6-xl {
        margin-bottom: 3rem !important;
    }
    .ml-6-xl,
    .mx-6-xl {
        margin-left: 3rem !important;
    }
    .mr-6-xl,
    .mx-6-xl {
        margin-right: 3rem !important;
    }
    .p-6-xl {
        padding: 3rem !important;
    }
    .pt-6-xl,
    .py-6-xl {
        padding-top: 3rem !important;
    }
    .pb-6-xl,
    .py-6-xl {
        padding-bottom: 3rem !important;
    }
    .pl-6-xl,
    .px-6-xl {
        padding-left: 3rem !important;
    }
    .pr-6-xl,
    .px-6-xl {
        padding-right: 3rem !important;
    }
    .m-8-xl {
        margin: 4rem !important;
    }
    .mt-8-xl,
    .my-8-xl {
        margin-top: 4rem !important;
    }
    .mb-8-xl,
    .my-8-xl {
        margin-bottom: 4rem !important;
    }
    .ml-8-xl,
    .mx-8-xl {
        margin-left: 4rem !important;
    }
    .mr-8-xl,
    .mx-8-xl {
        margin-right: 4rem !important;
    }
    .p-8-xl {
        padding: 4rem !important;
    }
    .pt-8-xl,
    .py-8-xl {
        padding-top: 4rem !important;
    }
    .pb-8-xl,
    .py-8-xl {
        padding-bottom: 4rem !important;
    }
    .pl-8-xl,
    .px-8-xl {
        padding-left: 4rem !important;
    }
    .pr-8-xl,
    .px-8-xl {
        padding-right: 4rem !important;
    }
    .m-10-xl {
        margin: 5rem !important;
    }
    .mt-10-xl,
    .my-10-xl {
        margin-top: 5rem !important;
    }
    .mb-10-xl,
    .my-10-xl {
        margin-bottom: 5rem !important;
    }
    .ml-10-xl,
    .mx-10-xl {
        margin-left: 5rem !important;
    }
    .mr-10-xl,
    .mx-10-xl {
        margin-right: 5rem !important;
    }
    .p-10-xl {
        padding: 5rem !important;
    }
    .pt-10-xl,
    .py-10-xl {
        padding-top: 5rem !important;
    }
    .pb-10-xl,
    .py-10-xl {
        padding-bottom: 5rem !important;
    }
    .pl-10-xl,
    .px-10-xl {
        padding-left: 5rem !important;
    }
    .pr-10-xl,
    .px-10-xl {
        padding-right: 5rem !important;
    }
    .m-12-xl {
        margin: 6rem !important;
    }
    .mt-12-xl,
    .my-12-xl {
        margin-top: 6rem !important;
    }
    .mb-12-xl,
    .my-12-xl {
        margin-bottom: 6rem !important;
    }
    .ml-12-xl,
    .mx-12-xl {
        margin-left: 6rem !important;
    }
    .mr-12-xl,
    .mx-12-xl {
        margin-right: 6rem !important;
    }
    .p-12-xl {
        padding: 6rem !important;
    }
    .pt-12-xl,
    .py-12-xl {
        padding-top: 6rem !important;
    }
    .pb-12-xl,
    .py-12-xl {
        padding-bottom: 6rem !important;
    }
    .pl-12-xl,
    .px-12-xl {
        padding-left: 6rem !important;
    }
    .pr-12-xl,
    .px-12-xl {
        padding-right: 6rem !important;
    }
    .m-16-xl {
        margin: 8rem !important;
    }
    .mt-16-xl,
    .my-16-xl {
        margin-top: 8rem !important;
    }
    .mb-16-xl,
    .my-16-xl {
        margin-bottom: 8rem !important;
    }
    .ml-16-xl,
    .mx-16-xl {
        margin-left: 8rem !important;
    }
    .mr-16-xl,
    .mx-16-xl {
        margin-right: 8rem !important;
    }
    .p-16-xl {
        padding: 8rem !important;
    }
    .pt-16-xl,
    .py-16-xl {
        padding-top: 8rem !important;
    }
    .pb-16-xl,
    .py-16-xl {
        padding-bottom: 8rem !important;
    }
    .pl-16-xl,
    .px-16-xl {
        padding-left: 8rem !important;
    }
    .pr-16-xl,
    .px-16-xl {
        padding-right: 8rem !important;
    }
    .m-20-xl {
        margin: 10rem !important;
    }
    .mt-20-xl,
    .my-20-xl {
        margin-top: 10rem !important;
    }
    .mb-20-xl,
    .my-20-xl {
        margin-bottom: 10rem !important;
    }
    .ml-20-xl,
    .mx-20-xl {
        margin-left: 10rem !important;
    }
    .mr-20-xl,
    .mx-20-xl {
        margin-right: 10rem !important;
    }
    .p-20-xl {
        padding: 10rem !important;
    }
    .pt-20-xl,
    .py-20-xl {
        padding-top: 10rem !important;
    }
    .pb-20-xl,
    .py-20-xl {
        padding-bottom: 10rem !important;
    }
    .pl-20-xl,
    .px-20-xl {
        padding-left: 10rem !important;
    }
    .pr-20-xl,
    .px-20-xl {
        padding-right: 10rem !important;
    }
    .m-24-xl {
        margin: 12rem !important;
    }
    .mt-24-xl,
    .my-24-xl {
        margin-top: 12rem !important;
    }
    .mb-24-xl,
    .my-24-xl {
        margin-bottom: 12rem !important;
    }
    .ml-24-xl,
    .mx-24-xl {
        margin-left: 12rem !important;
    }
    .mr-24-xl,
    .mx-24-xl {
        margin-right: 12rem !important;
    }
    .p-24-xl {
        padding: 12rem !important;
    }
    .pt-24-xl,
    .py-24-xl {
        padding-top: 12rem !important;
    }
    .pb-24-xl,
    .py-24-xl {
        padding-bottom: 12rem !important;
    }
    .pl-24-xl,
    .px-24-xl {
        padding-left: 12rem !important;
    }
    .pr-24-xl,
    .px-24-xl {
        padding-right: 12rem !important;
    }
    .m-32-xl {
        margin: 16rem !important;
    }
    .mt-32-xl,
    .my-32-xl {
        margin-top: 16rem !important;
    }
    .mb-32-xl,
    .my-32-xl {
        margin-bottom: 16rem !important;
    }
    .ml-32-xl,
    .mx-32-xl {
        margin-left: 16rem !important;
    }
    .mr-32-xl,
    .mx-32-xl {
        margin-right: 16rem !important;
    }
    .p-32-xl {
        padding: 16rem !important;
    }
    .pt-32-xl,
    .py-32-xl {
        padding-top: 16rem !important;
    }
    .pb-32-xl,
    .py-32-xl {
        padding-bottom: 16rem !important;
    }
    .pl-32-xl,
    .px-32-xl {
        padding-left: 16rem !important;
    }
    .pr-32-xl,
    .px-32-xl {
        padding-right: 16rem !important;
    }
    .m-48-xl {
        margin: 24rem !important;
    }
    .mt-48-xl,
    .my-48-xl {
        margin-top: 24rem !important;
    }
    .mb-48-xl,
    .my-48-xl {
        margin-bottom: 24rem !important;
    }
    .ml-48-xl,
    .mx-48-xl {
        margin-left: 24rem !important;
    }
    .mr-48-xl,
    .mx-48-xl {
        margin-right: 24rem !important;
    }
    .p-48-xl {
        padding: 24rem !important;
    }
    .pt-48-xl,
    .py-48-xl {
        padding-top: 24rem !important;
    }
    .pb-48-xl,
    .py-48-xl {
        padding-bottom: 24rem !important;
    }
    .pl-48-xl,
    .px-48-xl {
        padding-left: 24rem !important;
    }
    .pr-48-xl,
    .px-48-xl {
        padding-right: 24rem !important;
    }
    .m-64-xl {
        margin: 32rem !important;
    }
    .mt-64-xl,
    .my-64-xl {
        margin-top: 32rem !important;
    }
    .mb-64-xl,
    .my-64-xl {
        margin-bottom: 32rem !important;
    }
    .ml-64-xl,
    .mx-64-xl {
        margin-left: 32rem !important;
    }
    .mr-64-xl,
    .mx-64-xl {
        margin-right: 32rem !important;
    }
    .p-64-xl {
        padding: 32rem !important;
    }
    .pt-64-xl,
    .py-64-xl {
        padding-top: 32rem !important;
    }
    .pb-64-xl,
    .py-64-xl {
        padding-bottom: 32rem !important;
    }
    .pl-64-xl,
    .px-64-xl {
        padding-left: 32rem !important;
    }
    .pr-64-xl,
    .px-64-xl {
        padding-right: 32rem !important;
    }
    .ml-auto-xl,
    .mx-auto-xl {
        margin-left: auto !important;
    }
    .mr-auto-xl,
    .mx-auto-xl {
        margin-right: auto !important;
    }
    .mt-auto-xl,
    .my-auto-xl {
        margin-top: auto !important;
    }
    .mb-auto-xl,
    .my-auto-xl {
        margin-bottom: auto !important;
    }
}
.btn,
[type='button'],
[type='reset'],
[type='submit'],
button {
    line-height: 2rem;
    overflow: hidden;
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    cursor: pointer;
    text-align: center;
    transition: all var(--animation-duration);
    background-color: rgba(var(--btn-color), var(--bg-opacity));
    border-color: rgba(var(--btn-border-color), var(--color-opacity));
    color: rgba(var(--btn-fg), var(--color-opacity));
    font-size: 0.75rem;
    font-weight: inherit;
    letter-spacing: 0.03rem;
    text-transform: uppercase;
    font-family:
        Montserrat,
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        'Helvetica Neue',
        Arial,
        sans-serif,
        'Apple Color Emoji',
        'Segoe UI Emoji',
        'Segoe UI Symbol';
    min-width: 2rem;
    user-select: none;
    margin-bottom: 1rem;
    outline: 0;
    --btn-color: 248, 249, 250;
    --btn-fg: 73, 80, 87;
    --btn-border-color: 233, 236, 239;
    --btn-hover-color: 241, 243, 245;
}
.btn:hover,
[type='button']:hover,
[type='reset']:hover,
[type='submit']:hover,
button:hover {
    background-color: rgba(var(--btn-hover-color), var(--bg-opacity));
    transition: all var(--animation-duration);
    color: rgba(var(--btn-fg), var(--color-opacity));
}
.btn:active,
[type='button']:active,
[type='reset']:active,
[type='submit']:active,
button:active {
    transition: var(--animation-duration) ease;
}
.btn:focus,
[type='button']:focus,
[type='reset']:focus,
[type='submit']:focus,
button:focus {
    outline: 0;
}
.btn:focus:not([disabled]),
[type='button']:focus:not([disabled]),
[type='reset']:focus:not([disabled]),
[type='submit']:focus:not([disabled]),
button:focus:not([disabled]) {
    box-shadow: var(--btn-shadow);
}
.btn.btn--disabled,
.btn:disabled,
[type='button'].btn--disabled,
[type='button']:disabled,
[type='reset'].btn--disabled,
[type='reset']:disabled,
[type='submit'].btn--disabled,
[type='submit']:disabled,
button.btn--disabled,
button:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}
.btn.btn--disabled:active,
.btn:disabled:active,
[type='button'].btn--disabled:active,
[type='button']:disabled:active,
[type='reset'].btn--disabled:active,
[type='reset']:disabled:active,
[type='submit'].btn--disabled:active,
[type='submit']:disabled:active,
button.btn--disabled:active,
button:disabled:active {
    pointer-events: none;
}
.btn.outline,
[type='button'].outline,
[type='reset'].outline,
[type='submit'].outline,
button.outline {
    --btn-color: transparent;
}
.btn.outline:hover,
[type='button'].outline:hover,
[type='reset'].outline:hover,
[type='submit'].outline:hover,
button.outline:hover {
    --btn-color: 233, 236, 239;
}
.btn.loading:active::after,
[type='button'].loading:active::after,
[type='reset'].loading:active::after,
[type='submit'].loading:active::after,
button.loading:active::after {
    border-radius: 50%;
    border-right-color: transparent;
    border-top-color: transparent;
    transition: var(--animation-duration) ease;
}
.btn.btn-animated,
[type='button'].btn-animated,
[type='reset'].btn-animated,
[type='submit'].btn-animated,
button.btn-animated {
    transition: calc(var(--animation-duration) / 2) ease;
}
.btn.btn-animated:active,
[type='button'].btn-animated:active,
[type='reset'].btn-animated:active,
[type='submit'].btn-animated:active,
button.btn-animated:active {
    transform: scale(0.95);
    transition: calc(var(--animation-duration) / 2) ease;
}
.btn.btn-close,
[type='button'].btn-close,
[type='reset'].btn-close,
[type='submit'].btn-close,
button.btn-close {
    background-color: rgba(10, 10, 10, 0.2);
    border: none;
    border-radius: 290486px;
    cursor: pointer;
    display: inline-block;
    flex-grow: 0;
    flex-shrink: 0;
    font-size: 0;
    height: 20px;
    margin: 0;
    outline: 0;
    position: relative;
    vertical-align: top;
    width: 20px;
    padding: 0;
    min-width: 20px;
}
.btn.btn-close:hover,
[type='button'].btn-close:hover,
[type='reset'].btn-close:hover,
[type='submit'].btn-close:hover,
button.btn-close:hover {
    background-color: rgba(10, 10, 10, 0.3);
}
.btn.btn-close::before,
[type='button'].btn-close::before,
[type='reset'].btn-close::before,
[type='submit'].btn-close::before,
button.btn-close::before {
    background-color: var(--cirrus-bg);
    content: '';
    display: block;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
    transform-origin: center center;
    height: 2px;
    width: 50%;
}
.btn.btn-close::after,
[type='button'].btn-close::after,
[type='reset'].btn-close::after,
[type='submit'].btn-close::after,
button.btn-close::after {
    background-color: var(--cirrus-bg);
    content: '';
    display: block;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
    transform-origin: center center;
    height: 50%;
    width: 2px;
}
.btn.btn-transparent,
[type='button'].btn-transparent,
[type='reset'].btn-transparent,
[type='submit'].btn-transparent,
button.btn-transparent {
    --btn-color: transparent;
    --btn-fg: 54, 54, 54;
    --btn-border-color: transparent;
    --btn-shadow: 0 0 0 0.2rem rgba(246, 249, 252, 0.5);
    --btn-hover-color: 0, 0, 0;
}
.btn.btn-transparent:hover,
[type='button'].btn-transparent:hover,
[type='reset'].btn-transparent:hover,
[type='submit'].btn-transparent:hover,
button.btn-transparent:hover {
    --bg-opacity: 0.1;
}
.btn.btn-transparent.outline,
[type='button'].btn-transparent.outline,
[type='reset'].btn-transparent.outline,
[type='submit'].btn-transparent.outline,
button.btn-transparent.outline {
    --btn-fg: 54, 54, 54;
}
.btn.btn-light,
[type='button'].btn-light,
[type='reset'].btn-light,
[type='submit'].btn-light,
button.btn-light {
    --btn-color: 246, 249, 252;
    --btn-fg: 54, 54, 54;
    --btn-border-color: 246, 249, 252;
    --btn-shadow: 0 0 0 0.2rem rgba(246, 249, 252, 0.5);
    --btn-hover-color: 208, 224, 239;
}
.btn.btn-black,
[type='button'].btn-black,
[type='reset'].btn-black,
[type='submit'].btn-black,
button.btn-black {
    --btn-color: 0, 0, 0;
    --btn-fg: 246, 249, 252;
    --btn-border-color: 0, 0, 0;
    --btn-shadow: 0 0 0 0.2rem rgba(54, 54, 54, 0.5);
    --btn-hover-color: 0, 0, 0;
}
.btn.btn-primary,
[type='button'].btn-primary,
[type='reset'].btn-primary,
[type='submit'].btn-primary,
button.btn-primary {
    --btn-color: 240, 61, 77;
    --btn-fg: 246, 249, 252;
    --btn-border-color: 240, 61, 77;
    --btn-shadow: 0 0 0 0.2rem rgba(240, 61, 77, 0.5);
    --btn-hover-color: 232, 18, 37;
}
.btn.btn-dark,
[type='button'].btn-dark,
[type='reset'].btn-dark,
[type='submit'].btn-dark,
button.btn-dark {
    --btn-color: 54, 54, 54;
    --btn-fg: 246, 249, 252;
    --btn-border-color: 54, 54, 54;
    --btn-shadow: 0 0 0 0.2rem rgba(54, 54, 54, 0.5);
    --btn-hover-color: 29, 29, 29;
}
.btn.btn-link,
[type='button'].btn-link,
[type='reset'].btn-link,
[type='submit'].btn-link,
button.btn-link {
    --btn-color: 94, 92, 199;
    --btn-fg: 246, 249, 252;
    --btn-border-color: 94, 92, 199;
    --btn-shadow: 0 0 0 0.2rem rgba(94, 92, 199, 0.5);
    --btn-hover-color: 64, 61, 179;
}
.btn.btn-info,
[type='button'].btn-info,
[type='reset'].btn-info,
[type='submit'].btn-info,
button.btn-info {
    --btn-color: 41, 114, 250;
    --btn-fg: 246, 249, 252;
    --btn-border-color: 41, 114, 250;
    --btn-shadow: 0 0 0 0.2rem rgba(41, 114, 250, 0.5);
    --btn-hover-color: 5, 85, 235;
}
.btn.btn-success,
[type='button'].btn-success,
[type='reset'].btn-success,
[type='submit'].btn-success,
button.btn-success {
    --btn-color: 13, 209, 87;
    --btn-fg: 246, 249, 252;
    --btn-border-color: 13, 209, 87;
    --btn-shadow: 0 0 0 0.2rem rgba(13, 209, 87, 0.5);
    --btn-hover-color: 10, 161, 67;
}
.btn.btn-warning,
[type='button'].btn-warning,
[type='reset'].btn-warning,
[type='submit'].btn-warning,
button.btn-warning {
    --btn-color: 250, 182, 51;
    --btn-fg: 54, 54, 54;
    --btn-border-color: 250, 182, 51;
    --btn-shadow: 0 0 0 0.2rem rgba(250, 182, 51, 0.5);
    --btn-hover-color: 244, 163, 6;
}
.btn.btn-danger,
[type='button'].btn-danger,
[type='reset'].btn-danger,
[type='submit'].btn-danger,
button.btn-danger {
    --btn-color: 251, 65, 67;
    --btn-fg: 246, 249, 252;
    --btn-border-color: 251, 65, 67;
    --btn-shadow: 0 0 0 0.2rem rgba(251, 65, 67, 0.5);
    --btn-hover-color: 250, 15, 18;
}
.btn.btn--xs,
[type='button'].btn--xs,
[type='reset'].btn--xs,
[type='submit'].btn--xs,
button.btn--xs {
    padding: 0 0.5rem;
    font-size: 50%;
}
.btn.btn--sm,
[type='button'].btn--sm,
[type='reset'].btn--sm,
[type='submit'].btn--sm,
button.btn--sm {
    padding: 0.25rem 1rem;
    font-size: 70%;
}
.btn.btn--md,
[type='button'].btn--md,
[type='reset'].btn--md,
[type='submit'].btn--md,
button.btn--md {
    padding: 0.5rem 1.5rem;
    font-size: 90%;
}
.btn.btn--lg,
[type='button'].btn--lg,
[type='reset'].btn--lg,
[type='submit'].btn--lg,
button.btn--lg {
    padding: 0.75rem 2rem;
    font-size: 110%;
}
.btn.btn--xl,
[type='button'].btn--xl,
[type='reset'].btn--xl,
[type='submit'].btn--xl,
button.btn--xl {
    padding: 1rem 2.5rem;
    font-size: 130%;
}
.btn .fa-wrapper.pad-right,
[type='button'] .fa-wrapper.pad-right,
[type='reset'] .fa-wrapper.pad-right,
[type='submit'] .fa-wrapper.pad-right,
button .fa-wrapper.pad-right {
    margin-right: 0.4rem;
}
.btn .fa-wrapper.pad-left,
[type='button'] .fa-wrapper.pad-left,
[type='reset'] .fa-wrapper.pad-left,
[type='submit'] .fa-wrapper.pad-left,
button .fa-wrapper.pad-left {
    margin-left: 0.4rem;
}
.btn span:first-child,
[type='button'] span:first-child,
[type='reset'] span:first-child,
[type='submit'] span:first-child,
button span:first-child {
    margin-right: 0.2rem;
}
.btn span:last-child,
[type='button'] span:last-child,
[type='reset'] span:last-child,
[type='submit'] span:last-child,
button span:last-child {
    margin-left: 0.2rem;
}
a.btn {
    display: inline-flex;
}
[class*=' btn-']:not(.btn-container):not(.btn-close),
[class^='btn-']:not(.btn-container):not(.btn-close) {
    background-color: rgba(var(--btn-color), var(--bg-opacity));
    border: 1px solid rgba(var(--btn-border-color), var(--color-opacity));
    color: rgba(var(--btn-fg), var(--color-opacity));
    transition: all var(--animation-duration);
}
[class*=' btn-']:not(.btn-container):not(.btn-close):hover,
[class^='btn-']:not(.btn-container):not(.btn-close):hover {
    background-color: rgba(var(--btn-hover-color), var(--bg-opacity));
    border-color: rgba(var(--btn-border-color), var(--color-opacity));
    transition: all var(--animation-duration);
}
[class*=' btn-']:not(.btn-container):not(.btn-close).outline,
[class^='btn-']:not(.btn-container):not(.btn-close).outline {
    background-color: transparent;
    color: rgba(var(--btn-color), var(--color-opacity));
}
[class*=' btn-']:not(.btn-container):not(.btn-close).outline:hover,
[class^='btn-']:not(.btn-container):not(.btn-close).outline:hover {
    background-color: rgba(var(--btn-hover-color), var(--bg-opacity));
    color: rgba(var(--btn-fg), var(--color-opacity));
    transition: all var(--animation-duration);
}
[class*=' btn-']:not(.btn-container):not(.btn-close).outline.btn-transparent,
[class^='btn-']:not(.btn-container):not(.btn-close).outline.btn-transparent {
    color: 73, 80, 87 !important;
}
.loading.btn-accent:after {
    border: 2px solid #fff;
    border-right-color: transparent;
    border-top-color: transparent;
}
.btn-group {
    display: inline-flex;
}
.btn-group .btn,
.btn-group [type='button'],
.btn-group [type='reset'],
.btn-group [type='submit'],
.btn-group button {
    flex: 1 0 auto;
    margin: 0;
}
.btn-group .btn:first-child:not(:last-child),
.btn-group [type='button']:first-child:not(:last-child),
.btn-group [type='reset']:first-child:not(:last-child),
.btn-group [type='submit']:first-child:not(:last-child),
.btn-group button:first-child:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.btn-group .btn:last-child:not(:first-child),
.btn-group [type='button']:last-child:not(:first-child),
.btn-group [type='reset']:last-child:not(:first-child),
.btn-group [type='submit']:last-child:not(:first-child),
.btn-group button:last-child:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    margin-left: -1px;
}
.btn-group .btn:not(:first-child):not(:last-child),
.btn-group [type='button']:not(:first-child):not(:last-child),
.btn-group [type='reset']:not(:first-child):not(:last-child),
.btn-group [type='submit']:not(:first-child):not(:last-child),
.btn-group button:not(:first-child):not(:last-child) {
    border-radius: 0;
    margin-left: -1px;
}
.btn-group .btn:focus,
.btn-group [type='button']:focus,
.btn-group [type='reset']:focus,
.btn-group [type='submit']:focus,
.btn-group button:focus {
    z-index: 1;
}
.btn-group.btn-group-fill {
    display: flex;
}
.btn-group.btn-group-fill .btn,
.btn-group.btn-group-fill [type='button'],
.btn-group.btn-group-fill [type='reset'],
.btn-group.btn-group-fill [type='submit'],
.btn-group.btn-group-fill button {
    flex: 1 0;
}
.btn-group.btn-group-fill:focus {
    z-index: 1;
}
@media screen and (max-width: 767px) {
    .btn-group {
        display: flex;
        flex-direction: column;
    }
    .btn-group .btn,
    .btn-group [type='button'],
    .btn-group [type='reset'],
    .btn-group [type='submit'],
    .btn-group button {
        margin-bottom: -1px;
    }
    .btn-group .btn:first-child:not(:last-child),
    .btn-group [type='button']:first-child:not(:last-child),
    .btn-group [type='reset']:first-child:not(:last-child),
    .btn-group [type='submit']:first-child:not(:last-child),
    .btn-group button:first-child:not(:last-child) {
        border-radius: 0.25rem 0.25rem 0 0;
    }
    .btn-group .btn:not(:first-child):not(:last-child),
    .btn-group [type='button']:not(:first-child):not(:last-child),
    .btn-group [type='reset']:not(:first-child):not(:last-child),
    .btn-group [type='submit']:not(:first-child):not(:last-child),
    .btn-group button:not(:first-child):not(:last-child) {
        margin-left: 0;
    }
    .btn-group .btn:last-child:not(:first-child),
    .btn-group [type='button']:last-child:not(:first-child),
    .btn-group [type='reset']:last-child:not(:first-child),
    .btn-group [type='submit']:last-child:not(:first-child),
    .btn-group button:last-child:not(:first-child) {
        border-radius: 0 0 0.25rem 0.25rem;
        margin-left: 0;
    }
}
code {
    --cirrus-code-label-fg: #868e96;
    padding: 0.3rem;
    margin: 0.5em 0;
    overflow: auto;
    background-color: var(--cirrus-code-bg);
    color: var(--cirrus-code-fg);
    border-radius: 3px;
}
code.dark {
    --cirrus-code-bg: #343a40;
    --cirrus-code-fg: #f8f9fa;
    --cirrus-border-left-bg: #212529;
    --cirrus-code-label-fg: #ced4da;
}
pre > code {
    --cirrus-code-bg: #f8f9fa;
    --cirrus-code-fg: #343a40;
    --cirrus-border-left-bg: #e9ecef;
    background-color: var(--cirrus-code-bg);
    font-size: 14px;
    display: block;
    padding: 1rem;
    white-space: pre-wrap;
    word-wrap: break-word;
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New',
        monospace;
    text-align: left;
    line-height: 1.5;
    tab-size: 4;
    -moz-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
    border-left: 0.3rem solid var(--cirrus-border-left-bg);
    margin: 0;
    position: relative;
    color: var(--cirrus-code-fg);
}
pre > code[data-lang]:not([data-lang='']) {
    padding: 2rem 1.5rem 1rem;
}
pre > code::before {
    color: var(--cirrus-code-label-fg);
    content: attr(data-lang);
    font-size: 0.9rem;
    position: absolute;
    right: 1rem;
    top: 0.7rem;
}
.footer {
    background-color: #343a40;
    padding: 6rem 0;
    text-align: center;
    margin-top: 5rem;
    width: 100%;
}
.footer.footer--fixed {
    bottom: 0;
    position: fixed;
}
.footer p {
    color: #868e96;
}
.footer ul {
    margin: 0.5rem 0;
}
.footer .footer__title {
    text-align: center;
    letter-spacing: 6px;
    position: relative;
    padding-bottom: 10px;
}
.footer .footer__list-title {
    color: #ced4da;
    font-size: 75%;
    text-transform: uppercase;
    font-weight: bolder;
}
.footer .footer__list-title::after {
    content: '';
    display: block;
    width: 10%;
    margin: auto;
    border-bottom: 2px solid;
    border-color: #343b49;
}
.footer .footer__list-item,
.footer ul a .footer__list-item {
    margin: 0.1rem;
    color: #868e96;
    transition: all var(--animation-duration);
    font-size: 75%;
    text-transform: uppercase;
}
input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not(
        [type='reset']
    ),
select {
    width: 100%;
    border: 1px solid rgba(222, 226, 230, var(--border-opacity, 1));
    border-radius: 3px;
    font-family:
        'Nunito Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        'Helvetica Neue',
        Arial,
        sans-serif,
        'Apple Color Emoji',
        'Segoe UI Emoji',
        'Segoe UI Symbol';
    font-size: var(--font-size-m);
    letter-spacing: 0.02rem;
    transition: box-shadow 0.3s;
    outline: 0;
    padding: 0.85rem 1.1rem;
}
input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not(
        [type='reset']
    )
    .input-focused,
input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not(
        [type='reset']
    ):focus,
select .input-focused,
select:focus {
    border-color: #3dabf0;
    box-shadow:
        0 0 0 0.2rem rgba(61, 171, 240, 0.45),
        inset 0 1px 8px rgba(0, 0, 0, 0.07);
    outline: 0;
}
input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not(
        [type='reset']
    )
    .input-focused[type='range'],
input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not(
        [type='reset']
    ):focus[type='range'],
select .input-focused[type='range'],
select:focus[type='range'] {
    box-shadow: none;
}
input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not(
        [type='reset']
    )
    .input-focused.input-success,
input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not(
        [type='reset']
    ):focus.input-success,
select .input-focused.input-success,
select:focus.input-success {
    border-color: #0dd157;
    background-color: rgba(0, 224, 0, 0.05) !important;
}
input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not(
        [type='reset']
    )
    .input-focused.input-success:focus,
input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not(
        [type='reset']
    ):focus.input-success:focus,
select .input-focused.input-success:focus,
select:focus.input-success:focus {
    box-shadow:
        0 0 0 0.2rem rgba(13, 209, 87, 0.55),
        inset 0 1px 8px rgba(0, 0, 0, 0.07);
}
input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not(
        [type='reset']
    )
    .input-focused.input-error,
input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not(
        [type='reset']
    ):focus.input-error,
select .input-focused.input-error,
select:focus.input-error {
    border-color: #fb4143;
    background-color: rgba(244, 67, 54, 0.05) !important;
}
input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not(
        [type='reset']
    )
    .input-focused.input-error:focus,
input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not(
        [type='reset']
    ):focus.input-error:focus,
select .input-focused.input-error:focus,
select:focus.input-error:focus {
    box-shadow:
        0 0 0 0.2rem rgba(251, 65, 67, 0.55),
        inset 0 1px 8px rgba(0, 0, 0, 0.07);
}
input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not(
        [type='reset']
    ).input--xs,
select.input--xs {
    font-size: 0.75rem;
    padding: 0.35rem 0.9rem;
}
input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not(
        [type='reset']
    ).input--sm,
select.input--sm {
    font-size: 0.875rem;
    padding: 0.55rem 1rem;
}
input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not(
        [type='reset']
    ).input--lg,
select.input--lg {
    font-size: 1.25rem;
}
input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not(
        [type='reset']
    ).input--xl,
select.input--xl {
    font-size: 1.5rem;
}
input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not(
        [type='reset']
    ).input-contains-icon,
input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not(
        [type='reset']
    ).input-contains-icon-left,
select.input-contains-icon,
select.input-contains-icon-left {
    padding-left: 2.75rem;
}
input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not(
        [type='reset']
    ).input-contains-icon-right,
select.input-contains-icon-right {
    padding-right: 2.75rem;
}
input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not(
        [type='reset']
    ).input-contains-icon-right.input-xs,
input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not(
        [type='reset']
    ).input-contains-icon.input--xs,
select.input-contains-icon-right.input-xs,
select.input-contains-icon.input--xs {
    padding-left: 2rem;
}
input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not(
        [type='reset']
    ).input-contains-icon-right.input-sm,
input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not(
        [type='reset']
    ).input-contains-icon.input--sm,
select.input-contains-icon-right.input-sm,
select.input-contains-icon.input--sm {
    padding-left: 2.5rem;
}
input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not(
        [type='reset']
    ).input-contains-icon-right.input-lg,
input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not(
        [type='reset']
    ).input-contains-icon.input--lg,
select.input-contains-icon-right.input-lg,
select.input-contains-icon.input--lg {
    padding-left: 3.5rem;
}
input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not(
        [type='reset']
    ).input-contains-icon-right.input-xl,
input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not(
        [type='reset']
    ).input-contains-icon.input--xl,
select.input-contains-icon-right.input-xl,
select.input-contains-icon.input--xl {
    padding-left: 4rem;
}
input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not(
        [type='reset']
    ).input-contains-icon-left.input--xs
    ~ .icon,
input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not(
        [type='reset']
    ).input-contains-icon-right.input--xs
    ~ .icon.icon-right,
input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not(
        [type='reset']
    ).input-contains-icon.input--xs
    ~ .icon,
select.input-contains-icon-left.input--xs ~ .icon,
select.input-contains-icon-right.input--xs ~ .icon.icon-right,
select.input-contains-icon.input--xs ~ .icon {
    line-height: 1.75rem;
    width: 1.75rem;
    font-size: 7px;
}
input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not(
        [type='reset']
    ).input-contains-icon-left.input--sm
    ~ .icon,
input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not(
        [type='reset']
    ).input-contains-icon-right.input--sm
    ~ .icon.icon-right,
input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not(
        [type='reset']
    ).input-contains-icon.input--sm
    ~ .icon,
select.input-contains-icon-left.input--sm ~ .icon,
select.input-contains-icon-right.input--sm ~ .icon.icon-right,
select.input-contains-icon.input--sm ~ .icon {
    width: 2.5rem;
    font-size: 14px;
}
input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not(
        [type='reset']
    ).input-contains-icon-left.input--lg
    ~ .icon,
input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not(
        [type='reset']
    ).input-contains-icon-right.input--lg
    ~ .icon.icon-right,
input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not(
        [type='reset']
    ).input-contains-icon.input--lg
    ~ .icon,
select.input-contains-icon-left.input--lg ~ .icon,
select.input-contains-icon-right.input--lg ~ .icon.icon-right,
select.input-contains-icon.input--lg ~ .icon {
    line-height: 3.5rem;
    width: 3.5rem;
    font-size: 28px;
}
input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not(
        [type='reset']
    ).input-contains-icon-left.input--xl
    ~ .icon,
input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not(
        [type='reset']
    ).input-contains-icon-right.input--xl
    ~ .icon.icon-right,
input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not(
        [type='reset']
    ).input-contains-icon.input--xl
    ~ .icon,
select.input-contains-icon-left.input--xl ~ .icon,
select.input-contains-icon-right.input--xl ~ .icon.icon-right,
select.input-contains-icon.input--xl ~ .icon {
    line-height: 2.5rem;
    width: 3.75rem;
    font-size: 35px;
}
input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not(
        [type='reset']
    ).search,
input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not(
        [type='reset']
    )[type='search'],
select.search,
select[type='search'] {
    background-repeat: no-repeat;
    background-position: left 0.6rem center;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path opacity="0.45" d="M14.891,14.39l-0.5.5a0.355,0.355,0,0,1-.5,0L9.526,10.529a5.3,5.3,0,1,1,2.106-4.212,5.268,5.268,0,0,1-1.1,3.21l4.362,4.362A0.354,0.354,0,0,1,14.891,14.39ZM6.316,2.418a3.9,3.9,0,1,0,3.9,3.9A3.9,3.9,0,0,0,6.316,2.418Z"/></svg>');
    padding-left: 2rem !important;
}
input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not(
        [type='reset']
    )[type='color'],
select[type='color'] {
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
    transition: 0.3s;
    outline: 0;
    position: relative;
    height: 3rem;
    background-color: #fff;
    padding: 0.55rem 0.8rem !important;
}
input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not(
        [type='reset']
    )[type='range'],
select[type='range'] {
    outline: 0;
    padding: 0;
}
input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not(
        [type='reset']
    ).input-success,
select.input-success {
    border-color: #0dd157;
    background-color: rgba(0, 224, 0, 0.05) !important;
}
input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not(
        [type='reset']
    ).input-success:focus,
select.input-success:focus {
    box-shadow:
        0 0 0 0.2rem rgba(13, 209, 87, 0.55),
        inset 0 1px 8px rgba(0, 0, 0, 0.07);
}
input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not(
        [type='reset']
    ).input-error,
select.input-error {
    border-color: #fb4143;
    background-color: rgba(244, 67, 54, 0.05) !important;
}
input:not([type='checkbox']):not([type='radio']):not([type='submit']):not([type='button']):not(
        [type='reset']
    ).input-error:focus,
select.input-error:focus {
    box-shadow:
        0 0 0 0.2rem rgba(251, 65, 67, 0.55),
        inset 0 1px 8px rgba(0, 0, 0, 0.07);
}
textarea,
textarea[type='text'] {
    width: 100%;
    border: 1px solid rgba(222, 226, 230, var(--border-opacity, 1));
    border-radius: 3px;
    font-family:
        'Nunito Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        'Helvetica Neue',
        Arial,
        sans-serif,
        'Apple Color Emoji',
        'Segoe UI Emoji',
        'Segoe UI Symbol';
    font-size: var(--font-size-m);
    letter-spacing: 0.02rem;
    transition: box-shadow 0.3s;
    outline: 0;
    padding: 0.85rem 1.1rem;
    min-height: 8rem;
    line-height: 1.5rem;
    resize: vertical;
}
textarea .input-focused,
textarea:focus,
textarea[type='text'] .input-focused,
textarea[type='text']:focus {
    border-color: #3dabf0;
    box-shadow:
        0 0 0 0.2rem rgba(61, 171, 240, 0.45),
        inset 0 1px 8px rgba(0, 0, 0, 0.07);
    outline: 0;
}
textarea .input-focused[type='range'],
textarea:focus[type='range'],
textarea[type='text'] .input-focused[type='range'],
textarea[type='text']:focus[type='range'] {
    box-shadow: none;
}
textarea .input-focused.input-success,
textarea:focus.input-success,
textarea[type='text'] .input-focused.input-success,
textarea[type='text']:focus.input-success {
    border-color: #0dd157;
    background-color: rgba(0, 224, 0, 0.05) !important;
}
textarea .input-focused.input-success:focus,
textarea:focus.input-success:focus,
textarea[type='text'] .input-focused.input-success:focus,
textarea[type='text']:focus.input-success:focus {
    box-shadow:
        0 0 0 0.2rem rgba(13, 209, 87, 0.55),
        inset 0 1px 8px rgba(0, 0, 0, 0.07);
}
textarea .input-focused.input-error,
textarea:focus.input-error,
textarea[type='text'] .input-focused.input-error,
textarea[type='text']:focus.input-error {
    border-color: #fb4143;
    background-color: rgba(244, 67, 54, 0.05) !important;
}
textarea .input-focused.input-error:focus,
textarea:focus.input-error:focus,
textarea[type='text'] .input-focused.input-error:focus,
textarea[type='text']:focus.input-error:focus {
    box-shadow:
        0 0 0 0.2rem rgba(251, 65, 67, 0.55),
        inset 0 1px 8px rgba(0, 0, 0, 0.07);
}
textarea.input--xs,
textarea[type='text'].input--xs {
    font-size: 0.75rem;
    padding: 0.35rem 0.9rem;
}
textarea.input--sm,
textarea[type='text'].input--sm {
    font-size: 0.875rem;
    padding: 0.55rem 1rem;
}
textarea.input--lg,
textarea[type='text'].input--lg {
    font-size: 1.25rem;
}
textarea.input--xl,
textarea[type='text'].input--xl {
    font-size: 1.5rem;
}
textarea.input-contains-icon,
textarea.input-contains-icon-left,
textarea[type='text'].input-contains-icon,
textarea[type='text'].input-contains-icon-left {
    padding-left: 2.75rem;
}
textarea.input-contains-icon-right,
textarea[type='text'].input-contains-icon-right {
    padding-right: 2.75rem;
}
textarea.input-contains-icon-right.input-xs,
textarea.input-contains-icon.input--xs,
textarea[type='text'].input-contains-icon-right.input-xs,
textarea[type='text'].input-contains-icon.input--xs {
    padding-left: 2rem;
}
textarea.input-contains-icon-right.input-sm,
textarea.input-contains-icon.input--sm,
textarea[type='text'].input-contains-icon-right.input-sm,
textarea[type='text'].input-contains-icon.input--sm {
    padding-left: 2.5rem;
}
textarea.input-contains-icon-right.input-lg,
textarea.input-contains-icon.input--lg,
textarea[type='text'].input-contains-icon-right.input-lg,
textarea[type='text'].input-contains-icon.input--lg {
    padding-left: 3.5rem;
}
textarea.input-contains-icon-right.input-xl,
textarea.input-contains-icon.input--xl,
textarea[type='text'].input-contains-icon-right.input-xl,
textarea[type='text'].input-contains-icon.input--xl {
    padding-left: 4rem;
}
textarea.input-contains-icon-left.input--xs ~ .icon,
textarea.input-contains-icon-right.input--xs ~ .icon.icon-right,
textarea.input-contains-icon.input--xs ~ .icon,
textarea[type='text'].input-contains-icon-left.input--xs ~ .icon,
textarea[type='text'].input-contains-icon-right.input--xs ~ .icon.icon-right,
textarea[type='text'].input-contains-icon.input--xs ~ .icon {
    line-height: 1.75rem;
    width: 1.75rem;
    font-size: 7px;
}
textarea.input-contains-icon-left.input--sm ~ .icon,
textarea.input-contains-icon-right.input--sm ~ .icon.icon-right,
textarea.input-contains-icon.input--sm ~ .icon,
textarea[type='text'].input-contains-icon-left.input--sm ~ .icon,
textarea[type='text'].input-contains-icon-right.input--sm ~ .icon.icon-right,
textarea[type='text'].input-contains-icon.input--sm ~ .icon {
    width: 2.5rem;
    font-size: 14px;
}
textarea.input-contains-icon-left.input--lg ~ .icon,
textarea.input-contains-icon-right.input--lg ~ .icon.icon-right,
textarea.input-contains-icon.input--lg ~ .icon,
textarea[type='text'].input-contains-icon-left.input--lg ~ .icon,
textarea[type='text'].input-contains-icon-right.input--lg ~ .icon.icon-right,
textarea[type='text'].input-contains-icon.input--lg ~ .icon {
    line-height: 3.5rem;
    width: 3.5rem;
    font-size: 28px;
}
textarea.input-contains-icon-left.input--xl ~ .icon,
textarea.input-contains-icon-right.input--xl ~ .icon.icon-right,
textarea.input-contains-icon.input--xl ~ .icon,
textarea[type='text'].input-contains-icon-left.input--xl ~ .icon,
textarea[type='text'].input-contains-icon-right.input--xl ~ .icon.icon-right,
textarea[type='text'].input-contains-icon.input--xl ~ .icon {
    line-height: 2.5rem;
    width: 3.75rem;
    font-size: 35px;
}
select {
    width: 100%;
    border: 1px solid rgba(222, 226, 230, var(--border-opacity, 1));
    border-radius: 3px;
    font-family:
        'Nunito Sans',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        'Helvetica Neue',
        Arial,
        sans-serif,
        'Apple Color Emoji',
        'Segoe UI Emoji',
        'Segoe UI Symbol';
    font-size: var(--font-size-m);
    letter-spacing: 0.02rem;
    transition: box-shadow 0.3s;
    outline: 0;
    padding: 0.85rem 1.1rem;
    background-color: #fff;
}
select .input-focused,
select:focus {
    border-color: #3dabf0;
    box-shadow:
        0 0 0 0.2rem rgba(61, 171, 240, 0.45),
        inset 0 1px 8px rgba(0, 0, 0, 0.07);
    outline: 0;
}
select .input-focused[type='range'],
select:focus[type='range'] {
    box-shadow: none;
}
select .input-focused.input-success,
select:focus.input-success {
    border-color: #0dd157;
    background-color: rgba(0, 224, 0, 0.05) !important;
}
select .input-focused.input-success:focus,
select:focus.input-success:focus {
    box-shadow:
        0 0 0 0.2rem rgba(13, 209, 87, 0.55),
        inset 0 1px 8px rgba(0, 0, 0, 0.07);
}
select .input-focused.input-error,
select:focus.input-error {
    border-color: #fb4143;
    background-color: rgba(244, 67, 54, 0.05) !important;
}
select .input-focused.input-error:focus,
select:focus.input-error:focus {
    box-shadow:
        0 0 0 0.2rem rgba(251, 65, 67, 0.55),
        inset 0 1px 8px rgba(0, 0, 0, 0.07);
}
select.input--xs {
    font-size: 0.75rem;
    padding: 0.35rem 0.9rem;
}
select.input--sm {
    font-size: 0.875rem;
    padding: 0.55rem 1rem;
}
select.input--lg {
    font-size: 1.25rem;
}
select.input--xl {
    font-size: 1.5rem;
}
select.input-contains-icon,
select.input-contains-icon-left {
    padding-left: 2.75rem;
}
select.input-contains-icon-right {
    padding-right: 2.75rem;
}
select.input-contains-icon-right.input-xs,
select.input-contains-icon.input--xs {
    padding-left: 2rem;
}
select.input-contains-icon-right.input-sm,
select.input-contains-icon.input--sm {
    padding-left: 2.5rem;
}
select.input-contains-icon-right.input-lg,
select.input-contains-icon.input--lg {
    padding-left: 3.5rem;
}
select.input-contains-icon-right.input-xl,
select.input-contains-icon.input--xl {
    padding-left: 4rem;
}
select.input-contains-icon-left.input--xs ~ .icon,
select.input-contains-icon-right.input--xs ~ .icon.icon-right,
select.input-contains-icon.input--xs ~ .icon {
    line-height: 1.75rem;
    width: 1.75rem;
    font-size: 7px;
}
select.input-contains-icon-left.input--sm ~ .icon,
select.input-contains-icon-right.input--sm ~ .icon.icon-right,
select.input-contains-icon.input--sm ~ .icon {
    width: 2.5rem;
    font-size: 14px;
}
select.input-contains-icon-left.input--lg ~ .icon,
select.input-contains-icon-right.input--lg ~ .icon.icon-right,
select.input-contains-icon.input--lg ~ .icon {
    line-height: 3.5rem;
    width: 3.5rem;
    font-size: 28px;
}
select.input-contains-icon-left.input--xl ~ .icon,
select.input-contains-icon-right.input--xl ~ .icon.icon-right,
select.input-contains-icon.input--xl ~ .icon {
    line-height: 2.5rem;
    width: 3.75rem;
    font-size: 35px;
}
select[multiple] option {
    padding: 0.2rem 0.4rem;
}
select.select:not([size]):not([multiple]) {
    background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%204%205'%3E%3Cpath%20fill='%23667189'%20d='M2%200L0%202h4zm0%205L0%203h4z'/%3E%3C/svg%3E")
        right 0.85rem center/.5rem 0.6rem no-repeat no-repeat;
    appearance: none;
}
input:not([class*=' btn-']):disabled:hover,
input:not([class*='btn-']):disabled,
select:disabled,
textarea:disabled {
    background-color: #f1f3f5;
    cursor: not-allowed;
    border: 1px solid #f1f3f5;
}
label.label {
    color: #495057;
    display: inline-block;
    font-weight: 700;
    margin-top: 0.8rem;
}
label + .input-control {
    margin-top: 0;
}
label.label:not(:last-child) {
    margin-bottom: 0;
}
label:first-child:not(:last-child):not(.form-group-label) {
    margin-right: 0.5rem;
}
label:not(:first-child):not(:last-child):not(.form-group-label) {
    margin: 0 0.5rem;
}
label:last-child:not(:first-child):not(.form-group-label) {
    margin-left: 0.5rem;
}
.required {
    position: relative;
    top: 1px;
    font-weight: 700;
    color: #c81e1e;
    padding-left: 0.1rem;
}
.input-control {
    position: relative;
    margin: 0.5rem 0;
}
.input-contains-icon-left ~ .icon,
.input-contains-icon-right ~ .icon,
.input-contains-icon ~ .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.input-contains-icon-left ~ .icon.icon-left,
.input-contains-icon ~ .icon:not(.icon-right) {
    position: absolute;
    left: 0;
    top: 0;
    width: 3rem;
    z-index: 1;
}
.input-contains-icon-right ~ .icon.icon-right {
    position: absolute;
    pointer-events: none;
    line-height: 2.75rem;
    vertical-align: baseline;
    top: 0;
    right: 0;
    width: 3rem;
    z-index: 1;
}
.form-group {
    display: flex;
    margin: 0.5rem 0;
}
.form-group .form-group-btn {
    flex: 1 0 auto;
    margin-bottom: 0;
}
.form-group .form-group-btn:first-child:not(:last-child) {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}
.form-group .form-group-btn:not(:first-child):not(:last-child) {
    border-radius: 0 !important;
    margin-left: -1px;
    margin-right: -1px;
}
.form-group .form-group-btn:last-child:not(:first-child) {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    margin-left: -1px;
    z-index: 0;
}
.form-group .form-group-btn:focus {
    z-index: 1;
}
.form-group .form-group-label {
    background-color: var(--cirrus-form-group-bg);
    border: 1px solid #dee2e6;
    border-radius: 0.2rem;
    color: var(--cirrus-form-group-fg);
    margin: 0;
    padding: 0.8rem;
    user-select: none;
}
.form-group .form-group-label:first-child:not(:last-child) {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}
.form-group .form-group-label:not(:first-child):not(:last-child) {
    border-radius: 0 !important;
    margin-left: -1px;
    margin-right: -1px;
}
.form-group .form-group-label:last-child:not(:first-child) {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    margin-left: -1px;
    z-index: 0;
}
.form-group .form-group-label.label--xs {
    font-size: 0.75rem;
}
.form-group .form-group-label.label--sm {
    font-size: 0.875rem;
}
.form-group .form-group-label.label--lg {
    font-size: 1.25rem;
}
.form-group .form-group-label.label--xl {
    font-size: 1.5rem;
}
.form-group .form-group-input:first-child:not(:last-child) {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}
.form-group .form-group-input:not(:first-child):not(:last-child) {
    border-radius: 0 !important;
    margin-left: -1px;
    margin-right: -1px;
}
.form-group .form-group-input:last-child:not(:first-child) {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    margin-left: -1px;
    z-index: 0;
}
.form-group .form-group-input:focus {
    z-index: 1;
}
::-moz-placeholder {
    color: #a9a9a9;
}
::-webkit-input-placeholder {
    color: #a9a9a9;
}
.frame {
    border-radius: 3px;
    box-shadow: 0 0.2rem 1.25rem 0 rgba(27, 30, 36, 0.07);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.frame .frame__footer,
.frame .frame__header {
    flex: 0 0 auto;
    padding: 1rem;
}
.frame .frame__nav {
    flex: 0 0 auto;
}
.frame .frame__body {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 0 1rem;
}
.frame .frame__title {
    color: #0f172a;
    font-size: 1rem;
    margin: 0.75rem auto 0;
}
.frame .frame__subtitle {
    color: rgba(15, 23, 42, 0.6);
    font-size: 1rem;
    margin: 0 auto 0.75rem;
}
.header {
    flex-grow: 1;
    width: 100%;
    z-index: 100;
    margin-bottom: 20px;
    box-shadow: 0 3px 15px rgba(57, 63, 72, 0.1);
    background-color: var(--cirrus-bg);
    max-height: 100vh;
    padding: 0 2rem;
    transition: 0.3s;
    display: flex;
    --header-link-color: #495057;
    --header-link-color-hover: #606a73;
}
.header h1,
.header h2,
.header h3,
.header h4,
.header h5,
.header h6 {
    margin: 0;
}
.header a {
    color: var(--header-link-color);
}
.header a:hover {
    color: var(--header-link-color-hover);
}
.header.header-dark {
    background-color: rgba(0, 0, 0, 0.87);
    color: #fff;
    --header-link-color: #fff;
    --header-link-color-hover: #fff;
}
.header.header-clear {
    background-color: transparent;
    box-shadow: none;
}
.header.header-clear .nav-item .dropdown-menu {
    border-radius: 4px;
}
.header.header-animated .header-nav {
    transition: 0.3s;
}
.header .header-nav {
    overflow: auto;
}
.header .header-brand {
    align-items: stretch;
    display: flex;
    flex-shrink: 0;
    max-width: 100vw;
    min-height: 3.25rem;
    overflow-x: auto;
    overflow-y: hidden;
}
.header.header-fixed {
    position: fixed;
    top: 0;
}
.header:not(.header-clear) .nav-item:not(.no-hover).hovered,
.header:not(.header-clear) .nav-item:not(.no-hover):hover {
    background-color: rgba(216, 216, 216, 0.15);
    transition: 0.3s;
}
.header:not(.header-clear) .nav-item.active,
.header:not(.header-clear) .nav-item.active:hover {
    background-color: rgba(216, 216, 216, 0.35);
}
.header .nav-btn {
    cursor: pointer;
    display: block;
    height: 3.5rem;
    position: relative;
    width: 3.5rem;
}
.header .btn,
.header [type='button'],
.header [type='reset'],
.header [type='submit'],
.header button {
    margin: 0;
}
.nav-menu {
    transition: 0.3s;
}
.nav-menu .has-sub {
    position: relative;
}
.nav-overflow-x {
    justify-content: inherit;
    overflow-x: scroll;
}
.nav-item {
    align-items: center;
    display: flex;
    position: relative;
    flex-grow: 0;
    flex-shrink: 0;
    justify-content: center;
    transition: 0.3s;
    padding: 0 0.3rem;
    cursor: pointer;
}
.nav-item div {
    cursor: default;
}
.nav-item a {
    align-items: center;
    display: flex;
}
.nav-item .dropdown-menu {
    background-color: var(--cirrus-bg);
    position: absolute;
    top: 95%;
    z-index: 1000;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    font-size: 14px;
    text-align: left;
    list-style: none;
    background-clip: padding-box;
    border: 1px solid #e9ecef;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 0.5rem 1rem rgba(10, 10, 10, 0.1);
}
.nav-item .dropdown-menu.dropdown-animated {
    transition: all var(--animation-duration);
}
.nav-item .dropdown-menu > li > a {
    display: block;
    padding: 0.5rem 1rem;
    clear: both;
    line-height: 1.42857143;
    white-space: nowrap;
}
.nav-item .dropdown-menu > li {
    margin: 0;
    transition: 0.3s;
}
.nav-item .dropdown-menu > li:hover {
    transition: 0.3s;
    background-color: rgba(216, 216, 216, 0.15);
}
.nav-item .dropdown-menu > li:active {
    transition: 0.3s;
    background-color: rgba(216, 216, 216, 0.25);
}
.nav-item .dropdown-menu > li:last-child {
    margin-bottom: 0;
}
.nav-item .dropdown-menu .dropdown-menu-divider {
    border: none;
    background-color: rgba(216, 216, 216, 0.15);
    height: 1px;
    margin: 0.5rem 0;
}
.nav-item.has-sub .nav-dropdown-link {
    padding-right: 2.5rem;
    position: relative;
}
.nav-item.has-sub .nav-dropdown-link::after {
    border: 2px solid #f03d4d;
    border-right: 0;
    border-top: 0;
    display: block;
    height: 0.5em;
    width: 0.5em;
    content: ' ';
    transform: rotate(-45deg);
    pointer-events: none;
    margin-top: -0.435em;
    right: 1.125em;
    top: 50%;
    position: absolute;
}
.header.header-dark .dropdown-menu,
.nav-item .dropdown-menu.dropdown-dark {
    background-color: rgba(0, 0, 0, 0.87);
    border: 1px solid #343a40;
    color: #fff;
}
.dropdown-menu.dropdown-shown,
.nav-item.active {
    opacity: 1;
}
@media screen and (min-width: 768px) {
    .header {
        align-items: stretch;
        display: flex;
    }
    .header .header-nav {
        flex-grow: 1;
        align-items: stretch;
        display: flex;
        position: relative;
        text-align: center;
        width: 100%;
        top: 0;
        overflow: visible;
    }
    .header .nav-left {
        align-items: stretch;
        flex-basis: 0;
        flex-grow: 1;
        flex-shrink: 0;
        display: flex;
        justify-content: flex-start;
        white-space: nowrap;
    }
    .header .nav-left .has-sub .dropdown-menu {
        left: 0;
        right: auto;
    }
    .header .nav-right {
        align-items: stretch;
        flex-basis: 0;
        flex-grow: 1;
        flex-shrink: 0;
        display: flex;
        justify-content: flex-end;
        white-space: nowrap;
    }
    .header .nav-right .has-sub .dropdown-menu {
        left: auto;
        right: 0;
    }
    .header .nav-center {
        align-items: stretch;
        display: flex;
        flex-grow: 0;
        flex-shrink: 0;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }
    .header .nav-btn {
        display: none;
    }
    .header .nav-item a {
        padding: 0.5rem 1rem;
    }
    .header .nav-item .dropdown-menu {
        opacity: 0;
        pointer-events: none;
    }
    .header .nav-item .dropdown-menu.dropdown-animated {
        transform: translateY(-5px);
    }
    .header .nav-item .dropdown-menu.dropdown-animated.dropdown-shown,
    .header .nav-item .dropdown-menu.dropdown-shown,
    .header .nav-item.toggle-hover:hover .dropdown-menu {
        opacity: 1;
        transform: none;
        pointer-events: auto;
    }
}
@media screen and (max-width: 767px) {
    .header {
        flex-direction: column;
    }
    .header .header-brand .nav-item:first-child {
        padding: 0 1rem;
    }
    .header .header-nav {
        height: 0;
    }
    .header .header-nav.active {
        height: 100vh;
    }
    .header .header-nav .nav-item {
        padding: 1rem;
    }
    .header .header-nav .nav-item > a {
        padding: 0;
        width: 100%;
    }
    .nav-item.has-sub {
        display: block;
    }
    .nav-item.has-sub .dropdown-menu {
        display: none;
    }
    .nav-item.has-sub .dropdown-menu.dropdown-shown {
        border-radius: 0;
        box-shadow: none;
        display: block;
        position: relative;
        top: 1rem;
        float: none;
        border: none;
        background-color: transparent;
        margin-bottom: 1rem;
    }
    .nav-item.has-sub .dropdown-menu.dropdown-dark {
        background-color: rgba(0, 0, 0, 0.17);
        border: 0;
    }
    .nav-btn {
        cursor: pointer;
        display: block;
        position: relative;
        margin-left: auto;
    }
    .nav-btn span {
        background-color: var(--header-link-color);
        display: block;
        height: 2px;
        left: 50%;
        margin-left: -7px;
        position: absolute;
        top: 50%;
        transition: 86ms ease-out;
        width: 15px;
    }
    .nav-btn span:nth-child(1) {
        margin-top: -6px;
    }
    .nav-btn span:nth-child(2) {
        margin-top: -1px;
    }
    .nav-btn span:nth-child(3) {
        margin-top: 4px;
    }
    .nav-btn.active span:nth-child(1) {
        margin-left: -5px;
        transform: rotate(45deg);
        transform-origin: left top;
    }
    .nav-btn.active span:nth-child(2) {
        opacity: 0;
    }
    .nav-btn.active span:nth-child(3) {
        margin-left: -5px;
        transform: rotate(-45deg);
        transform-origin: left bottom;
    }
    .nav-center,
    .nav-left,
    .nav-right {
        overflow: hidden;
    }
    .header .nav-item.has-sub.toggle-hover:not(.no-hover):hover > .dropdown-menu {
        border-radius: 0;
        box-shadow: none;
        display: block;
        position: relative;
        top: 1rem;
        float: none;
        border: none;
        background-color: transparent;
        margin-bottom: 1rem;
    }
}
a {
    color: #5e5cc7;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}
a:hover {
    color: #4643e2;
    transition: 0.3s;
}
a.underline {
    text-decoration: underline;
}
.subtitle a {
    padding: 0;
}
article a,
blockquote a,
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    display: inline;
}
[type='submit'] a,
a .btn,
a button {
    margin-bottom: 0;
}
ol,
ul {
    margin: 1rem 0 1rem 1rem;
    padding-inline-start: 0.5rem;
}
ol ol,
ol ul,
ul ol,
ul ul {
    margin: 0 0 0 1rem;
}
ul ul {
    list-style-type: circle;
}
ul ul ul {
    list-style-type: square;
}
ol ol {
    list-style: lower-alpha;
}
ol ol ol {
    list-style: upper-roman;
}
dl {
    margin: 1rem 0;
}
dt {
    font-weight: 700;
}
dd {
    margin-bottom: 0.5rem;
}
li {
    margin: 0.25rem 0;
}
ul.no-bullets {
    list-style: none;
}
ul.menu {
    font-size: 1rem;
    list-style: none;
    margin: 0.5rem 0;
}
ul .menu-title:not(:first-child) {
    margin-bottom: 1rem;
}
ul .menu-title:not(:last-child) {
    margin-top: 1rem;
}
ul .menu-item > a:first-child,
ul .menu-item > div:first-child,
ul .menu-item > span:first-child {
    color: #495057;
    display: block;
    padding: 0.5em 0.75em;
    border-radius: 3px;
    font-size: var(--font-size-s);
    transition: all var(--animation-duration);
}
ul .menu-item:hover > a:first-child,
ul .menu-item:hover > div:first-child,
ul .menu-item:hover > span:first-child {
    background-color: rgba(208, 208, 208, 0.3);
    color: #f03d4d;
    transition: all var(--animation-duration);
}
ul .menu-item.selected > a:first-child,
ul .menu-item.selected > div:first-child,
ul .menu-item.selected > span:first-child {
    color: #fff;
    background-color: #f03d4d;
}
ul .menu-item .menu-addon {
    z-index: 1;
    position: relative;
    color: var(--cirrus-fg);
    cursor: pointer;
    transition: all var(--animation-duration);
}
ul .menu-item .menu-addon .icon {
    font-size: inherit;
    vertical-align: auto;
}
ul .menu-item .menu-addon:hover {
    transition: all var(--animation-duration);
}
ul .menu-item.selected .menu-addon {
    color: #fff;
}
ul .menu-item ul {
    border-left: 1px solid #dee2e6;
    margin: 0.75rem;
    padding-left: 0.75rem;
}
ul .divider {
    border-top: 0.1rem solid #e9ecef;
    height: 0.1rem;
    margin: 1rem 0;
}
ul .divider::after {
    content: attr(data-label);
    background-color: var(--cirrus-bg);
    color: #adb5bd;
    display: inline-block;
    padding: 0 0.7rem;
    margin: 0.5rem;
    font-size: 0.7rem;
    transform: translateY(-1.1rem);
}
.list-dropdown {
    display: inline-block;
    position: relative;
}
.list-dropdown .menu {
    position: absolute;
    top: 75%;
    left: 0;
    animation: slide-down var(--animation-duration) ease 1;
    animation-play-state: paused;
    background-color: var(--cirrus-bg);
    border-radius: 0.2rem;
    box-shadow: 0 1rem 3rem rgba(149, 157, 165, 0.3);
    margin: 0;
    opacity: 0;
    min-width: 15rem;
    padding: 0.25rem 0.5rem;
    transform: translateY(0.5rem);
    z-index: 10;
    pointer-events: none;
    overflow: hidden;
    transition: all var(--animation-duration);
    text-align: left;
}
@media screen and (max-width: 767px) {
    .list-dropdown .menu {
        height: 0;
        padding: 0 !important;
        position: relative;
    }
}
.list-dropdown.dropdown-right .menu {
    left: auto;
    right: 0;
}
.list-dropdown .btn-dropdown:focus + .menu,
.list-dropdown .menu:hover,
.list-dropdown.shown .menu {
    animation-play-state: running;
    display: block;
    opacity: 1;
    top: 100%;
    z-index: 100;
    pointer-events: auto;
    height: auto;
}
.list-dropdown .btn-group .btn-dropdown:nth-last-child(2) {
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px;
}
.tree {
    margin: 0;
}
.tree .tree-item .tree-item-header {
    display: block;
    padding: 0.25rem 0.5rem;
    cursor: pointer;
    font-weight: 700;
}
.tree .tree-item .tree-item-header .icon {
    transition: all var(--animation-duration);
}
.tree .tree-item input:checked ~ .tree-item-body {
    max-height: 100vh;
}
.tree .tree-item input:checked ~ .tree-item-header .icon {
    transform: rotate(90deg);
}
.tree .tree-item .tree-item-body {
    max-height: 0;
    margin-left: 1.5rem;
    overflow: hidden;
    transition: all var(--animation-duration);
}
.tree-nav-body {
    display: flex;
    height: 100vh;
    flex-wrap: nowrap;
}
.tree-nav-body .tree-nav {
    flex-grow: 0;
    flex-shrink: 1;
    padding: 2rem 1rem 2rem 2rem;
    min-width: 15rem;
    height: 100vh;
    overflow: auto;
}
.tree-nav-body .tree-nav-container {
    overflow-y: auto;
    top: 4rem;
    bottom: 1rem;
}
.tree-nav-body .tree-nav-close {
    display: none;
}
.tree-nav-body + .tree-nav-content {
    max-width: 100%;
    padding: 2rem;
    flex: 1 0 auto;
    overflow: auto;
    margin: 0;
}
.tree-nav-body .tree-nav-content {
    width: 100%;
    overflow: auto;
    margin: 0;
    padding: 2rem;
}
@media screen and (max-width: 767px) {
    .tree-nav-body .tree-nav {
        height: 100%;
        left: 0;
        overflow-y: auto;
        padding: 3rem 1.5rem;
        position: fixed;
        top: 0;
        transform: translateX(-100%);
        transition: transform var(--animation-duration) ease;
        z-index: 400;
    }
    .tree-nav-body .tree-nav.tree-nav--visible,
    .tree-nav-body .tree-nav:target {
        transform: translateX(0);
        transition: transform var(--animation-duration) ease;
    }
    .tree-nav-body .tree-nav.tree-nav--visible + .tree-nav-close,
    .tree-nav-body .tree-nav:target + .tree-nav-close {
        display: block;
        background-color: rgba(0, 0, 0, 0.15);
        height: 100%;
        left: 0;
        position: fixed;
        right: 0;
        top: 0;
        width: 100%;
        z-index: 300;
    }
    .tree-nav-body .tree-nav .tree-nav-close {
        background-color: rgba(0, 0, 0, 0.15);
        display: none;
        height: 100%;
        left: 0;
        position: fixed;
        right: 0;
        top: 0;
        width: 100%;
        z-index: 300;
    }
    .tree-nav-body .tree-nav + .tree-nav-body {
        max-width: inherit;
    }
    .tree-nav-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background-color: rgba(248, 249, 250, 0.8);
        height: 3.5rem;
        padding: 0.75rem 0.5rem;
        text-align: center;
        z-index: 300;
    }
    .nav-item.has-sub .list-dropdown,
    .nav-item.has-sub .list-dropdown .btn-group {
        width: 100%;
    }
    .nav-item.has-sub .list-dropdown .btn-group .btn-dropdown {
        flex-grow: 0;
    }
    .list-dropdown .btn-dropdown:focus + .menu {
        position: relative;
        width: 100%;
    }
}
.progress {
    --progress-color: #f03d4d;
    background-color: #e9ecef;
    border: none;
    border-radius: 0.25rem;
    overflow: hidden;
    padding: 0;
    width: 100%;
    height: 0.75rem;
}
.progress::-webkit-progress-bar {
    background-color: transparent;
}
.progress::-webkit-progress-value {
    background-color: var(--progress-color);
}
.progress::-moz-progress-bar {
    background-color: var(--progress-color);
}
.progress::-ms-fill {
    background-color: var(--progress-color);
    border: none;
}
.progress.progress--xs {
    height: 0.25rem;
}
.progress.progress--sm {
    height: 0.5rem;
}
.progress.progress--md {
    height: 0.75rem;
}
.progress.progress--lg {
    height: 1rem;
}
.progress.progress--xl {
    height: 1.25rem;
}
.progress.progress--primary {
    --progress-color: #f03d4d;
}
.progress.progress--dark {
    --progress-color: #363636;
}
.progress.progress--link {
    --progress-color: #5e5cc7;
}
.progress.progress--info {
    --progress-color: #2972fa;
}
.progress.progress--success {
    --progress-color: #0dd157;
}
.progress.progress--warning {
    --progress-color: #fab633;
}
.progress.progress--danger {
    --progress-color: #fb4143;
}
.progress:indeterminate {
    animation: 1.5s linear infinite progress-indeterminate;
    background: #e9ecef linear-gradient(to right, var(--progress-color) 30%, #e9ecef 30%) top
        left/150% 150% no-repeat;
}
.progress:indeterminate::-webkit-progress-bar {
    --progress-color: transparent;
}
.progress:indeterminate::-moz-progress-bar {
    --progress-color: transparent;
}
.progress:indeterminate::-ms-fill {
    animation-name: none;
}
@keyframes progress-indeterminate {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}
.table-container {
    overflow: auto;
    overflow-y: hidden;
    max-width: 100%;
}
.table {
    margin-bottom: 1.5rem;
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    text-align: center;
}
.table td,
.table th {
    border: 1px solid rgba(222, 226, 230, 0.5);
    border-width: 0 0 1px;
    padding: 0.75rem;
    vertical-align: top;
    text-align: inherit;
    margin: 0;
}
.table tr {
    transition: 0.3s;
}
.table tr.selected {
    background-color: #f03d4d;
    color: #fff;
}
.table .table caption {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    color: #dee2e6;
    text-align: left;
    caption-side: bottom;
}
.table tr:not(.selected):hover,
.table.striped tbody tr:not(.selected):nth-child(even):hover {
    background-color: rgba(222, 226, 230, 0.15);
}
.table thead,
.table thead th {
    border-bottom: 2px solid rgba(222, 226, 230, 0.5);
}
.table tfoot th,
.table thead th {
    padding: 1rem;
}
.table tfoot th {
    border-top: 2px solid rgba(222, 226, 230, 0.5);
    border-bottom: none;
}
.table.bordered thead,
.table.bordered thead th {
    border-bottom: 1px solid rgba(222, 226, 230, 0.5);
}
.table.bordered td,
.table.bordered th {
    border: 1px solid rgba(219, 219, 219, 0.5);
}
.table.bordered thead,
.table.bordered thead td {
    border-width: 1px;
}
.table.striped tbody tr:nth-child(even) {
    background-color: rgba(0, 0, 0, 0.05);
}
.table.small td,
.table.small th {
    padding: 0.25rem 0.75rem;
}
.table.fixed-head thead {
    position: relative;
    display: block;
}
.table.fixed-head tbody {
    min-height: 200px;
    display: block;
    overflow: auto;
}
.table.fixed-head tr {
    display: table;
    width: 100%;
}
.table.borderless td,
.table.borderless th,
.table.borderless thead th {
    border: none;
}
.u-top-auto {
    top: auto !important;
}
.u-top-0 {
    top: 0 !important;
}
.u-top-25p {
    top: 25% !important;
}
.u-top-n25p {
    top: -25% !important;
}
.u-top-50p {
    top: 50% !important;
}
.u-top-n50p {
    top: -50% !important;
}
.u-top-75p {
    top: 75% !important;
}
.u-top-n75p {
    top: -75% !important;
}
.u-top-100p {
    top: 100% !important;
}
.u-top-n100p {
    top: -100% !important;
}
.u-top-px {
    top: 1px !important;
}
.u-top-npx {
    top: -1px !important;
}
.u-top-1 {
    top: 0.5rem !important;
}
.u-top-n1 {
    top: -0.5rem !important;
}
.u-top-2 {
    top: 1rem !important;
}
.u-top-n2 {
    top: -1rem !important;
}
.u-top-3 {
    top: 1.5rem !important;
}
.u-top-n3 {
    top: -1.5rem !important;
}
.u-top-4 {
    top: 2rem !important;
}
.u-top-n4 {
    top: -2rem !important;
}
.u-top-5 {
    top: 2.5rem !important;
}
.u-top-n5 {
    top: -2.5rem !important;
}
.u-top-6 {
    top: 3rem !important;
}
.u-top-n6 {
    top: -3rem !important;
}
.u-top-8 {
    top: 4rem !important;
}
.u-top-n8 {
    top: -4rem !important;
}
.u-left-auto {
    left: auto !important;
}
.u-left-0 {
    left: 0 !important;
}
.u-left-25p {
    left: 25% !important;
}
.u-left-n25p {
    left: -25% !important;
}
.u-left-50p {
    left: 50% !important;
}
.u-left-n50p {
    left: -50% !important;
}
.u-left-75p {
    left: 75% !important;
}
.u-left-n75p {
    left: -75% !important;
}
.u-left-100p {
    left: 100% !important;
}
.u-left-n100p {
    left: -100% !important;
}
.u-left-px {
    left: 1px !important;
}
.u-left-npx {
    left: -1px !important;
}
.u-left-1 {
    left: 0.5rem !important;
}
.u-left-n1 {
    left: -0.5rem !important;
}
.u-left-2 {
    left: 1rem !important;
}
.u-left-n2 {
    left: -1rem !important;
}
.u-left-3 {
    left: 1.5rem !important;
}
.u-left-n3 {
    left: -1.5rem !important;
}
.u-left-4 {
    left: 2rem !important;
}
.u-left-n4 {
    left: -2rem !important;
}
.u-left-5 {
    left: 2.5rem !important;
}
.u-left-n5 {
    left: -2.5rem !important;
}
.u-left-6 {
    left: 3rem !important;
}
.u-left-n6 {
    left: -3rem !important;
}
.u-left-8 {
    left: 4rem !important;
}
.u-left-n8 {
    left: -4rem !important;
}
.u-right-auto {
    right: auto !important;
}
.u-right-0 {
    right: 0 !important;
}
.u-right-25p {
    right: 25% !important;
}
.u-right-n25p {
    right: -25% !important;
}
.u-right-50p {
    right: 50% !important;
}
.u-right-n50p {
    right: -50% !important;
}
.u-right-75p {
    right: 75% !important;
}
.u-right-n75p {
    right: -75% !important;
}
.u-right-100p {
    right: 100% !important;
}
.u-right-n100p {
    right: -100% !important;
}
.u-right-px {
    right: 1px !important;
}
.u-right-npx {
    right: -1px !important;
}
.u-right-1 {
    right: 0.5rem !important;
}
.u-right-n1 {
    right: -0.5rem !important;
}
.u-right-2 {
    right: 1rem !important;
}
.u-right-n2 {
    right: -1rem !important;
}
.u-right-3 {
    right: 1.5rem !important;
}
.u-right-n3 {
    right: -1.5rem !important;
}
.u-right-4 {
    right: 2rem !important;
}
.u-right-n4 {
    right: -2rem !important;
}
.u-right-5 {
    right: 2.5rem !important;
}
.u-right-n5 {
    right: -2.5rem !important;
}
.u-right-6 {
    right: 3rem !important;
}
.u-right-n6 {
    right: -3rem !important;
}
.u-right-8 {
    right: 4rem !important;
}
.u-right-n8 {
    right: -4rem !important;
}
.u-bottom-auto {
    bottom: auto !important;
}
.u-bottom-0 {
    bottom: 0 !important;
}
.u-bottom-25p {
    bottom: 25% !important;
}
.u-bottom-n25p {
    bottom: -25% !important;
}
.u-bottom-50p {
    bottom: 50% !important;
}
.u-bottom-n50p {
    bottom: -50% !important;
}
.u-bottom-75p {
    bottom: 75% !important;
}
.u-bottom-n75p {
    bottom: -75% !important;
}
.u-bottom-100p {
    bottom: 100% !important;
}
.u-bottom-n100p {
    bottom: -100% !important;
}
.u-bottom-px {
    bottom: 1px !important;
}
.u-bottom-npx {
    bottom: -1px !important;
}
.u-bottom-1 {
    bottom: 0.5rem !important;
}
.u-bottom-n1 {
    bottom: -0.5rem !important;
}
.u-bottom-2 {
    bottom: 1rem !important;
}
.u-bottom-n2 {
    bottom: -1rem !important;
}
.u-bottom-3 {
    bottom: 1.5rem !important;
}
.u-bottom-n3 {
    bottom: -1.5rem !important;
}
.u-bottom-4 {
    bottom: 2rem !important;
}
.u-bottom-n4 {
    bottom: -2rem !important;
}
.u-bottom-5 {
    bottom: 2.5rem !important;
}
.u-bottom-n5 {
    bottom: -2.5rem !important;
}
.u-bottom-6 {
    bottom: 3rem !important;
}
.u-bottom-n6 {
    bottom: -3rem !important;
}
.u-bottom-8 {
    bottom: 4rem !important;
}
.u-bottom-n8 {
    bottom: -4rem !important;
}
.u-blur-none {
    --cirrus-blur: blur(0);
    filter: var(--cirrus-blur);
}
.u-blur-xs {
    --cirrus-blur: blur(0.25rem);
    filter: var(--cirrus-blur);
}
.u-blur-sm {
    --cirrus-blur: blur(0.5rem);
    filter: var(--cirrus-blur);
}
.u-blur-md {
    --cirrus-blur: blur(1rem);
    filter: var(--cirrus-blur);
}
.u-blur-lg {
    --cirrus-blur: blur(1.5rem);
    filter: var(--cirrus-blur);
}
.u-blur-xl {
    --cirrus-blur: blur(3rem);
    filter: var(--cirrus-blur);
}
.u-border-0 {
    border-width: 0 !important;
}
.u-border-1 {
    border-width: 1px !important;
}
.u-border-2 {
    border-width: 2px !important;
}
.u-border-4 {
    border-width: 4px !important;
}
.u-border-8 {
    border-width: 8px !important;
}
.u-border-opacity-0 {
    --border-opacity: 0px !important;
    --border-opacity: 0;
}
.u-border-opacity-1 {
    --border-opacity: 1px !important;
}
.u-border-opacity-2 {
    --border-opacity: 2px !important;
}
.u-border-opacity-4 {
    --border-opacity: 4px !important;
}
.u-border-opacity-8 {
    --border-opacity: 8px !important;
}
.u-round-none {
    border-radius: 0 !important;
}
.u-round-xs {
    border-radius: 0.25rem !important;
}
.u-round-sm {
    border-radius: 0.5rem !important;
}
.u-round-md {
    border-radius: 0.75rem !important;
}
.u-round-lg {
    border-radius: 1rem !important;
}
.u-round-xl {
    border-radius: 1.25rem !important;
}
.u-round-full {
    border-radius: 9001px !important;
}
.u-clear-left {
    clear: left !important;
}
.u-clear-right {
    clear: right !important;
}
.u-clear-both {
    clear: both !important;
}
.u-clearfix:after {
    clear: both !important;
    content: ' ';
    display: table !important;
}
.u-none {
    display: none !important;
}
.u-inline {
    display: inline !important;
}
.u-inline-block {
    display: inline-block !important;
}
.u-block {
    display: block !important;
}
.u-flex {
    display: flex !important;
}
.u-inline-flex {
    display: inline-flex !important;
}
.u-table {
    display: table !important;
}
.u-table-row {
    display: table-row !important;
}
.u-table-column {
    display: table-column !important;
}
.u-table-cell {
    display: table-cell !important;
}
.u-flex-row {
    flex-direction: row !important;
}
.u-flex-row-reverse {
    flex-direction: row-reverse !important;
}
.u-flex-column {
    flex-direction: column !important;
}
.u-flex-column-reverse {
    flex-direction: column-reverse !important;
}
@media screen and (min-width: 640px) {
    .u-clear-left-sm {
        clear: left !important;
    }
    .u-clear-right-sm {
        clear: right !important;
    }
    .u-clear-both-sm {
        clear: both !important;
    }
    .u-none-sm {
        display: none !important;
    }
    .u-inline-sm {
        display: inline !important;
    }
    .u-inline-block-sm {
        display: inline-block !important;
    }
    .u-block-sm {
        display: block !important;
    }
    .u-flex-sm {
        display: flex !important;
    }
    .u-inline-flex-sm {
        display: inline-flex !important;
    }
    .u-table-sm {
        display: table !important;
    }
    .u-table-row-sm {
        display: table-row !important;
    }
    .u-table-column-sm {
        display: table-column !important;
    }
    .u-table-cell-sm {
        display: table-cell !important;
    }
    .u-flex-row-sm {
        flex-direction: row !important;
    }
    .u-flex-row-reverse-sm {
        flex-direction: row-reverse !important;
    }
    .u-flex-column-sm {
        flex-direction: column !important;
    }
    .u-flex-column-reverse-sm {
        flex-direction: column-reverse !important;
    }
}
@media screen and (min-width: 768px) {
    .u-clear-left-md {
        clear: left !important;
    }
    .u-clear-right-md {
        clear: right !important;
    }
    .u-clear-both-md {
        clear: both !important;
    }
    .u-none-md {
        display: none !important;
    }
    .u-inline-md {
        display: inline !important;
    }
    .u-inline-block-md {
        display: inline-block !important;
    }
    .u-block-md {
        display: block !important;
    }
    .u-flex-md {
        display: flex !important;
    }
    .u-inline-flex-md {
        display: inline-flex !important;
    }
    .u-table-md {
        display: table !important;
    }
    .u-table-row-md {
        display: table-row !important;
    }
    .u-table-column-md {
        display: table-column !important;
    }
    .u-table-cell-md {
        display: table-cell !important;
    }
    .u-flex-row-md {
        flex-direction: row !important;
    }
    .u-flex-row-reverse-md {
        flex-direction: row-reverse !important;
    }
    .u-flex-column-md {
        flex-direction: column !important;
    }
    .u-flex-column-reverse-md {
        flex-direction: column-reverse !important;
    }
}
@media screen and (min-width: 1024px) {
    .u-clear-left-lg {
        clear: left !important;
    }
    .u-clear-right-lg {
        clear: right !important;
    }
    .u-clear-both-lg {
        clear: both !important;
    }
    .u-none-lg {
        display: none !important;
    }
    .u-inline-lg {
        display: inline !important;
    }
    .u-inline-block-lg {
        display: inline-block !important;
    }
    .u-block-lg {
        display: block !important;
    }
    .u-flex-lg {
        display: flex !important;
    }
    .u-inline-flex-lg {
        display: inline-flex !important;
    }
    .u-table-lg {
        display: table !important;
    }
    .u-table-row-lg {
        display: table-row !important;
    }
    .u-table-column-lg {
        display: table-column !important;
    }
    .u-table-cell-lg {
        display: table-cell !important;
    }
    .u-flex-row-lg {
        flex-direction: row !important;
    }
    .u-flex-row-reverse-lg {
        flex-direction: row-reverse !important;
    }
    .u-flex-column-lg {
        flex-direction: column !important;
    }
    .u-flex-column-reverse-lg {
        flex-direction: column-reverse !important;
    }
}
@media screen and (min-width: 1280px) {
    .u-clear-left-xl {
        clear: left !important;
    }
    .u-clear-right-xl {
        clear: right !important;
    }
    .u-clear-both-xl {
        clear: both !important;
    }
    .u-none-xl {
        display: none !important;
    }
    .u-inline-xl {
        display: inline !important;
    }
    .u-inline-block-xl {
        display: inline-block !important;
    }
    .u-block-xl {
        display: block !important;
    }
    .u-flex-xl {
        display: flex !important;
    }
    .u-inline-flex-xl {
        display: inline-flex !important;
    }
    .u-table-xl {
        display: table !important;
    }
    .u-table-row-xl {
        display: table-row !important;
    }
    .u-table-column-xl {
        display: table-column !important;
    }
    .u-table-cell-xl {
        display: table-cell !important;
    }
    .u-flex-row-xl {
        flex-direction: row !important;
    }
    .u-flex-row-reverse-xl {
        flex-direction: row-reverse !important;
    }
    .u-flex-column-xl {
        flex-direction: column !important;
    }
    .u-flex-column-reverse-xl {
        flex-direction: column-reverse !important;
    }
}
.u-justify-flex-start {
    justify-content: flex-start !important;
}
.u-justify-center {
    justify-content: center !important;
}
.u-justify-flex-end {
    justify-content: flex-end !important;
}
.u-justify-space-between {
    justify-content: space-between !important;
}
.u-justify-space-around {
    justify-content: space-around !important;
}
.u-justify-space-evenly {
    justify-content: space-evenly !important;
}
@media screen and (min-width: 640px) {
    .u-justify-flex-start-sm {
        justify-content: flex-start !important;
    }
    .u-justify-center-sm {
        justify-content: center !important;
    }
    .u-justify-flex-end-sm {
        justify-content: flex-end !important;
    }
    .u-justify-space-between-sm {
        justify-content: space-between !important;
    }
    .u-justify-space-around-sm {
        justify-content: space-around !important;
    }
    .u-justify-space-evenly-sm {
        justify-content: space-evenly !important;
    }
}
@media screen and (min-width: 768px) {
    .u-justify-flex-start-md {
        justify-content: flex-start !important;
    }
    .u-justify-center-md {
        justify-content: center !important;
    }
    .u-justify-flex-end-md {
        justify-content: flex-end !important;
    }
    .u-justify-space-between-md {
        justify-content: space-between !important;
    }
    .u-justify-space-around-md {
        justify-content: space-around !important;
    }
    .u-justify-space-evenly-md {
        justify-content: space-evenly !important;
    }
}
@media screen and (min-width: 1024px) {
    .u-justify-flex-start-lg {
        justify-content: flex-start !important;
    }
    .u-justify-center-lg {
        justify-content: center !important;
    }
    .u-justify-flex-end-lg {
        justify-content: flex-end !important;
    }
    .u-justify-space-between-lg {
        justify-content: space-between !important;
    }
    .u-justify-space-around-lg {
        justify-content: space-around !important;
    }
    .u-justify-space-evenly-lg {
        justify-content: space-evenly !important;
    }
}
@media screen and (min-width: 1280px) {
    .u-justify-flex-start-xl {
        justify-content: flex-start !important;
    }
    .u-justify-center-xl {
        justify-content: center !important;
    }
    .u-justify-flex-end-xl {
        justify-content: flex-end !important;
    }
    .u-justify-space-between-xl {
        justify-content: space-between !important;
    }
    .u-justify-space-around-xl {
        justify-content: space-around !important;
    }
    .u-justify-space-evenly-xl {
        justify-content: space-evenly !important;
    }
}
.u-items-stretch {
    align-items: stretch !important;
}
.u-items-flex-start {
    align-items: flex-start !important;
}
.u-items-center {
    align-items: center !important;
}
.u-items-flex-end {
    align-items: flex-end !important;
}
.u-items-baseline {
    align-items: baseline !important;
}
@media screen and (min-width: 640px) {
    .u-items-stretch-sm {
        align-items: stretch !important;
    }
    .u-items-flex-start-sm {
        align-items: flex-start !important;
    }
    .u-items-center-sm {
        align-items: center !important;
    }
    .u-items-flex-end-sm {
        align-items: flex-end !important;
    }
    .u-items-baseline-sm {
        align-items: baseline !important;
    }
}
@media screen and (min-width: 768px) {
    .u-items-stretch-md {
        align-items: stretch !important;
    }
    .u-items-flex-start-md {
        align-items: flex-start !important;
    }
    .u-items-center-md {
        align-items: center !important;
    }
    .u-items-flex-end-md {
        align-items: flex-end !important;
    }
    .u-items-baseline-md {
        align-items: baseline !important;
    }
}
@media screen and (min-width: 1024px) {
    .u-items-stretch-lg {
        align-items: stretch !important;
    }
    .u-items-flex-start-lg {
        align-items: flex-start !important;
    }
    .u-items-center-lg {
        align-items: center !important;
    }
    .u-items-flex-end-lg {
        align-items: flex-end !important;
    }
    .u-items-baseline-lg {
        align-items: baseline !important;
    }
}
@media screen and (min-width: 1280px) {
    .u-items-stretch-xl {
        align-items: stretch !important;
    }
    .u-items-flex-start-xl {
        align-items: flex-start !important;
    }
    .u-items-center-xl {
        align-items: center !important;
    }
    .u-items-flex-end-xl {
        align-items: flex-end !important;
    }
    .u-items-baseline-xl {
        align-items: baseline !important;
    }
}
.u-flex-grow-0 {
    flex-grow: 0 !important;
}
.u-flex-grow-1 {
    flex-grow: 1 !important;
}
@media screen and (min-width: 640px) {
    .u-flex-grow-0-sm {
        flex-grow: 0 !important;
    }
    .u-flex-grow-1-sm {
        flex-grow: 1 !important;
    }
}
@media screen and (min-width: 768px) {
    .u-flex-grow-0-md {
        flex-grow: 0 !important;
    }
    .u-flex-grow-1-md {
        flex-grow: 1 !important;
    }
}
@media screen and (min-width: 1024px) {
    .u-flex-grow-0-lg {
        flex-grow: 0 !important;
    }
    .u-flex-grow-1-lg {
        flex-grow: 1 !important;
    }
}
@media screen and (min-width: 1280px) {
    .u-flex-grow-0-xl {
        flex-grow: 0 !important;
    }
    .u-flex-grow-1-xl {
        flex-grow: 1 !important;
    }
}
.u-flex-shrink-0 {
    flex-shrink: 0 !important;
}
.u-flex-shrink-1 {
    flex-shrink: 1 !important;
}
@media screen and (min-width: 640px) {
    .u-flex-shrink-0-sm {
        flex-shrink: 0 !important;
    }
    .u-flex-shrink-1-sm {
        flex-shrink: 1 !important;
    }
}
@media screen and (min-width: 768px) {
    .u-flex-shrink-0-md {
        flex-shrink: 0 !important;
    }
    .u-flex-shrink-1-md {
        flex-shrink: 1 !important;
    }
}
@media screen and (min-width: 1024px) {
    .u-flex-shrink-0-lg {
        flex-shrink: 0 !important;
    }
    .u-flex-shrink-1-lg {
        flex-shrink: 1 !important;
    }
}
@media screen and (min-width: 1280px) {
    .u-flex-shrink-0-xl {
        flex-shrink: 0 !important;
    }
    .u-flex-shrink-1-xl {
        flex-shrink: 1 !important;
    }
}
.u-flex-wrap {
    flex-wrap: wrap !important;
}
.u-flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
}
.u-flex-nowrap {
    flex-wrap: nowrap !important;
}
@media screen and (min-width: 640px) {
    .u-flex-wrap-sm {
        flex-wrap: wrap !important;
    }
    .u-flex-wrap-reverse-sm {
        flex-wrap: wrap-reverse !important;
    }
    .u-flex-nowrap-sm {
        flex-wrap: nowrap !important;
    }
}
@media screen and (min-width: 768px) {
    .u-flex-wrap-md {
        flex-wrap: wrap !important;
    }
    .u-flex-wrap-reverse-md {
        flex-wrap: wrap-reverse !important;
    }
    .u-flex-nowrap-md {
        flex-wrap: nowrap !important;
    }
}
@media screen and (min-width: 1024px) {
    .u-flex-wrap-lg {
        flex-wrap: wrap !important;
    }
    .u-flex-wrap-reverse-lg {
        flex-wrap: wrap-reverse !important;
    }
    .u-flex-nowrap-lg {
        flex-wrap: nowrap !important;
    }
}
@media screen and (min-width: 1280px) {
    .u-flex-wrap-xl {
        flex-wrap: wrap !important;
    }
    .u-flex-wrap-reverse-xl {
        flex-wrap: wrap-reverse !important;
    }
    .u-flex-nowrap-xl {
        flex-wrap: nowrap !important;
    }
}
.u-basis-auto {
    flex-basis: auto !important;
}
.u-basis-max-content {
    flex-basis: max-content !important;
}
.u-basis-min-content {
    flex-basis: min-content !important;
}
.u-basis-fit-content {
    flex-basis: fit-content !important;
}
.u-basis-content {
    flex-basis: content !important;
}
.u-basis-revert {
    flex-basis: revert !important;
}
.u-basis-revert-layer {
    flex-basis: revert-layer !important;
}
.u-basis-10p {
    flex-basis: 10% !important;
}
.u-basis-20p {
    flex-basis: 20% !important;
}
.u-basis-30p {
    flex-basis: 30% !important;
}
.u-basis-40p {
    flex-basis: 40% !important;
}
.u-basis-50p {
    flex-basis: 50% !important;
}
.u-basis-60p {
    flex-basis: 60% !important;
}
.u-basis-70p {
    flex-basis: 70% !important;
}
.u-basis-80p {
    flex-basis: 80% !important;
}
.u-basis-90p {
    flex-basis: 90% !important;
}
.u-basis-100p {
    flex-basis: 100% !important;
}
.u-gap-0 {
    gap: 0 !important;
}
.u-gap-px {
    gap: 1px !important;
}
.u-gap-1 {
    gap: 0.5rem !important;
}
.u-gap-2 {
    gap: 1rem !important;
}
.u-gap-3 {
    gap: 1.5rem !important;
}
.u-gap-4 {
    gap: 2rem !important;
}
.u-gap-5 {
    gap: 2.5rem !important;
}
.u-gap-6 {
    gap: 3rem !important;
}
.u-gap-8 {
    gap: 4rem !important;
}
.u-gap-10 {
    gap: 5rem !important;
}
.u-gap-12 {
    gap: 6rem !important;
}
.u-gap-16 {
    gap: 8rem !important;
}
.u-gap-20 {
    gap: 10rem !important;
}
.u-gap-24 {
    gap: 12rem !important;
}
.u-gap-32 {
    gap: 16rem !important;
}
.u-gap-48 {
    gap: 24rem !important;
}
.u-gap-64 {
    gap: 32rem !important;
}
.u-row-gap-0 {
    row-gap: 0 !important;
}
.u-row-gap-px {
    row-gap: 1px !important;
}
.u-row-gap-1 {
    row-gap: 0.5rem !important;
}
.u-row-gap-2 {
    row-gap: 1rem !important;
}
.u-row-gap-3 {
    row-gap: 1.5rem !important;
}
.u-row-gap-4 {
    row-gap: 2rem !important;
}
.u-row-gap-5 {
    row-gap: 2.5rem !important;
}
.u-row-gap-6 {
    row-gap: 3rem !important;
}
.u-row-gap-8 {
    row-gap: 4rem !important;
}
.u-row-gap-10 {
    row-gap: 5rem !important;
}
.u-row-gap-12 {
    row-gap: 6rem !important;
}
.u-row-gap-16 {
    row-gap: 8rem !important;
}
.u-row-gap-20 {
    row-gap: 10rem !important;
}
.u-row-gap-24 {
    row-gap: 12rem !important;
}
.u-row-gap-32 {
    row-gap: 16rem !important;
}
.u-row-gap-48 {
    row-gap: 24rem !important;
}
.u-row-gap-64 {
    row-gap: 32rem !important;
}
.u-col-gap-0 {
    column-gap: 0 !important;
}
.u-col-gap-px {
    column-gap: 1px !important;
}
.u-col-gap-1 {
    column-gap: 0.5rem !important;
}
.u-col-gap-2 {
    column-gap: 1rem !important;
}
.u-col-gap-3 {
    column-gap: 1.5rem !important;
}
.u-col-gap-4 {
    column-gap: 2rem !important;
}
.u-col-gap-5 {
    column-gap: 2.5rem !important;
}
.u-col-gap-6 {
    column-gap: 3rem !important;
}
.u-col-gap-8 {
    column-gap: 4rem !important;
}
.u-col-gap-10 {
    column-gap: 5rem !important;
}
.u-col-gap-12 {
    column-gap: 6rem !important;
}
.u-col-gap-16 {
    column-gap: 8rem !important;
}
.u-col-gap-20 {
    column-gap: 10rem !important;
}
.u-col-gap-24 {
    column-gap: 12rem !important;
}
.u-col-gap-32 {
    column-gap: 16rem !important;
}
.u-col-gap-48 {
    column-gap: 24rem !important;
}
.u-col-gap-64 {
    column-gap: 32rem !important;
}
.u-pull-left {
    float: left !important;
}
.u-pull-right {
    float: right !important;
}
.u-text-justify {
    text-align: justify !important;
}
.u-text-left {
    text-align: left !important;
}
.u-text-right {
    text-align: right !important;
}
.u-text-center {
    text-align: center !important;
}
@media screen and (min-width: 640px) {
    .u-basis-auto-sm {
        flex-basis: auto !important;
    }
    .u-basis-max-content-sm {
        flex-basis: max-content !important;
    }
    .u-basis-min-content-sm {
        flex-basis: min-content !important;
    }
    .u-basis-fit-content-sm {
        flex-basis: fit-content !important;
    }
    .u-basis-content-sm {
        flex-basis: content !important;
    }
    .u-basis-revert-sm {
        flex-basis: revert !important;
    }
    .u-basis-revert-layer-sm {
        flex-basis: revert-layer !important;
    }
    .u-basis-10p-sm {
        flex-basis: 10% !important;
    }
    .u-basis-20p-sm {
        flex-basis: 20% !important;
    }
    .u-basis-30p-sm {
        flex-basis: 30% !important;
    }
    .u-basis-40p-sm {
        flex-basis: 40% !important;
    }
    .u-basis-50p-sm {
        flex-basis: 50% !important;
    }
    .u-basis-60p-sm {
        flex-basis: 60% !important;
    }
    .u-basis-70p-sm {
        flex-basis: 70% !important;
    }
    .u-basis-80p-sm {
        flex-basis: 80% !important;
    }
    .u-basis-90p-sm {
        flex-basis: 90% !important;
    }
    .u-basis-100p-sm {
        flex-basis: 100% !important;
    }
    .u-pull-left-sm {
        float: left !important;
    }
    .u-pull-right-sm {
        float: right !important;
    }
    .u-text-justify-sm {
        text-align: justify !important;
    }
    .u-text-left-sm {
        text-align: left !important;
    }
    .u-text-right-sm {
        text-align: right !important;
    }
    .u-text-center-sm {
        text-align: center !important;
    }
}
@media screen and (min-width: 768px) {
    .u-basis-auto-md {
        flex-basis: auto !important;
    }
    .u-basis-max-content-md {
        flex-basis: max-content !important;
    }
    .u-basis-min-content-md {
        flex-basis: min-content !important;
    }
    .u-basis-fit-content-md {
        flex-basis: fit-content !important;
    }
    .u-basis-content-md {
        flex-basis: content !important;
    }
    .u-basis-revert-md {
        flex-basis: revert !important;
    }
    .u-basis-revert-layer-md {
        flex-basis: revert-layer !important;
    }
    .u-basis-10p-md {
        flex-basis: 10% !important;
    }
    .u-basis-20p-md {
        flex-basis: 20% !important;
    }
    .u-basis-30p-md {
        flex-basis: 30% !important;
    }
    .u-basis-40p-md {
        flex-basis: 40% !important;
    }
    .u-basis-50p-md {
        flex-basis: 50% !important;
    }
    .u-basis-60p-md {
        flex-basis: 60% !important;
    }
    .u-basis-70p-md {
        flex-basis: 70% !important;
    }
    .u-basis-80p-md {
        flex-basis: 80% !important;
    }
    .u-basis-90p-md {
        flex-basis: 90% !important;
    }
    .u-basis-100p-md {
        flex-basis: 100% !important;
    }
    .u-pull-left-md {
        float: left !important;
    }
    .u-pull-right-md {
        float: right !important;
    }
    .u-text-justify-md {
        text-align: justify !important;
    }
    .u-text-left-md {
        text-align: left !important;
    }
    .u-text-right-md {
        text-align: right !important;
    }
    .u-text-center-md {
        text-align: center !important;
    }
}
@media screen and (min-width: 1024px) {
    .u-basis-auto-lg {
        flex-basis: auto !important;
    }
    .u-basis-max-content-lg {
        flex-basis: max-content !important;
    }
    .u-basis-min-content-lg {
        flex-basis: min-content !important;
    }
    .u-basis-fit-content-lg {
        flex-basis: fit-content !important;
    }
    .u-basis-content-lg {
        flex-basis: content !important;
    }
    .u-basis-revert-lg {
        flex-basis: revert !important;
    }
    .u-basis-revert-layer-lg {
        flex-basis: revert-layer !important;
    }
    .u-basis-10p-lg {
        flex-basis: 10% !important;
    }
    .u-basis-20p-lg {
        flex-basis: 20% !important;
    }
    .u-basis-30p-lg {
        flex-basis: 30% !important;
    }
    .u-basis-40p-lg {
        flex-basis: 40% !important;
    }
    .u-basis-50p-lg {
        flex-basis: 50% !important;
    }
    .u-basis-60p-lg {
        flex-basis: 60% !important;
    }
    .u-basis-70p-lg {
        flex-basis: 70% !important;
    }
    .u-basis-80p-lg {
        flex-basis: 80% !important;
    }
    .u-basis-90p-lg {
        flex-basis: 90% !important;
    }
    .u-basis-100p-lg {
        flex-basis: 100% !important;
    }
    .u-pull-left-lg {
        float: left !important;
    }
    .u-pull-right-lg {
        float: right !important;
    }
    .u-text-justify-lg {
        text-align: justify !important;
    }
    .u-text-left-lg {
        text-align: left !important;
    }
    .u-text-right-lg {
        text-align: right !important;
    }
    .u-text-center-lg {
        text-align: center !important;
    }
}
@media screen and (min-width: 1280px) {
    .u-basis-auto-xl {
        flex-basis: auto !important;
    }
    .u-basis-max-content-xl {
        flex-basis: max-content !important;
    }
    .u-basis-min-content-xl {
        flex-basis: min-content !important;
    }
    .u-basis-fit-content-xl {
        flex-basis: fit-content !important;
    }
    .u-basis-content-xl {
        flex-basis: content !important;
    }
    .u-basis-revert-xl {
        flex-basis: revert !important;
    }
    .u-basis-revert-layer-xl {
        flex-basis: revert-layer !important;
    }
    .u-basis-10p-xl {
        flex-basis: 10% !important;
    }
    .u-basis-20p-xl {
        flex-basis: 20% !important;
    }
    .u-basis-30p-xl {
        flex-basis: 30% !important;
    }
    .u-basis-40p-xl {
        flex-basis: 40% !important;
    }
    .u-basis-50p-xl {
        flex-basis: 50% !important;
    }
    .u-basis-60p-xl {
        flex-basis: 60% !important;
    }
    .u-basis-70p-xl {
        flex-basis: 70% !important;
    }
    .u-basis-80p-xl {
        flex-basis: 80% !important;
    }
    .u-basis-90p-xl {
        flex-basis: 90% !important;
    }
    .u-basis-100p-xl {
        flex-basis: 100% !important;
    }
    .u-pull-left-xl {
        float: left !important;
    }
    .u-pull-right-xl {
        float: right !important;
    }
    .u-text-justify-xl {
        text-align: justify !important;
    }
    .u-text-left-xl {
        text-align: left !important;
    }
    .u-text-right-xl {
        text-align: right !important;
    }
    .u-text-center-xl {
        text-align: center !important;
    }
}
.u-text-ellipsis {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.u-text-break {
    hyphens: auto;
    word-break: break-word;
    word-wrap: break-word;
}
.u-center {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    flex-wrap: wrap;
}
.u-center-alt,
.u-center-alt:active,
.u-center-alt:hover {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.u-overlay {
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    position: absolute;
}
.u-disabled {
    cursor: not-allowed !important;
    pointer-events: none !important;
}
.u-unselectable {
    user-select: none !important;
}
.u-no-outline {
    outline: 0 !important;
}
.u-opacity-0 {
    opacity: 0 !important;
}
.u-opacity-10 {
    opacity: 0.1 !important;
}
.u-opacity-20 {
    opacity: 0.2 !important;
}
.u-opacity-30 {
    opacity: 0.3 !important;
}
.u-opacity-40 {
    opacity: 0.4 !important;
}
.u-opacity-50 {
    opacity: 0.5 !important;
}
.u-opacity-60 {
    opacity: 0.6 !important;
}
.u-opacity-70 {
    opacity: 0.7 !important;
}
.u-opacity-80 {
    opacity: 0.8 !important;
}
.u-opacity-90 {
    opacity: 0.9 !important;
}
.u-opacity-100 {
    opacity: 1 !important;
}
.u-bg-opacity-0 {
    --bg-opacity: 0;
}
.u-bg-opacity-10 {
    --bg-opacity: 0.1;
}
.u-bg-opacity-20 {
    --bg-opacity: 0.2;
}
.u-bg-opacity-30 {
    --bg-opacity: 0.3;
}
.u-bg-opacity-40 {
    --bg-opacity: 0.4;
}
.u-bg-opacity-50 {
    --bg-opacity: 0.5;
}
.u-bg-opacity-60 {
    --bg-opacity: 0.6;
}
.u-bg-opacity-70 {
    --bg-opacity: 0.7;
}
.u-bg-opacity-80 {
    --bg-opacity: 0.8;
}
.u-bg-opacity-90 {
    --bg-opacity: 0.9;
}
.u-bg-opacity-100 {
    --bg-opacity: 1;
}
.u-color-opacity-0 {
    --color-opacity: 0;
}
.u-color-opacity-10 {
    --color-opacity: 0.1;
}
.u-color-opacity-20 {
    --color-opacity: 0.2;
}
.u-color-opacity-30 {
    --color-opacity: 0.3;
}
.u-color-opacity-40 {
    --color-opacity: 0.4;
}
.u-color-opacity-50 {
    --color-opacity: 0.5;
}
.u-color-opacity-60 {
    --color-opacity: 0.6;
}
.u-color-opacity-70 {
    --color-opacity: 0.7;
}
.u-color-opacity-80 {
    --color-opacity: 0.8;
}
.u-color-opacity-90 {
    --color-opacity: 0.9;
}
.u-color-opacity-100 {
    --color-opacity: 1;
}
.u-border-opacity-10 {
    --border-opacity: 0.1;
}
.u-border-opacity-20 {
    --border-opacity: 0.2;
}
.u-border-opacity-30 {
    --border-opacity: 0.3;
}
.u-border-opacity-40 {
    --border-opacity: 0.4;
}
.u-border-opacity-50 {
    --border-opacity: 0.5;
}
.u-border-opacity-60 {
    --border-opacity: 0.6;
}
.u-border-opacity-70 {
    --border-opacity: 0.7;
}
.u-border-opacity-80 {
    --border-opacity: 0.8;
}
.u-border-opacity-90 {
    --border-opacity: 0.9;
}
.u-border-opacity-100 {
    --border-opacity: 1;
}
.u-overflow-auto {
    overflow: auto !important;
}
.u-overflow-hidden {
    overflow: hidden !important;
}
.u-overflow-visible {
    overflow: visible !important;
}
.u-overflow-scroll {
    overflow: scroll !important;
}
@media screen and (min-width: 640px) {
    .u-opacity-0-sm {
        opacity: 0 !important;
    }
    .u-opacity-10-sm {
        opacity: 0.1 !important;
    }
    .u-opacity-20-sm {
        opacity: 0.2 !important;
    }
    .u-opacity-30-sm {
        opacity: 0.3 !important;
    }
    .u-opacity-40-sm {
        opacity: 0.4 !important;
    }
    .u-opacity-50-sm {
        opacity: 0.5 !important;
    }
    .u-opacity-60-sm {
        opacity: 0.6 !important;
    }
    .u-opacity-70-sm {
        opacity: 0.7 !important;
    }
    .u-opacity-80-sm {
        opacity: 0.8 !important;
    }
    .u-opacity-90-sm {
        opacity: 0.9 !important;
    }
    .u-opacity-100-sm {
        opacity: 1 !important;
    }
    .u-overflow-auto-sm {
        overflow: auto !important;
    }
    .u-overflow-hidden-sm {
        overflow: hidden !important;
    }
    .u-overflow-visible-sm {
        overflow: visible !important;
    }
    .u-overflow-scroll-sm {
        overflow: scroll !important;
    }
}
@media screen and (min-width: 768px) {
    .u-opacity-0-md {
        opacity: 0 !important;
    }
    .u-opacity-10-md {
        opacity: 0.1 !important;
    }
    .u-opacity-20-md {
        opacity: 0.2 !important;
    }
    .u-opacity-30-md {
        opacity: 0.3 !important;
    }
    .u-opacity-40-md {
        opacity: 0.4 !important;
    }
    .u-opacity-50-md {
        opacity: 0.5 !important;
    }
    .u-opacity-60-md {
        opacity: 0.6 !important;
    }
    .u-opacity-70-md {
        opacity: 0.7 !important;
    }
    .u-opacity-80-md {
        opacity: 0.8 !important;
    }
    .u-opacity-90-md {
        opacity: 0.9 !important;
    }
    .u-opacity-100-md {
        opacity: 1 !important;
    }
    .u-overflow-auto-md {
        overflow: auto !important;
    }
    .u-overflow-hidden-md {
        overflow: hidden !important;
    }
    .u-overflow-visible-md {
        overflow: visible !important;
    }
    .u-overflow-scroll-md {
        overflow: scroll !important;
    }
}
@media screen and (min-width: 1024px) {
    .u-opacity-0-lg {
        opacity: 0 !important;
    }
    .u-opacity-10-lg {
        opacity: 0.1 !important;
    }
    .u-opacity-20-lg {
        opacity: 0.2 !important;
    }
    .u-opacity-30-lg {
        opacity: 0.3 !important;
    }
    .u-opacity-40-lg {
        opacity: 0.4 !important;
    }
    .u-opacity-50-lg {
        opacity: 0.5 !important;
    }
    .u-opacity-60-lg {
        opacity: 0.6 !important;
    }
    .u-opacity-70-lg {
        opacity: 0.7 !important;
    }
    .u-opacity-80-lg {
        opacity: 0.8 !important;
    }
    .u-opacity-90-lg {
        opacity: 0.9 !important;
    }
    .u-opacity-100-lg {
        opacity: 1 !important;
    }
    .u-overflow-auto-lg {
        overflow: auto !important;
    }
    .u-overflow-hidden-lg {
        overflow: hidden !important;
    }
    .u-overflow-visible-lg {
        overflow: visible !important;
    }
    .u-overflow-scroll-lg {
        overflow: scroll !important;
    }
}
@media screen and (min-width: 1280px) {
    .u-opacity-0-xl {
        opacity: 0 !important;
    }
    .u-opacity-10-xl {
        opacity: 0.1 !important;
    }
    .u-opacity-20-xl {
        opacity: 0.2 !important;
    }
    .u-opacity-30-xl {
        opacity: 0.3 !important;
    }
    .u-opacity-40-xl {
        opacity: 0.4 !important;
    }
    .u-opacity-50-xl {
        opacity: 0.5 !important;
    }
    .u-opacity-60-xl {
        opacity: 0.6 !important;
    }
    .u-opacity-70-xl {
        opacity: 0.7 !important;
    }
    .u-opacity-80-xl {
        opacity: 0.8 !important;
    }
    .u-opacity-90-xl {
        opacity: 0.9 !important;
    }
    .u-opacity-100-xl {
        opacity: 1 !important;
    }
    .u-overflow-auto-xl {
        overflow: auto !important;
    }
    .u-overflow-hidden-xl {
        overflow: hidden !important;
    }
    .u-overflow-visible-xl {
        overflow: visible !important;
    }
    .u-overflow-scroll-xl {
        overflow: scroll !important;
    }
}
.u-overflow-x-auto {
    overflow-x: auto !important;
}
.u-overflow-x-hidden {
    overflow-x: hidden !important;
}
.u-overflow-x-visible {
    overflow-x: visible !important;
}
.u-overflow-x-scroll {
    overflow-x: scroll !important;
}
.u-overflow-y-auto {
    overflow-y: auto !important;
}
.u-overflow-y-hidden {
    overflow-y: hidden !important;
}
.u-overflow-y-visible {
    overflow-y: visible !important;
}
.u-overflow-y-scroll {
    overflow-y: scroll !important;
}
.u-static {
    position: static !important;
}
.u-fixed {
    position: fixed !important;
}
.u-absolute {
    position: absolute !important;
}
.u-relative {
    position: relative !important;
}
.u-sticky {
    position: sticky !important;
}
@media screen and (min-width: 640px) {
    .u-overflow-x-auto-sm {
        overflow-x: auto !important;
    }
    .u-overflow-x-hidden-sm {
        overflow-x: hidden !important;
    }
    .u-overflow-x-visible-sm {
        overflow-x: visible !important;
    }
    .u-overflow-x-scroll-sm {
        overflow-x: scroll !important;
    }
    .u-overflow-y-auto-sm {
        overflow-y: auto !important;
    }
    .u-overflow-y-hidden-sm {
        overflow-y: hidden !important;
    }
    .u-overflow-y-visible-sm {
        overflow-y: visible !important;
    }
    .u-overflow-y-scroll-sm {
        overflow-y: scroll !important;
    }
    .u-static-sm {
        position: static !important;
    }
    .u-fixed-sm {
        position: fixed !important;
    }
    .u-absolute-sm {
        position: absolute !important;
    }
    .u-relative-sm {
        position: relative !important;
    }
    .u-sticky-sm {
        position: sticky !important;
    }
}
@media screen and (min-width: 768px) {
    .u-overflow-x-auto-md {
        overflow-x: auto !important;
    }
    .u-overflow-x-hidden-md {
        overflow-x: hidden !important;
    }
    .u-overflow-x-visible-md {
        overflow-x: visible !important;
    }
    .u-overflow-x-scroll-md {
        overflow-x: scroll !important;
    }
    .u-overflow-y-auto-md {
        overflow-y: auto !important;
    }
    .u-overflow-y-hidden-md {
        overflow-y: hidden !important;
    }
    .u-overflow-y-visible-md {
        overflow-y: visible !important;
    }
    .u-overflow-y-scroll-md {
        overflow-y: scroll !important;
    }
    .u-static-md {
        position: static !important;
    }
    .u-fixed-md {
        position: fixed !important;
    }
    .u-absolute-md {
        position: absolute !important;
    }
    .u-relative-md {
        position: relative !important;
    }
    .u-sticky-md {
        position: sticky !important;
    }
}
@media screen and (min-width: 1024px) {
    .u-overflow-x-auto-lg {
        overflow-x: auto !important;
    }
    .u-overflow-x-hidden-lg {
        overflow-x: hidden !important;
    }
    .u-overflow-x-visible-lg {
        overflow-x: visible !important;
    }
    .u-overflow-x-scroll-lg {
        overflow-x: scroll !important;
    }
    .u-overflow-y-auto-lg {
        overflow-y: auto !important;
    }
    .u-overflow-y-hidden-lg {
        overflow-y: hidden !important;
    }
    .u-overflow-y-visible-lg {
        overflow-y: visible !important;
    }
    .u-overflow-y-scroll-lg {
        overflow-y: scroll !important;
    }
    .u-static-lg {
        position: static !important;
    }
    .u-fixed-lg {
        position: fixed !important;
    }
    .u-absolute-lg {
        position: absolute !important;
    }
    .u-relative-lg {
        position: relative !important;
    }
    .u-sticky-lg {
        position: sticky !important;
    }
}
@media screen and (min-width: 1280px) {
    .u-overflow-x-auto-xl {
        overflow-x: auto !important;
    }
    .u-overflow-x-hidden-xl {
        overflow-x: hidden !important;
    }
    .u-overflow-x-visible-xl {
        overflow-x: visible !important;
    }
    .u-overflow-x-scroll-xl {
        overflow-x: scroll !important;
    }
    .u-overflow-y-auto-xl {
        overflow-y: auto !important;
    }
    .u-overflow-y-hidden-xl {
        overflow-y: hidden !important;
    }
    .u-overflow-y-visible-xl {
        overflow-y: visible !important;
    }
    .u-overflow-y-scroll-xl {
        overflow-y: scroll !important;
    }
    .u-static-xl {
        position: static !important;
    }
    .u-fixed-xl {
        position: fixed !important;
    }
    .u-absolute-xl {
        position: absolute !important;
    }
    .u-relative-xl {
        position: relative !important;
    }
    .u-sticky-xl {
        position: sticky !important;
    }
}
.u-shadow-none {
    --cirrus-shadow: 0 0 #000;
    box-shadow: var(--cirrus-shadow);
}
.u-shadow-xs {
    --cirrus-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    box-shadow: var(--cirrus-shadow);
}
.u-shadow-sm {
    --cirrus-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    box-shadow: var(--cirrus-shadow);
}
.u-shadow-md {
    --cirrus-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    box-shadow: var(--cirrus-shadow);
}
.u-shadow-lg {
    --cirrus-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    box-shadow: var(--cirrus-shadow);
}
.u-shadow-xl {
    --cirrus-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    box-shadow: var(--cirrus-shadow);
}
.u-shadow-inset {
    --cirrus-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
    box-shadow: var(--cirrus-shadow);
}
.u-duration-75 {
    transition-duration: 75ms !important;
}
.u-duration-100 {
    transition-duration: 0.1s !important;
}
.u-duration-200 {
    transition-duration: 0.2s !important;
}
.u-duration-300 {
    transition-duration: 0.3s !important;
}
.u-duration-500 {
    transition-duration: 0.5s !important;
}
.u-duration-700 {
    transition-duration: 0.7s !important;
}
.u-duration-1000 {
    transition-duration: 1s !important;
}
.u-align-baseline {
    vertical-align: baseline !important;
}
.u-align-top {
    vertical-align: top !important;
}
.u-align-middle {
    vertical-align: middle !important;
}
.u-align-bottom {
    vertical-align: bottom !important;
}
.u-align-text-top {
    vertical-align: text-top !important;
}
.u-align-text-bottom {
    vertical-align: text-bottom !important;
}
.u-align-sub {
    vertical-align: sub !important;
}
.u-align-super {
    vertical-align: super !important;
}
.u-z-n1 {
    z-index: -1 !important;
}
.u-z-0 {
    z-index: 0 !important;
}
.u-z-1 {
    z-index: 1 !important;
}
.u-z-10 {
    z-index: 10 !important;
}
.u-z-20 {
    z-index: 20 !important;
}
.u-z-30 {
    z-index: 30 !important;
}
.u-z-40 {
    z-index: 40 !important;
}
.u-z-50 {
    z-index: 50 !important;
}
.u-z-auto {
    z-index: auto !important;
}
details.accordion {
    border-bottom: 1px solid #dee2e6;
    display: block;
    padding: 1rem;
}
details.accordion summary.accordion__summary {
    align-items: center;
    cursor: pointer;
    display: flex;
    font-weight: 700;
    justify-content: space-between;
    list-style-type: none;
    opacity: 0.75;
    transition: 250ms;
}
details.accordion summary.accordion__summary::-webkit-details-marker {
    display: none;
}
details.accordion summary.accordion__summary:after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgb(65, 84, 98)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-position: right center;
    background-size: 1rem auto;
    background-repeat: no-repeat;
    content: '';
    display: block;
    float: right;
    height: 1rem;
    transform: rotate(-90deg);
    width: 1rem;
}
details.accordion[open] summary.accordion__summary {
    margin-bottom: 1rem;
    opacity: 1;
}
details.accordion[open] summary.accordion__summary:after {
    transform: rotate(0);
}
details.accordion:last-of-type {
    border-color: transparent;
}
.avatar {
    border-radius: 50%;
    position: relative;
    display: block;
    margin: auto;
    font-size: 1.5rem;
    font-weight: lighter;
    width: 3.2rem;
    height: 3.2rem;
    background-color: #f03d4d;
    overflow: hidden;
}
.avatar::before {
    content: attr(data-text);
    color: currentColor;
    left: 50%;
    top: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
}
.avatar.avatar--xs {
    font-size: 0.8rem;
    width: 1.6rem;
    height: 1.6rem;
}
.avatar.avatar--sm {
    font-size: 1rem;
    width: 2.4rem;
    height: 2.4rem;
}
.avatar.avatar--lg {
    font-size: 2rem;
    width: 4.8rem;
    height: 4.8rem;
}
.avatar.avatar--xl {
    font-size: 3rem;
    width: 6.4rem;
    height: 6.4rem;
}
.avatar img.padded {
    padding: 0.5rem;
    width: 100%;
}
.breadcrumb {
    margin: 0.5rem 0;
    padding: 0.5rem 0;
    align-items: flex-start;
    display: flex;
    justify-content: flex-start;
    list-style: none;
    white-space: nowrap;
}
.breadcrumb.breadcrumb--center {
    justify-content: center;
}
.breadcrumb.breadcrumb--right {
    justify-content: flex-end;
}
.breadcrumb.breadcrumb--arrow .breadcrumb__item:not(:first-child)::before {
    content: '→';
}
.breadcrumb.breadcrumb--bullet .breadcrumb__item:not(:first-child)::before {
    content: '•';
}
.breadcrumb.breadcrumb--dot .breadcrumb__item:not(:first-child)::before {
    content: '·';
}
.breadcrumb.breadcrumb--gt .breadcrumb__item:not(:first-child)::before {
    content: '≻';
}
.breadcrumb .breadcrumb__item {
    margin: 0;
}
.breadcrumb .breadcrumb__item:not(:last-child) {
    margin-right: 0.5rem;
}
.breadcrumb .breadcrumb__item:not(:first-child)::before {
    content: '/';
    padding-right: 0.5rem;
}
.breadcrumb .breadcrumb__item.breadcrumb__item--active {
    cursor: default;
    pointer-events: none;
}
.breadcrumb .breadcrumb__item.breadcrumb__item--active a {
    color: #0f172a;
}
.card {
    background-color: #fff;
    backface-visibility: hidden;
    border-radius: 5px;
    box-shadow:
        0 5px 12px 0 rgba(42, 51, 83, 0.12),
        0 0 5px rgba(0, 0, 0, 0.06);
    margin-bottom: 1rem;
    overflow: hidden;
    position: relative;
    transition: 0.3s;
}
.card:hover {
    transition: 0.3s;
    box-shadow:
        0 8px 20px 0 rgba(42, 51, 83, 0.12),
        0 5px 5px rgba(0, 0, 0, 0.06);
}
.card:hover .card-image::after {
    opacity: 0;
}
.card.card--slide-up,
.card.slide-up {
    display: flex;
    flex-direction: column;
    max-height: 550px;
}
.card.card--slide-up:hover .card-body,
.card.card--slide-up:hover .card__body,
.card.slide-up:hover .card-body,
.card.slide-up:hover .card__body {
    opacity: 1;
}
.card.card--slide-up:hover .card-image,
.card.card--slide-up:hover .card__image,
.card.slide-up:hover .card-image,
.card.slide-up:hover .card__image {
    transform: translateY(-40px);
}
.card.card--slide-up:hover .card__mobile-title,
.card.card--slide-up:hover .mobile-title,
.card.slide-up:hover .card__mobile-title,
.card.slide-up:hover .mobile-title {
    bottom: 35%;
    transition: 0.3s ease-in-out;
}
.card.card--slide-up .card__mobile-title,
.card.card--slide-up .mobile-title,
.card.slide-up .card__mobile-title,
.card.slide-up .mobile-title {
    position: absolute;
    left: 0;
    bottom: 5rem;
    background-color: var(--cirrus-bg);
    transition: 0.3s ease-in-out;
    width: 100%;
    padding: 1.5rem 0 0;
    backface-visibility: hidden;
}
.card.card--slide-up .card-body,
.card.card--slide-up .card__body,
.card.slide-up .card-body,
.card.slide-up .card__body {
    opacity: 0;
    overflow: auto;
    transition: all var(--animation-duration) ease-in-out;
}
.card.u-flex .content {
    flex-grow: 1;
}
.card p {
    margin: 1rem 0;
}
.card .card-image,
.card .card__image {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    border-radius: 5px 5px 0 0;
    background-size: cover;
    background-repeat: no-repeat;
    transition: 0.3s ease-in-out;
}
.card .card-image::after,
.card .card__image::after {
    content: '';
    display: block;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.1);
    top: 0;
    left: 0;
    right: 0;
    transition: 0.5s;
    bottom: 0;
}
.card .card-container,
.card .card__container {
    display: block;
    position: relative;
    height: 40%;
    min-height: 21rem;
}
.card .card__title-container,
.card .title-container {
    position: absolute;
    bottom: 1rem;
    width: 100%;
    padding: 0 1rem;
}
.card .card__title-container .subtitle,
.card .card__title-container .title,
.card .title-container .subtitle,
.card .title-container .title {
    color: #fff;
    margin: 1rem auto;
}
.card .card__title-container .title,
.card .title-container .title {
    font-weight: 300;
    font-size: 1.5rem;
    margin-bottom: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}
.card .action-bar,
.card .card__action-bar {
    user-select: none;
    padding: 0.5rem;
    margin: 0;
    border-top: 1px solid #e9ecef;
    box-sizing: border-box;
    transition: left 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.card .action-bar .btn,
.card .action-bar [type='button'],
.card .action-bar [type='reset'],
.card .action-bar [type='submit'],
.card .action-bar button,
.card .card__action-bar .btn,
.card .card__action-bar [type='button'],
.card .card__action-bar [type='reset'],
.card .card__action-bar [type='submit'],
.card .card__action-bar button {
    margin: 0 0.5rem;
}
.card .action-bar + .card-footer,
.card .action-bar + .card__footer,
.card .card__action-bar + .card-footer,
.card .card__action-bar + .card__footer {
    padding: 1rem 0;
    border-top: 1px solid #e9ecef;
}
.card .card-footer,
.card .card__footer {
    position: relative;
    font-size: 0.875rem;
    color: #868e96;
}
.card .card-head,
.card .card__header {
    align-items: stretch;
    display: flex;
    border-bottom: 1px solid #e9ecef;
}
.form-ext-control {
    padding-left: 1.5rem;
    position: relative;
}
.form-ext-control.form-ext-checkbox .form-ext-input:checked ~ .form-ext-label:after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}
.form-ext-control.form-ext-checkbox .form-ext-label:before {
    border-radius: 0.25rem;
}
.form-ext-control.form-ext-radio .form-ext-input:checked ~ .form-ext-label:after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E");
}
.form-ext-control.form-ext-radio .form-ext-label:before {
    border-radius: 50%;
}
.form-ext-control .form-ext-input {
    opacity: 0;
    position: absolute;
    z-index: -1;
}
.form-ext-control .form-ext-input:disabled ~ .form-ext-label {
    opacity: 0.4;
}
.form-ext-control .form-ext-input.form-ext-input--primary:checked ~ .form-ext-label {
    color: #f03d4d;
}
.form-ext-control .form-ext-input.form-ext-input--primary:checked ~ .form-ext-label:before {
    background-color: #f03d4d;
}
.form-ext-control .form-ext-input.form-ext-input--primary:focus ~ .form-ext-label:before {
    border-color: inherit;
    box-shadow:
        0 0 0 0.2rem rgba(240, 61, 77, 0.55),
        inset 0 1px 8px rgba(0, 0, 0, 0.07);
}
.form-ext-control .form-ext-input.form-ext-input--dark:checked ~ .form-ext-label {
    color: #363636;
}
.form-ext-control .form-ext-input.form-ext-input--dark:checked ~ .form-ext-label:before {
    background-color: #363636;
}
.form-ext-control .form-ext-input.form-ext-input--dark:focus ~ .form-ext-label:before {
    border-color: inherit;
    box-shadow:
        0 0 0 0.2rem rgba(54, 54, 54, 0.55),
        inset 0 1px 8px rgba(0, 0, 0, 0.07);
}
.form-ext-control .form-ext-input.form-ext-input--link:checked ~ .form-ext-label {
    color: #5e5cc7;
}
.form-ext-control .form-ext-input.form-ext-input--link:checked ~ .form-ext-label:before {
    background-color: #5e5cc7;
}
.form-ext-control .form-ext-input.form-ext-input--link:focus ~ .form-ext-label:before {
    border-color: inherit;
    box-shadow:
        0 0 0 0.2rem rgba(94, 92, 199, 0.55),
        inset 0 1px 8px rgba(0, 0, 0, 0.07);
}
.form-ext-control .form-ext-input.form-ext-input--info:checked ~ .form-ext-label {
    color: #2972fa;
}
.form-ext-control .form-ext-input.form-ext-input--info:checked ~ .form-ext-label:before {
    background-color: #2972fa;
}
.form-ext-control .form-ext-input.form-ext-input--info:focus ~ .form-ext-label:before {
    border-color: inherit;
    box-shadow:
        0 0 0 0.2rem rgba(41, 114, 250, 0.55),
        inset 0 1px 8px rgba(0, 0, 0, 0.07);
}
.form-ext-control .form-ext-input.form-ext-input--success:checked ~ .form-ext-label {
    color: #0dd157;
}
.form-ext-control .form-ext-input.form-ext-input--success:checked ~ .form-ext-label:before {
    background-color: #0dd157;
}
.form-ext-control .form-ext-input.form-ext-input--success:focus ~ .form-ext-label:before {
    border-color: inherit;
    box-shadow:
        0 0 0 0.2rem rgba(13, 209, 87, 0.55),
        inset 0 1px 8px rgba(0, 0, 0, 0.07);
}
.form-ext-control .form-ext-input.form-ext-input--warning:checked ~ .form-ext-label {
    color: #fab633;
}
.form-ext-control .form-ext-input.form-ext-input--warning:checked ~ .form-ext-label:before {
    background-color: #fab633;
}
.form-ext-control .form-ext-input.form-ext-input--warning:focus ~ .form-ext-label:before {
    border-color: inherit;
    box-shadow:
        0 0 0 0.2rem rgba(250, 182, 51, 0.55),
        inset 0 1px 8px rgba(0, 0, 0, 0.07);
}
.form-ext-control .form-ext-input.form-ext-input--danger:checked ~ .form-ext-label {
    color: #fb4143;
}
.form-ext-control .form-ext-input.form-ext-input--danger:checked ~ .form-ext-label:before {
    background-color: #fb4143;
}
.form-ext-control .form-ext-input.form-ext-input--danger:focus ~ .form-ext-label:before {
    border-color: inherit;
    box-shadow:
        0 0 0 0.2rem rgba(251, 65, 67, 0.55),
        inset 0 1px 8px rgba(0, 0, 0, 0.07);
}
.form-ext-control .form-ext-input:disabled ~ .form-ext-toggle__toggler {
    opacity: 0.5;
}
.form-ext-control .form-ext-toggle__label {
    align-items: center;
    display: flex;
    justify-content: space-between;
}
.form-ext-control .form-ext-toggle {
    cursor: pointer;
    position: relative;
}
.form-ext-control .form-ext-toggle input[type='checkbox'],
.form-ext-control .form-ext-toggle input[type='radio'] {
    opacity: 0;
    position: absolute;
    z-index: -1;
}
.form-ext-control .form-ext-toggle .form-ext-toggle__toggler {
    border: 1px solid #d5d7dc;
    border-radius: 6.25rem;
    color: #d5d7dc;
    display: block;
    font-size: 9px;
    height: 1.5rem;
    position: relative;
    width: 3rem;
}
.form-ext-control .form-ext-toggle .form-ext-toggle__toggler i {
    display: inline-block;
}
.form-ext-control .form-ext-toggle input[type='checkbox']:checked + * .form-ext-toggle__toggler,
.form-ext-control .form-ext-toggle input[type='checkbox']:checked + .form-ext-toggle__toggler,
.form-ext-control .form-ext-toggle input[type='radio']:checked + * .form-ext-toggle__toggler,
.form-ext-control .form-ext-toggle input[type='radio']:checked + .form-ext-toggle__toggler {
    background-color: #f03d4d;
    border-color: #f03d4d;
    color: #fff;
    position: relative;
    transition: 0.4s;
}
.form-ext-control
    .form-ext-toggle
    input[type='checkbox']:checked
    + *
    .form-ext-toggle__toggler
    i::after,
.form-ext-control
    .form-ext-toggle
    input[type='checkbox']:checked
    + .form-ext-toggle__toggler
    i::after,
.form-ext-control
    .form-ext-toggle
    input[type='radio']:checked
    + *
    .form-ext-toggle__toggler
    i::after,
.form-ext-control
    .form-ext-toggle
    input[type='radio']:checked
    + .form-ext-toggle__toggler
    i::after {
    background-color: #fff;
    left: calc(100% - 20px);
}
.form-ext-control
    .form-ext-toggle
    input[type='checkbox']:checked
    + *
    .form-ext-toggle__toggler
    i::before,
.form-ext-control
    .form-ext-toggle
    input[type='checkbox']:checked
    + .form-ext-toggle__toggler
    i::before,
.form-ext-control
    .form-ext-toggle
    input[type='radio']:checked
    + *
    .form-ext-toggle__toggler
    i::before,
.form-ext-control
    .form-ext-toggle
    input[type='radio']:checked
    + .form-ext-toggle__toggler
    i::before {
    color: #fff;
    content: attr(data-check-icon);
    text-align: left;
}
.form-ext-control
    .form-ext-toggle.form-ext-toggle--primary
    input[type='checkbox']:checked
    + *
    .form-ext-toggle__toggler,
.form-ext-control
    .form-ext-toggle.form-ext-toggle--primary
    input[type='checkbox']:checked
    + .form-ext-toggle__toggler,
.form-ext-control
    .form-ext-toggle.form-ext-toggle--primary
    input[type='radio']:checked
    + *
    .form-ext-toggle__toggler,
.form-ext-control
    .form-ext-toggle.form-ext-toggle--primary
    input[type='radio']:checked
    + .form-ext-toggle__toggler {
    background-color: #f03d4d;
    border-color: #f03d4d;
}
.form-ext-control .form-ext-toggle .form-ext-toggle--primary .form-ext-toggle__toggler {
    border-color: #f03d4d;
    color: #f03d4d;
}
.form-ext-control .form-ext-toggle .form-ext-toggle--primary .form-ext-toggle__toggler i::after {
    background-color: #f03d4d;
}
.form-ext-control .form-ext-toggle .form-ext-input:focus + .form-ext-toggle__toggler,
.form-ext-control .form-ext-toggle .form-ext-input:focus ~ .form-ext-label:before,
.form-ext-control
    .form-ext-toggle.form-ext-toggle--primary
    .form-ext-input:focus
    + .form-ext-toggle__toggler {
    box-shadow:
        0 0 0 0.2rem rgba(240, 61, 77, 0.55),
        inset 0 1px 8px rgba(0, 0, 0, 0.07);
}
.form-ext-control
    .form-ext-toggle.form-ext-toggle--dark
    input[type='checkbox']:checked
    + *
    .form-ext-toggle__toggler,
.form-ext-control
    .form-ext-toggle.form-ext-toggle--dark
    input[type='checkbox']:checked
    + .form-ext-toggle__toggler,
.form-ext-control
    .form-ext-toggle.form-ext-toggle--dark
    input[type='radio']:checked
    + *
    .form-ext-toggle__toggler,
.form-ext-control
    .form-ext-toggle.form-ext-toggle--dark
    input[type='radio']:checked
    + .form-ext-toggle__toggler {
    background-color: #363636;
    border-color: #363636;
}
.form-ext-control .form-ext-toggle .form-ext-toggle--dark .form-ext-toggle__toggler {
    border-color: #363636;
    color: #363636;
}
.form-ext-control .form-ext-toggle .form-ext-toggle--dark .form-ext-toggle__toggler i::after {
    background-color: #363636;
}
.form-ext-control .form-ext-toggle .form-ext-input:focus + .form-ext-toggle__toggler,
.form-ext-control .form-ext-toggle .form-ext-input:focus ~ .form-ext-label:before,
.form-ext-control
    .form-ext-toggle.form-ext-toggle--dark
    .form-ext-input:focus
    + .form-ext-toggle__toggler {
    box-shadow:
        0 0 0 0.2rem rgba(54, 54, 54, 0.55),
        inset 0 1px 8px rgba(0, 0, 0, 0.07);
}
.form-ext-control
    .form-ext-toggle.form-ext-toggle--link
    input[type='checkbox']:checked
    + *
    .form-ext-toggle__toggler,
.form-ext-control
    .form-ext-toggle.form-ext-toggle--link
    input[type='checkbox']:checked
    + .form-ext-toggle__toggler,
.form-ext-control
    .form-ext-toggle.form-ext-toggle--link
    input[type='radio']:checked
    + *
    .form-ext-toggle__toggler,
.form-ext-control
    .form-ext-toggle.form-ext-toggle--link
    input[type='radio']:checked
    + .form-ext-toggle__toggler {
    background-color: #5e5cc7;
    border-color: #5e5cc7;
}
.form-ext-control .form-ext-toggle .form-ext-toggle--link .form-ext-toggle__toggler {
    border-color: #5e5cc7;
    color: #5e5cc7;
}
.form-ext-control .form-ext-toggle .form-ext-toggle--link .form-ext-toggle__toggler i::after {
    background-color: #5e5cc7;
}
.form-ext-control .form-ext-toggle .form-ext-input:focus + .form-ext-toggle__toggler,
.form-ext-control .form-ext-toggle .form-ext-input:focus ~ .form-ext-label:before,
.form-ext-control
    .form-ext-toggle.form-ext-toggle--link
    .form-ext-input:focus
    + .form-ext-toggle__toggler {
    box-shadow:
        0 0 0 0.2rem rgba(94, 92, 199, 0.55),
        inset 0 1px 8px rgba(0, 0, 0, 0.07);
}
.form-ext-control
    .form-ext-toggle.form-ext-toggle--info
    input[type='checkbox']:checked
    + *
    .form-ext-toggle__toggler,
.form-ext-control
    .form-ext-toggle.form-ext-toggle--info
    input[type='checkbox']:checked
    + .form-ext-toggle__toggler,
.form-ext-control
    .form-ext-toggle.form-ext-toggle--info
    input[type='radio']:checked
    + *
    .form-ext-toggle__toggler,
.form-ext-control
    .form-ext-toggle.form-ext-toggle--info
    input[type='radio']:checked
    + .form-ext-toggle__toggler {
    background-color: #2972fa;
    border-color: #2972fa;
}
.form-ext-control .form-ext-toggle .form-ext-toggle--info .form-ext-toggle__toggler {
    border-color: #2972fa;
    color: #2972fa;
}
.form-ext-control .form-ext-toggle .form-ext-toggle--info .form-ext-toggle__toggler i::after {
    background-color: #2972fa;
}
.form-ext-control .form-ext-toggle .form-ext-input:focus + .form-ext-toggle__toggler,
.form-ext-control .form-ext-toggle .form-ext-input:focus ~ .form-ext-label:before,
.form-ext-control
    .form-ext-toggle.form-ext-toggle--info
    .form-ext-input:focus
    + .form-ext-toggle__toggler {
    box-shadow:
        0 0 0 0.2rem rgba(41, 114, 250, 0.55),
        inset 0 1px 8px rgba(0, 0, 0, 0.07);
}
.form-ext-control
    .form-ext-toggle.form-ext-toggle--success
    input[type='checkbox']:checked
    + *
    .form-ext-toggle__toggler,
.form-ext-control
    .form-ext-toggle.form-ext-toggle--success
    input[type='checkbox']:checked
    + .form-ext-toggle__toggler,
.form-ext-control
    .form-ext-toggle.form-ext-toggle--success
    input[type='radio']:checked
    + *
    .form-ext-toggle__toggler,
.form-ext-control
    .form-ext-toggle.form-ext-toggle--success
    input[type='radio']:checked
    + .form-ext-toggle__toggler {
    background-color: #0dd157;
    border-color: #0dd157;
}
.form-ext-control .form-ext-toggle .form-ext-toggle--success .form-ext-toggle__toggler {
    border-color: #0dd157;
    color: #0dd157;
}
.form-ext-control .form-ext-toggle .form-ext-toggle--success .form-ext-toggle__toggler i::after {
    background-color: #0dd157;
}
.form-ext-control .form-ext-toggle .form-ext-input:focus + .form-ext-toggle__toggler,
.form-ext-control .form-ext-toggle .form-ext-input:focus ~ .form-ext-label:before,
.form-ext-control
    .form-ext-toggle.form-ext-toggle--success
    .form-ext-input:focus
    + .form-ext-toggle__toggler {
    box-shadow:
        0 0 0 0.2rem rgba(13, 209, 87, 0.55),
        inset 0 1px 8px rgba(0, 0, 0, 0.07);
}
.form-ext-control
    .form-ext-toggle.form-ext-toggle--warning
    input[type='checkbox']:checked
    + *
    .form-ext-toggle__toggler,
.form-ext-control
    .form-ext-toggle.form-ext-toggle--warning
    input[type='checkbox']:checked
    + .form-ext-toggle__toggler,
.form-ext-control
    .form-ext-toggle.form-ext-toggle--warning
    input[type='radio']:checked
    + *
    .form-ext-toggle__toggler,
.form-ext-control
    .form-ext-toggle.form-ext-toggle--warning
    input[type='radio']:checked
    + .form-ext-toggle__toggler {
    background-color: #fab633;
    border-color: #fab633;
}
.form-ext-control .form-ext-toggle .form-ext-toggle--warning .form-ext-toggle__toggler {
    border-color: #fab633;
    color: #fab633;
}
.form-ext-control .form-ext-toggle .form-ext-toggle--warning .form-ext-toggle__toggler i::after {
    background-color: #fab633;
}
.form-ext-control .form-ext-toggle .form-ext-input:focus + .form-ext-toggle__toggler,
.form-ext-control .form-ext-toggle .form-ext-input:focus ~ .form-ext-label:before,
.form-ext-control
    .form-ext-toggle.form-ext-toggle--warning
    .form-ext-input:focus
    + .form-ext-toggle__toggler {
    box-shadow:
        0 0 0 0.2rem rgba(250, 182, 51, 0.55),
        inset 0 1px 8px rgba(0, 0, 0, 0.07);
}
.form-ext-control
    .form-ext-toggle.form-ext-toggle--danger
    input[type='checkbox']:checked
    + *
    .form-ext-toggle__toggler,
.form-ext-control
    .form-ext-toggle.form-ext-toggle--danger
    input[type='checkbox']:checked
    + .form-ext-toggle__toggler,
.form-ext-control
    .form-ext-toggle.form-ext-toggle--danger
    input[type='radio']:checked
    + *
    .form-ext-toggle__toggler,
.form-ext-control
    .form-ext-toggle.form-ext-toggle--danger
    input[type='radio']:checked
    + .form-ext-toggle__toggler {
    background-color: #fb4143;
    border-color: #fb4143;
}
.form-ext-control .form-ext-toggle .form-ext-toggle--danger .form-ext-toggle__toggler {
    border-color: #fb4143;
    color: #fb4143;
}
.form-ext-control .form-ext-toggle .form-ext-toggle--danger .form-ext-toggle__toggler i::after {
    background-color: #fb4143;
}
.form-ext-control .form-ext-toggle .form-ext-input:focus + .form-ext-toggle__toggler,
.form-ext-control .form-ext-toggle .form-ext-input:focus ~ .form-ext-label:before,
.form-ext-control
    .form-ext-toggle.form-ext-toggle--danger
    .form-ext-input:focus
    + .form-ext-toggle__toggler {
    box-shadow:
        0 0 0 0.2rem rgba(251, 65, 67, 0.55),
        inset 0 1px 8px rgba(0, 0, 0, 0.07);
}
.form-ext-control .form-ext-toggle .form-ext-toggle__toggler i::after,
.form-ext-control .form-ext-toggle .form-ext-toggle__toggler i::before {
    content: '';
    display: block;
    position: absolute;
}
.form-ext-control .form-ext-toggle .form-ext-toggle__toggler i::before {
    content: attr(data-uncheck-icon);
    padding: 2px 7px;
    line-height: 18px;
    text-align: right;
    top: 0;
    width: 55%;
    font-size: 12px;
}
.form-ext-control .form-ext-toggle .form-ext-toggle__toggler i::after {
    background-color: #d5d7dc;
    border-radius: 50%;
    height: 16px;
    left: 4px;
    width: 16px;
    transform: translateY(-50%);
    transition: left var(--animation-duration) ease;
    text-align: left;
    top: 50%;
}
.form-ext-control .form-ext-label {
    margin-bottom: 0;
    position: relative;
}
.form-ext-control .form-ext-label:after,
.form-ext-control .form-ext-label:before {
    content: '';
    display: block;
    height: 1rem;
    left: -1.5rem;
    position: absolute;
    top: 0.3rem;
    transition: all var(--animation-duration);
    width: 1rem;
}
.form-ext-control .form-ext-label:before {
    background-color: #f6f9fc;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    pointer-events: none;
    user-select: none;
    box-sizing: border-box;
}
.form-ext-control .form-ext-label:after {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 50% 50%;
}
.form-ext-control .form-ext-input:checked ~ .form-ext-label:before {
    background-color: #f03d4d;
    border: none;
}
.u,
.utb {
    display: inline;
    position: relative;
}
.u::after {
    content: '';
    transition: 0.3s;
    backface-visibility: hidden;
    position: absolute;
    height: 2px;
    width: 0;
    background: currentColor;
    bottom: -0.25em;
}
.u:hover::after {
    width: 100%;
}
.u.u-LR::after {
    left: 0;
}
.u.u-RL::after {
    right: 0;
}
.u.u-RL:hover::after {
    width: 100%;
}
.u.u-C::after {
    left: 50%;
    transform: translateX(-50%);
}
.utb::after,
.utb::before {
    content: '';
    transition: 0.3s;
    backface-visibility: hidden;
    position: absolute;
    height: 2px;
    width: 0;
    background: currentColor;
}
.utb::before {
    top: -0.25em;
}
.utb::after {
    bottom: -0.25em;
}
.utb:hover::after,
.utb:hover::before {
    width: 100%;
}
.utb.utb-LR::after,
.utb.utb-LR::before {
    left: 0;
}
.utb.utb-RL::after,
.utb.utb-RL::before {
    right: 0;
}
.utb.utb-C::after,
.utb.utb-C::before {
    left: 50%;
    transform: translateX(-50%);
}
.utb.utb-OLR::before {
    left: 0;
}
.utb.utb-OLR::after,
.utb.utb-ORL::before {
    right: 0;
}
.utb.utb-ORL::after {
    left: 0;
}
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    padding: 1rem;
    display: none;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}
.modal.modal--visible,
.modal:target {
    display: flex;
    opacity: 1;
    z-index: 999;
    pointer-events: auto;
}
.modal.modal--visible .modal-overlay,
.modal:target .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    background-color: rgba(54, 54, 54, 0.5);
}
.modal.modal--visible .modal-container,
.modal:target .modal-container {
    animation: slide-down var(--animation-duration) ease 1;
    z-index: 1;
}
.modal.modal--visible.modal-animated--zoom-in,
.modal.modal--visible.modal-animated--zoom-out,
.modal:target.modal-animated--zoom-in,
.modal:target.modal-animated--zoom-out {
    opacity: 1;
    transition: 0.3s;
}
.modal.modal--visible.modal-animated--zoom-in .modal-content,
.modal.modal--visible.modal-animated--zoom-out .modal-content,
.modal:target.modal-animated--zoom-in .modal-content,
.modal:target.modal-animated--zoom-out .modal-content {
    transform: scale(1);
    transition: 0.3s;
}
.modal.modal-small .modal-content {
    max-width: 20rem;
}
.modal.modal-large .modal-content {
    max-width: 60rem;
}
.modal .modal-content {
    background-color: var(--cirrus-bg);
    padding: 0;
    display: block;
    border-radius: 3px;
    box-shadow: 0 0.4rem 1rem rgba(54, 54, 54, 0.3);
    z-index: 1;
    color: var(--cirrus-fg);
    max-width: 40rem;
}
.modal .modal-content.small {
    max-width: 32rem;
}
.modal .modal-content h1,
.modal .modal-content h2,
.modal .modal-content h3,
.modal .modal-content h4,
.modal .modal-content h5,
.modal .modal-content h6 {
    color: var(--cirrus-fg);
}
.modal .modal-content .modal-header {
    padding: 1rem 2.5rem;
}
.modal .modal-content .modal-header .modal-title {
    font-weight: bolder;
    font-size: 1.4rem;
}
.modal .modal-content .modal-body {
    padding: 1rem 2.5rem;
    overflow-y: auto;
    max-height: 50vh;
    position: relative;
}
.modal .modal-content .modal-footer {
    padding: 1rem 2.5rem;
}
.modal.modal-animated--dropdown {
    animation: slide-down var(--animation-duration) ease 1;
}
.modal.modal-animated--zoom-in,
.modal.modal-animated--zoom-out {
    display: flex;
    opacity: 0;
    transition: 0.3s;
}
.modal.modal-animated--zoom-in .modal-content {
    transform: scale(0.8);
    transition: 0.3s;
}
.modal.modal-animated--zoom-out .modal-content {
    transform: scale(1.2);
    transition: 0.3s;
}
@keyframes slide-down {
    0% {
        opacity: 0;
        transform: translateY(-3rem);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@media screen and (max-width: 767px) {
    .modal .modal-content,
    .modal-content {
        max-width: 90%;
    }
}
.pagination {
    display: flex;
}
.pagination .pagination-item {
    flex: 1 0 50%;
    margin: 1rem 0.1rem;
    transition: 0.3s;
}
.pagination .pagination-item:hover h1,
.pagination .pagination-item:hover h2,
.pagination .pagination-item:hover h3,
.pagination .pagination-item:hover h4,
.pagination .pagination-item:hover h5,
.pagination .pagination-item:hover h6,
.pagination .pagination-item:hover p,
.pagination .pagination-item:not(.selected):hover :not([disabled]):not(.disabled):not(.ellipses) {
    transition: 0.3s;
    color: #f03d4d;
}
.pagination .pagination-item.pagination-next {
    text-align: right;
}
.pagination .pagination-item.pagination-prev {
    text-align: left;
}
.pagination .pagination-item a {
    color: #495057;
    cursor: pointer;
}
.pagination .pagination-item a.disabled,
.pagination .pagination-item a[disabled] {
    opacity: 0.5;
    pointer-events: none;
    user-select: none;
}
.pagination .pagination-item .pagination-item-subtitle {
    opacity: 0.7;
    margin: 0;
}
.pagination .pagination-item.short {
    border-radius: 0.1rem;
    margin: 0.2rem 0;
    flex: 0;
}
.pagination .pagination-item.short:first-child a {
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}
.pagination .pagination-item.short:last-child a {
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
}
.pagination .pagination-item.short:not([disabled]):not(.disabled):not(.selected):hover {
    background-color: rgba(0, 0, 0, 0.07);
}
.pagination .pagination-item.short.selected {
    background-color: #f03d4d;
    color: #fff;
}
.pagination .pagination-item.short.selected a {
    color: #fff;
}
.pagination .pagination-item.short.ellipses {
    color: #adb5bd;
    pointer-events: none;
}
.pagination .pagination-item.short a {
    display: inline-block;
    line-height: 1.25;
    padding: 0.5rem 0.75rem;
}
.pagination.pagination-bordered .pagination-item.short a {
    border: 1px solid #dee2e6;
    border-radius: 0;
    margin-left: -1px;
}
.placeholder {
    background-color: rgba(222, 226, 230, 0.5);
    border-radius: 3px;
    text-align: center;
    padding: 3rem 2rem;
    color: #495057;
    display: block;
}
.placeholder .placeholder-icon {
    text-align: center;
}
.placeholder .placeholder-subtitle,
.placeholder .placeholder-title {
    margin: 1rem auto;
}
.placeholder .placeholder-subtitle {
    opacity: 0.7;
    margin: 0;
}
.placeholder .placeholder-commands {
    margin-top: 1rem;
}
.tab-container {
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    overflow-x: auto;
    user-select: none;
    white-space: nowrap;
    align-items: stretch;
    font-size: 1rem;
}
.tab-container.tabs--left ul {
    justify-content: flex-start;
}
.tab-container.tabs--center ul {
    justify-content: center;
}
.tab-container.tabs--right ul {
    justify-content: flex-end;
}
.tab-container.tabs-depth ul {
    box-shadow: 0 2px 3px rgba(134, 142, 150, 0.15);
    border-bottom: 0;
}
.tab-container.tabs-classic ul {
    border-radius: 3px 3px 0 0;
    transition: 0.3s;
    border-bottom: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
}
.tab-container.tabs-classic ul li:not(.selected) .tab-item-content:hover,
.tab-container.tabs-classic ul li:not(.selected) a:hover {
    background-color: #f1f3f5;
    transition: 0.3s;
}
.tab-container.tabs-classic ul li.selected .tab-item-content,
.tab-container.tabs-classic ul li.selected a {
    color: #f03d4d;
    border-color: #dee2e6;
    border-bottom-color: transparent !important;
}
.tab-container.tabs-classic ul li .tab-item-content,
.tab-container.tabs-classic ul li a {
    border: 1px solid transparent;
    border-bottom-color: #dee2e6;
    border-radius: 3px 3px 0 0;
    cursor: pointer;
    transition: 0.3s;
}
.tab-container.tabs-fill ul {
    display: flex;
}
.tab-container.tabs-fill li {
    flex-grow: 1;
    flex-shrink: 0;
    flex-basis: 0;
}
.tab-container.tabs--xs {
    font-size: 0.75rem;
}
.tab-container.tabs--sm {
    font-size: 0.875rem;
}
.tab-container.tabs--lg {
    font-size: 1.25rem;
}
.tab-container.tabs--xl {
    font-size: 1.5rem;
}
.tab-container ul {
    display: flex;
    justify-content: flex-start;
    margin: 0.5rem;
    border-bottom: 1px solid #e9ecef;
    flex-grow: 1;
    list-style: none;
    padding-inline-start: 0;
}
.tab-container li {
    display: block;
    cursor: pointer;
    margin: 0;
    text-align: center;
}
.tab-container li:hover .tab-item-content,
.tab-container li:hover a {
    border-bottom-color: rgba(240, 61, 77, 0.6);
    transition: 0.3s;
}
.tab-container li.selected .tab-item-content,
.tab-container li.selected a {
    border-bottom-color: #f03d4d;
    color: #f03d4d;
    border-width: 2px;
    transition: 0.3s;
}
.tab-container li .tab-item-content,
.tab-container li a {
    display: flex;
    align-items: center;
    border: 0;
    border-bottom: 1px solid #e9ecef;
    justify-content: center;
    padding: 0.5rem 1rem;
    transition: 0.3s;
    color: var(--cirrus-fg);
    border-bottom-width: 2px;
    margin-bottom: -2px;
    background-color: var(--cirrus-bg);
}
.tab-container .icon:first-child {
    margin-right: 0.75rem;
}
.tab-container .icon:last-child {
    margin-left: 0.75rem;
}
.tag {
    align-items: center;
    background-color: #f6f9fc;
    border-radius: 0.25rem;
    color: currentColor;
    display: inline-flex;
    height: 2em;
    line-height: 1.5;
    font-size: 0.875rem;
    padding: 0.625rem;
    white-space: nowrap;
}
.tag.tag--xs {
    font-size: 0.75rem;
    padding: 0.5rem;
}
.tag.tag--sm {
    font-size: 0.875rem;
    padding: 0.625rem;
}
.tag.tag--md {
    font-size: 1rem;
    padding: 0.75rem;
}
.tag.tag--lg {
    font-size: 1.25rem;
    padding: 0.875rem;
}
.tag.tag--xl {
    font-size: 1.5rem;
    padding: 1rem;
}
.tag.tag--rounded {
    border-radius: 290486px;
}
.tag.tag__delete {
    aspect-ratio: 1/1;
    background-color: rgba(10, 10, 10, 0.2);
    border-radius: 290486px;
    cursor: pointer;
    pointer-events: auto;
    display: inline-block;
    height: auto;
    position: relative;
    width: auto;
    margin-left: 0.25rem;
    margin-right: -0.125rem;
}
.tag.tag__delete:hover {
    background-color: rgba(10, 10, 10, 0.3);
}
.tag.tag__delete::after,
.tag.tag__delete::before {
    background-color: #f6f9fc;
    content: '';
    display: block;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
    transform-origin: center center;
}
.tag.tag__delete::before {
    height: 1px;
    width: 50%;
}
.tag.tag__delete::after {
    height: 50%;
    width: 1px;
}
.tag.tag--white {
    background-color: #fff;
    color: #363636;
}
.tag.tag--black {
    background-color: #000;
    color: #fff;
}
.tag.tag--primary {
    background-color: #f03d4d;
    color: #fff;
}
.tag.tag--primary.tag__close-btn:hover {
    background-color: #ee2537;
}
.tag.tag--primary.tag__close-btn:active {
    background-color: #e81225;
}
.tag.tag--dark {
    background-color: #363636;
    color: #fff;
}
.tag.tag--dark.tag__close-btn:hover {
    background-color: #292929;
}
.tag.tag--dark.tag__close-btn:active {
    background-color: #1d1d1d;
}
.tag.tag--link {
    background-color: #5e5cc7;
    color: #fff;
}
.tag.tag--link.tag__close-btn:hover {
    background-color: #4b49c0;
}
.tag.tag--link.tag__close-btn:active {
    background-color: #403db3;
}
.tag.tag--info {
    background-color: #2972fa;
    color: #fff;
}
.tag.tag--info.tag__close-btn:hover {
    background-color: #1062f9;
}
.tag.tag--info.tag__close-btn:active {
    background-color: #0555eb;
}
.tag.tag--success {
    background-color: #0dd157;
    color: #fff;
}
.tag.tag--success.tag__close-btn:hover {
    background-color: #0cb94d;
}
.tag.tag--success.tag__close-btn:active {
    background-color: #0aa143;
}
.tag.tag--warning {
    background-color: #fab633;
    color: #fff;
}
.tag.tag--warning.tag__close-btn:hover {
    background-color: #f9ad1a;
}
.tag.tag--warning.tag__close-btn:active {
    background-color: #f4a306;
}
.tag.tag--danger {
    background-color: #fb4143;
    color: #fff;
}
.tag.tag--danger.tag__close-btn:hover {
    background-color: #fa282a;
}
.tag.tag--danger.tag__close-btn:active {
    background-color: #fa0f12;
}
.tag.tag__close-btn {
    cursor: pointer;
    position: relative;
    width: 2em;
}
.tag.tag__close-btn::after,
.tag.tag__close-btn::before {
    background-color: currentColor;
    content: '';
    display: block;
    left: 50%;
    top: 50%;
    position: absolute;
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
    transform-origin: center center;
}
.tag.tag__close-btn::before {
    height: 1px;
    width: 50%;
}
.tag.tag__close-btn::after {
    height: 50%;
    width: 1px;
}
.tag-container:not(:last-child) {
    margin-bottom: 1rem;
}
.tag-container.group-tags {
    --tag-first-border-radius: 0.25rem 0 0 0.25rem;
    --tag-last-border-radius: 0 0.25rem 0.25rem 0;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
}
.tag-container.group-tags .tag {
    margin-right: 0 !important;
}
.tag-container.group-tags .tag:first-child {
    border-radius: var(--tag-first-border-radius);
}
.tag-container.group-tags .tag:not(:first-child):not(:last-child) {
    border-radius: 0;
}
.tag-container.group-tags .tag:last-child {
    border-radius: var(--tag-last-border-radius);
}
.tag-container.group-tags.group-tags--rounded {
    --tag-first-border-radius: 290486px 0 0 290486px;
    --tag-last-border-radius: 0 290486px 290486px 0;
}
.tag-container.tag-container--centered {
    justify-content: center;
}
.tag-container.tag-container--centered .tag {
    margin: 0 0.25rem;
}
.tag-container.tag-container--right {
    justify-content: flex-end;
}
.tag-container.tag-container--right .tag:not(:first-child) {
    margin-left: 0.5rem;
}
.tag-container.tag-container--right .tag:not(:last-child) {
    margin-right: 0;
}
.tag-container .tag {
    margin-bottom: 0.5rem;
}
.tag-container .tag:not(:last-child) {
    margin-right: 0.5rem;
}
a.tag:hover {
    text-decoration: underline;
}
.tile {
    display: flex;
    align-content: space-between;
    overflow: inherit;
}
.tile p {
    font-size: 0.95rem;
}
.tile .tile__buttons,
.tile .tile__icon {
    flex: 0 0 auto;
}
.tile .tile__buttons .btn,
.tile .tile__buttons [type='submit'],
.tile .tile__buttons button {
    display: inline-block;
    margin: 0.1rem;
}
.tile .tile__container {
    flex: 1 1 auto;
}
.tile .tile__container:not(:first-child) {
    padding-left: 1rem;
}
.tile .tile__container:not(:last-child) {
    padding-right: 1rem;
}
.tile .tile__title {
    line-height: 1.5rem;
    font-weight: bolder;
    margin: 0.1rem auto;
}
.tile .tile__subtitle {
    line-height: 1.25rem;
    opacity: 0.7;
    margin: 0.1rem auto;
}
.toast {
    display: block;
    width: 100%;
    padding: 0.75rem 1.25rem;
    background-color: var(--toast-primary-bg);
    border: 1px solid var(--toast-primary-bg);
    border-radius: 2px;
    color: #fff;
    position: relative;
    margin: 0.5rem;
}
.toast.toast--translucent {
    opacity: 0.5;
}
.toast.toast--translucent:hover {
    opacity: 1;
}
.toast p {
    margin: 0;
}
.toast a {
    color: #f6f9fc;
    transition: 0.3s;
}
.toast a:hover {
    opacity: 0.8;
    transition: 0.3s;
}
.toast .toast__title {
    margin: 0;
    margin-top: 1rem;
}
.toast .btn-close {
    position: absolute;
    right: 1rem;
    top: 1rem;
}
.toast.toast--primary {
    background-color: #f03d4d;
    border-color: #f03d4d;
}
.toast.toast--dark {
    background-color: #363636;
    border-color: #363636;
}
.toast.toast--link {
    background-color: #5e5cc7;
    border-color: #5e5cc7;
}
.toast.toast--info {
    background-color: #2972fa;
    border-color: #2972fa;
}
.toast.toast--success {
    background-color: #0dd157;
    border-color: #0dd157;
}
.toast.toast--warning {
    background-color: #fab633;
    border-color: #fab633;
}
.toast.toast--danger {
    background-color: #fb4143;
    border-color: #fb4143;
}
.tooltip {
    position: relative;
    overflow: visible;
    white-space: nowrap;
}
.tooltip::after {
    position: absolute;
    color: #fff;
    font-size: 0.6rem;
    background-color: rgba(69, 77, 93, 0.9);
    content: attr(data-tooltip);
    display: block;
    line-height: 1rem;
    text-transform: none;
    overflow: hidden;
    padding: 0.4rem 0.8rem;
    opacity: 0;
    text-overflow: ellipsis;
    max-width: 15rem;
    transform: translate(-50%, 0);
    transition: all var(--animation-duration) ease;
    z-index: 200;
    pointer-events: none;
    bottom: 100%;
    left: 50%;
    border-radius: 0.2rem;
}
.tooltip:focus::after,
.tooltip:hover::after {
    opacity: 1;
    transform: translate(-50%, -0.5rem);
    transition: all var(--animation-duration) ease;
}
.tooltip.tooltip--top-left::after {
    transform: translate(-50%, 0);
}
.tooltip.tooltip--top-left:focus::after,
.tooltip.tooltip--top-left:hover::after {
    left: 0;
    transform: translate(-100%, -0.5rem);
}
.tooltip.tooltip--top-right::after {
    left: auto;
    transform: translate(15%, 0);
}
.tooltip.tooltip--top-right:focus::after,
.tooltip.tooltip--top-right:hover::after {
    right: 0;
    transform: translate(100%, -0.5rem);
}
.tooltip.tooltip--bottom::after {
    top: 100%;
    transform: translate(-50%, -1rem);
    bottom: auto;
}
.tooltip.tooltip--bottom:focus::after,
.tooltip.tooltip--bottom:hover::after {
    transform: translate(-50%, 0.5rem);
    bottom: auto;
}
.tooltip.tooltip--bottom-left::after {
    top: 100%;
    transform: translate(-65%, -1rem);
    bottom: auto;
}
.tooltip.tooltip--bottom-left:focus::after,
.tooltip.tooltip--bottom-left:hover::after {
    left: 0;
    transform: translate(-100%, 0.5rem);
}
.tooltip.tooltip--bottom-right::after {
    left: auto;
    top: 100%;
    transform: translate(0, -1rem);
    bottom: auto;
}
.tooltip.tooltip--bottom-right:focus::after,
.tooltip.tooltip--bottom-right:hover::after {
    right: 0;
    transform: translate(100%, 0.5rem);
}
.tooltip.tooltip--right::after {
    left: 100%;
    bottom: 50%;
    transform: translate(-1rem, 50%);
}
.tooltip.tooltip--right:focus::after,
.tooltip.tooltip--right:hover::after {
    transform: translate(0.5rem, 50%);
}
.tooltip.tooltip--left::after {
    right: 100%;
    bottom: 50%;
    left: auto;
    transform: translate(1rem, 50%);
}
.tooltip.tooltip--left:focus::after,
.tooltip.tooltip--left:hover::after {
    transform: translate(-0.5rem, 50%);
}
