﻿@charset "UTF-8";
:root {
    --bs-blue: #0d6efd;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #1abc9c;
    --bs-cyan: #0dcaf0;
    --bs-black: #000;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    --bs-gray-100: #f8f9fa;
    --bs-gray-200: #e9ecef;
    --bs-gray-300: #dee2e6;
    --bs-gray-400: #ced4da;
    --bs-gray-500: #adb5bd;
    --bs-gray-600: #6c757d;
    --bs-gray-700: #495057;
    --bs-gray-800: #343a40;
    --bs-gray-900: #212529;
    --bs-primary: #1abc9c;
    --bs-secondary: #2c3e50;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #d6ddf0;
    --bs-dark: #3d3d5c;
    --bs-primary-rgb: 61, 61, 92;
    --bs-primary-rgb-dark: 51, 51, 82;
    --bs-secondary-rgb: 82, 82, 64;
    --bs-success-rgb: 25, 135, 84;
    --bs-info-rgb: 13, 202, 240;
    --bs-warning-rgb: 255, 193, 7;
    --bs-danger-rgb: 220, 53, 69;
    --bs-light-rgb: 248, 249, 250;
    --bs-dark-rgb: 33, 37, 41;
    --bs-white-rgb: 255, 255, 255;
    --bs-black-rgb: 0, 0, 0;
    --bs-body-color-rgb: 33, 37, 41;
    --bs-body-bg-rgb: 255, 255, 255;
    --bs-font-sans-serif: 'Raleway', sans-serif;
    --bs-font-monospace: 'Raleway', sans-serif;
    --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
    --bs-body-font-family: var(--bs-font-sans-serif);
    --bs-body-font-size: 1rem;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.5;
    --bs-body-color: #1ca7e5;
    --bs-body-bg: #000;
    --bs-border-width: 0.125rem;
    --bs-border-style: solid;
    --bs-border-color: #dee2e6;
    --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
    --bs-border-radius: 0.5rem;
    --bs-border-radius-sm: 0.25rem;
    --bs-border-radius-lg: 0.75rem;
    --bs-border-radius-xl: 1rem;
    --bs-border-radius-2xl: 2rem;
    --bs-border-radius-pill: 50rem;
    --bs-link-color: #d6ddf0;
    --bs-link-hover-color: #15967d;
    --bs-code-color: #d63384;
    --bs-highlight-bg: #fff3cd;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: smooth;
    }
}

.divider-custom svg {
    display: none !important;
}

.divider-custom-line {
    display: none;
}

.divider-custom-line-dark {
    display: none;
}

.spacer {
    height: 75px;
    width: 100%;
    display: block;
}

.question {
    display: none;
}

.animation-fade {
    animation-name: fade;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

@keyframes fade {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

body {
    margin: 0;
    font-family: var(--bs-body-font-family);
    font-size: var(--bs-body-font-size);
    font-weight: var(--bs-body-font-weight);
    line-height: var(--bs-body-line-height);
    color: var(--bs-body-color);
    text-align: var(--bs-body-text-align);
    background-color: var(--bs-body-bg);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.text-primary {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}

.text-secondary {
    --bs-text-opacity: 1;
    color: #28a7ef;
}

.cta-button {
    width: 150px;
    height: 75px;
    line-height: 75px;
    margin: 0 auto;
    display: block;
    text-align: center;
    background-color: #28a7ef;
    text-decoration: none;
    color: #1c1c2c;
    font-family: 'Raleway', sans-serif;
    font-size: 2em;
    transition: 200ms all ease-in-out;
    box-shadow: 0px 0px 10px #28a7ef;
}

    .cta-button:hover {
        background-color: var(--bs-body-bg);
        color: #28a7ef;
        box-shadow: 0 0 0px 10px #d6ddf0;
    }

hr {
    margin: 1rem 0;
    color: inherit;
    border: 0;
    border-top: 0.125rem solid;
    opacity: 0.25;
}

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-family: 'Bungee', impact;
    font-weight: 700;
    line-height: 1.2;
}

h1, .h1 {
    font-size: calc(1.375rem + 1.5vw);
}

@media (min-width: 1200px) {
    h1, .h1 {
        font-size: 2.5rem;
    }
}

h2, .h2 {
    font-size: calc(1.325rem + 0.9vw);
}

@media (min-width: 1200px) {
    h2, .h2 {
        font-size: 2rem;
    }
}

h3, .h3 {
    font-size: calc(1.3rem + 0.6vw);
}

@media (min-width: 1200px) {
    h3, .h3 {
        font-size: 1.75rem;
    }
}

h4, .h4 {
    font-size: calc(1.275rem + 0.3vw);
}

@media (min-width: 1200px) {
    h4, .h4 {
        font-size: 1.5rem;
    }
}

h5, .h5 {
    font-size: 1.25rem;
}

h6, .h6 {
    font-size: 1rem;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

abbr[title] {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
    cursor: help;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
}

address {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: inherit;
}

ol,
ul {
    padding-left: 2rem;
}

ol,
ul,
dl {
    margin-top: 0;
    margin-bottom: 1rem;
}

    ol ol,
    ul ul,
    ol ul,
    ul ol {
        margin-bottom: 0;
    }

dt {
    font-weight: 700;
}

dd {
    margin-bottom: 0.5rem;
    margin-left: 0;
}

blockquote {
    margin: 0 0 1rem;
}

b,
strong {
    font-weight: bolder;
}

small, .small {
    font-size: 0.875em;
}

mark, .mark {
    padding: 0.1875em;
    background-color: var(--bs-highlight-bg);
}

sub,
sup {
    position: relative;
    font-size: 0.75em;
    line-height: 0;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

a {
    color: var(--bs-link-color);
    text-decoration: underline;
}

    a:hover {
        color: var(--bs-link-hover-color);
    }

    a:not([href]):not([class]), a:not([href]):not([class]):hover {
        color: inherit;
        text-decoration: none;
    }

pre,
code,
kbd,
samp {
    font-family: var(--bs-font-monospace);
    font-size: 1em;
}

pre {
    display: block;
    margin-top: 0;
    margin-bottom: 1rem;
    overflow: auto;
    font-size: 0.875em;
}

    pre code {
        font-size: inherit;
        color: inherit;
        word-break: normal;
    }

code {
    font-size: 0.875em;
    color: var(--bs-code-color);
    word-wrap: break-word;
}

a > code {
    color: inherit;
}

kbd {
    padding: 0.1875rem 0.375rem;
    font-size: 0.875em;
    color: var(--bs-body-bg);
    background-color: var(--bs-body-color);
    border-radius: 0.25rem;
}

    kbd kbd {
        padding: 0;
        font-size: 1em;
    }

figure {
    margin: 0 0 1rem;
}

img,
svg {
    vertical-align: middle;
}

table {
    caption-side: bottom;
    border-collapse: collapse;
}

caption {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    color: #6c757d;
    text-align: left;
}

th {
    text-align: inherit;
    text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
    border-color: inherit;
    border-style: solid;
    border-width: 0;
}

label {
    display: inline-block;
}

button {
    border-radius: 0;
}

    button:focus:not(:focus-visible) {
        outline: 0;
    }

input,
button,
select,
optgroup,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

button,
select {
    text-transform: none;
}

[role=button] {
    cursor: pointer;
}

select {
    word-wrap: normal;
}

    select:disabled {
        opacity: 1;
    }

[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
    display: none !important;
}

button,
[type=button],
[type=reset],
[type=submit] {
    -webkit-appearance: button;
}

    button:not(:disabled),
    [type=button]:not(:disabled),
    [type=reset]:not(:disabled),
    [type=submit]:not(:disabled) {
        cursor: pointer;
    }

::-moz-focus-inner {
    padding: 0;
    border-style: none;
}

textarea {
    resize: vertical;
}

fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0;
}

legend {
    float: left;
    width: 100%;
    padding: 0;
    margin-bottom: 0.5rem;
    font-size: calc(1.275rem + 0.3vw);
    line-height: inherit;
}

@media (min-width: 1200px) {
    legend {
        font-size: 1.5rem;
    }
}

legend + * {
    clear: left;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
    padding: 0;
}

::-webkit-inner-spin-button {
    height: auto;
}

[type=search] {
    outline-offset: -2px;
    -webkit-appearance: textfield;
}

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/
::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
    padding: 0;
}

::file-selector-button {
    font: inherit;
    -webkit-appearance: button;
}

output {
    display: inline-block;
}

iframe {
    border: 0;
}

summary {
    display: list-item;
    cursor: pointer;
}

progress {
    vertical-align: baseline;
}

[hidden] {
    display: none !important;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
}

.display-1 {
    font-size: calc(1.625rem + 4.5vw);
    font-weight: 300;
    line-height: 1.2;
}

@media (min-width: 1200px) {
    .display-1 {
        font-size: 5rem;
    }
}

.display-2 {
    font-size: calc(1.575rem + 3.9vw);
    font-weight: 300;
    line-height: 1.2;
}

@media (min-width: 1200px) {
    .display-2 {
        font-size: 4.5rem;
    }
}

.display-3 {
    font-size: calc(1.525rem + 3.3vw);
    font-weight: 300;
    line-height: 1.2;
}

@media (min-width: 1200px) {
    .display-3 {
        font-size: 4rem;
    }
}

.display-4 {
    font-size: calc(1.475rem + 2.7vw);
    font-weight: 300;
    line-height: 1.2;
}

@media (min-width: 1200px) {
    .display-4 {
        font-size: 3.5rem;
    }
}

.display-5 {
    font-size: calc(1.425rem + 2.1vw);
    font-weight: 300;
    line-height: 1.2;
}

@media (min-width: 1200px) {
    .display-5 {
        font-size: 3rem;
    }
}

.display-6 {
    font-size: calc(1.375rem + 1.5vw);
    font-weight: 300;
    line-height: 1.2;
}

@media (min-width: 1200px) {
    .display-6 {
        font-size: 2.5rem;
    }
}

.list-unstyled {
    padding-left: 0;
    list-style: none;
}

.list-inline {
    padding-left: 0;
    list-style: none;
}

.list-inline-item {
    display: inline-block;
}

    .list-inline-item:not(:last-child) {
        margin-right: 0.5rem;
    }

.initialism {
    font-size: 0.875em;
    text-transform: uppercase;
}

.blockquote {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

    .blockquote > :last-child {
        margin-bottom: 0;
    }

.blockquote-footer {
    margin-top: -1rem;
    margin-bottom: 1rem;
    font-size: 0.875em;
    color: #6c757d;
}

    .blockquote-footer::before {
        content: "— ";
    }

.img-fluid {
    max-width: 100%;
    height: auto;
}

.img-thumbnail {
    padding: 0.25rem;
    background-color: #fff;
    border: 0.125rem solid var(--bs-border-color);
    border-radius: 0.5rem;
    max-width: 100%;
    height: auto;
}

.figure {
    display: inline-block;
}

.figure-img {
    margin-bottom: 0.5rem;
    line-height: 1;
}

.figure-caption {
    font-size: 0.875em;
    color: #6c757d;
}

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container-sm, .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container-md, .container-sm, .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container-lg, .container-md, .container-sm, .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container-xl, .container-lg, .container-md, .container-sm, .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
        max-width: 1320px;
    }
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-0.5 * var(--bs-gutter-x));
    margin-left: calc(-0.5 * var(--bs-gutter-x));
}

    .row > * {
        flex-shrink: 0;
        width: 100%;
        max-width: 100%;
        padding-right: calc(var(--bs-gutter-x) * 0.5);
        padding-left: calc(var(--bs-gutter-x) * 0.5);
        margin-top: var(--bs-gutter-y);
    }

.col {
    flex: 1 0 0%;
}

.row-cols-auto > * {
    flex: 0 0 auto;
    width: auto;
}

.row-cols-1 > * {
    flex: 0 0 auto;
    width: 100%;
}

.row-cols-2 > * {
    flex: 0 0 auto;
    width: 50%;
}

.row-cols-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
}

.row-cols-4 > * {
    flex: 0 0 auto;
    width: 25%;
}

.row-cols-5 > * {
    flex: 0 0 auto;
    width: 20%;
}

.row-cols-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
}

.col-auto {
    flex: 0 0 auto;
    width: auto;
}

.col-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
}

.col-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
}

.col-3 {
    flex: 0 0 auto;
    width: 25%;
}

.col-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
}

.col-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
}

.col-6 {
    flex: 0 0 auto;
    width: 50%;
}

.col-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
}

.col-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
}

.col-9 {
    flex: 0 0 auto;
    width: 75%;
}

.col-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
}

.col-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
}

.col-12 {
    flex: 0 0 auto;
    width: 100%;
}

.offset-1 {
    margin-left: 8.33333333%;
}

.offset-2 {
    margin-left: 16.66666667%;
}

.offset-3 {
    margin-left: 25%;
}

.offset-4 {
    margin-left: 33.33333333%;
}

.offset-5 {
    margin-left: 41.66666667%;
}

.offset-6 {
    margin-left: 50%;
}

.offset-7 {
    margin-left: 58.33333333%;
}

.offset-8 {
    margin-left: 66.66666667%;
}

.offset-9 {
    margin-left: 75%;
}

.offset-10 {
    margin-left: 83.33333333%;
}

.offset-11 {
    margin-left: 91.66666667%;
}

.g-0,
.gx-0 {
    --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
    --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
    --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
    --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
    --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
    --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
    --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
    --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
    --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
    --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
    --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
    --bs-gutter-y: 3rem;
}

@media (min-width: 576px) {
    .col-sm {
        flex: 1 0 0%;
    }

    .row-cols-sm-auto > * {
        flex: 0 0 auto;
        width: auto;
    }

    .row-cols-sm-1 > * {
        flex: 0 0 auto;
        width: 100%;
    }

    .row-cols-sm-2 > * {
        flex: 0 0 auto;
        width: 50%;
    }

    .row-cols-sm-3 > * {
        flex: 0 0 auto;
        width: 33.3333333333%;
    }

    .row-cols-sm-4 > * {
        flex: 0 0 auto;
        width: 25%;
    }

    .row-cols-sm-5 > * {
        flex: 0 0 auto;
        width: 20%;
    }

    .row-cols-sm-6 > * {
        flex: 0 0 auto;
        width: 16.6666666667%;
    }

    .col-sm-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-sm-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-sm-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-sm-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-sm-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-sm-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-sm-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-sm-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-sm-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-sm-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-sm-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-sm-12 {
        flex: 0 0 auto;
        width: 100%;
    }

    .offset-sm-0 {
        margin-left: 0;
    }

    .offset-sm-1 {
        margin-left: 8.33333333%;
    }

    .offset-sm-2 {
        margin-left: 16.66666667%;
    }

    .offset-sm-3 {
        margin-left: 25%;
    }

    .offset-sm-4 {
        margin-left: 33.33333333%;
    }

    .offset-sm-5 {
        margin-left: 41.66666667%;
    }

    .offset-sm-6 {
        margin-left: 50%;
    }

    .offset-sm-7 {
        margin-left: 58.33333333%;
    }

    .offset-sm-8 {
        margin-left: 66.66666667%;
    }

    .offset-sm-9 {
        margin-left: 75%;
    }

    .offset-sm-10 {
        margin-left: 83.33333333%;
    }

    .offset-sm-11 {
        margin-left: 91.66666667%;
    }

    .g-sm-0,
    .gx-sm-0 {
        --bs-gutter-x: 0;
    }

    .g-sm-0,
    .gy-sm-0 {
        --bs-gutter-y: 0;
    }

    .g-sm-1,
    .gx-sm-1 {
        --bs-gutter-x: 0.25rem;
    }

    .g-sm-1,
    .gy-sm-1 {
        --bs-gutter-y: 0.25rem;
    }

    .g-sm-2,
    .gx-sm-2 {
        --bs-gutter-x: 0.5rem;
    }

    .g-sm-2,
    .gy-sm-2 {
        --bs-gutter-y: 0.5rem;
    }

    .g-sm-3,
    .gx-sm-3 {
        --bs-gutter-x: 1rem;
    }

    .g-sm-3,
    .gy-sm-3 {
        --bs-gutter-y: 1rem;
    }

    .g-sm-4,
    .gx-sm-4 {
        --bs-gutter-x: 1.5rem;
    }

    .g-sm-4,
    .gy-sm-4 {
        --bs-gutter-y: 1.5rem;
    }

    .g-sm-5,
    .gx-sm-5 {
        --bs-gutter-x: 3rem;
    }

    .g-sm-5,
    .gy-sm-5 {
        --bs-gutter-y: 3rem;
    }
}

@media (min-width: 768px) {
    .col-md {
        flex: 1 0 0%;
    }

    .row-cols-md-auto > * {
        flex: 0 0 auto;
        width: auto;
    }

    .row-cols-md-1 > * {
        flex: 0 0 auto;
        width: 100%;
    }

    .row-cols-md-2 > * {
        flex: 0 0 auto;
        width: 50%;
    }

    .row-cols-md-3 > * {
        flex: 0 0 auto;
        width: 33.3333333333%;
    }

    .row-cols-md-4 > * {
        flex: 0 0 auto;
        width: 25%;
    }

    .row-cols-md-5 > * {
        flex: 0 0 auto;
        width: 20%;
    }

    .row-cols-md-6 > * {
        flex: 0 0 auto;
        width: 16.6666666667%;
    }

    .col-md-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-md-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-md-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-md-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-md-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-md-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-md-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-md-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-md-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-md-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-md-12 {
        flex: 0 0 auto;
        width: 100%;
    }

    .offset-md-0 {
        margin-left: 0;
    }

    .offset-md-1 {
        margin-left: 8.33333333%;
    }

    .offset-md-2 {
        margin-left: 16.66666667%;
    }

    .offset-md-3 {
        margin-left: 25%;
    }

    .offset-md-4 {
        margin-left: 33.33333333%;
    }

    .offset-md-5 {
        margin-left: 41.66666667%;
    }

    .offset-md-6 {
        margin-left: 50%;
    }

    .offset-md-7 {
        margin-left: 58.33333333%;
    }

    .offset-md-8 {
        margin-left: 66.66666667%;
    }

    .offset-md-9 {
        margin-left: 75%;
    }

    .offset-md-10 {
        margin-left: 83.33333333%;
    }

    .offset-md-11 {
        margin-left: 91.66666667%;
    }

    .g-md-0,
    .gx-md-0 {
        --bs-gutter-x: 0;
    }

    .g-md-0,
    .gy-md-0 {
        --bs-gutter-y: 0;
    }

    .g-md-1,
    .gx-md-1 {
        --bs-gutter-x: 0.25rem;
    }

    .g-md-1,
    .gy-md-1 {
        --bs-gutter-y: 0.25rem;
    }

    .g-md-2,
    .gx-md-2 {
        --bs-gutter-x: 0.5rem;
    }

    .g-md-2,
    .gy-md-2 {
        --bs-gutter-y: 0.5rem;
    }

    .g-md-3,
    .gx-md-3 {
        --bs-gutter-x: 1rem;
    }

    .g-md-3,
    .gy-md-3 {
        --bs-gutter-y: 1rem;
    }

    .g-md-4,
    .gx-md-4 {
        --bs-gutter-x: 1.5rem;
    }

    .g-md-4,
    .gy-md-4 {
        --bs-gutter-y: 1.5rem;
    }

    .g-md-5,
    .gx-md-5 {
        --bs-gutter-x: 3rem;
    }

    .g-md-5,
    .gy-md-5 {
        --bs-gutter-y: 3rem;
    }
}

@media (min-width: 992px) {
    .col-lg {
        flex: 1 0 0%;
    }

    .row-cols-lg-auto > * {
        flex: 0 0 auto;
        width: auto;
    }

    .row-cols-lg-1 > * {
        flex: 0 0 auto;
        width: 100%;
    }

    .row-cols-lg-2 > * {
        flex: 0 0 auto;
        width: 50%;
    }

    .row-cols-lg-3 > * {
        flex: 0 0 auto;
        width: 33.3333333333%;
    }

    .row-cols-lg-4 > * {
        flex: 0 0 auto;
        width: 25%;
    }

    .row-cols-lg-5 > * {
        flex: 0 0 auto;
        width: 20%;
    }

    .row-cols-lg-6 > * {
        flex: 0 0 auto;
        width: 16.6666666667%;
    }

    .col-lg-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-lg-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-lg-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-lg-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-lg-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-lg-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-lg-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-lg-12 {
        flex: 0 0 auto;
        width: 100%;
    }

    .offset-lg-0 {
        margin-left: 0;
    }

    .offset-lg-1 {
        margin-left: 8.33333333%;
    }

    .offset-lg-2 {
        margin-left: 16.66666667%;
    }

    .offset-lg-3 {
        margin-left: 25%;
    }

    .offset-lg-4 {
        margin-left: 33.33333333%;
    }

    .offset-lg-5 {
        margin-left: 41.66666667%;
    }

    .offset-lg-6 {
        margin-left: 50%;
    }

    .offset-lg-7 {
        margin-left: 58.33333333%;
    }

    .offset-lg-8 {
        margin-left: 66.66666667%;
    }

    .offset-lg-9 {
        margin-left: 75%;
    }

    .offset-lg-10 {
        margin-left: 83.33333333%;
    }

    .offset-lg-11 {
        margin-left: 91.66666667%;
    }

    .g-lg-0,
    .gx-lg-0 {
        --bs-gutter-x: 0;
    }

    .g-lg-0,
    .gy-lg-0 {
        --bs-gutter-y: 0;
    }

    .g-lg-1,
    .gx-lg-1 {
        --bs-gutter-x: 0.25rem;
    }

    .g-lg-1,
    .gy-lg-1 {
        --bs-gutter-y: 0.25rem;
    }

    .g-lg-2,
    .gx-lg-2 {
        --bs-gutter-x: 0.5rem;
    }

    .g-lg-2,
    .gy-lg-2 {
        --bs-gutter-y: 0.5rem;
    }

    .g-lg-3,
    .gx-lg-3 {
        --bs-gutter-x: 1rem;
    }

    .g-lg-3,
    .gy-lg-3 {
        --bs-gutter-y: 1rem;
    }

    .g-lg-4,
    .gx-lg-4 {
        --bs-gutter-x: 1.5rem;
    }

    .g-lg-4,
    .gy-lg-4 {
        --bs-gutter-y: 1.5rem;
    }

    .g-lg-5,
    .gx-lg-5 {
        --bs-gutter-x: 3rem;
    }

    .g-lg-5,
    .gy-lg-5 {
        --bs-gutter-y: 3rem;
    }
}

@media (min-width: 1200px) {
    .col-xl {
        flex: 1 0 0%;
    }

    .row-cols-xl-auto > * {
        flex: 0 0 auto;
        width: auto;
    }

    .row-cols-xl-1 > * {
        flex: 0 0 auto;
        width: 100%;
    }

    .row-cols-xl-2 > * {
        flex: 0 0 auto;
        width: 50%;
    }

    .row-cols-xl-3 > * {
        flex: 0 0 auto;
        width: 33.3333333333%;
    }

    .row-cols-xl-4 > * {
        flex: 0 0 auto;
        width: 25%;
    }

    .row-cols-xl-5 > * {
        flex: 0 0 auto;
        width: 20%;
    }

    .row-cols-xl-6 > * {
        flex: 0 0 auto;
        width: 16.6666666667%;
    }

    .col-xl-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-xl-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-xl-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-xl-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-xl-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-xl-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-xl-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-xl-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-xl-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-xl-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-xl-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-xl-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-xl-12 {
        flex: 0 0 auto;
        width: 100%;
    }

    .offset-xl-0 {
        margin-left: 0;
    }

    .offset-xl-1 {
        margin-left: 8.33333333%;
    }

    .offset-xl-2 {
        margin-left: 16.66666667%;
    }

    .offset-xl-3 {
        margin-left: 25%;
    }

    .offset-xl-4 {
        margin-left: 33.33333333%;
    }

    .offset-xl-5 {
        margin-left: 41.66666667%;
    }

    .offset-xl-6 {
        margin-left: 50%;
    }

    .offset-xl-7 {
        margin-left: 58.33333333%;
    }

    .offset-xl-8 {
        margin-left: 66.66666667%;
    }

    .offset-xl-9 {
        margin-left: 75%;
    }

    .offset-xl-10 {
        margin-left: 83.33333333%;
    }

    .offset-xl-11 {
        margin-left: 91.66666667%;
    }

    .g-xl-0,
    .gx-xl-0 {
        --bs-gutter-x: 0;
    }

    .g-xl-0,
    .gy-xl-0 {
        --bs-gutter-y: 0;
    }

    .g-xl-1,
    .gx-xl-1 {
        --bs-gutter-x: 0.25rem;
    }

    .g-xl-1,
    .gy-xl-1 {
        --bs-gutter-y: 0.25rem;
    }

    .g-xl-2,
    .gx-xl-2 {
        --bs-gutter-x: 0.5rem;
    }

    .g-xl-2,
    .gy-xl-2 {
        --bs-gutter-y: 0.5rem;
    }

    .g-xl-3,
    .gx-xl-3 {
        --bs-gutter-x: 1rem;
    }

    .g-xl-3,
    .gy-xl-3 {
        --bs-gutter-y: 1rem;
    }

    .g-xl-4,
    .gx-xl-4 {
        --bs-gutter-x: 1.5rem;
    }

    .g-xl-4,
    .gy-xl-4 {
        --bs-gutter-y: 1.5rem;
    }

    .g-xl-5,
    .gx-xl-5 {
        --bs-gutter-x: 3rem;
    }

    .g-xl-5,
    .gy-xl-5 {
        --bs-gutter-y: 3rem;
    }
}

@media (min-width: 1400px) {
    .col-xxl {
        flex: 1 0 0%;
    }

    .row-cols-xxl-auto > * {
        flex: 0 0 auto;
        width: auto;
    }

    .row-cols-xxl-1 > * {
        flex: 0 0 auto;
        width: 100%;
    }

    .row-cols-xxl-2 > * {
        flex: 0 0 auto;
        width: 50%;
    }

    .row-cols-xxl-3 > * {
        flex: 0 0 auto;
        width: 33.3333333333%;
    }

    .row-cols-xxl-4 > * {
        flex: 0 0 auto;
        width: 25%;
    }

    .row-cols-xxl-5 > * {
        flex: 0 0 auto;
        width: 20%;
    }

    .row-cols-xxl-6 > * {
        flex: 0 0 auto;
        width: 16.6666666667%;
    }

    .col-xxl-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-xxl-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-xxl-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-xxl-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-xxl-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-xxl-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-xxl-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-xxl-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-xxl-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-xxl-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-xxl-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-xxl-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-xxl-12 {
        flex: 0 0 auto;
        width: 100%;
    }

    .offset-xxl-0 {
        margin-left: 0;
    }

    .offset-xxl-1 {
        margin-left: 8.33333333%;
    }

    .offset-xxl-2 {
        margin-left: 16.66666667%;
    }

    .offset-xxl-3 {
        margin-left: 25%;
    }

    .offset-xxl-4 {
        margin-left: 33.33333333%;
    }

    .offset-xxl-5 {
        margin-left: 41.66666667%;
    }

    .offset-xxl-6 {
        margin-left: 50%;
    }

    .offset-xxl-7 {
        margin-left: 58.33333333%;
    }

    .offset-xxl-8 {
        margin-left: 66.66666667%;
    }

    .offset-xxl-9 {
        margin-left: 75%;
    }

    .offset-xxl-10 {
        margin-left: 83.33333333%;
    }

    .offset-xxl-11 {
        margin-left: 91.66666667%;
    }

    .g-xxl-0,
    .gx-xxl-0 {
        --bs-gutter-x: 0;
    }

    .g-xxl-0,
    .gy-xxl-0 {
        --bs-gutter-y: 0;
    }

    .g-xxl-1,
    .gx-xxl-1 {
        --bs-gutter-x: 0.25rem;
    }

    .g-xxl-1,
    .gy-xxl-1 {
        --bs-gutter-y: 0.25rem;
    }

    .g-xxl-2,
    .gx-xxl-2 {
        --bs-gutter-x: 0.5rem;
    }

    .g-xxl-2,
    .gy-xxl-2 {
        --bs-gutter-y: 0.5rem;
    }

    .g-xxl-3,
    .gx-xxl-3 {
        --bs-gutter-x: 1rem;
    }

    .g-xxl-3,
    .gy-xxl-3 {
        --bs-gutter-y: 1rem;
    }

    .g-xxl-4,
    .gx-xxl-4 {
        --bs-gutter-x: 1.5rem;
    }

    .g-xxl-4,
    .gy-xxl-4 {
        --bs-gutter-y: 1.5rem;
    }

    .g-xxl-5,
    .gx-xxl-5 {
        --bs-gutter-x: 3rem;
    }

    .g-xxl-5,
    .gy-xxl-5 {
        --bs-gutter-y: 3rem;
    }
}

.table {
    --bs-table-color: var(--bs-body-color);
    --bs-table-bg: transparent;
    --bs-table-border-color: var(--bs-border-color);
    --bs-table-accent-bg: transparent;
    --bs-table-striped-color: var(--bs-body-color);
    --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
    --bs-table-active-color: var(--bs-body-color);
    --bs-table-active-bg: rgba(0, 0, 0, 0.1);
    --bs-table-hover-color: var(--bs-body-color);
    --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
    width: 100%;
    margin-bottom: 1rem;
    color: var(--bs-table-color);
    vertical-align: top;
    border-color: var(--bs-table-border-color);
}

    .table > :not(caption) > * > * {
        padding: 0.5rem 0.5rem;
        background-color: var(--bs-table-bg);
        border-bottom-width: 0.125rem;
        box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
    }

    .table > tbody {
        vertical-align: inherit;
    }

    .table > thead {
        vertical-align: bottom;
    }

.table-group-divider {
    border-top: 0.25rem solid currentcolor;
}

.caption-top {
    caption-side: top;
}

.table-sm > :not(caption) > * > * {
    padding: 0.25rem 0.25rem;
}

.table-bordered > :not(caption) > * {
    border-width: 0.125rem 0;
}

    .table-bordered > :not(caption) > * > * {
        border-width: 0 0.125rem;
    }

.table-borderless > :not(caption) > * > * {
    border-bottom-width: 0;
}

.table-borderless > :not(:first-child) {
    border-top-width: 0;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
    --bs-table-accent-bg: var(--bs-table-striped-bg);
    color: var(--bs-table-striped-color);
}

.table-striped-columns > :not(caption) > tr > :nth-child(even) {
    --bs-table-accent-bg: var(--bs-table-striped-bg);
    color: var(--bs-table-striped-color);
}

.table-active {
    --bs-table-accent-bg: var(--bs-table-active-bg);
    color: var(--bs-table-active-color);
}

.table-hover > tbody > tr:hover > * {
    --bs-table-accent-bg: var(--bs-table-hover-bg);
    color: var(--bs-table-hover-color);
}

.table-primary {
    --bs-table-color: #000;
    --bs-table-bg: #d1f2eb;
    --bs-table-border-color: #bcdad4;
    --bs-table-striped-bg: #c7e6df;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #bcdad4;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #c1e0d9;
    --bs-table-hover-color: #000;
    color: var(--bs-table-color);
    border-color: var(--bs-table-border-color);
}

.table-secondary {
    --bs-table-color: #000;
    --bs-table-bg: #d5d8dc;
    --bs-table-border-color: #c0c2c6;
    --bs-table-striped-bg: #cacdd1;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #c0c2c6;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #c5c8cc;
    --bs-table-hover-color: #000;
    color: var(--bs-table-color);
    border-color: var(--bs-table-border-color);
}

.table-success {
    --bs-table-color: #000;
    --bs-table-bg: #d1e7dd;
    --bs-table-border-color: #bcd0c7;
    --bs-table-striped-bg: #c7dbd2;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #bcd0c7;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #c1d6cc;
    --bs-table-hover-color: #000;
    color: var(--bs-table-color);
    border-color: var(--bs-table-border-color);
}

.table-info {
    --bs-table-color: #000;
    --bs-table-bg: #cff4fc;
    --bs-table-border-color: #badce3;
    --bs-table-striped-bg: #c5e8ef;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #badce3;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #bfe2e9;
    --bs-table-hover-color: #000;
    color: var(--bs-table-color);
    border-color: var(--bs-table-border-color);
}

.table-warning {
    --bs-table-color: #000;
    --bs-table-bg: #fff3cd;
    --bs-table-border-color: #e6dbb9;
    --bs-table-striped-bg: #f2e7c3;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #e6dbb9;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #ece1be;
    --bs-table-hover-color: #000;
    color: var(--bs-table-color);
    border-color: var(--bs-table-border-color);
}

.table-danger {
    --bs-table-color: #000;
    --bs-table-bg: #f8d7da;
    --bs-table-border-color: #dfc2c4;
    --bs-table-striped-bg: #eccccf;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #dfc2c4;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #e5c7ca;
    --bs-table-hover-color: #000;
    color: var(--bs-table-color);
    border-color: var(--bs-table-border-color);
}

.table-light {
    --bs-table-color: #000;
    --bs-table-bg: #f8f9fa;
    --bs-table-border-color: #dfe0e1;
    --bs-table-striped-bg: #ecedee;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #dfe0e1;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #e5e6e7;
    --bs-table-hover-color: #000;
    color: var(--bs-table-color);
    border-color: var(--bs-table-border-color);
}

.table-dark {
    --bs-table-color: #fff;
    --bs-table-bg: #212529;
    --bs-table-border-color: #373b3e;
    --bs-table-striped-bg: #2c3034;
    --bs-table-striped-color: #fff;
    --bs-table-active-bg: #373b3e;
    --bs-table-active-color: #fff;
    --bs-table-hover-bg: #323539;
    --bs-table-hover-color: #fff;
    color: var(--bs-table-color);
    border-color: var(--bs-table-border-color);
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 575.98px) {
    .table-responsive-sm {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 767.98px) {
    .table-responsive-md {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 991.98px) {
    .table-responsive-lg {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 1199.98px) {
    .table-responsive-xl {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 1399.98px) {
    .table-responsive-xxl {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

.form-label {
    margin-bottom: 0.5rem;
}

.col-form-label {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    margin-bottom: 0;
    font-size: inherit;
    line-height: 1.5;
}

.col-form-label-lg {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
    font-size: 1.25rem;
}

.col-form-label-sm {
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
    font-size: 0.875rem;
}

.form-text {
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: #6c757d;
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 0.125rem solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.5rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .form-control {
        transition: none;
    }
}

.form-control[type=file] {
    overflow: hidden;
}

    .form-control[type=file]:not(:disabled):not([readonly]) {
        cursor: pointer;
    }

.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #8ddece;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(26, 188, 156, 0.25);
}

.form-control::-webkit-date-and-time-value {
    height: 1.5em;
}

.form-control::-moz-placeholder {
    color: #6c757d;
    opacity: 1;
}

.form-control::placeholder {
    color: #6c757d;
    opacity: 1;
}

.form-control:disabled {
    background-color: #e9ecef;
    opacity: 1;
}

.form-control::file-selector-button {
    padding: 0.375rem 0.75rem;
    margin: -0.375rem -0.75rem;
    -webkit-margin-end: 0.75rem;
    margin-inline-end: 0.75rem;
    color: #212529;
    background-color: #e9ecef;
    pointer-events: none;
    border-color: inherit;
    border-style: solid;
    border-width: 0;
    border-inline-end-width: 0.125rem;
    border-radius: 0;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .form-control::file-selector-button {
        transition: none;
    }
}

.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
    background-color: #dde0e3;
}

.form-control-plaintext {
    display: block;
    width: 100%;
    padding: 0.375rem 0;
    margin-bottom: 0;
    line-height: 1.5;
    color: #212529;
    background-color: transparent;
    border: solid transparent;
    border-width: 0.125rem 0;
}

    .form-control-plaintext:focus {
        outline: 0;
    }

    .form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
        padding-right: 0;
        padding-left: 0;
    }

.form-control-sm {
    min-height: calc(1.5em + 0.75rem);
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    border-radius: 0.25rem;
}

    .form-control-sm::file-selector-button {
        padding: 0.25rem 0.5rem;
        margin: -0.25rem -0.5rem;
        -webkit-margin-end: 0.5rem;
        margin-inline-end: 0.5rem;
    }

.form-control-lg {
    min-height: calc(1.5em + 1.25rem);
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    border-radius: 0.75rem;
}

    .form-control-lg::file-selector-button {
        padding: 0.5rem 1rem;
        margin: -0.5rem -1rem;
        -webkit-margin-end: 1rem;
        margin-inline-end: 1rem;
    }

textarea.form-control {
    min-height: calc(1.5em + 1rem);
}

textarea.form-control-sm {
    min-height: calc(1.5em + 0.75rem);
}

textarea.form-control-lg {
    min-height: calc(1.5em + 1.25rem);
}

.form-control-color {
    width: 3rem;
    height: calc(1.5em + 1rem);
    padding: 0.375rem;
}

    .form-control-color:not(:disabled):not([readonly]) {
        cursor: pointer;
    }

    .form-control-color::-moz-color-swatch {
        border: 0 !important;
        border-radius: 0.5rem;
    }

    .form-control-color::-webkit-color-swatch {
        border-radius: 0.5rem;
    }

    .form-control-color.form-control-sm {
        height: calc(1.5em + 0.75rem);
    }

    .form-control-color.form-control-lg {
        height: calc(1.5em + 1.25rem);
    }

.form-select {
    display: block;
    width: 100%;
    padding: 0.375rem 2.25rem 0.375rem 0.75rem;
    -moz-padding-start: calc(0.75rem - 3px);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    border: 0.125rem solid #ced4da;
    border-radius: 0.5rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

@media (prefers-reduced-motion: reduce) {
    .form-select {
        transition: none;
    }
}

.form-select:focus {
    border-color: #8ddece;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(26, 188, 156, 0.25);
}

.form-select[multiple], .form-select[size]:not([size="1"]) {
    padding-right: 0.75rem;
    background-image: none;
}

.form-select:disabled {
    background-color: #e9ecef;
}

.form-select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #212529;
}

.form-select-sm {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    padding-left: 0.5rem;
    font-size: 0.875rem;
    border-radius: 0.25rem;
}

.form-select-lg {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 1rem;
    font-size: 1.25rem;
    border-radius: 0.75rem;
}

.form-check {
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5em;
    margin-bottom: 0.125rem;
}

    .form-check .form-check-input {
        float: left;
        margin-left: -1.5em;
    }

.form-check-reverse {
    padding-right: 1.5em;
    padding-left: 0;
    text-align: right;
}

    .form-check-reverse .form-check-input {
        float: right;
        margin-right: -1.5em;
        margin-left: 0;
    }

.form-check-input {
    width: 1em;
    height: 1em;
    margin-top: 0.25em;
    vertical-align: top;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid rgba(0, 0, 0, 0.25);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
}

    .form-check-input[type=checkbox] {
        border-radius: 0.25em;
    }

    .form-check-input[type=radio] {
        border-radius: 50%;
    }

    .form-check-input:active {
        filter: brightness(90%);
    }

    .form-check-input:focus {
        border-color: #8ddece;
        outline: 0;
        box-shadow: 0 0 0 0.25rem rgba(26, 188, 156, 0.25);
    }

    .form-check-input:checked {
        background-color: #1abc9c;
        border-color: #1abc9c;
    }

        .form-check-input:checked[type=checkbox] {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
        }

        .form-check-input:checked[type=radio] {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
        }

    .form-check-input[type=checkbox]:indeterminate {
        background-color: #1abc9c;
        border-color: #1abc9c;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
    }

    .form-check-input:disabled {
        pointer-events: none;
        filter: none;
        opacity: 0.5;
    }

        .form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
            cursor: default;
            opacity: 0.5;
        }

.form-switch {
    padding-left: 2.5em;
}

    .form-switch .form-check-input {
        width: 2em;
        margin-left: -2.5em;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
        background-position: left center;
        border-radius: 2em;
        transition: background-position 0.15s ease-in-out;
    }

@media (prefers-reduced-motion: reduce) {
    .form-switch .form-check-input {
        transition: none;
    }
}

.form-switch .form-check-input:focus {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%238ddece'/%3e%3c/svg%3e");
}

.form-switch .form-check-input:checked {
    background-position: right center;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.form-switch.form-check-reverse {
    padding-right: 2.5em;
    padding-left: 0;
}

    .form-switch.form-check-reverse .form-check-input {
        margin-right: -2.5em;
        margin-left: 0;
    }

.form-check-inline {
    display: inline-block;
    margin-right: 1rem;
}

.btn-check {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none;
}

    .btn-check[disabled] + .btn, .btn-check:disabled + .btn {
        pointer-events: none;
        filter: none;
        opacity: 0.65;
    }

.form-range {
    width: 100%;
    height: 1.5rem;
    padding: 0;
    background-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

    .form-range:focus {
        outline: 0;
    }

        .form-range:focus::-webkit-slider-thumb {
            box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(26, 188, 156, 0.25);
        }

        .form-range:focus::-moz-range-thumb {
            box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(26, 188, 156, 0.25);
        }

    .form-range::-moz-focus-outer {
        border: 0;
    }

    .form-range::-webkit-slider-thumb {
        width: 1rem;
        height: 1rem;
        margin-top: -0.25rem;
        background-color: #1abc9c;
        border: 0;
        border-radius: 1rem;
        -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
        transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
        -webkit-appearance: none;
        appearance: none;
    }

@media (prefers-reduced-motion: reduce) {
    .form-range::-webkit-slider-thumb {
        -webkit-transition: none;
        transition: none;
    }
}

.form-range::-webkit-slider-thumb:active {
    background-color: #baebe1;
}

.form-range::-webkit-slider-runnable-track {
    width: 100%;
    height: 0.5rem;
    color: transparent;
    cursor: pointer;
    background-color: #dee2e6;
    border-color: transparent;
    border-radius: 1rem;
}

.form-range::-moz-range-thumb {
    width: 1rem;
    height: 1rem;
    background-color: #1abc9c;
    border: 0;
    border-radius: 1rem;
    -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    -moz-appearance: none;
    appearance: none;
}

@media (prefers-reduced-motion: reduce) {
    .form-range::-moz-range-thumb {
        -moz-transition: none;
        transition: none;
    }
}

.form-range::-moz-range-thumb:active {
    background-color: #baebe1;
}

.form-range::-moz-range-track {
    width: 100%;
    height: 0.5rem;
    color: transparent;
    cursor: pointer;
    background-color: #dee2e6;
    border-color: transparent;
    border-radius: 1rem;
}

.form-range:disabled {
    pointer-events: none;
}

    .form-range:disabled::-webkit-slider-thumb {
        background-color: #adb5bd;
    }

    .form-range:disabled::-moz-range-thumb {
        background-color: #adb5bd;
    }

.form-floating {
    position: relative;
}

    .form-floating > .form-control,
    .form-floating > .form-control-plaintext,
    .form-floating > .form-select {
        height: 5.5rem;
        line-height: 1.25;
    }

    .form-floating > label {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding: 1.5rem 0;
        overflow: hidden;
        text-align: start;
        text-overflow: ellipsis;
        white-space: nowrap;
        pointer-events: none;
        border: 0.125rem solid transparent;
        transform-origin: 0 0;
        transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
    }

@media (prefers-reduced-motion: reduce) {
    .form-floating > label {
        transition: none;
    }
}

.form-floating > .form-control,
.form-floating > .form-control-plaintext {
    padding: 1.5rem 0;
}

    .form-floating > .form-control::-moz-placeholder, .form-floating > .form-control-plaintext::-moz-placeholder {
        color: transparent;
    }

    .form-floating > .form-control::placeholder,
    .form-floating > .form-control-plaintext::placeholder {
        color: transparent;
    }

    .form-floating > .form-control:not(:-moz-placeholder-shown), .form-floating > .form-control-plaintext:not(:-moz-placeholder-shown) {
        padding-top: 2.5rem;
        padding-bottom: 1.5rem;
    }

    .form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown),
    .form-floating > .form-control-plaintext:focus,
    .form-floating > .form-control-plaintext:not(:placeholder-shown) {
        padding-top: 2.5rem;
        padding-bottom: 1.5rem;
    }

    .form-floating > .form-control:-webkit-autofill,
    .form-floating > .form-control-plaintext:-webkit-autofill {
        padding-top: 2.5rem;
        padding-bottom: 1.5rem;
    }

.form-floating > .form-select {
    padding-top: 2.5rem;
    padding-bottom: 1.5rem;
}

.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label {
    opacity: 0.65;
    transform: scale(0.65) translateY(-0.5rem) translateX(0rem);
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-control-plaintext ~ label,
.form-floating > .form-select ~ label {
    opacity: 0.65;
    transform: scale(0.65) translateY(-0.5rem) translateX(0rem);
}

.form-floating > .form-control:-webkit-autofill ~ label {
    opacity: 0.65;
    transform: scale(0.65) translateY(-0.5rem) translateX(0rem);
}

.form-floating > .form-control-plaintext ~ label {
    border-width: 0.125rem 0;
}

.input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}

    .input-group > .form-control,
    .input-group > .form-select,
    .input-group > .form-floating {
        position: relative;
        flex: 1 1 auto;
        width: 1%;
        min-width: 0;
    }

        .input-group > .form-control:focus,
        .input-group > .form-select:focus,
        .input-group > .form-floating:focus-within {
            z-index: 5;
        }

    .input-group .btn {
        position: relative;
        z-index: 2;
    }

        .input-group .btn:focus {
            z-index: 5;
        }

.input-group-text {
    display: flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    white-space: nowrap;
    background-color: #e9ecef;
    border: 0.125rem solid #ced4da;
    border-radius: 0.5rem;
}

.input-group-lg > .form-control,
.input-group-lg > .form-select,
.input-group-lg > .input-group-text,
.input-group-lg > .btn {
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    border-radius: 0.75rem;
}

.input-group-sm > .form-control,
.input-group-sm > .form-select,
.input-group-sm > .input-group-text,
.input-group-sm > .btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    border-radius: 0.25rem;
}

.input-group-lg > .form-select,
.input-group-sm > .form-select {
    padding-right: 3rem;
}

.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3),
.input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-control,
.input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-select {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.input-group.has-validation > :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
.input-group.has-validation > .dropdown-toggle:nth-last-child(n+4),
.input-group.has-validation > .form-floating:nth-last-child(n+3) > .form-control,
.input-group.has-validation > .form-floating:nth-last-child(n+3) > .form-select {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    margin-left: -0.125rem;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.input-group > .form-floating:not(:first-child) > .form-control,
.input-group > .form-floating:not(:first-child) > .form-select {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.valid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: #198754;
}

.valid-tooltip {
    position: absolute;
    top: 100%;
    z-index: 5;
    display: none;
    max-width: 100%;
    padding: 0.25rem 0.5rem;
    margin-top: 0.1rem;
    font-size: 0.875rem;
    color: #fff;
    background-color: rgba(25, 135, 84, 0.9);
    border-radius: 0.5rem;
}

.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
    display: block;
}

.was-validated .form-control:valid, .form-control.is-valid {
    border-color: #198754;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

    .was-validated .form-control:valid:focus, .form-control.is-valid:focus {
        border-color: #198754;
        box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
    }

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
    padding-right: calc(1.5em + 0.75rem);
    background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .form-select:valid, .form-select.is-valid {
    border-color: #198754;
}

    .was-validated .form-select:valid:not([multiple]):not([size]), .was-validated .form-select:valid:not([multiple])[size="1"], .form-select.is-valid:not([multiple]):not([size]), .form-select.is-valid:not([multiple])[size="1"] {
        padding-right: 4.125rem;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
        background-position: right 0.75rem center, center right 2.25rem;
        background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
    }

    .was-validated .form-select:valid:focus, .form-select.is-valid:focus {
        border-color: #198754;
        box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
    }

.was-validated .form-control-color:valid, .form-control-color.is-valid {
    width: calc(3rem + calc(1.5em + 0.75rem));
}

.was-validated .form-check-input:valid, .form-check-input.is-valid {
    border-color: #198754;
}

    .was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {
        background-color: #198754;
    }

    .was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus {
        box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
    }

    .was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
        color: #198754;
    }

.form-check-inline .form-check-input ~ .valid-feedback {
    margin-left: 0.5em;
}

.was-validated .input-group > .form-control:not(:focus):valid, .input-group > .form-control:not(:focus).is-valid,
.was-validated .input-group > .form-select:not(:focus):valid,
.input-group > .form-select:not(:focus).is-valid,
.was-validated .input-group > .form-floating:not(:focus-within):valid,
.input-group > .form-floating:not(:focus-within).is-valid {
    z-index: 3;
}

.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: #dc3545;
}

.invalid-tooltip {
    position: absolute;
    top: 100%;
    z-index: 5;
    display: none;
    max-width: 100%;
    padding: 0.25rem 0.5rem;
    margin-top: 0.1rem;
    font-size: 0.875rem;
    color: #fff;
    background-color: rgba(220, 53, 69, 0.9);
    border-radius: 0.5rem;
}

.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
    display: block;
}

.was-validated .form-control:invalid, .form-control.is-invalid {
    border-color: #dc3545;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

    .was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
        border-color: #dc3545;
        box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
    }

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
    padding-right: calc(1.5em + 0.75rem);
    background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .form-select:invalid, .form-select.is-invalid {
    border-color: #dc3545;
}

    .was-validated .form-select:invalid:not([multiple]):not([size]), .was-validated .form-select:invalid:not([multiple])[size="1"], .form-select.is-invalid:not([multiple]):not([size]), .form-select.is-invalid:not([multiple])[size="1"] {
        padding-right: 4.125rem;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
        background-position: right 0.75rem center, center right 2.25rem;
        background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
    }

    .was-validated .form-select:invalid:focus, .form-select.is-invalid:focus {
        border-color: #dc3545;
        box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
    }

.was-validated .form-control-color:invalid, .form-control-color.is-invalid {
    width: calc(3rem + calc(1.5em + 0.75rem));
}

.was-validated .form-check-input:invalid, .form-check-input.is-invalid {
    border-color: #dc3545;
}

    .was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked {
        background-color: #dc3545;
    }

    .was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus {
        box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
    }

    .was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
        color: #dc3545;
    }

.form-check-inline .form-check-input ~ .invalid-feedback {
    margin-left: 0.5em;
}

.was-validated .input-group > .form-control:not(:focus):invalid, .input-group > .form-control:not(:focus).is-invalid,
.was-validated .input-group > .form-select:not(:focus):invalid,
.input-group > .form-select:not(:focus).is-invalid,
.was-validated .input-group > .form-floating:not(:focus-within):invalid,
.input-group > .form-floating:not(:focus-within).is-invalid {
    z-index: 4;
}

.btn {
    --bs-btn-padding-x: 0.75rem;
    --bs-btn-padding-y: 0.375rem;
    --bs-btn-font-family:;
    --bs-btn-font-size: 1rem;
    --bs-btn-font-weight: 400;
    --bs-btn-line-height: 1.5;
    --bs-btn-color: #212529;
    --bs-btn-bg: transparent;
    --bs-btn-border-width: 0.125rem;
    --bs-btn-border-color: transparent;
    --bs-btn-border-radius: 0.5rem;
    --bs-btn-hover-border-color: transparent;
    --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
    --bs-btn-disabled-opacity: 0.65;
    --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);
    display: inline-block;
    padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
    font-family: var(--bs-btn-font-family);
    font-size: var(--bs-btn-font-size);
    font-weight: var(--bs-btn-font-weight);
    line-height: var(--bs-btn-line-height);
    color: var(--bs-btn-color);
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
    border-radius: var(--bs-btn-border-radius);
    background-color: var(--bs-btn-bg);
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .btn {
        transition: none;
    }
}

.btn:hover {
    color: var(--bs-btn-hover-color);
    background-color: var(--bs-btn-hover-bg);
    border-color: var(--bs-btn-hover-border-color);
}

.btn-check + .btn:hover {
    color: var(--bs-btn-color);
    background-color: var(--bs-btn-bg);
    border-color: var(--bs-btn-border-color);
}

.btn:focus-visible {
    color: var(--bs-btn-hover-color);
    background-color: var(--bs-btn-hover-bg);
    border-color: var(--bs-btn-hover-border-color);
    outline: 0;
    box-shadow: var(--bs-btn-focus-box-shadow);
}

.btn-check:focus-visible + .btn {
    border-color: var(--bs-btn-hover-border-color);
    outline: 0;
    box-shadow: var(--bs-btn-focus-box-shadow);
}

.btn-check:checked + .btn, :not(.btn-check) + .btn:active, .btn:first-child:active, .btn.active, .btn.show {
    color: var(--bs-btn-active-color);
    background-color: var(--bs-btn-active-bg);
    border-color: var(--bs-btn-active-border-color);
}

    .btn-check:checked + .btn:focus-visible, :not(.btn-check) + .btn:active:focus-visible, .btn:first-child:active:focus-visible, .btn.active:focus-visible, .btn.show:focus-visible {
        box-shadow: var(--bs-btn-focus-box-shadow);
    }

.btn:disabled, .btn.disabled, fieldset:disabled .btn {
    color: var(--bs-btn-disabled-color);
    pointer-events: none;
    background-color: var(--bs-btn-disabled-bg);
    border-color: var(--bs-btn-disabled-border-color);
    opacity: var(--bs-btn-disabled-opacity);
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #1abc9c;
    --bs-btn-border-color: #1abc9c;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #16a085;
    --bs-btn-hover-border-color: #15967d;
    --bs-btn-focus-shadow-rgb: 60, 198, 171;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #15967d;
    --bs-btn-active-border-color: #148d75;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #1abc9c;
    --bs-btn-disabled-border-color: #1abc9c;
}

.btn-secondary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #2c3e50;
    --bs-btn-border-color: #2c3e50;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #253544;
    --bs-btn-hover-border-color: #233240;
    --bs-btn-focus-shadow-rgb: 76, 91, 106;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #233240;
    --bs-btn-active-border-color: #212f3c;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #2c3e50;
    --bs-btn-disabled-border-color: #2c3e50;
}

.btn-success {
    --bs-btn-color: #fff;
    --bs-btn-bg: #198754;
    --bs-btn-border-color: #198754;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #157347;
    --bs-btn-hover-border-color: #146c43;
    --bs-btn-focus-shadow-rgb: 60, 153, 110;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #146c43;
    --bs-btn-active-border-color: #13653f;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #198754;
    --bs-btn-disabled-border-color: #198754;
}

.btn-info {
    --bs-btn-color: #000;
    --bs-btn-bg: #0dcaf0;
    --bs-btn-border-color: #0dcaf0;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #31d2f2;
    --bs-btn-hover-border-color: #25cff2;
    --bs-btn-focus-shadow-rgb: 11, 172, 204;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #3dd5f3;
    --bs-btn-active-border-color: #25cff2;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #000;
    --bs-btn-disabled-bg: #0dcaf0;
    --bs-btn-disabled-border-color: #0dcaf0;
}

.btn-warning {
    --bs-btn-color: #000;
    --bs-btn-bg: #ffc107;
    --bs-btn-border-color: #ffc107;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #ffca2c;
    --bs-btn-hover-border-color: #ffc720;
    --bs-btn-focus-shadow-rgb: 217, 164, 6;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #ffcd39;
    --bs-btn-active-border-color: #ffc720;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #000;
    --bs-btn-disabled-bg: #ffc107;
    --bs-btn-disabled-border-color: #ffc107;
}

.btn-danger {
    --bs-btn-color: #fff;
    --bs-btn-bg: #dc3545;
    --bs-btn-border-color: #dc3545;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #bb2d3b;
    --bs-btn-hover-border-color: #b02a37;
    --bs-btn-focus-shadow-rgb: 225, 83, 97;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #b02a37;
    --bs-btn-active-border-color: #a52834;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #dc3545;
    --bs-btn-disabled-border-color: #dc3545;
}

.btn-light {
    --bs-btn-color: #000;
    --bs-btn-bg: #f8f9fa;
    --bs-btn-border-color: #f8f9fa;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #d3d4d5;
    --bs-btn-hover-border-color: #c6c7c8;
    --bs-btn-focus-shadow-rgb: 211, 212, 213;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #c6c7c8;
    --bs-btn-active-border-color: #babbbc;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #000;
    --bs-btn-disabled-bg: #f8f9fa;
    --bs-btn-disabled-border-color: #f8f9fa;
}

.btn-dark {
    --bs-btn-color: #fff;
    --bs-btn-bg: #212529;
    --bs-btn-border-color: #212529;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #424649;
    --bs-btn-hover-border-color: #373b3e;
    --bs-btn-focus-shadow-rgb: 66, 70, 73;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #4d5154;
    --bs-btn-active-border-color: #373b3e;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #212529;
    --bs-btn-disabled-border-color: #212529;
}

.btn-outline-primary {
    --bs-btn-color: #1abc9c;
    --bs-btn-border-color: #1abc9c;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #1abc9c;
    --bs-btn-hover-border-color: #1abc9c;
    --bs-btn-focus-shadow-rgb: 26, 188, 156;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #1abc9c;
    --bs-btn-active-border-color: #1abc9c;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #1abc9c;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #1abc9c;
    --bs-gradient: none;
}

.btn-outline-secondary {
    --bs-btn-color: #2c3e50;
    --bs-btn-border-color: #2c3e50;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #2c3e50;
    --bs-btn-hover-border-color: #2c3e50;
    --bs-btn-focus-shadow-rgb: 44, 62, 80;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #2c3e50;
    --bs-btn-active-border-color: #2c3e50;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #2c3e50;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #2c3e50;
    --bs-gradient: none;
}

.btn-outline-success {
    --bs-btn-color: #198754;
    --bs-btn-border-color: #198754;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #198754;
    --bs-btn-hover-border-color: #198754;
    --bs-btn-focus-shadow-rgb: 25, 135, 84;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #198754;
    --bs-btn-active-border-color: #198754;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #198754;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #198754;
    --bs-gradient: none;
}

.btn-outline-info {
    --bs-btn-color: #0dcaf0;
    --bs-btn-border-color: #0dcaf0;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #0dcaf0;
    --bs-btn-hover-border-color: #0dcaf0;
    --bs-btn-focus-shadow-rgb: 13, 202, 240;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #0dcaf0;
    --bs-btn-active-border-color: #0dcaf0;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #0dcaf0;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #0dcaf0;
    --bs-gradient: none;
}

.btn-outline-warning {
    --bs-btn-color: #ffc107;
    --bs-btn-border-color: #ffc107;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #ffc107;
    --bs-btn-hover-border-color: #ffc107;
    --bs-btn-focus-shadow-rgb: 255, 193, 7;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #ffc107;
    --bs-btn-active-border-color: #ffc107;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #ffc107;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #ffc107;
    --bs-gradient: none;
}

.btn-outline-danger {
    --bs-btn-color: #dc3545;
    --bs-btn-border-color: #dc3545;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #dc3545;
    --bs-btn-hover-border-color: #dc3545;
    --bs-btn-focus-shadow-rgb: 220, 53, 69;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #dc3545;
    --bs-btn-active-border-color: #dc3545;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #dc3545;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #dc3545;
    --bs-gradient: none;
}

.btn-outline-light {
    --bs-btn-color: #f8f9fa;
    --bs-btn-border-color: #f8f9fa;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #f8f9fa;
    --bs-btn-hover-border-color: #f8f9fa;
    --bs-btn-focus-shadow-rgb: 248, 249, 250;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #f8f9fa;
    --bs-btn-active-border-color: #f8f9fa;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #f8f9fa;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #f8f9fa;
    --bs-gradient: none;
}

.btn-outline-dark {
    --bs-btn-color: #212529;
    --bs-btn-border-color: #212529;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #212529;
    --bs-btn-hover-border-color: #212529;
    --bs-btn-focus-shadow-rgb: 33, 37, 41;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #212529;
    --bs-btn-active-border-color: #212529;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #212529;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #212529;
    --bs-gradient: none;
}

.btn-link {
    --bs-btn-font-weight: 400;
    --bs-btn-color: var(--bs-link-color);
    --bs-btn-bg: transparent;
    --bs-btn-border-color: transparent;
    --bs-btn-hover-color: var(--bs-link-hover-color);
    --bs-btn-hover-border-color: transparent;
    --bs-btn-active-color: var(--bs-link-hover-color);
    --bs-btn-active-border-color: transparent;
    --bs-btn-disabled-color: #6c757d;
    --bs-btn-disabled-border-color: transparent;
    --bs-btn-box-shadow: none;
    --bs-btn-focus-shadow-rgb: 60, 198, 171;
    text-decoration: underline;
}

    .btn-link:focus-visible {
        color: var(--bs-btn-color);
    }

    .btn-link:hover {
        color: var(--bs-btn-hover-color);
    }

.btn-lg, .btn-group-lg > .btn {
    --bs-btn-padding-y: 0.5rem;
    --bs-btn-padding-x: 1rem;
    --bs-btn-font-size: 1.25rem;
    --bs-btn-border-radius: 0.75rem;
}

.btn-sm, .btn-group-sm > .btn {
    --bs-btn-padding-y: 0.25rem;
    --bs-btn-padding-x: 0.5rem;
    --bs-btn-font-size: 0.875rem;
    --bs-btn-border-radius: 0.25rem;
}

.fade {
    transition: opacity 0.15s linear;
}

@media (prefers-reduced-motion: reduce) {
    .fade {
        transition: none;
    }
}

.fade:not(.show) {
    opacity: 0;
}

.collapse:not(.show) {
    display: none;
}

.collapsing {
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
    .collapsing {
        transition: none;
    }
}

.collapsing.collapse-horizontal {
    width: 0;
    height: auto;
    transition: width 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
    .collapsing.collapse-horizontal {
        transition: none;
    }
}

.dropup,
.dropend,
.dropdown,
.dropstart,
.dropup-center,
.dropdown-center {
    position: relative;
}

.dropdown-toggle {
    white-space: nowrap;
}

    .dropdown-toggle::after {
        display: inline-block;
        margin-left: 0.255em;
        vertical-align: 0.255em;
        content: "";
        border-top: 0.3em solid;
        border-right: 0.3em solid transparent;
        border-bottom: 0;
        border-left: 0.3em solid transparent;
    }

    .dropdown-toggle:empty::after {
        margin-left: 0;
    }

.dropdown-menu {
    --bs-dropdown-zindex: 1000;
    --bs-dropdown-min-width: 10rem;
    --bs-dropdown-padding-x: 0;
    --bs-dropdown-padding-y: 0.5rem;
    --bs-dropdown-spacer: 0.125rem;
    --bs-dropdown-font-size: 1rem;
    --bs-dropdown-color: #212529;
    --bs-dropdown-bg: #fff;
    --bs-dropdown-border-color: var(--bs-border-color-translucent);
    --bs-dropdown-border-radius: 0.5rem;
    --bs-dropdown-border-width: 0.125rem;
    --bs-dropdown-inner-border-radius: 0.375rem;
    --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
    --bs-dropdown-divider-margin-y: 0.5rem;
    --bs-dropdown-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --bs-dropdown-link-color: #212529;
    --bs-dropdown-link-hover-color: #1e2125;
    --bs-dropdown-link-hover-bg: #e9ecef;
    --bs-dropdown-link-active-color: #fff;
    --bs-dropdown-link-active-bg: #1abc9c;
    --bs-dropdown-link-disabled-color: #adb5bd;
    --bs-dropdown-item-padding-x: 1rem;
    --bs-dropdown-item-padding-y: 0.25rem;
    --bs-dropdown-header-color: #6c757d;
    --bs-dropdown-header-padding-x: 1rem;
    --bs-dropdown-header-padding-y: 0.5rem;
    position: absolute;
    z-index: var(--bs-dropdown-zindex);
    display: none;
    min-width: var(--bs-dropdown-min-width);
    padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
    margin: 0;
    font-size: var(--bs-dropdown-font-size);
    color: var(--bs-dropdown-color);
    text-align: left;
    list-style: none;
    background-color: var(--bs-dropdown-bg);
    background-clip: padding-box;
    border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);
    border-radius: var(--bs-dropdown-border-radius);
}

    .dropdown-menu[data-bs-popper] {
        top: 100%;
        left: 0;
        margin-top: var(--bs-dropdown-spacer);
    }

.dropdown-menu-start {
    --bs-position: start;
}

    .dropdown-menu-start[data-bs-popper] {
        right: auto;
        left: 0;
    }

.dropdown-menu-end {
    --bs-position: end;
}

    .dropdown-menu-end[data-bs-popper] {
        right: 0;
        left: auto;
    }

@media (min-width: 576px) {
    .dropdown-menu-sm-start {
        --bs-position: start;
    }

        .dropdown-menu-sm-start[data-bs-popper] {
            right: auto;
            left: 0;
        }

    .dropdown-menu-sm-end {
        --bs-position: end;
    }

        .dropdown-menu-sm-end[data-bs-popper] {
            right: 0;
            left: auto;
        }
}

@media (min-width: 768px) {
    .dropdown-menu-md-start {
        --bs-position: start;
    }

        .dropdown-menu-md-start[data-bs-popper] {
            right: auto;
            left: 0;
        }

    .dropdown-menu-md-end {
        --bs-position: end;
    }

        .dropdown-menu-md-end[data-bs-popper] {
            right: 0;
            left: auto;
        }
}

@media (min-width: 992px) {
    .dropdown-menu-lg-start {
        --bs-position: start;
    }

        .dropdown-menu-lg-start[data-bs-popper] {
            right: auto;
            left: 0;
        }

    .dropdown-menu-lg-end {
        --bs-position: end;
    }

        .dropdown-menu-lg-end[data-bs-popper] {
            right: 0;
            left: auto;
        }
}

@media (min-width: 1200px) {
    .dropdown-menu-xl-start {
        --bs-position: start;
    }

        .dropdown-menu-xl-start[data-bs-popper] {
            right: auto;
            left: 0;
        }

    .dropdown-menu-xl-end {
        --bs-position: end;
    }

        .dropdown-menu-xl-end[data-bs-popper] {
            right: 0;
            left: auto;
        }
}

@media (min-width: 1400px) {
    .dropdown-menu-xxl-start {
        --bs-position: start;
    }

        .dropdown-menu-xxl-start[data-bs-popper] {
            right: auto;
            left: 0;
        }

    .dropdown-menu-xxl-end {
        --bs-position: end;
    }

        .dropdown-menu-xxl-end[data-bs-popper] {
            right: 0;
            left: auto;
        }
}

.dropup .dropdown-menu[data-bs-popper] {
    top: auto;
    bottom: 100%;
    margin-top: 0;
    margin-bottom: var(--bs-dropdown-spacer);
}

.dropup .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0;
    border-right: 0.3em solid transparent;
    border-bottom: 0.3em solid;
    border-left: 0.3em solid transparent;
}

.dropup .dropdown-toggle:empty::after {
    margin-left: 0;
}

.dropend .dropdown-menu[data-bs-popper] {
    top: 0;
    right: auto;
    left: 100%;
    margin-top: 0;
    margin-left: var(--bs-dropdown-spacer);
}

.dropend .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid transparent;
    border-right: 0;
    border-bottom: 0.3em solid transparent;
    border-left: 0.3em solid;
}

.dropend .dropdown-toggle:empty::after {
    margin-left: 0;
}

.dropend .dropdown-toggle::after {
    vertical-align: 0;
}

.dropstart .dropdown-menu[data-bs-popper] {
    top: 0;
    right: 100%;
    left: auto;
    margin-top: 0;
    margin-right: var(--bs-dropdown-spacer);
}

.dropstart .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
}

.dropstart .dropdown-toggle::after {
    display: none;
}

.dropstart .dropdown-toggle::before {
    display: inline-block;
    margin-right: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid transparent;
    border-right: 0.3em solid;
    border-bottom: 0.3em solid transparent;
}

.dropstart .dropdown-toggle:empty::after {
    margin-left: 0;
}

.dropstart .dropdown-toggle::before {
    vertical-align: 0;
}

.dropdown-divider {
    height: 0;
    margin: var(--bs-dropdown-divider-margin-y) 0;
    overflow: hidden;
    border-top: 1px solid var(--bs-dropdown-divider-bg);
    opacity: 1;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
    clear: both;
    font-weight: 400;
    color: var(--bs-dropdown-link-color);
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}

    .dropdown-item:hover, .dropdown-item:focus {
        color: var(--bs-dropdown-link-hover-color);
        background-color: var(--bs-dropdown-link-hover-bg);
    }

    .dropdown-item.active, .dropdown-item:active {
        color: var(--bs-dropdown-link-active-color);
        text-decoration: none;
        background-color: var(--bs-dropdown-link-active-bg);
    }

    .dropdown-item.disabled, .dropdown-item:disabled {
        color: var(--bs-dropdown-link-disabled-color);
        pointer-events: none;
        background-color: transparent;
    }

.dropdown-menu.show {
    display: block;
}

.dropdown-header {
    display: block;
    padding: var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);
    margin-bottom: 0;
    font-size: 0.875rem;
    color: var(--bs-dropdown-header-color);
    white-space: nowrap;
}

.dropdown-item-text {
    display: block;
    padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
    color: var(--bs-dropdown-link-color);
}

.dropdown-menu-dark {
    --bs-dropdown-color: #dee2e6;
    --bs-dropdown-bg: #343a40;
    --bs-dropdown-border-color: var(--bs-border-color-translucent);
    --bs-dropdown-box-shadow:;
    --bs-dropdown-link-color: #dee2e6;
    --bs-dropdown-link-hover-color: #fff;
    --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
    --bs-dropdown-link-hover-bg: rgba(255, 255, 255, 0.15);
    --bs-dropdown-link-active-color: #fff;
    --bs-dropdown-link-active-bg: #1abc9c;
    --bs-dropdown-link-disabled-color: #adb5bd;
    --bs-dropdown-header-color: #adb5bd;
}

.btn-group,
.btn-group-vertical {
    position: relative;
    display: inline-flex;
    vertical-align: middle;
}

    .btn-group > .btn,
    .btn-group-vertical > .btn {
        position: relative;
        flex: 1 1 auto;
    }

        .btn-group > .btn-check:checked + .btn,
        .btn-group > .btn-check:focus + .btn,
        .btn-group > .btn:hover,
        .btn-group > .btn:focus,
        .btn-group > .btn:active,
        .btn-group > .btn.active,
        .btn-group-vertical > .btn-check:checked + .btn,
        .btn-group-vertical > .btn-check:focus + .btn,
        .btn-group-vertical > .btn:hover,
        .btn-group-vertical > .btn:focus,
        .btn-group-vertical > .btn:active,
        .btn-group-vertical > .btn.active {
            z-index: 1;
        }

.btn-toolbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

    .btn-toolbar .input-group {
        width: auto;
    }

.btn-group {
    border-radius: 0.5rem;
}

    .btn-group > :not(.btn-check:first-child) + .btn,
    .btn-group > .btn-group:not(:first-child) {
        margin-left: -0.125rem;
    }

    .btn-group > .btn:not(:last-child):not(.dropdown-toggle),
    .btn-group > .btn.dropdown-toggle-split:first-child,
    .btn-group > .btn-group:not(:last-child) > .btn {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

    .btn-group > .btn:nth-child(n+3),
    .btn-group > :not(.btn-check) + .btn,
    .btn-group > .btn-group:not(:first-child) > .btn {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

.dropdown-toggle-split {
    padding-right: 0.5625rem;
    padding-left: 0.5625rem;
}

    .dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropend .dropdown-toggle-split::after {
        margin-left: 0;
    }

.dropstart .dropdown-toggle-split::before {
    margin-right: 0;
}

.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
    padding-right: 0.375rem;
    padding-left: 0.375rem;
}

.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
}

.btn-group-vertical {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

    .btn-group-vertical > .btn,
    .btn-group-vertical > .btn-group {
        width: 100%;
    }

        .btn-group-vertical > .btn:not(:first-child),
        .btn-group-vertical > .btn-group:not(:first-child) {
            margin-top: -0.125rem;
        }

        .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
        .btn-group-vertical > .btn-group:not(:last-child) > .btn {
            border-bottom-right-radius: 0;
            border-bottom-left-radius: 0;
        }

        .btn-group-vertical > .btn ~ .btn,
        .btn-group-vertical > .btn-group:not(:first-child) > .btn {
            border-top-left-radius: 0;
            border-top-right-radius: 0;
        }

.nav {
    --bs-nav-link-padding-x: 1rem;
    --bs-nav-link-padding-y: 0.5rem;
    --bs-nav-link-font-weight:;
    --bs-nav-link-color: var(--bs-link-color);
    --bs-nav-link-hover-color: var(--bs-link-hover-color);
    --bs-nav-link-disabled-color: #6c757d;
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.nav-link {
    display: block;
    padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
    font-size: var(--bs-nav-link-font-size);
    font-weight: var(--bs-nav-link-font-weight);
    color: var(--bs-nav-link-color);
    text-decoration: none;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .nav-link {
        transition: none;
    }
}

.nav-link:hover, .nav-link:focus {
    color: var(--bs-nav-link-hover-color);
}

.nav-link.disabled {
    color: var(--bs-nav-link-disabled-color);
    pointer-events: none;
    cursor: default;
}

.nav-tabs {
    --bs-nav-tabs-border-width: 0.125rem;
    --bs-nav-tabs-border-color: #dee2e6;
    --bs-nav-tabs-border-radius: 0.5rem;
    --bs-nav-tabs-link-hover-border-color: #e9ecef #e9ecef #dee2e6;
    --bs-nav-tabs-link-active-color: #495057;
    --bs-nav-tabs-link-active-bg: #fff;
    --bs-nav-tabs-link-active-border-color: #dee2e6 #dee2e6 #fff;
    border-bottom: var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color);
}

    .nav-tabs .nav-link {
        margin-bottom: calc(-1 * var(--bs-nav-tabs-border-width));
        background: none;
        border: var(--bs-nav-tabs-border-width) solid transparent;
        border-top-left-radius: var(--bs-nav-tabs-border-radius);
        border-top-right-radius: var(--bs-nav-tabs-border-radius);
    }

        .nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
            isolation: isolate;
            border-color: var(--bs-nav-tabs-link-hover-border-color);
        }

        .nav-tabs .nav-link.disabled, .nav-tabs .nav-link:disabled {
            color: var(--bs-nav-link-disabled-color);
            background-color: transparent;
            border-color: transparent;
        }

        .nav-tabs .nav-link.active,
        .nav-tabs .nav-item.show .nav-link {
            color: var(--bs-nav-tabs-link-active-color);
            background-color: var(--bs-nav-tabs-link-active-bg);
            border-color: var(--bs-nav-tabs-link-active-border-color);
        }

    .nav-tabs .dropdown-menu {
        margin-top: calc(-1 * var(--bs-nav-tabs-border-width));
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

.nav-pills {
    --bs-nav-pills-border-radius: 0.5rem;
    --bs-nav-pills-link-active-color: #fff;
    --bs-nav-pills-link-active-bg: #1abc9c;
}

    .nav-pills .nav-link {
        background: none;
        border: 0;
        border-radius: var(--bs-nav-pills-border-radius);
    }

        .nav-pills .nav-link:disabled {
            color: var(--bs-nav-link-disabled-color);
            background-color: transparent;
            border-color: transparent;
        }

        .nav-pills .nav-link.active,
        .nav-pills .show > .nav-link {
            color: var(--bs-nav-pills-link-active-color);
            background-color: var(--bs-nav-pills-link-active-bg);
        }

.nav-fill > .nav-link,
.nav-fill .nav-item {
    flex: 1 1 auto;
    text-align: center;
}

.nav-justified > .nav-link,
.nav-justified .nav-item {
    flex-basis: 0;
    flex-grow: 1;
    text-align: center;
}

    .nav-fill .nav-item .nav-link,
    .nav-justified .nav-item .nav-link {
        width: 100%;
    }

.tab-content > .tab-pane {
    display: none;
}

.tab-content > .active {
    display: block;
}

.navbar {
    --bs-navbar-padding-x: 0;
    --bs-navbar-padding-y: 0.5rem;
    --bs-navbar-color: rgba(0, 0, 0, 0.55);
    --bs-navbar-hover-color: rgba(0, 0, 0, 0.7);
    --bs-navbar-disabled-color: rgba(0, 0, 0, 0.3);
    --bs-navbar-active-color: rgba(0, 0, 0, 0.9);
    --bs-navbar-brand-padding-y: 0.3125rem;
    --bs-navbar-brand-margin-end: 1rem;
    --bs-navbar-brand-font-size: 1.25rem;
    --bs-navbar-brand-color: rgba(0, 0, 0, 0.9);
    --bs-navbar-brand-hover-color: rgba(0, 0, 0, 0.9);
    --bs-navbar-nav-link-padding-x: 0.5rem;
    --bs-navbar-toggler-padding-y: 0.25rem;
    --bs-navbar-toggler-padding-x: 0.75rem;
    --bs-navbar-toggler-font-size: 1.25rem;
    --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    --bs-navbar-toggler-border-color: rgba(0, 0, 0, 0.1);
    --bs-navbar-toggler-border-radius: 0.5rem;
    --bs-navbar-toggler-focus-width: 0.25rem;
    --bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: var(--bs-navbar-padding-y) var(--bs-navbar-padding-x);
}

    .navbar > .container,
    .navbar > .container-fluid,
    .navbar > .container-sm,
    .navbar > .container-md,
    .navbar > .container-lg,
    .navbar > .container-xl,
    .navbar > .container-xxl {
        display: flex;
        flex-wrap: inherit;
        align-items: center;
        justify-content: space-between;
    }

.navbar-brand {
    padding-top: var(--bs-navbar-brand-padding-y);
    padding-bottom: var(--bs-navbar-brand-padding-y);
    margin-right: var(--bs-navbar-brand-margin-end);
    font-size: var(--bs-navbar-brand-font-size);
    color: var(--bs-navbar-brand-color);
    text-decoration: none;
    white-space: nowrap;
}

    .navbar-brand:hover, .navbar-brand:focus {
        color: var(--bs-navbar-brand-hover-color);
    }

.navbar-nav {
    --bs-nav-link-padding-x: 0;
    --bs-nav-link-padding-y: 0.5rem;
    --bs-nav-link-font-weight:;
    --bs-nav-link-color: var(--bs-navbar-color);
    --bs-nav-link-hover-color: var(--bs-navbar-hover-color);
    --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

    .navbar-nav .show > .nav-link,
    .navbar-nav .nav-link.active {
        color: var(--bs-navbar-active-color);
    }

    .navbar-nav .dropdown-menu {
        position: static;
    }

.navbar-text {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    color: var(--bs-navbar-color);
}

    .navbar-text a,
    .navbar-text a:hover,
    .navbar-text a:focus {
        color: var(--bs-navbar-active-color);
    }

.navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
}

.navbar-toggler {
    padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
    font-size: var(--bs-navbar-toggler-font-size);
    line-height: 1;
    color: var(--bs-navbar-color);
    background-color: transparent;
    border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
    border-radius: var(--bs-navbar-toggler-border-radius);
    transition: var(--bs-navbar-toggler-transition);
}

@media (prefers-reduced-motion: reduce) {
    .navbar-toggler {
        transition: none;
    }
}

.navbar-toggler:hover {
    text-decoration: none;
}

.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: 0 0 0 var(--bs-navbar-toggler-focus-width);
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-image: var(--bs-navbar-toggler-icon-bg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

.navbar-nav-scroll {
    max-height: var(--bs-scroll-height, 75vh);
    overflow-y: auto;
}

@media (min-width: 576px) {
    .navbar-expand-sm {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

        .navbar-expand-sm .navbar-nav {
            flex-direction: row;
        }

            .navbar-expand-sm .navbar-nav .dropdown-menu {
                position: absolute;
            }

            .navbar-expand-sm .navbar-nav .nav-link {
                padding-right: var(--bs-navbar-nav-link-padding-x);
                padding-left: var(--bs-navbar-nav-link-padding-x);
            }

        .navbar-expand-sm .navbar-nav-scroll {
            overflow: visible;
        }

        .navbar-expand-sm .navbar-collapse {
            display: flex !important;
            flex-basis: auto;
        }

        .navbar-expand-sm .navbar-toggler {
            display: none;
        }

        .navbar-expand-sm .offcanvas {
            position: static;
            z-index: auto;
            flex-grow: 1;
            width: auto !important;
            height: auto !important;
            visibility: visible !important;
            background-color: transparent !important;
            border: 0 !important;
            transform: none !important;
            transition: none;
        }

            .navbar-expand-sm .offcanvas .offcanvas-header {
                display: none;
            }

            .navbar-expand-sm .offcanvas .offcanvas-body {
                display: flex;
                flex-grow: 0;
                padding: 0;
                overflow-y: visible;
            }
}

@media (min-width: 768px) {
    .navbar-expand-md {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

        .navbar-expand-md .navbar-nav {
            flex-direction: row;
        }

            .navbar-expand-md .navbar-nav .dropdown-menu {
                position: absolute;
            }

            .navbar-expand-md .navbar-nav .nav-link {
                padding-right: var(--bs-navbar-nav-link-padding-x);
                padding-left: var(--bs-navbar-nav-link-padding-x);
            }

        .navbar-expand-md .navbar-nav-scroll {
            overflow: visible;
        }

        .navbar-expand-md .navbar-collapse {
            display: flex !important;
            flex-basis: auto;
        }

        .navbar-expand-md .navbar-toggler {
            display: none;
        }

        .navbar-expand-md .offcanvas {
            position: static;
            z-index: auto;
            flex-grow: 1;
            width: auto !important;
            height: auto !important;
            visibility: visible !important;
            background-color: transparent !important;
            border: 0 !important;
            transform: none !important;
            transition: none;
        }

            .navbar-expand-md .offcanvas .offcanvas-header {
                display: none;
            }

            .navbar-expand-md .offcanvas .offcanvas-body {
                display: flex;
                flex-grow: 0;
                padding: 0;
                overflow-y: visible;
            }
}

@media (min-width: 992px) {
    .navbar-expand-lg {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

        .navbar-expand-lg .navbar-nav {
            flex-direction: row;
        }

            .navbar-expand-lg .navbar-nav .dropdown-menu {
                position: absolute;
            }

            .navbar-expand-lg .navbar-nav .nav-link {
                padding-right: var(--bs-navbar-nav-link-padding-x);
                padding-left: var(--bs-navbar-nav-link-padding-x);
            }

        .navbar-expand-lg .navbar-nav-scroll {
            overflow: visible;
        }

        .navbar-expand-lg .navbar-collapse {
            display: flex !important;
            flex-basis: auto;
        }

        .navbar-expand-lg .navbar-toggler {
            display: none;
        }

        .navbar-expand-lg .offcanvas {
            position: static;
            z-index: auto;
            flex-grow: 1;
            width: auto !important;
            height: auto !important;
            visibility: visible !important;
            background-color: transparent !important;
            border: 0 !important;
            transform: none !important;
            transition: none;
        }

            .navbar-expand-lg .offcanvas .offcanvas-header {
                display: none;
            }

            .navbar-expand-lg .offcanvas .offcanvas-body {
                display: flex;
                flex-grow: 0;
                padding: 0;
                overflow-y: visible;
            }
}

@media (min-width: 1200px) {
    .navbar-expand-xl {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

        .navbar-expand-xl .navbar-nav {
            flex-direction: row;
        }

            .navbar-expand-xl .navbar-nav .dropdown-menu {
                position: absolute;
            }

            .navbar-expand-xl .navbar-nav .nav-link {
                padding-right: var(--bs-navbar-nav-link-padding-x);
                padding-left: var(--bs-navbar-nav-link-padding-x);
            }

        .navbar-expand-xl .navbar-nav-scroll {
            overflow: visible;
        }

        .navbar-expand-xl .navbar-collapse {
            display: flex !important;
            flex-basis: auto;
        }

        .navbar-expand-xl .navbar-toggler {
            display: none;
        }

        .navbar-expand-xl .offcanvas {
            position: static;
            z-index: auto;
            flex-grow: 1;
            width: auto !important;
            height: auto !important;
            visibility: visible !important;
            background-color: transparent !important;
            border: 0 !important;
            transform: none !important;
            transition: none;
        }

            .navbar-expand-xl .offcanvas .offcanvas-header {
                display: none;
            }

            .navbar-expand-xl .offcanvas .offcanvas-body {
                display: flex;
                flex-grow: 0;
                padding: 0;
                overflow-y: visible;
            }
}

@media (min-width: 1400px) {
    .navbar-expand-xxl {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

        .navbar-expand-xxl .navbar-nav {
            flex-direction: row;
        }

            .navbar-expand-xxl .navbar-nav .dropdown-menu {
                position: absolute;
            }

            .navbar-expand-xxl .navbar-nav .nav-link {
                padding-right: var(--bs-navbar-nav-link-padding-x);
                padding-left: var(--bs-navbar-nav-link-padding-x);
            }

        .navbar-expand-xxl .navbar-nav-scroll {
            overflow: visible;
        }

        .navbar-expand-xxl .navbar-collapse {
            display: flex !important;
            flex-basis: auto;
        }

        .navbar-expand-xxl .navbar-toggler {
            display: none;
        }

        .navbar-expand-xxl .offcanvas {
            position: static;
            z-index: auto;
            flex-grow: 1;
            width: auto !important;
            height: auto !important;
            visibility: visible !important;
            background-color: transparent !important;
            border: 0 !important;
            transform: none !important;
            transition: none;
        }

            .navbar-expand-xxl .offcanvas .offcanvas-header {
                display: none;
            }

            .navbar-expand-xxl .offcanvas .offcanvas-body {
                display: flex;
                flex-grow: 0;
                padding: 0;
                overflow-y: visible;
            }
}

.navbar-expand {
    flex-wrap: nowrap;
    justify-content: flex-start;
}

    .navbar-expand .navbar-nav {
        flex-direction: row;
    }

        .navbar-expand .navbar-nav .dropdown-menu {
            position: absolute;
        }

        .navbar-expand .navbar-nav .nav-link {
            padding-right: var(--bs-navbar-nav-link-padding-x);
            padding-left: var(--bs-navbar-nav-link-padding-x);
        }

    .navbar-expand .navbar-nav-scroll {
        overflow: visible;
    }

    .navbar-expand .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
    }

    .navbar-expand .navbar-toggler {
        display: none;
    }

    .navbar-expand .offcanvas {
        position: static;
        z-index: auto;
        flex-grow: 1;
        width: auto !important;
        height: auto !important;
        visibility: visible !important;
        background-color: transparent !important;
        border: 0 !important;
        transform: none !important;
        transition: none;
    }

        .navbar-expand .offcanvas .offcanvas-header {
            display: none;
        }

        .navbar-expand .offcanvas .offcanvas-body {
            display: flex;
            flex-grow: 0;
            padding: 0;
            overflow-y: visible;
        }

.navbar-dark {
    --bs-navbar-color: rgba(255, 255, 255, 0.55);
    --bs-navbar-hover-color: rgba(255, 255, 255, 0.75);
    --bs-navbar-disabled-color: rgba(255, 255, 255, 0.25);
    --bs-navbar-active-color: #fff;
    --bs-navbar-brand-color: #fff;
    --bs-navbar-brand-hover-color: #fff;
    --bs-navbar-toggler-border-color: rgba(255, 255, 255, 0.1);
    --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.card {
    --bs-card-spacer-y: 1rem;
    --bs-card-spacer-x: 1rem;
    --bs-card-title-spacer-y: 0.5rem;
    --bs-card-border-width: 0.125rem;
    --bs-card-border-color: var(--bs-border-color-translucent);
    --bs-card-border-radius: 0.5rem;
    --bs-card-box-shadow:;
    --bs-card-inner-border-radius: 0.375rem;
    --bs-card-cap-padding-y: 0.5rem;
    --bs-card-cap-padding-x: 1rem;
    --bs-card-cap-bg: rgba(0, 0, 0, 0.03);
    --bs-card-cap-color:;
    --bs-card-height:;
    --bs-card-color:;
    --bs-card-bg: #fff;
    --bs-card-img-overlay-padding: 1rem;
    --bs-card-group-margin: 0.75rem;
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: var(--bs-card-height);
    word-wrap: break-word;
    background-color: var(--bs-card-bg);
    background-clip: border-box;
    border: var(--bs-card-border-width) solid var(--bs-card-border-color);
    border-radius: var(--bs-card-border-radius);
}

    .card > hr {
        margin-right: 0;
        margin-left: 0;
    }

    .card > .list-group {
        border-top: inherit;
        border-bottom: inherit;
    }

        .card > .list-group:first-child {
            border-top-width: 0;
            border-top-left-radius: var(--bs-card-inner-border-radius);
            border-top-right-radius: var(--bs-card-inner-border-radius);
        }

        .card > .list-group:last-child {
            border-bottom-width: 0;
            border-bottom-right-radius: var(--bs-card-inner-border-radius);
            border-bottom-left-radius: var(--bs-card-inner-border-radius);
        }

        .card > .card-header + .list-group,
        .card > .list-group + .card-footer {
            border-top: 0;
        }

.card-body {
    flex: 1 1 auto;
    padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
    color: var(--bs-card-color);
}

.card-title {
    margin-bottom: var(--bs-card-title-spacer-y);
}

.card-subtitle {
    margin-top: calc(-0.5 * var(--bs-card-title-spacer-y));
    margin-bottom: 0;
}

.card-text:last-child {
    margin-bottom: 0;
}

.card-link + .card-link {
    margin-left: var(--bs-card-spacer-x);
}

.card-header {
    padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
    margin-bottom: 0;
    color: var(--bs-card-cap-color);
    background-color: var(--bs-card-cap-bg);
    border-bottom: var(--bs-card-border-width) solid var(--bs-card-border-color);
}

    .card-header:first-child {
        border-radius: var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0;
    }

.card-footer {
    padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
    color: var(--bs-card-cap-color);
    background-color: var(--bs-card-cap-bg);
    border-top: var(--bs-card-border-width) solid var(--bs-card-border-color);
}

    .card-footer:last-child {
        border-radius: 0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius);
    }

.card-header-tabs {
    margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
    margin-bottom: calc(-1 * var(--bs-card-cap-padding-y));
    margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
    border-bottom: 0;
}

    .card-header-tabs .nav-link.active {
        background-color: var(--bs-card-bg);
        border-bottom-color: var(--bs-card-bg);
    }

.card-header-pills {
    margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
    margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
}

.card-img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: var(--bs-card-img-overlay-padding);
    border-radius: var(--bs-card-inner-border-radius);
}

.card-img,
.card-img-top,
.card-img-bottom {
    width: 100%;
}

.card-img,
.card-img-top {
    border-top-left-radius: var(--bs-card-inner-border-radius);
    border-top-right-radius: var(--bs-card-inner-border-radius);
}

.card-img,
.card-img-bottom {
    border-bottom-right-radius: var(--bs-card-inner-border-radius);
    border-bottom-left-radius: var(--bs-card-inner-border-radius);
}

.card-group > .card {
    margin-bottom: var(--bs-card-group-margin);
}

@media (min-width: 576px) {
    .card-group {
        display: flex;
        flex-flow: row wrap;
    }

        .card-group > .card {
            flex: 1 0 0%;
            margin-bottom: 0;
        }

            .card-group > .card + .card {
                margin-left: 0;
                border-left: 0;
            }

            .card-group > .card:not(:last-child) {
                border-top-right-radius: 0;
                border-bottom-right-radius: 0;
            }

                .card-group > .card:not(:last-child) .card-img-top,
                .card-group > .card:not(:last-child) .card-header {
                    border-top-right-radius: 0;
                }

                .card-group > .card:not(:last-child) .card-img-bottom,
                .card-group > .card:not(:last-child) .card-footer {
                    border-bottom-right-radius: 0;
                }

            .card-group > .card:not(:first-child) {
                border-top-left-radius: 0;
                border-bottom-left-radius: 0;
            }

                .card-group > .card:not(:first-child) .card-img-top,
                .card-group > .card:not(:first-child) .card-header {
                    border-top-left-radius: 0;
                }

                .card-group > .card:not(:first-child) .card-img-bottom,
                .card-group > .card:not(:first-child) .card-footer {
                    border-bottom-left-radius: 0;
                }
}

.accordion {
    --bs-accordion-color: #212529;
    --bs-accordion-bg: #fff;
    --bs-accordion-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
    --bs-accordion-border-color: var(--bs-border-color);
    --bs-accordion-border-width: 0.125rem;
    --bs-accordion-border-radius: 0.5rem;
    --bs-accordion-inner-border-radius: 0.375rem;
    --bs-accordion-btn-padding-x: 1.25rem;
    --bs-accordion-btn-padding-y: 1rem;
    --bs-accordion-btn-color: #212529;
    --bs-accordion-btn-bg: var(--bs-accordion-bg);
    --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    --bs-accordion-btn-icon-width: 1.25rem;
    --bs-accordion-btn-icon-transform: rotate(-180deg);
    --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
    --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2317a98c'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    --bs-accordion-btn-focus-border-color: #8ddece;
    --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(26, 188, 156, 0.25);
    --bs-accordion-body-padding-x: 1.25rem;
    --bs-accordion-body-padding-y: 1rem;
    --bs-accordion-active-color: #17a98c;
    --bs-accordion-active-bg: #e8f8f5;
}

.accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
    font-size: 1rem;
    color: var(--bs-accordion-btn-color);
    text-align: left;
    background-color: var(--bs-accordion-btn-bg);
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    transition: var(--bs-accordion-transition);
}

@media (prefers-reduced-motion: reduce) {
    .accordion-button {
        transition: none;
    }
}

.accordion-button:not(.collapsed) {
    color: var(--bs-accordion-active-color);
    background-color: var(--bs-accordion-active-bg);
    box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}

    .accordion-button:not(.collapsed)::after {
        background-image: var(--bs-accordion-btn-active-icon);
        transform: var(--bs-accordion-btn-icon-transform);
    }

.accordion-button::after {
    flex-shrink: 0;
    width: var(--bs-accordion-btn-icon-width);
    height: var(--bs-accordion-btn-icon-width);
    margin-left: auto;
    content: "";
    background-image: var(--bs-accordion-btn-icon);
    background-repeat: no-repeat;
    background-size: var(--bs-accordion-btn-icon-width);
    transition: var(--bs-accordion-btn-icon-transition);
}

@media (prefers-reduced-motion: reduce) {
    .accordion-button::after {
        transition: none;
    }
}

.accordion-button:hover {
    z-index: 2;
}

.accordion-button:focus {
    z-index: 3;
    border-color: var(--bs-accordion-btn-focus-border-color);
    outline: 0;
    box-shadow: var(--bs-accordion-btn-focus-box-shadow);
}

.accordion-header {
    margin-bottom: 0;
}

.accordion-item {
    color: var(--bs-accordion-color);
    background-color: var(--bs-accordion-bg);
    border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
}

    .accordion-item:first-of-type {
        border-top-left-radius: var(--bs-accordion-border-radius);
        border-top-right-radius: var(--bs-accordion-border-radius);
    }

        .accordion-item:first-of-type .accordion-button {
            border-top-left-radius: var(--bs-accordion-inner-border-radius);
            border-top-right-radius: var(--bs-accordion-inner-border-radius);
        }

    .accordion-item:not(:first-of-type) {
        border-top: 0;
    }

    .accordion-item:last-of-type {
        border-bottom-right-radius: var(--bs-accordion-border-radius);
        border-bottom-left-radius: var(--bs-accordion-border-radius);
    }

        .accordion-item:last-of-type .accordion-button.collapsed {
            border-bottom-right-radius: var(--bs-accordion-inner-border-radius);
            border-bottom-left-radius: var(--bs-accordion-inner-border-radius);
        }

        .accordion-item:last-of-type .accordion-collapse {
            border-bottom-right-radius: var(--bs-accordion-border-radius);
            border-bottom-left-radius: var(--bs-accordion-border-radius);
        }

.accordion-body {
    padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
}

.accordion-flush .accordion-collapse {
    border-width: 0;
}

.accordion-flush .accordion-item {
    border-right: 0;
    border-left: 0;
    border-radius: 0;
}

    .accordion-flush .accordion-item:first-child {
        border-top: 0;
    }

    .accordion-flush .accordion-item:last-child {
        border-bottom: 0;
    }

    .accordion-flush .accordion-item .accordion-button, .accordion-flush .accordion-item .accordion-button.collapsed {
        border-radius: 0;
    }

.breadcrumb {
    --bs-breadcrumb-padding-x: 0;
    --bs-breadcrumb-padding-y: 0;
    --bs-breadcrumb-margin-bottom: 1rem;
    --bs-breadcrumb-bg:;
    --bs-breadcrumb-border-radius:;
    --bs-breadcrumb-divider-color: #6c757d;
    --bs-breadcrumb-item-padding-x: 0.5rem;
    --bs-breadcrumb-item-active-color: #6c757d;
    display: flex;
    flex-wrap: wrap;
    padding: var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);
    margin-bottom: var(--bs-breadcrumb-margin-bottom);
    font-size: var(--bs-breadcrumb-font-size);
    list-style: none;
    background-color: var(--bs-breadcrumb-bg);
    border-radius: var(--bs-breadcrumb-border-radius);
}

.breadcrumb-item + .breadcrumb-item {
    padding-left: var(--bs-breadcrumb-item-padding-x);
}

    .breadcrumb-item + .breadcrumb-item::before {
        float: left;
        padding-right: var(--bs-breadcrumb-item-padding-x);
        color: var(--bs-breadcrumb-divider-color);
        content: var(--bs-breadcrumb-divider, "/") /* rtl: var(--bs-breadcrumb-divider, "/") */;
    }

.breadcrumb-item.active {
    color: var(--bs-breadcrumb-item-active-color);
}

.pagination {
    --bs-pagination-padding-x: 0.75rem;
    --bs-pagination-padding-y: 0.375rem;
    --bs-pagination-font-size: 1rem;
    --bs-pagination-color: var(--bs-link-color);
    --bs-pagination-bg: #fff;
    --bs-pagination-border-width: 0.125rem;
    --bs-pagination-border-color: #dee2e6;
    --bs-pagination-border-radius: 0.5rem;
    --bs-pagination-hover-color: var(--bs-link-hover-color);
    --bs-pagination-hover-bg: #e9ecef;
    --bs-pagination-hover-border-color: #dee2e6;
    --bs-pagination-focus-color: var(--bs-link-hover-color);
    --bs-pagination-focus-bg: #e9ecef;
    --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(26, 188, 156, 0.25);
    --bs-pagination-active-color: #fff;
    --bs-pagination-active-bg: #1abc9c;
    --bs-pagination-active-border-color: #1abc9c;
    --bs-pagination-disabled-color: #6c757d;
    --bs-pagination-disabled-bg: #fff;
    --bs-pagination-disabled-border-color: #dee2e6;
    display: flex;
    padding-left: 0;
    list-style: none;
}

.page-link {
    position: relative;
    display: block;
    padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);
    font-size: var(--bs-pagination-font-size);
    color: var(--bs-pagination-color);
    text-decoration: none;
    background-color: var(--bs-pagination-bg);
    border: var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .page-link {
        transition: none;
    }
}

.page-link:hover {
    z-index: 2;
    color: var(--bs-pagination-hover-color);
    background-color: var(--bs-pagination-hover-bg);
    border-color: var(--bs-pagination-hover-border-color);
}

.page-link:focus {
    z-index: 3;
    color: var(--bs-pagination-focus-color);
    background-color: var(--bs-pagination-focus-bg);
    outline: 0;
    box-shadow: var(--bs-pagination-focus-box-shadow);
}

.page-link.active, .active > .page-link {
    z-index: 3;
    color: var(--bs-pagination-active-color);
    background-color: var(--bs-pagination-active-bg);
    border-color: var(--bs-pagination-active-border-color);
}

.page-link.disabled, .disabled > .page-link {
    color: var(--bs-pagination-disabled-color);
    pointer-events: none;
    background-color: var(--bs-pagination-disabled-bg);
    border-color: var(--bs-pagination-disabled-border-color);
}

.page-item:not(:first-child) .page-link {
    margin-left: -0.125rem;
}

.page-item:first-child .page-link {
    border-top-left-radius: var(--bs-pagination-border-radius);
    border-bottom-left-radius: var(--bs-pagination-border-radius);
}

.page-item:last-child .page-link {
    border-top-right-radius: var(--bs-pagination-border-radius);
    border-bottom-right-radius: var(--bs-pagination-border-radius);
}

.pagination-lg {
    --bs-pagination-padding-x: 1.5rem;
    --bs-pagination-padding-y: 0.75rem;
    --bs-pagination-font-size: 1.25rem;
    --bs-pagination-border-radius: 0.75rem;
}

.pagination-sm {
    --bs-pagination-padding-x: 0.5rem;
    --bs-pagination-padding-y: 0.25rem;
    --bs-pagination-font-size: 0.875rem;
    --bs-pagination-border-radius: 0.25rem;
}

.badge {
    --bs-badge-padding-x: 0.65em;
    --bs-badge-padding-y: 0.35em;
    --bs-badge-font-size: 0.75em;
    --bs-badge-font-weight: 700;
    --bs-badge-color: #fff;
    --bs-badge-border-radius: 0.5rem;
    display: inline-block;
    padding: var(--bs-badge-padding-y) var(--bs-badge-padding-x);
    font-size: var(--bs-badge-font-size);
    font-weight: var(--bs-badge-font-weight);
    line-height: 1;
    color: var(--bs-badge-color);
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: var(--bs-badge-border-radius);
}

    .badge:empty {
        display: none;
    }

.btn .badge {
    position: relative;
    top: -1px;
}

.alert {
    --bs-alert-bg: transparent;
    --bs-alert-padding-x: 1rem;
    --bs-alert-padding-y: 1rem;
    --bs-alert-margin-bottom: 1rem;
    --bs-alert-color: inherit;
    --bs-alert-border-color: transparent;
    --bs-alert-border: 0.125rem solid var(--bs-alert-border-color);
    --bs-alert-border-radius: 0.5rem;
    position: relative;
    padding: var(--bs-alert-padding-y) var(--bs-alert-padding-x);
    margin-bottom: var(--bs-alert-margin-bottom);
    color: var(--bs-alert-color);
    background-color: var(--bs-alert-bg);
    border: var(--bs-alert-border);
    border-radius: var(--bs-alert-border-radius);
}

.alert-heading {
    color: inherit;
}

.alert-link {
    font-weight: 700;
}

.alert-dismissible {
    padding-right: 3rem;
}

    .alert-dismissible .btn-close {
        position: absolute;
        top: 0;
        right: 0;
        z-index: 2;
        padding: 1.25rem 1rem;
    }

.alert-primary {
    --bs-alert-color: #10715e;
    --bs-alert-bg: #d1f2eb;
    --bs-alert-border-color: #baebe1;
}

    .alert-primary .alert-link {
        color: #0d5a4b;
    }

.alert-secondary {
    --bs-alert-color: #1a2530;
    --bs-alert-bg: #d5d8dc;
    --bs-alert-border-color: #c0c5cb;
}

    .alert-secondary .alert-link {
        color: #151e26;
    }

.alert-success {
    --bs-alert-color: #0f5132;
    --bs-alert-bg: #d1e7dd;
    --bs-alert-border-color: #badbcc;
}

    .alert-success .alert-link {
        color: #0c4128;
    }

.alert-info {
    --bs-alert-color: #087990;
    --bs-alert-bg: #cff4fc;
    --bs-alert-border-color: #b6effb;
}

    .alert-info .alert-link {
        color: #066173;
    }

.alert-warning {
    --bs-alert-color: #997404;
    --bs-alert-bg: #fff3cd;
    --bs-alert-border-color: #ffecb5;
}

    .alert-warning .alert-link {
        color: #7a5d03;
    }

.alert-danger {
    --bs-alert-color: #842029;
    --bs-alert-bg: #f8d7da;
    --bs-alert-border-color: #f5c2c7;
}

    .alert-danger .alert-link {
        color: #6a1a21;
    }

.alert-light {
    --bs-alert-color: #959596;
    --bs-alert-bg: #fefefe;
    --bs-alert-border-color: #fdfdfe;
}

    .alert-light .alert-link {
        color: #777778;
    }

.alert-dark {
    --bs-alert-color: #141619;
    --bs-alert-bg: #d3d3d4;
    --bs-alert-border-color: #bcbebf;
}

    .alert-dark .alert-link {
        color: #101214;
    }

@keyframes progress-bar-stripes {
    0% {
        background-position-x: 1rem;
    }
}

.progress {
    --bs-progress-height: 1rem;
    --bs-progress-font-size: 0.75rem;
    --bs-progress-bg: #e9ecef;
    --bs-progress-border-radius: 0.5rem;
    --bs-progress-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
    --bs-progress-bar-color: #fff;
    --bs-progress-bar-bg: #1abc9c;
    --bs-progress-bar-transition: width 0.6s ease;
    display: flex;
    height: var(--bs-progress-height);
    overflow: hidden;
    font-size: var(--bs-progress-font-size);
    background-color: var(--bs-progress-bg);
    border-radius: var(--bs-progress-border-radius);
}

.progress-bar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    color: var(--bs-progress-bar-color);
    text-align: center;
    white-space: nowrap;
    background-color: var(--bs-progress-bar-bg);
    transition: var(--bs-progress-bar-transition);
}

@media (prefers-reduced-motion: reduce) {
    .progress-bar {
        transition: none;
    }
}

.progress-bar-striped {
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-size: var(--bs-progress-height) var(--bs-progress-height);
}

.progress-bar-animated {
    animation: 1s linear infinite progress-bar-stripes;
}

@media (prefers-reduced-motion: reduce) {
    .progress-bar-animated {
        animation: none;
    }
}

.list-group {
    --bs-list-group-color: #212529;
    --bs-list-group-bg: #fff;
    --bs-list-group-border-color: rgba(0, 0, 0, 0.125);
    --bs-list-group-border-width: 0.125rem;
    --bs-list-group-border-radius: 0.5rem;
    --bs-list-group-item-padding-x: 1rem;
    --bs-list-group-item-padding-y: 0.5rem;
    --bs-list-group-action-color: #495057;
    --bs-list-group-action-hover-color: #495057;
    --bs-list-group-action-hover-bg: #f8f9fa;
    --bs-list-group-action-active-color: #212529;
    --bs-list-group-action-active-bg: #e9ecef;
    --bs-list-group-disabled-color: #6c757d;
    --bs-list-group-disabled-bg: #fff;
    --bs-list-group-active-color: #fff;
    --bs-list-group-active-bg: #1abc9c;
    --bs-list-group-active-border-color: #1abc9c;
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    border-radius: var(--bs-list-group-border-radius);
}

.list-group-numbered {
    list-style-type: none;
    counter-reset: section;
}

    .list-group-numbered > .list-group-item::before {
        content: counters(section, ".") ". ";
        counter-increment: section;
    }

.list-group-item-action {
    width: 100%;
    color: var(--bs-list-group-action-color);
    text-align: inherit;
}

    .list-group-item-action:hover, .list-group-item-action:focus {
        z-index: 1;
        color: var(--bs-list-group-action-hover-color);
        text-decoration: none;
        background-color: var(--bs-list-group-action-hover-bg);
    }

    .list-group-item-action:active {
        color: var(--bs-list-group-action-active-color);
        background-color: var(--bs-list-group-action-active-bg);
    }

.list-group-item {
    position: relative;
    display: block;
    padding: var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);
    color: var(--bs-list-group-color);
    text-decoration: none;
    background-color: var(--bs-list-group-bg);
    border: var(--bs-list-group-border-width) solid var(--bs-list-group-border-color);
}

    .list-group-item:first-child {
        border-top-left-radius: inherit;
        border-top-right-radius: inherit;
    }

    .list-group-item:last-child {
        border-bottom-right-radius: inherit;
        border-bottom-left-radius: inherit;
    }

    .list-group-item.disabled, .list-group-item:disabled {
        color: var(--bs-list-group-disabled-color);
        pointer-events: none;
        background-color: var(--bs-list-group-disabled-bg);
    }

    .list-group-item.active {
        z-index: 2;
        color: var(--bs-list-group-active-color);
        background-color: var(--bs-list-group-active-bg);
        border-color: var(--bs-list-group-active-border-color);
    }

    .list-group-item + .list-group-item {
        border-top-width: 0;
    }

        .list-group-item + .list-group-item.active {
            margin-top: calc(-1 * var(--bs-list-group-border-width));
            border-top-width: var(--bs-list-group-border-width);
        }

.list-group-horizontal {
    flex-direction: row;
}

    .list-group-horizontal > .list-group-item:first-child:not(:last-child) {
        border-bottom-left-radius: var(--bs-list-group-border-radius);
        border-top-right-radius: 0;
    }

    .list-group-horizontal > .list-group-item:last-child:not(:first-child) {
        border-top-right-radius: var(--bs-list-group-border-radius);
        border-bottom-left-radius: 0;
    }

    .list-group-horizontal > .list-group-item.active {
        margin-top: 0;
    }

    .list-group-horizontal > .list-group-item + .list-group-item {
        border-top-width: var(--bs-list-group-border-width);
        border-left-width: 0;
    }

        .list-group-horizontal > .list-group-item + .list-group-item.active {
            margin-left: calc(-1 * var(--bs-list-group-border-width));
            border-left-width: var(--bs-list-group-border-width);
        }

@media (min-width: 576px) {
    .list-group-horizontal-sm {
        flex-direction: row;
    }

        .list-group-horizontal-sm > .list-group-item:first-child:not(:last-child) {
            border-bottom-left-radius: var(--bs-list-group-border-radius);
            border-top-right-radius: 0;
        }

        .list-group-horizontal-sm > .list-group-item:last-child:not(:first-child) {
            border-top-right-radius: var(--bs-list-group-border-radius);
            border-bottom-left-radius: 0;
        }

        .list-group-horizontal-sm > .list-group-item.active {
            margin-top: 0;
        }

        .list-group-horizontal-sm > .list-group-item + .list-group-item {
            border-top-width: var(--bs-list-group-border-width);
            border-left-width: 0;
        }

            .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
                margin-left: calc(-1 * var(--bs-list-group-border-width));
                border-left-width: var(--bs-list-group-border-width);
            }
}

@media (min-width: 768px) {
    .list-group-horizontal-md {
        flex-direction: row;
    }

        .list-group-horizontal-md > .list-group-item:first-child:not(:last-child) {
            border-bottom-left-radius: var(--bs-list-group-border-radius);
            border-top-right-radius: 0;
        }

        .list-group-horizontal-md > .list-group-item:last-child:not(:first-child) {
            border-top-right-radius: var(--bs-list-group-border-radius);
            border-bottom-left-radius: 0;
        }

        .list-group-horizontal-md > .list-group-item.active {
            margin-top: 0;
        }

        .list-group-horizontal-md > .list-group-item + .list-group-item {
            border-top-width: var(--bs-list-group-border-width);
            border-left-width: 0;
        }

            .list-group-horizontal-md > .list-group-item + .list-group-item.active {
                margin-left: calc(-1 * var(--bs-list-group-border-width));
                border-left-width: var(--bs-list-group-border-width);
            }
}

@media (min-width: 992px) {
    .list-group-horizontal-lg {
        flex-direction: row;
    }

        .list-group-horizontal-lg > .list-group-item:first-child:not(:last-child) {
            border-bottom-left-radius: var(--bs-list-group-border-radius);
            border-top-right-radius: 0;
        }

        .list-group-horizontal-lg > .list-group-item:last-child:not(:first-child) {
            border-top-right-radius: var(--bs-list-group-border-radius);
            border-bottom-left-radius: 0;
        }

        .list-group-horizontal-lg > .list-group-item.active {
            margin-top: 0;
        }

        .list-group-horizontal-lg > .list-group-item + .list-group-item {
            border-top-width: var(--bs-list-group-border-width);
            border-left-width: 0;
        }

            .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
                margin-left: calc(-1 * var(--bs-list-group-border-width));
                border-left-width: var(--bs-list-group-border-width);
            }
}

@media (min-width: 1200px) {
    .list-group-horizontal-xl {
        flex-direction: row;
    }

        .list-group-horizontal-xl > .list-group-item:first-child:not(:last-child) {
            border-bottom-left-radius: var(--bs-list-group-border-radius);
            border-top-right-radius: 0;
        }

        .list-group-horizontal-xl > .list-group-item:last-child:not(:first-child) {
            border-top-right-radius: var(--bs-list-group-border-radius);
            border-bottom-left-radius: 0;
        }

        .list-group-horizontal-xl > .list-group-item.active {
            margin-top: 0;
        }

        .list-group-horizontal-xl > .list-group-item + .list-group-item {
            border-top-width: var(--bs-list-group-border-width);
            border-left-width: 0;
        }

            .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
                margin-left: calc(-1 * var(--bs-list-group-border-width));
                border-left-width: var(--bs-list-group-border-width);
            }
}

@media (min-width: 1400px) {
    .list-group-horizontal-xxl {
        flex-direction: row;
    }

        .list-group-horizontal-xxl > .list-group-item:first-child:not(:last-child) {
            border-bottom-left-radius: var(--bs-list-group-border-radius);
            border-top-right-radius: 0;
        }

        .list-group-horizontal-xxl > .list-group-item:last-child:not(:first-child) {
            border-top-right-radius: var(--bs-list-group-border-radius);
            border-bottom-left-radius: 0;
        }

        .list-group-horizontal-xxl > .list-group-item.active {
            margin-top: 0;
        }

        .list-group-horizontal-xxl > .list-group-item + .list-group-item {
            border-top-width: var(--bs-list-group-border-width);
            border-left-width: 0;
        }

            .list-group-horizontal-xxl > .list-group-item + .list-group-item.active {
                margin-left: calc(-1 * var(--bs-list-group-border-width));
                border-left-width: var(--bs-list-group-border-width);
            }
}

.list-group-flush {
    border-radius: 0;
}

    .list-group-flush > .list-group-item {
        border-width: 0 0 var(--bs-list-group-border-width);
    }

        .list-group-flush > .list-group-item:last-child {
            border-bottom-width: 0;
        }

.list-group-item-primary {
    color: #10715e;
    background-color: #d1f2eb;
}

    .list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
        color: #10715e;
        background-color: #bcdad4;
    }

    .list-group-item-primary.list-group-item-action.active {
        color: #fff;
        background-color: #10715e;
        border-color: #10715e;
    }

.list-group-item-secondary {
    color: #1a2530;
    background-color: #d5d8dc;
}

    .list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
        color: #1a2530;
        background-color: #c0c2c6;
    }

    .list-group-item-secondary.list-group-item-action.active {
        color: #fff;
        background-color: #1a2530;
        border-color: #1a2530;
    }

.list-group-item-success {
    color: #0f5132;
    background-color: #d1e7dd;
}

    .list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
        color: #0f5132;
        background-color: #bcd0c7;
    }

    .list-group-item-success.list-group-item-action.active {
        color: #fff;
        background-color: #0f5132;
        border-color: #0f5132;
    }

.list-group-item-info {
    color: #087990;
    background-color: #cff4fc;
}

    .list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
        color: #087990;
        background-color: #badce3;
    }

    .list-group-item-info.list-group-item-action.active {
        color: #fff;
        background-color: #087990;
        border-color: #087990;
    }

.list-group-item-warning {
    color: #997404;
    background-color: #fff3cd;
}

    .list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
        color: #997404;
        background-color: #e6dbb9;
    }

    .list-group-item-warning.list-group-item-action.active {
        color: #fff;
        background-color: #997404;
        border-color: #997404;
    }

.list-group-item-danger {
    color: #842029;
    background-color: #f8d7da;
}

    .list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
        color: #842029;
        background-color: #dfc2c4;
    }

    .list-group-item-danger.list-group-item-action.active {
        color: #fff;
        background-color: #842029;
        border-color: #842029;
    }

.list-group-item-light {
    color: #959596;
    background-color: #fefefe;
}

    .list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
        color: #959596;
        background-color: #e5e5e5;
    }

    .list-group-item-light.list-group-item-action.active {
        color: #fff;
        background-color: #959596;
        border-color: #959596;
    }

.list-group-item-dark {
    color: #141619;
    background-color: #d3d3d4;
}

    .list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
        color: #141619;
        background-color: #bebebf;
    }

    .list-group-item-dark.list-group-item-action.active {
        color: #fff;
        background-color: #141619;
        border-color: #141619;
    }

.btn-close {
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: 0.25em 0.25em;
    color: #000;
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
    border: 0;
    border-radius: 0.5rem;
    opacity: 0.5;
}

    .btn-close:hover {
        color: #000;
        text-decoration: none;
        opacity: 0.75;
    }

    .btn-close:focus {
        outline: 0;
        box-shadow: 0 0 0 0.25rem rgba(26, 188, 156, 0.25);
        opacity: 1;
    }

    .btn-close:disabled, .btn-close.disabled {
        pointer-events: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        user-select: none;
        opacity: 0.25;
    }

.btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%);
}

.toast {
    --bs-toast-zindex: 1090;
    --bs-toast-padding-x: 0.75rem;
    --bs-toast-padding-y: 0.5rem;
    --bs-toast-spacing: 1.5rem;
    --bs-toast-max-width: 350px;
    --bs-toast-font-size: 0.875rem;
    --bs-toast-color:;
    --bs-toast-bg: rgba(255, 255, 255, 0.85);
    --bs-toast-border-width: 0.125rem;
    --bs-toast-border-color: var(--bs-border-color-translucent);
    --bs-toast-border-radius: 0.5rem;
    --bs-toast-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --bs-toast-header-color: #6c757d;
    --bs-toast-header-bg: rgba(255, 255, 255, 0.85);
    --bs-toast-header-border-color: rgba(0, 0, 0, 0.05);
    width: var(--bs-toast-max-width);
    max-width: 100%;
    font-size: var(--bs-toast-font-size);
    color: var(--bs-toast-color);
    pointer-events: auto;
    background-color: var(--bs-toast-bg);
    background-clip: padding-box;
    border: var(--bs-toast-border-width) solid var(--bs-toast-border-color);
    box-shadow: var(--bs-toast-box-shadow);
    border-radius: var(--bs-toast-border-radius);
}

    .toast.showing {
        opacity: 0;
    }

    .toast:not(.show) {
        display: none;
    }

.toast-container {
    --bs-toast-zindex: 1090;
    position: absolute;
    z-index: var(--bs-toast-zindex);
    width: -moz-max-content;
    width: max-content;
    max-width: 100%;
    pointer-events: none;
}

    .toast-container > :not(:last-child) {
        margin-bottom: var(--bs-toast-spacing);
    }

.toast-header {
    display: flex;
    align-items: center;
    padding: var(--bs-toast-padding-y) var(--bs-toast-padding-x);
    color: var(--bs-toast-header-color);
    background-color: var(--bs-toast-header-bg);
    background-clip: padding-box;
    border-bottom: var(--bs-toast-border-width) solid var(--bs-toast-header-border-color);
    border-top-left-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
    border-top-right-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
}

    .toast-header .btn-close {
        margin-right: calc(-0.5 * var(--bs-toast-padding-x));
        margin-left: var(--bs-toast-padding-x);
    }

.toast-body {
    padding: var(--bs-toast-padding-x);
    word-wrap: break-word;
}

.modal {
    --bs-modal-zindex: 1055;
    --bs-modal-width: 500px;
    --bs-modal-padding: 1rem;
    --bs-modal-margin: 0.5rem;
    --bs-modal-color:;
    --bs-modal-bg: #fff;
    --bs-modal-border-color: var(--bs-border-color-translucent);
    --bs-modal-border-width: 0.125rem;
    --bs-modal-border-radius: 0.75rem;
    --bs-modal-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --bs-modal-inner-border-radius: 0.625rem;
    --bs-modal-header-padding-x: 1rem;
    --bs-modal-header-padding-y: 1rem;
    --bs-modal-header-padding: 1rem 1rem;
    --bs-modal-header-border-color: var(--bs-border-color);
    --bs-modal-header-border-width: 0.125rem;
    --bs-modal-title-line-height: 1.5;
    --bs-modal-footer-gap: 0.5rem;
    --bs-modal-footer-bg:;
    --bs-modal-footer-border-color: var(--bs-border-color);
    --bs-modal-footer-border-width: 0.125rem;
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--bs-modal-zindex);
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: var(--bs-modal-margin);
    pointer-events: none;
}

.modal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
    transform: translate(0, -50px);
}

@media (prefers-reduced-motion: reduce) {
    .modal.fade .modal-dialog {
        transition: none;
    }
}

.modal.show .modal-dialog {
    transform: none;
}

.modal.modal-static .modal-dialog {
    transform: scale(1.02);
}

.modal-dialog-scrollable {
    height: calc(100% - var(--bs-modal-margin) * 2);
}

    .modal-dialog-scrollable .modal-content {
        max-height: 100%;
        overflow: hidden;
    }

    .modal-dialog-scrollable .modal-body {
        overflow-y: auto;
    }

.modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - var(--bs-modal-margin) * 2);
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    color: var(--bs-modal-color);
    pointer-events: auto;
    background-color: var(--bs-modal-bg);
    background-clip: padding-box;
    border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
    border-radius: var(--bs-modal-border-radius);
    outline: 0;
}

.modal-backdrop {
    --bs-backdrop-zindex: 1050;
    --bs-backdrop-bg: #000;
    --bs-backdrop-opacity: 0.5;
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--bs-backdrop-zindex);
    width: 100vw;
    height: 100vh;
    background-color: var(--bs-backdrop-bg);
}

    .modal-backdrop.fade {
        opacity: 0;
    }

    .modal-backdrop.show {
        opacity: var(--bs-backdrop-opacity);
    }

.modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    padding: var(--bs-modal-header-padding);
    border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
    border-top-left-radius: var(--bs-modal-inner-border-radius);
    border-top-right-radius: var(--bs-modal-inner-border-radius);
}

    .modal-header .btn-close {
        padding: calc(var(--bs-modal-header-padding-y) * 0.5) calc(var(--bs-modal-header-padding-x) * 0.5);
        margin: calc(-0.5 * var(--bs-modal-header-padding-y)) calc(-0.5 * var(--bs-modal-header-padding-x)) calc(-0.5 * var(--bs-modal-header-padding-y)) auto;
    }

.modal-title {
    margin-bottom: 0;
    line-height: var(--bs-modal-title-line-height);
}

.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: var(--bs-modal-padding);
}

.modal-footer {
    display: flex;
    flex-shrink: 0;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * 0.5);
    background-color: var(--bs-modal-footer-bg);
    border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
    border-bottom-right-radius: var(--bs-modal-inner-border-radius);
    border-bottom-left-radius: var(--bs-modal-inner-border-radius);
}

    .modal-footer > * {
        margin: calc(var(--bs-modal-footer-gap) * 0.5);
    }

@media (min-width: 576px) {
    .modal {
        --bs-modal-margin: 1.75rem;
        --bs-modal-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    }

    .modal-dialog {
        max-width: var(--bs-modal-width);
        margin-right: auto;
        margin-left: auto;
    }

    .modal-sm {
        --bs-modal-width: 300px;
    }
}

@media (min-width: 992px) {
    .modal-lg,
    .modal-xl {
        --bs-modal-width: 800px;
    }
}

@media (min-width: 1200px) {
    .modal-xl {
        --bs-modal-width: 1140px;
    }
}

.modal-fullscreen {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
}

    .modal-fullscreen .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0;
    }

    .modal-fullscreen .modal-header,
    .modal-fullscreen .modal-footer {
        border-radius: 0;
    }

    .modal-fullscreen .modal-body {
        overflow-y: auto;
    }

@media (max-width: 575.98px) {
    .modal-fullscreen-sm-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }

        .modal-fullscreen-sm-down .modal-content {
            height: 100%;
            border: 0;
            border-radius: 0;
        }

        .modal-fullscreen-sm-down .modal-header,
        .modal-fullscreen-sm-down .modal-footer {
            border-radius: 0;
        }

        .modal-fullscreen-sm-down .modal-body {
            overflow-y: auto;
        }
}

@media (max-width: 767.98px) {
    .modal-fullscreen-md-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }

        .modal-fullscreen-md-down .modal-content {
            height: 100%;
            border: 0;
            border-radius: 0;
        }

        .modal-fullscreen-md-down .modal-header,
        .modal-fullscreen-md-down .modal-footer {
            border-radius: 0;
        }

        .modal-fullscreen-md-down .modal-body {
            overflow-y: auto;
        }
}

@media (max-width: 991.98px) {
    .modal-fullscreen-lg-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }

        .modal-fullscreen-lg-down .modal-content {
            height: 100%;
            border: 0;
            border-radius: 0;
        }

        .modal-fullscreen-lg-down .modal-header,
        .modal-fullscreen-lg-down .modal-footer {
            border-radius: 0;
        }

        .modal-fullscreen-lg-down .modal-body {
            overflow-y: auto;
        }
}

@media (max-width: 1199.98px) {
    .modal-fullscreen-xl-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }

        .modal-fullscreen-xl-down .modal-content {
            height: 100%;
            border: 0;
            border-radius: 0;
        }

        .modal-fullscreen-xl-down .modal-header,
        .modal-fullscreen-xl-down .modal-footer {
            border-radius: 0;
        }

        .modal-fullscreen-xl-down .modal-body {
            overflow-y: auto;
        }
}

@media (max-width: 1399.98px) {
    .modal-fullscreen-xxl-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }

        .modal-fullscreen-xxl-down .modal-content {
            height: 100%;
            border: 0;
            border-radius: 0;
        }

        .modal-fullscreen-xxl-down .modal-header,
        .modal-fullscreen-xxl-down .modal-footer {
            border-radius: 0;
        }

        .modal-fullscreen-xxl-down .modal-body {
            overflow-y: auto;
        }
}

.tooltip {
    --bs-tooltip-zindex: 1080;
    --bs-tooltip-max-width: 200px;
    --bs-tooltip-padding-x: 0.5rem;
    --bs-tooltip-padding-y: 0.25rem;
    --bs-tooltip-margin:;
    --bs-tooltip-font-size: 0.875rem;
    --bs-tooltip-color: #fff;
    --bs-tooltip-bg: #000;
    --bs-tooltip-border-radius: 0.5rem;
    --bs-tooltip-opacity: 0.9;
    --bs-tooltip-arrow-width: 0.8rem;
    --bs-tooltip-arrow-height: 0.4rem;
    z-index: var(--bs-tooltip-zindex);
    display: block;
    padding: var(--bs-tooltip-arrow-height);
    margin: var(--bs-tooltip-margin);
    font-family: var(--bs-font-sans-serif);
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    white-space: normal;
    word-spacing: normal;
    line-break: auto;
    font-size: var(--bs-tooltip-font-size);
    word-wrap: break-word;
    opacity: 0;
}

    .tooltip.show {
        opacity: var(--bs-tooltip-opacity);
    }

    .tooltip .tooltip-arrow {
        display: block;
        width: var(--bs-tooltip-arrow-width);
        height: var(--bs-tooltip-arrow-height);
    }

        .tooltip .tooltip-arrow::before {
            position: absolute;
            content: "";
            border-color: transparent;
            border-style: solid;
        }

.bs-tooltip-top .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow {
    bottom: 0;
}

    .bs-tooltip-top .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
        top: -1px;
        border-width: var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0;
        border-top-color: var(--bs-tooltip-bg);
    }

/* rtl:begin:ignore */
.bs-tooltip-end .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow {
    left: 0;
    width: var(--bs-tooltip-arrow-height);
    height: var(--bs-tooltip-arrow-width);
}

    .bs-tooltip-end .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
        right: -1px;
        border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0;
        border-right-color: var(--bs-tooltip-bg);
    }

/* rtl:end:ignore */
.bs-tooltip-bottom .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow {
    top: 0;
}

    .bs-tooltip-bottom .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
        bottom: -1px;
        border-width: 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height);
        border-bottom-color: var(--bs-tooltip-bg);
    }

/* rtl:begin:ignore */
.bs-tooltip-start .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow {
    right: 0;
    width: var(--bs-tooltip-arrow-height);
    height: var(--bs-tooltip-arrow-width);
}

    .bs-tooltip-start .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
        left: -1px;
        border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height);
        border-left-color: var(--bs-tooltip-bg);
    }

/* rtl:end:ignore */
.tooltip-inner {
    max-width: var(--bs-tooltip-max-width);
    padding: var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x);
    color: var(--bs-tooltip-color);
    text-align: center;
    background-color: var(--bs-tooltip-bg);
    border-radius: var(--bs-tooltip-border-radius);
}

.popover {
    --bs-popover-zindex: 1070;
    --bs-popover-max-width: 276px;
    --bs-popover-font-size: 0.875rem;
    --bs-popover-bg: #fff;
    --bs-popover-border-width: 0.125rem;
    --bs-popover-border-color: var(--bs-border-color-translucent);
    --bs-popover-border-radius: 0.75rem;
    --bs-popover-inner-border-radius: 0.625rem;
    --bs-popover-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --bs-popover-header-padding-x: 1rem;
    --bs-popover-header-padding-y: 0.5rem;
    --bs-popover-header-font-size: 1rem;
    --bs-popover-header-color:;
    --bs-popover-header-bg: #f0f0f0;
    --bs-popover-body-padding-x: 1rem;
    --bs-popover-body-padding-y: 1rem;
    --bs-popover-body-color: #212529;
    --bs-popover-arrow-width: 1rem;
    --bs-popover-arrow-height: 0.5rem;
    --bs-popover-arrow-border: var(--bs-popover-border-color);
    z-index: var(--bs-popover-zindex);
    display: block;
    max-width: var(--bs-popover-max-width);
    font-family: var(--bs-font-sans-serif);
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    white-space: normal;
    word-spacing: normal;
    line-break: auto;
    font-size: var(--bs-popover-font-size);
    word-wrap: break-word;
    background-color: var(--bs-popover-bg);
    background-clip: padding-box;
    border: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
    border-radius: var(--bs-popover-border-radius);
}

    .popover .popover-arrow {
        display: block;
        width: var(--bs-popover-arrow-width);
        height: var(--bs-popover-arrow-height);
    }

        .popover .popover-arrow::before, .popover .popover-arrow::after {
            position: absolute;
            display: block;
            content: "";
            border-color: transparent;
            border-style: solid;
            border-width: 0;
        }

.bs-popover-top > .popover-arrow, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow {
    bottom: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
}

    .bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before, .bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
        border-width: var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0;
    }

    .bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before {
        bottom: 0;
        border-top-color: var(--bs-popover-arrow-border);
    }

    .bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
        bottom: var(--bs-popover-border-width);
        border-top-color: var(--bs-popover-bg);
    }

/* rtl:begin:ignore */
.bs-popover-end > .popover-arrow, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow {
    left: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
    width: var(--bs-popover-arrow-height);
    height: var(--bs-popover-arrow-width);
}

    .bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before, .bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
        border-width: calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0;
    }

    .bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before {
        left: 0;
        border-right-color: var(--bs-popover-arrow-border);
    }

    .bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
        left: var(--bs-popover-border-width);
        border-right-color: var(--bs-popover-bg);
    }

/* rtl:end:ignore */
.bs-popover-bottom > .popover-arrow, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow {
    top: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
}

    .bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before, .bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
        border-width: 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height);
    }

    .bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before {
        top: 0;
        border-bottom-color: var(--bs-popover-arrow-border);
    }

    .bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
        top: var(--bs-popover-border-width);
        border-bottom-color: var(--bs-popover-bg);
    }

.bs-popover-bottom .popover-header::before, .bs-popover-auto[data-popper-placement^=bottom] .popover-header::before {
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: var(--bs-popover-arrow-width);
    margin-left: calc(-0.5 * var(--bs-popover-arrow-width));
    content: "";
    border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-header-bg);
}

/* rtl:begin:ignore */
.bs-popover-start > .popover-arrow, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow {
    right: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
    width: var(--bs-popover-arrow-height);
    height: var(--bs-popover-arrow-width);
}

    .bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before, .bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
        border-width: calc(var(--bs-popover-arrow-width) * 0.5) 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height);
    }

    .bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before {
        right: 0;
        border-left-color: var(--bs-popover-arrow-border);
    }

    .bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
        right: var(--bs-popover-border-width);
        border-left-color: var(--bs-popover-bg);
    }

/* rtl:end:ignore */
.popover-header {
    padding: var(--bs-popover-header-padding-y) var(--bs-popover-header-padding-x);
    margin-bottom: 0;
    font-size: var(--bs-popover-header-font-size);
    color: var(--bs-popover-header-color);
    background-color: var(--bs-popover-header-bg);
    border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
    border-top-left-radius: var(--bs-popover-inner-border-radius);
    border-top-right-radius: var(--bs-popover-inner-border-radius);
}

    .popover-header:empty {
        display: none;
    }

.popover-body {
    padding: var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x);
    color: var(--bs-popover-body-color);
}

.carousel {
    position: relative;
}

    .carousel.pointer-event {
        touch-action: pan-y;
    }

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

    .carousel-inner::after {
        display: block;
        clear: both;
        content: "";
    }

.carousel-item {
    position: relative;
    display: none;
    float: left;
    width: 100%;
    margin-right: -100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: transform 0.6s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .carousel-item {
        transition: none;
    }
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
    display: block;
}

    .carousel-item-next:not(.carousel-item-start),
    .active.carousel-item-end {
        transform: translateX(100%);
    }

    .carousel-item-prev:not(.carousel-item-end),
    .active.carousel-item-start {
        transform: translateX(-100%);
    }

.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    transform: none;
}

    .carousel-fade .carousel-item.active,
    .carousel-fade .carousel-item-next.carousel-item-start,
    .carousel-fade .carousel-item-prev.carousel-item-end {
        z-index: 1;
        opacity: 1;
    }

.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
    z-index: 0;
    opacity: 0;
    transition: opacity 0s 0.6s;
}

@media (prefers-reduced-motion: reduce) {
    .carousel-fade .active.carousel-item-start,
    .carousel-fade .active.carousel-item-end {
        transition: none;
    }
}

.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15%;
    padding: 0;
    color: #fff;
    text-align: center;
    background: none;
    border: 0;
    opacity: 0.5;
    transition: opacity 0.15s ease;
}

@media (prefers-reduced-motion: reduce) {
    .carousel-control-prev,
    .carousel-control-next {
        transition: none;
    }
}

.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
    color: #fff;
    text-decoration: none;
    outline: 0;
    opacity: 0.9;
}

.carousel-control-prev {
    left: 0;
}

.carousel-control-next {
    right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 100%;
}

/* rtl:options: {
  "autoRename": true,
  "stringMap":[ {
    "name"    : "prev-next",
    "search"  : "prev",
    "replace" : "next"
  } ]
} */
.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-right: 15%;
    margin-bottom: 1rem;
    margin-left: 15%;
    list-style: none;
}

    .carousel-indicators [data-bs-target] {
        box-sizing: content-box;
        flex: 0 1 auto;
        width: 30px;
        height: 3px;
        padding: 0;
        margin-right: 3px;
        margin-left: 3px;
        text-indent: -999px;
        cursor: pointer;
        background-color: #fff;
        background-clip: padding-box;
        border: 0;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        opacity: 0.5;
        transition: opacity 0.6s ease;
    }

@media (prefers-reduced-motion: reduce) {
    .carousel-indicators [data-bs-target] {
        transition: none;
    }
}

.carousel-indicators .active {
    opacity: 1;
}

.carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 1.25rem;
    left: 15%;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: center;
}

.carousel-dark .carousel-control-prev-icon,
.carousel-dark .carousel-control-next-icon {
    filter: invert(1) grayscale(100);
}

.carousel-dark .carousel-indicators [data-bs-target] {
    background-color: #000;
}

.carousel-dark .carousel-caption {
    color: #000;
}

.spinner-grow,
.spinner-border {
    display: inline-block;
    width: var(--bs-spinner-width);
    height: var(--bs-spinner-height);
    vertical-align: var(--bs-spinner-vertical-align);
    border-radius: 50%;
    animation: var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name);
}

@keyframes spinner-border {
    to {
        transform: rotate(360deg) /* rtl:ignore */;
    }
}

.spinner-border {
    --bs-spinner-width: 2rem;
    --bs-spinner-height: 2rem;
    --bs-spinner-vertical-align: -0.125em;
    --bs-spinner-border-width: 0.25em;
    --bs-spinner-animation-speed: 0.75s;
    --bs-spinner-animation-name: spinner-border;
    border: var(--bs-spinner-border-width) solid currentcolor;
    border-right-color: transparent;
}

.spinner-border-sm {
    --bs-spinner-width: 1rem;
    --bs-spinner-height: 1rem;
    --bs-spinner-border-width: 0.2em;
}

@keyframes spinner-grow {
    0% {
        transform: scale(0);
    }

    50% {
        opacity: 1;
        transform: none;
    }
}

.spinner-grow {
    --bs-spinner-width: 2rem;
    --bs-spinner-height: 2rem;
    --bs-spinner-vertical-align: -0.125em;
    --bs-spinner-animation-speed: 0.75s;
    --bs-spinner-animation-name: spinner-grow;
    background-color: currentcolor;
    opacity: 0;
}

.spinner-grow-sm {
    --bs-spinner-width: 1rem;
    --bs-spinner-height: 1rem;
}

@media (prefers-reduced-motion: reduce) {
    .spinner-border,
    .spinner-grow {
        --bs-spinner-animation-speed: 1.5s;
    }
}

.offcanvas, .offcanvas-xxl, .offcanvas-xl, .offcanvas-lg, .offcanvas-md, .offcanvas-sm {
    --bs-offcanvas-zindex: 1045;
    --bs-offcanvas-width: 400px;
    --bs-offcanvas-height: 30vh;
    --bs-offcanvas-padding-x: 1rem;
    --bs-offcanvas-padding-y: 1rem;
    --bs-offcanvas-color:;
    --bs-offcanvas-bg: #fff;
    --bs-offcanvas-border-width: 0.125rem;
    --bs-offcanvas-border-color: var(--bs-border-color-translucent);
    --bs-offcanvas-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

@media (max-width: 575.98px) {
    .offcanvas-sm {
        position: fixed;
        bottom: 0;
        z-index: var(--bs-offcanvas-zindex);
        display: flex;
        flex-direction: column;
        max-width: 100%;
        color: var(--bs-offcanvas-color);
        visibility: hidden;
        background-color: var(--bs-offcanvas-bg);
        background-clip: padding-box;
        outline: 0;
        transition: transform 0.3s ease-in-out;
    }
}

@media (max-width: 575.98px) and (prefers-reduced-motion: reduce) {
    .offcanvas-sm {
        transition: none;
    }
}

@media (max-width: 575.98px) {
    .offcanvas-sm.offcanvas-start {
        top: 0;
        left: 0;
        width: var(--bs-offcanvas-width);
        border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
        transform: translateX(-100%);
    }
}

@media (max-width: 575.98px) {
    .offcanvas-sm.offcanvas-end {
        top: 0;
        right: 0;
        width: var(--bs-offcanvas-width);
        border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
        transform: translateX(100%);
    }
}

@media (max-width: 575.98px) {
    .offcanvas-sm.offcanvas-top {
        top: 0;
        right: 0;
        left: 0;
        height: var(--bs-offcanvas-height);
        max-height: 100%;
        border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
        transform: translateY(-100%);
    }
}

@media (max-width: 575.98px) {
    .offcanvas-sm.offcanvas-bottom {
        right: 0;
        left: 0;
        height: var(--bs-offcanvas-height);
        max-height: 100%;
        border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
        transform: translateY(100%);
    }
}

@media (max-width: 575.98px) {
    .offcanvas-sm.showing, .offcanvas-sm.show:not(.hiding) {
        transform: none;
    }
}

@media (max-width: 575.98px) {
    .offcanvas-sm.showing, .offcanvas-sm.hiding, .offcanvas-sm.show {
        visibility: visible;
    }
}

@media (min-width: 576px) {
    .offcanvas-sm {
        --bs-offcanvas-height: auto;
        --bs-offcanvas-border-width: 0;
        background-color: transparent !important;
    }

        .offcanvas-sm .offcanvas-header {
            display: none;
        }

        .offcanvas-sm .offcanvas-body {
            display: flex;
            flex-grow: 0;
            padding: 0;
            overflow-y: visible;
            background-color: transparent !important;
        }
}

@media (max-width: 767.98px) {
    .offcanvas-md {
        position: fixed;
        bottom: 0;
        z-index: var(--bs-offcanvas-zindex);
        display: flex;
        flex-direction: column;
        max-width: 100%;
        color: var(--bs-offcanvas-color);
        visibility: hidden;
        background-color: var(--bs-offcanvas-bg);
        background-clip: padding-box;
        outline: 0;
        transition: transform 0.3s ease-in-out;
    }
}

@media (max-width: 767.98px) and (prefers-reduced-motion: reduce) {
    .offcanvas-md {
        transition: none;
    }
}

@media (max-width: 767.98px) {
    .offcanvas-md.offcanvas-start {
        top: 0;
        left: 0;
        width: var(--bs-offcanvas-width);
        border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
        transform: translateX(-100%);
    }
}

@media (max-width: 767.98px) {
    .offcanvas-md.offcanvas-end {
        top: 0;
        right: 0;
        width: var(--bs-offcanvas-width);
        border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
        transform: translateX(100%);
    }
}

@media (max-width: 767.98px) {
    .offcanvas-md.offcanvas-top {
        top: 0;
        right: 0;
        left: 0;
        height: var(--bs-offcanvas-height);
        max-height: 100%;
        border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
        transform: translateY(-100%);
    }
}

@media (max-width: 767.98px) {
    .offcanvas-md.offcanvas-bottom {
        right: 0;
        left: 0;
        height: var(--bs-offcanvas-height);
        max-height: 100%;
        border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
        transform: translateY(100%);
    }
}

@media (max-width: 767.98px) {
    .offcanvas-md.showing, .offcanvas-md.show:not(.hiding) {
        transform: none;
    }
}

@media (max-width: 767.98px) {
    .offcanvas-md.showing, .offcanvas-md.hiding, .offcanvas-md.show {
        visibility: visible;
    }
}

@media (min-width: 768px) {
    .offcanvas-md {
        --bs-offcanvas-height: auto;
        --bs-offcanvas-border-width: 0;
        background-color: transparent !important;
    }

        .offcanvas-md .offcanvas-header {
            display: none;
        }

        .offcanvas-md .offcanvas-body {
            display: flex;
            flex-grow: 0;
            padding: 0;
            overflow-y: visible;
            background-color: transparent !important;
        }
}

@media (max-width: 991.98px) {
    .offcanvas-lg {
        position: fixed;
        bottom: 0;
        z-index: var(--bs-offcanvas-zindex);
        display: flex;
        flex-direction: column;
        max-width: 100%;
        color: var(--bs-offcanvas-color);
        visibility: hidden;
        background-color: var(--bs-offcanvas-bg);
        background-clip: padding-box;
        outline: 0;
        transition: transform 0.3s ease-in-out;
    }
}

@media (max-width: 991.98px) and (prefers-reduced-motion: reduce) {
    .offcanvas-lg {
        transition: none;
    }
}

@media (max-width: 991.98px) {
    .offcanvas-lg.offcanvas-start {
        top: 0;
        left: 0;
        width: var(--bs-offcanvas-width);
        border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
        transform: translateX(-100%);
    }
}

@media (max-width: 991.98px) {
    .offcanvas-lg.offcanvas-end {
        top: 0;
        right: 0;
        width: var(--bs-offcanvas-width);
        border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
        transform: translateX(100%);
    }
}

@media (max-width: 991.98px) {
    .offcanvas-lg.offcanvas-top {
        top: 0;
        right: 0;
        left: 0;
        height: var(--bs-offcanvas-height);
        max-height: 100%;
        border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
        transform: translateY(-100%);
    }
}

@media (max-width: 991.98px) {
    .offcanvas-lg.offcanvas-bottom {
        right: 0;
        left: 0;
        height: var(--bs-offcanvas-height);
        max-height: 100%;
        border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
        transform: translateY(100%);
    }
}

@media (max-width: 991.98px) {
    .offcanvas-lg.showing, .offcanvas-lg.show:not(.hiding) {
        transform: none;
    }
}

@media (max-width: 991.98px) {
    .offcanvas-lg.showing, .offcanvas-lg.hiding, .offcanvas-lg.show {
        visibility: visible;
    }
}

@media (min-width: 992px) {
    .offcanvas-lg {
        --bs-offcanvas-height: auto;
        --bs-offcanvas-border-width: 0;
        background-color: transparent !important;
    }

        .offcanvas-lg .offcanvas-header {
            display: none;
        }

        .offcanvas-lg .offcanvas-body {
            display: flex;
            flex-grow: 0;
            padding: 0;
            overflow-y: visible;
            background-color: transparent !important;
        }
}

@media (max-width: 1199.98px) {
    .offcanvas-xl {
        position: fixed;
        bottom: 0;
        z-index: var(--bs-offcanvas-zindex);
        display: flex;
        flex-direction: column;
        max-width: 100%;
        color: var(--bs-offcanvas-color);
        visibility: hidden;
        background-color: var(--bs-offcanvas-bg);
        background-clip: padding-box;
        outline: 0;
        transition: transform 0.3s ease-in-out;
    }
}

@media (max-width: 1199.98px) and (prefers-reduced-motion: reduce) {
    .offcanvas-xl {
        transition: none;
    }
}

@media (max-width: 1199.98px) {
    .offcanvas-xl.offcanvas-start {
        top: 0;
        left: 0;
        width: var(--bs-offcanvas-width);
        border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
        transform: translateX(-100%);
    }
}

@media (max-width: 1199.98px) {
    .offcanvas-xl.offcanvas-end {
        top: 0;
        right: 0;
        width: var(--bs-offcanvas-width);
        border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
        transform: translateX(100%);
    }
}

@media (max-width: 1199.98px) {
    .offcanvas-xl.offcanvas-top {
        top: 0;
        right: 0;
        left: 0;
        height: var(--bs-offcanvas-height);
        max-height: 100%;
        border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
        transform: translateY(-100%);
    }
}

@media (max-width: 1199.98px) {
    .offcanvas-xl.offcanvas-bottom {
        right: 0;
        left: 0;
        height: var(--bs-offcanvas-height);
        max-height: 100%;
        border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
        transform: translateY(100%);
    }
}

@media (max-width: 1199.98px) {
    .offcanvas-xl.showing, .offcanvas-xl.show:not(.hiding) {
        transform: none;
    }
}

@media (max-width: 1199.98px) {
    .offcanvas-xl.showing, .offcanvas-xl.hiding, .offcanvas-xl.show {
        visibility: visible;
    }
}

@media (min-width: 1200px) {
    .offcanvas-xl {
        --bs-offcanvas-height: auto;
        --bs-offcanvas-border-width: 0;
        background-color: transparent !important;
    }

        .offcanvas-xl .offcanvas-header {
            display: none;
        }

        .offcanvas-xl .offcanvas-body {
            display: flex;
            flex-grow: 0;
            padding: 0;
            overflow-y: visible;
            background-color: transparent !important;
        }
}

@media (max-width: 1399.98px) {
    .offcanvas-xxl {
        position: fixed;
        bottom: 0;
        z-index: var(--bs-offcanvas-zindex);
        display: flex;
        flex-direction: column;
        max-width: 100%;
        color: var(--bs-offcanvas-color);
        visibility: hidden;
        background-color: var(--bs-offcanvas-bg);
        background-clip: padding-box;
        outline: 0;
        transition: transform 0.3s ease-in-out;
    }
}

@media (max-width: 1399.98px) and (prefers-reduced-motion: reduce) {
    .offcanvas-xxl {
        transition: none;
    }
}

@media (max-width: 1399.98px) {
    .offcanvas-xxl.offcanvas-start {
        top: 0;
        left: 0;
        width: var(--bs-offcanvas-width);
        border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
        transform: translateX(-100%);
    }
}

@media (max-width: 1399.98px) {
    .offcanvas-xxl.offcanvas-end {
        top: 0;
        right: 0;
        width: var(--bs-offcanvas-width);
        border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
        transform: translateX(100%);
    }
}

@media (max-width: 1399.98px) {
    .offcanvas-xxl.offcanvas-top {
        top: 0;
        right: 0;
        left: 0;
        height: var(--bs-offcanvas-height);
        max-height: 100%;
        border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
        transform: translateY(-100%);
    }
}

@media (max-width: 1399.98px) {
    .offcanvas-xxl.offcanvas-bottom {
        right: 0;
        left: 0;
        height: var(--bs-offcanvas-height);
        max-height: 100%;
        border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
        transform: translateY(100%);
    }
}

@media (max-width: 1399.98px) {
    .offcanvas-xxl.showing, .offcanvas-xxl.show:not(.hiding) {
        transform: none;
    }
}

@media (max-width: 1399.98px) {
    .offcanvas-xxl.showing, .offcanvas-xxl.hiding, .offcanvas-xxl.show {
        visibility: visible;
    }
}

@media (min-width: 1400px) {
    .offcanvas-xxl {
        --bs-offcanvas-height: auto;
        --bs-offcanvas-border-width: 0;
        background-color: transparent !important;
    }

        .offcanvas-xxl .offcanvas-header {
            display: none;
        }

        .offcanvas-xxl .offcanvas-body {
            display: flex;
            flex-grow: 0;
            padding: 0;
            overflow-y: visible;
            background-color: transparent !important;
        }
}

.offcanvas {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: transform 0.3s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .offcanvas {
        transition: none;
    }
}

.offcanvas.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
}

.offcanvas.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(100%);
}

.offcanvas.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(-100%);
}

.offcanvas.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(100%);
}

.offcanvas.showing, .offcanvas.show:not(.hiding) {
    transform: none;
}

.offcanvas.showing, .offcanvas.hiding, .offcanvas.show {
    visibility: visible;
}

.offcanvas-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: #000;
}

    .offcanvas-backdrop.fade {
        opacity: 0;
    }

    .offcanvas-backdrop.show {
        opacity: 0.5;
    }

.offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
}

    .offcanvas-header .btn-close {
        padding: calc(var(--bs-offcanvas-padding-y) * 0.5) calc(var(--bs-offcanvas-padding-x) * 0.5);
        margin-top: calc(-0.5 * var(--bs-offcanvas-padding-y));
        margin-right: calc(-0.5 * var(--bs-offcanvas-padding-x));
        margin-bottom: calc(-0.5 * var(--bs-offcanvas-padding-y));
    }

.offcanvas-title {
    margin-bottom: 0;
    line-height: 1.5;
}

.offcanvas-body {
    flex-grow: 1;
    padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
    overflow-y: auto;
}

.placeholder {
    display: inline-block;
    min-height: 1em;
    vertical-align: middle;
    cursor: wait;
    background-color: currentcolor;
    opacity: 0.5;
}

    .placeholder.btn::before {
        display: inline-block;
        content: "";
    }

.placeholder-xs {
    min-height: 0.6em;
}

.placeholder-sm {
    min-height: 0.8em;
}

.placeholder-lg {
    min-height: 1.2em;
}

.placeholder-glow .placeholder {
    animation: placeholder-glow 2s ease-in-out infinite;
}

@keyframes placeholder-glow {
    50% {
        opacity: 0.2;
    }
}

.placeholder-wave {
    -webkit-mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
    mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
    -webkit-mask-size: 200% 100%;
    mask-size: 200% 100%;
    animation: placeholder-wave 2s linear infinite;
}

@keyframes placeholder-wave {
    100% {
        -webkit-mask-position: -200% 0%;
        mask-position: -200% 0%;
    }
}

.clearfix::after {
    display: block;
    clear: both;
    content: "";
}

.text-bg-primary {
    color: #fff !important;
    background-color: #20203a !important;
}

.text-bg-primary-dark {
    color: #fff !important;
    background-color: RGBA(16, 178, 146, var(--bs-bg-opacity, 1)) !important;
}

.text-bg-secondary {
    color: #fff !important;
    background-color: RGBA(44, 62, 80, var(--bs-bg-opacity, 1)) !important;
}

.text-bg-success {
    color: #fff !important;
    background-color: RGBA(25, 135, 84, var(--bs-bg-opacity, 1)) !important;
}

.text-bg-info {
    color: #000 !important;
    background-color: RGBA(13, 202, 240, var(--bs-bg-opacity, 1)) !important;
}

.text-bg-warning {
    color: #000 !important;
    background-color: RGBA(255, 193, 7, var(--bs-bg-opacity, 1)) !important;
}

.text-bg-danger {
    color: #fff !important;
    background-color: RGBA(220, 53, 69, var(--bs-bg-opacity, 1)) !important;
}

.text-bg-light {
    color: #000 !important;
    background-color: RGBA(248, 249, 250, var(--bs-bg-opacity, 1)) !important;
}

.text-bg-dark {
    color: #fff !important;
    background-color: RGBA(33, 37, 41, var(--bs-bg-opacity, 1)) !important;
}

.link-primary {
    color: #1abc9c !important;
}

    .link-primary:hover, .link-primary:focus {
        color: #15967d !important;
    }

.link-secondary {
    color: #2c3e50 !important;
}

    .link-secondary:hover, .link-secondary:focus {
        color: #233240 !important;
    }

.link-success {
    color: #198754 !important;
}

    .link-success:hover, .link-success:focus {
        color: #146c43 !important;
    }

.link-info {
    color: #0dcaf0 !important;
}

    .link-info:hover, .link-info:focus {
        color: #3dd5f3 !important;
    }

.link-warning {
    color: #ffc107 !important;
}

    .link-warning:hover, .link-warning:focus {
        color: #ffcd39 !important;
    }

.link-danger {
    color: #dc3545 !important;
}

    .link-danger:hover, .link-danger:focus {
        color: #b02a37 !important;
    }

.link-light {
    color: #f8f9fa !important;
}

    .link-light:hover, .link-light:focus {
        color: #f9fafb !important;
    }

.link-dark {
    color: #212529 !important;
}

    .link-dark:hover, .link-dark:focus {
        color: #1a1e21 !important;
    }

.ratio {
    position: relative;
    width: 100%;
}

    .ratio::before {
        display: block;
        padding-top: var(--bs-aspect-ratio);
        content: "";
    }

    .ratio > * {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

.ratio-1x1 {
    --bs-aspect-ratio: 100%;
}

.ratio-4x3 {
    --bs-aspect-ratio: 75%;
}

.ratio-16x9 {
    --bs-aspect-ratio: 56.25%;
}

.ratio-21x9 {
    --bs-aspect-ratio: 42.8571428571%;
}

.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

.fixed-bottom {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1030;
}

.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
}

.sticky-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
}

@media (min-width: 576px) {
    .sticky-sm-top {
        position: sticky;
        top: 0;
        z-index: 1020;
    }

    .sticky-sm-bottom {
        position: sticky;
        bottom: 0;
        z-index: 1020;
    }
}

@media (min-width: 768px) {
    .sticky-md-top {
        position: sticky;
        top: 0;
        z-index: 1020;
    }

    .sticky-md-bottom {
        position: sticky;
        bottom: 0;
        z-index: 1020;
    }
}

@media (min-width: 992px) {
    .sticky-lg-top {
        position: sticky;
        top: 0;
        z-index: 1020;
    }

    .sticky-lg-bottom {
        position: sticky;
        bottom: 0;
        z-index: 1020;
    }
}

@media (min-width: 1200px) {
    .sticky-xl-top {
        position: sticky;
        top: 0;
        z-index: 1020;
    }

    .sticky-xl-bottom {
        position: sticky;
        bottom: 0;
        z-index: 1020;
    }
}

@media (min-width: 1400px) {
    .sticky-xxl-top {
        position: sticky;
        top: 0;
        z-index: 1020;
    }

    .sticky-xxl-bottom {
        position: sticky;
        bottom: 0;
        z-index: 1020;
    }
}

.hstack {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-self: stretch;
}

.vstack {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    align-self: stretch;
}

.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    content: "";
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vr {
    display: inline-block;
    align-self: stretch;
    width: 1px;
    min-height: 1em;
    background-color: currentcolor;
    opacity: 0.25;
}

.align-baseline {
    vertical-align: baseline !important;
}

.align-top {
    vertical-align: top !important;
}

.align-middle {
    vertical-align: middle !important;
}

.align-bottom {
    vertical-align: bottom !important;
}

.align-text-bottom {
    vertical-align: text-bottom !important;
}

.align-text-top {
    vertical-align: text-top !important;
}

.float-start {
    float: left !important;
}

.float-end {
    float: right !important;
}

.float-none {
    float: none !important;
}

.opacity-0 {
    opacity: 0 !important;
}

.opacity-25 {
    opacity: 0.25 !important;
}

.opacity-50 {
    opacity: 0.5 !important;
}

.opacity-75 {
    opacity: 0.75 !important;
}

.opacity-100 {
    opacity: 1 !important;
}

.overflow-auto {
    overflow: auto !important;
}

.overflow-hidden {
    overflow: hidden !important;
}

.overflow-visible {
    overflow: visible !important;
}

.overflow-scroll {
    overflow: scroll !important;
}

.d-inline {
    display: inline !important;
}

.d-inline-block {
    display: inline-block !important;
}

.d-block {
    display: block !important;
}

.d-grid {
    display: grid !important;
}

.d-table {
    display: table !important;
}

.d-table-row {
    display: table-row !important;
}

.d-table-cell {
    display: table-cell !important;
}

.d-flex {
    display: flex !important;
}

.d-inline-flex {
    display: inline-flex !important;
}

.d-none {
    display: none !important;
}

.shadow {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
    box-shadow: none !important;
}

.position-static {
    position: static !important;
}

.position-relative {
    position: relative !important;
}

.position-absolute {
    position: absolute !important;
}

.position-fixed {
    position: fixed !important;
}

.position-sticky {
    position: sticky !important;
}

.top-0 {
    top: 0 !important;
}

.top-50 {
    top: 50% !important;
}

.top-100 {
    top: 100% !important;
}

.bottom-0 {
    bottom: 0 !important;
}

.bottom-50 {
    bottom: 50% !important;
}

.bottom-100 {
    bottom: 100% !important;
}

.start-0 {
    left: 0 !important;
}

.start-50 {
    left: 50% !important;
}

.start-100 {
    left: 100% !important;
}

.end-0 {
    right: 0 !important;
}

.end-50 {
    right: 50% !important;
}

.end-100 {
    right: 100% !important;
}

.translate-middle {
    transform: translate(-50%, -50%) !important;
}

.translate-middle-x {
    transform: translateX(-50%) !important;
}

.translate-middle-y {
    transform: translateY(-50%) !important;
}

.border {
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-0 {
    border: 0 !important;
}

.border-top {
    border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-top-0 {
    border-top: 0 !important;
}

.border-end {
    border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-end-0 {
    border-right: 0 !important;
}

.border-bottom {
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-bottom-0 {
    border-bottom: 0 !important;
}

.border-start {
    border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-start-0 {
    border-left: 0 !important;
}

.border-primary {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important;
}

.border-secondary {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important;
}

.border-success {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important;
}

.border-info {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important;
}

.border-warning {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important;
}

.border-danger {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important;
}

.border-light {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important;
}

.border-dark {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
}

.border-white {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important;
}

.border-1 {
    --bs-border-width: 1px;
}

.border-2 {
    --bs-border-width: 2px;
}

.border-3 {
    --bs-border-width: 3px;
}

.border-4 {
    --bs-border-width: 4px;
}

.border-5 {
    --bs-border-width: 5px;
}

.border-opacity-10 {
    --bs-border-opacity: 0.1;
}

.border-opacity-25 {
    --bs-border-opacity: 0.25;
}

.border-opacity-50 {
    --bs-border-opacity: 0.5;
}

.border-opacity-75 {
    --bs-border-opacity: 0.75;
}

.border-opacity-100 {
    --bs-border-opacity: 1;
}

.w-25 {
    width: 25% !important;
}

.w-50 {
    width: 50% !important;
}

.w-75 {
    width: 75% !important;
}

.w-100 {
    width: 100% !important;
}

.w-auto {
    width: auto !important;
}

.mw-100 {
    max-width: 100% !important;
}

.vw-100 {
    width: 100vw !important;
}

.min-vw-100 {
    min-width: 100vw !important;
}

.h-25 {
    height: 25% !important;
}

.h-50 {
    height: 50% !important;
}

.h-75 {
    height: 75% !important;
}

.h-100 {
    height: 100% !important;
}

.h-auto {
    height: auto !important;
}

.mh-100 {
    max-height: 100% !important;
}

.vh-100 {
    height: 100vh !important;
}

.min-vh-100 {
    min-height: 100vh !important;
}

.flex-fill {
    flex: 1 1 auto !important;
}

.flex-row {
    flex-direction: row !important;
}

.flex-column {
    flex-direction: column !important;
}

.flex-row-reverse {
    flex-direction: row-reverse !important;
}

.flex-column-reverse {
    flex-direction: column-reverse !important;
}

.flex-grow-0 {
    flex-grow: 0 !important;
}

.flex-grow-1 {
    flex-grow: 1 !important;
}

.flex-shrink-0 {
    flex-shrink: 0 !important;
}

.flex-shrink-1 {
    flex-shrink: 1 !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.flex-nowrap {
    flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
}

.justify-content-start {
    justify-content: flex-start !important;
}

.justify-content-end {
    justify-content: flex-end !important;
}

.justify-content-center {
    justify-content: center !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.justify-content-around {
    justify-content: space-around !important;
}

.justify-content-evenly {
    justify-content: space-evenly !important;
}

.align-items-start {
    align-items: flex-start !important;
}

.align-items-end {
    align-items: flex-end !important;
}

.align-items-center {
    align-items: center !important;
}

.align-items-baseline {
    align-items: baseline !important;
}

.align-items-stretch {
    align-items: stretch !important;
}

.align-content-start {
    align-content: flex-start !important;
}

.align-content-end {
    align-content: flex-end !important;
}

.align-content-center {
    align-content: center !important;
}

.align-content-between {
    align-content: space-between !important;
}

.align-content-around {
    align-content: space-around !important;
}

.align-content-stretch {
    align-content: stretch !important;
}

.align-self-auto {
    align-self: auto !important;
}

.align-self-start {
    align-self: flex-start !important;
}

.align-self-end {
    align-self: flex-end !important;
}

.align-self-center {
    align-self: center !important;
}

.align-self-baseline {
    align-self: baseline !important;
}

.align-self-stretch {
    align-self: stretch !important;
}

.order-first {
    order: -1 !important;
}

.order-0 {
    order: 0 !important;
}

.order-1 {
    order: 1 !important;
}

.order-2 {
    order: 2 !important;
}

.order-3 {
    order: 3 !important;
}

.order-4 {
    order: 4 !important;
}

.order-5 {
    order: 5 !important;
}

.order-last {
    order: 6 !important;
}

.m-0 {
    margin: 0 !important;
}

.m-1 {
    margin: 0.25rem !important;
}

.m-2 {
    margin: 0.5rem !important;
}

.m-3 {
    margin: 1rem !important;
}

.m-4 {
    margin: 1.5rem !important;
}

.m-5 {
    margin: 3rem !important;
}

.m-auto {
    margin: auto !important;
}

.mx-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
}

.mx-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
}

.mx-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
}

.mx-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
}

.mx-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
}

.mx-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
}

.mx-auto {
    margin-right: auto !important;
    margin-left: auto !important;
}

.my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
}

.my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
}

.my-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
}

.my-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}

.my-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
}

.my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.mt-1 {
    margin-top: 0.25rem !important;
}

.mt-2 {
    margin-top: 0.5rem !important;
}

.mt-3 {
    margin-top: 1rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.mt-5 {
    margin-top: 3rem !important;
}

.mt-auto {
    margin-top: auto !important;
}

.me-0 {
    margin-right: 0 !important;
}

.me-1 {
    margin-right: 0.25rem !important;
}

.me-2 {
    margin-right: 0.5rem !important;
}

.me-3 {
    margin-right: 1rem !important;
}

.me-4 {
    margin-right: 1.5rem !important;
}

.me-5 {
    margin-right: 3rem !important;
}

.me-auto {
    margin-right: auto !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: 0.25rem !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.mb-auto {
    margin-bottom: auto !important;
}

.ms-0 {
    margin-left: 0 !important;
}

.ms-1 {
    margin-left: 0.25rem !important;
}

.ms-2 {
    margin-left: 0.5rem !important;
}

.ms-3 {
    margin-left: 1rem !important;
}

.ms-4 {
    margin-left: 1.5rem !important;
}

.ms-5 {
    margin-left: 3rem !important;
}

.ms-auto {
    margin-left: auto !important;
}

.p-0 {
    padding: 0 !important;
}

.p-1 {
    padding: 0.25rem !important;
}

.p-2 {
    padding: 0.5rem !important;
}

.p-3 {
    padding: 1rem !important;
}

.p-4 {
    padding: 1.5rem !important;
}

.p-5 {
    padding: 3rem !important;
}

.px-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

.px-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
}

.px-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
}

.px-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
}

.px-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
}

.px-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
}

.py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
}

.py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

.py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

.py-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
}

.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.pt-0 {
    padding-top: 0 !important;
}

.pt-1 {
    padding-top: 0.25rem !important;
}

.pt-2 {
    padding-top: 0.5rem !important;
}

.pt-3 {
    padding-top: 1rem !important;
}

.pt-4 {
    padding-top: 1.5rem !important;
}

.pt-5 {
    padding-top: 3rem !important;
}

.pe-0 {
    padding-right: 0 !important;
}

.pe-1 {
    padding-right: 0.25rem !important;
}

.pe-2 {
    padding-right: 0.5rem !important;
}

.pe-3 {
    padding-right: 1rem !important;
}

.pe-4 {
    padding-right: 1.5rem !important;
}

.pe-5 {
    padding-right: 3rem !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.pb-1 {
    padding-bottom: 0.25rem !important;
}

.pb-2 {
    padding-bottom: 0.5rem !important;
}

.pb-3 {
    padding-bottom: 1rem !important;
}

.pb-4 {
    padding-bottom: 1.5rem !important;
}

.pb-5 {
    padding-bottom: 3rem !important;
}

.ps-0 {
    padding-left: 0 !important;
}

.ps-1 {
    padding-left: 0.25rem !important;
}

.ps-2 {
    padding-left: 0.5rem !important;
}

.ps-3 {
    padding-left: 1rem !important;
}

.ps-4 {
    padding-left: 1.5rem !important;
}

.ps-5 {
    padding-left: 3rem !important;
}

.gap-0 {
    gap: 0 !important;
}

.gap-1 {
    gap: 0.25rem !important;
}

.gap-2 {
    gap: 0.5rem !important;
}

.gap-3 {
    gap: 1rem !important;
}

.gap-4 {
    gap: 1.5rem !important;
}

.gap-5 {
    gap: 3rem !important;
}

.font-monospace {
    font-family: var(--bs-font-monospace) !important;
}

.fs-1 {
    font-size: calc(1.375rem + 1.5vw) !important;
}

.fs-2 {
    font-size: calc(1.325rem + 0.9vw) !important;
}

.fs-3 {
    font-size: calc(1.3rem + 0.6vw) !important;
}

.fs-4 {
    font-size: calc(1.275rem + 0.3vw) !important;
}

.fs-5 {
    font-size: 1.25rem !important;
}

.fs-6 {
    font-size: 1rem !important;
}

.fst-italic {
    font-style: italic !important;
}

.fst-normal {
    font-style: normal !important;
}

.fw-light {
    font-weight: 300 !important;
}

.fw-lighter {
    font-weight: lighter !important;
}

.fw-normal {
    font-weight: 400 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-semibold {
    font-weight: 600 !important;
}

.fw-bolder {
    font-weight: bolder !important;
}

.lh-1 {
    line-height: 1 !important;
}

.lh-sm {
    line-height: 1.25 !important;
}

.lh-base {
    line-height: 1.5 !important;
}

.lh-lg {
    line-height: 2 !important;
}

.text-start {
    text-align: left !important;
}

.text-end {
    text-align: right !important;
}

.text-center {
    text-align: center !important;
}

.text-decoration-none {
    text-decoration: none !important;
}

.text-decoration-underline {
    text-decoration: underline !important;
}

.text-decoration-line-through {
    text-decoration: line-through !important;
}

.text-lowercase {
    text-transform: lowercase !important;
}

.text-uppercase {
    text-transform: uppercase !important;
}

.text-capitalize {
    text-transform: capitalize !important;
}

.text-wrap {
    white-space: normal !important;
}

.text-nowrap {
    white-space: nowrap !important;
}

/* rtl:begin:remove */
.text-break {
    word-wrap: break-word !important;
    word-break: break-word !important;
}

/* rtl:end:remove */
.text-success {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
}

.text-info {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
}

.text-warning {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
}

.text-danger {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}

.text-light {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
}

.text-dark {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}

.text-black {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
}

.text-white {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}

.text-body {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
}

.text-muted {
    --bs-text-opacity: 1;
    color: #6c757d !important;
}

.text-black-50 {
    --bs-text-opacity: 1;
    color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
    --bs-text-opacity: 1;
    color: rgba(255, 255, 255, 0.5) !important;
}

.text-reset {
    --bs-text-opacity: 1;
    color: inherit !important;
}

.text-opacity-25 {
    --bs-text-opacity: 0.25;
}

.text-opacity-50 {
    --bs-text-opacity: 0.5;
}

.text-opacity-75 {
    --bs-text-opacity: 0.75;
}

.text-opacity-100 {
    --bs-text-opacity: 1;
}

.bg-primary {
    --bs-bg-opacity: 1;
    background-color: #20203a !important;
}

.bg-primary-dark {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-primary-rgb-dark), var(--bs-bg-opacity)) !important;
}

.bg-secondary {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-success {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
}

.bg-info {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
}

.bg-warning {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
}

.bg-danger {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
}

.bg-light {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
}

.bg-dark {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}

.bg-black {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
}

.bg-white {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
}

.bg-body {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-transparent {
    --bs-bg-opacity: 1;
    background-color: transparent !important;
}

.bg-opacity-10 {
    --bs-bg-opacity: 0.1;
}

.bg-opacity-25 {
    --bs-bg-opacity: 0.25;
}

.bg-opacity-50 {
    --bs-bg-opacity: 0.5;
}

.bg-opacity-75 {
    --bs-bg-opacity: 0.75;
}

.bg-opacity-100 {
    --bs-bg-opacity: 1;
}

.bg-gradient {
    background-image: var(--bs-gradient) !important;
}

.user-select-all {
    -webkit-user-select: all !important;
    -moz-user-select: all !important;
    user-select: all !important;
}

.user-select-auto {
    -webkit-user-select: auto !important;
    -moz-user-select: auto !important;
    user-select: auto !important;
}

.user-select-none {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    user-select: none !important;
}

.pe-none {
    pointer-events: none !important;
}

.pe-auto {
    pointer-events: auto !important;
}

.rounded {
    border-radius: var(--bs-border-radius) !important;
}

.rounded-0 {
    border-radius: 0 !important;
}

.rounded-1 {
    border-radius: var(--bs-border-radius-sm) !important;
}

.rounded-2 {
    border-radius: var(--bs-border-radius) !important;
}

.rounded-3 {
    border-radius: var(--bs-border-radius-lg) !important;
}

.rounded-4 {
    border-radius: var(--bs-border-radius-xl) !important;
}

.rounded-5 {
    border-radius: var(--bs-border-radius-2xl) !important;
}

.rounded-circle {
    border-radius: 50% !important;
}

.rounded-pill {
    border-radius: var(--bs-border-radius-pill) !important;
}

.rounded-top {
    border-top-left-radius: var(--bs-border-radius) !important;
    border-top-right-radius: var(--bs-border-radius) !important;
}

.rounded-end {
    border-top-right-radius: var(--bs-border-radius) !important;
    border-bottom-right-radius: var(--bs-border-radius) !important;
}

.rounded-bottom {
    border-bottom-right-radius: var(--bs-border-radius) !important;
    border-bottom-left-radius: var(--bs-border-radius) !important;
}

.rounded-start {
    border-bottom-left-radius: var(--bs-border-radius) !important;
    border-top-left-radius: var(--bs-border-radius) !important;
}

.visible {
    visibility: visible !important;
}

.invisible {
    visibility: hidden !important;
}

@media (min-width: 576px) {
    .float-sm-start {
        float: left !important;
    }

    .float-sm-end {
        float: right !important;
    }

    .float-sm-none {
        float: none !important;
    }

    .d-sm-inline {
        display: inline !important;
    }

    .d-sm-inline-block {
        display: inline-block !important;
    }

    .d-sm-block {
        display: block !important;
    }

    .d-sm-grid {
        display: grid !important;
    }

    .d-sm-table {
        display: table !important;
    }

    .d-sm-table-row {
        display: table-row !important;
    }

    .d-sm-table-cell {
        display: table-cell !important;
    }

    .d-sm-flex {
        display: flex !important;
    }

    .d-sm-inline-flex {
        display: inline-flex !important;
    }

    .d-sm-none {
        display: none !important;
    }

    .flex-sm-fill {
        flex: 1 1 auto !important;
    }

    .flex-sm-row {
        flex-direction: row !important;
    }

    .flex-sm-column {
        flex-direction: column !important;
    }

    .flex-sm-row-reverse {
        flex-direction: row-reverse !important;
    }

    .flex-sm-column-reverse {
        flex-direction: column-reverse !important;
    }

    .flex-sm-grow-0 {
        flex-grow: 0 !important;
    }

    .flex-sm-grow-1 {
        flex-grow: 1 !important;
    }

    .flex-sm-shrink-0 {
        flex-shrink: 0 !important;
    }

    .flex-sm-shrink-1 {
        flex-shrink: 1 !important;
    }

    .flex-sm-wrap {
        flex-wrap: wrap !important;
    }

    .flex-sm-nowrap {
        flex-wrap: nowrap !important;
    }

    .flex-sm-wrap-reverse {
        flex-wrap: wrap-reverse !important;
    }

    .justify-content-sm-start {
        justify-content: flex-start !important;
    }

    .justify-content-sm-end {
        justify-content: flex-end !important;
    }

    .justify-content-sm-center {
        justify-content: center !important;
    }

    .justify-content-sm-between {
        justify-content: space-between !important;
    }

    .justify-content-sm-around {
        justify-content: space-around !important;
    }

    .justify-content-sm-evenly {
        justify-content: space-evenly !important;
    }

    .align-items-sm-start {
        align-items: flex-start !important;
    }

    .align-items-sm-end {
        align-items: flex-end !important;
    }

    .align-items-sm-center {
        align-items: center !important;
    }

    .align-items-sm-baseline {
        align-items: baseline !important;
    }

    .align-items-sm-stretch {
        align-items: stretch !important;
    }

    .align-content-sm-start {
        align-content: flex-start !important;
    }

    .align-content-sm-end {
        align-content: flex-end !important;
    }

    .align-content-sm-center {
        align-content: center !important;
    }

    .align-content-sm-between {
        align-content: space-between !important;
    }

    .align-content-sm-around {
        align-content: space-around !important;
    }

    .align-content-sm-stretch {
        align-content: stretch !important;
    }

    .align-self-sm-auto {
        align-self: auto !important;
    }

    .align-self-sm-start {
        align-self: flex-start !important;
    }

    .align-self-sm-end {
        align-self: flex-end !important;
    }

    .align-self-sm-center {
        align-self: center !important;
    }

    .align-self-sm-baseline {
        align-self: baseline !important;
    }

    .align-self-sm-stretch {
        align-self: stretch !important;
    }

    .order-sm-first {
        order: -1 !important;
    }

    .order-sm-0 {
        order: 0 !important;
    }

    .order-sm-1 {
        order: 1 !important;
    }

    .order-sm-2 {
        order: 2 !important;
    }

    .order-sm-3 {
        order: 3 !important;
    }

    .order-sm-4 {
        order: 4 !important;
    }

    .order-sm-5 {
        order: 5 !important;
    }

    .order-sm-last {
        order: 6 !important;
    }

    .m-sm-0 {
        margin: 0 !important;
    }

    .m-sm-1 {
        margin: 0.25rem !important;
    }

    .m-sm-2 {
        margin: 0.5rem !important;
    }

    .m-sm-3 {
        margin: 1rem !important;
    }

    .m-sm-4 {
        margin: 1.5rem !important;
    }

    .m-sm-5 {
        margin: 3rem !important;
    }

    .m-sm-auto {
        margin: auto !important;
    }

    .mx-sm-0 {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .mx-sm-1 {
        margin-right: 0.25rem !important;
        margin-left: 0.25rem !important;
    }

    .mx-sm-2 {
        margin-right: 0.5rem !important;
        margin-left: 0.5rem !important;
    }

    .mx-sm-3 {
        margin-right: 1rem !important;
        margin-left: 1rem !important;
    }

    .mx-sm-4 {
        margin-right: 1.5rem !important;
        margin-left: 1.5rem !important;
    }

    .mx-sm-5 {
        margin-right: 3rem !important;
        margin-left: 3rem !important;
    }

    .mx-sm-auto {
        margin-right: auto !important;
        margin-left: auto !important;
    }

    .my-sm-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .my-sm-1 {
        margin-top: 0.25rem !important;
        margin-bottom: 0.25rem !important;
    }

    .my-sm-2 {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .my-sm-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .my-sm-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .my-sm-5 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }

    .my-sm-auto {
        margin-top: auto !important;
        margin-bottom: auto !important;
    }

    .mt-sm-0 {
        margin-top: 0 !important;
    }

    .mt-sm-1 {
        margin-top: 0.25rem !important;
    }

    .mt-sm-2 {
        margin-top: 0.5rem !important;
    }

    .mt-sm-3 {
        margin-top: 1rem !important;
    }

    .mt-sm-4 {
        margin-top: 1.5rem !important;
    }

    .mt-sm-5 {
        margin-top: 3rem !important;
    }

    .mt-sm-auto {
        margin-top: auto !important;
    }

    .me-sm-0 {
        margin-right: 0 !important;
    }

    .me-sm-1 {
        margin-right: 0.25rem !important;
    }

    .me-sm-2 {
        margin-right: 0.5rem !important;
    }

    .me-sm-3 {
        margin-right: 1rem !important;
    }

    .me-sm-4 {
        margin-right: 1.5rem !important;
    }

    .me-sm-5 {
        margin-right: 3rem !important;
    }

    .me-sm-auto {
        margin-right: auto !important;
    }

    .mb-sm-0 {
        margin-bottom: 0 !important;
    }

    .mb-sm-1 {
        margin-bottom: 0.25rem !important;
    }

    .mb-sm-2 {
        margin-bottom: 0.5rem !important;
    }

    .mb-sm-3 {
        margin-bottom: 1rem !important;
    }

    .mb-sm-4 {
        margin-bottom: 1.5rem !important;
    }

    .mb-sm-5 {
        margin-bottom: 3rem !important;
    }

    .mb-sm-auto {
        margin-bottom: auto !important;
    }

    .ms-sm-0 {
        margin-left: 0 !important;
    }

    .ms-sm-1 {
        margin-left: 0.25rem !important;
    }

    .ms-sm-2 {
        margin-left: 0.5rem !important;
    }

    .ms-sm-3 {
        margin-left: 1rem !important;
    }

    .ms-sm-4 {
        margin-left: 1.5rem !important;
    }

    .ms-sm-5 {
        margin-left: 3rem !important;
    }

    .ms-sm-auto {
        margin-left: auto !important;
    }

    .p-sm-0 {
        padding: 0 !important;
    }

    .p-sm-1 {
        padding: 0.25rem !important;
    }

    .p-sm-2 {
        padding: 0.5rem !important;
    }

    .p-sm-3 {
        padding: 1rem !important;
    }

    .p-sm-4 {
        padding: 1.5rem !important;
    }

    .p-sm-5 {
        padding: 3rem !important;
    }

    .px-sm-0 {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .px-sm-1 {
        padding-right: 0.25rem !important;
        padding-left: 0.25rem !important;
    }

    .px-sm-2 {
        padding-right: 0.5rem !important;
        padding-left: 0.5rem !important;
    }

    .px-sm-3 {
        padding-right: 1rem !important;
        padding-left: 1rem !important;
    }

    .px-sm-4 {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important;
    }

    .px-sm-5 {
        padding-right: 3rem !important;
        padding-left: 3rem !important;
    }

    .py-sm-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .py-sm-1 {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }

    .py-sm-2 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }

    .py-sm-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .py-sm-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .py-sm-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .pt-sm-0 {
        padding-top: 0 !important;
    }

    .pt-sm-1 {
        padding-top: 0.25rem !important;
    }

    .pt-sm-2 {
        padding-top: 0.5rem !important;
    }

    .pt-sm-3 {
        padding-top: 1rem !important;
    }

    .pt-sm-4 {
        padding-top: 1.5rem !important;
    }

    .pt-sm-5 {
        padding-top: 3rem !important;
    }

    .pe-sm-0 {
        padding-right: 0 !important;
    }

    .pe-sm-1 {
        padding-right: 0.25rem !important;
    }

    .pe-sm-2 {
        padding-right: 0.5rem !important;
    }

    .pe-sm-3 {
        padding-right: 1rem !important;
    }

    .pe-sm-4 {
        padding-right: 1.5rem !important;
    }

    .pe-sm-5 {
        padding-right: 3rem !important;
    }

    .pb-sm-0 {
        padding-bottom: 0 !important;
    }

    .pb-sm-1 {
        padding-bottom: 0.25rem !important;
    }

    .pb-sm-2 {
        padding-bottom: 0.5rem !important;
    }

    .pb-sm-3 {
        padding-bottom: 1rem !important;
    }

    .pb-sm-4 {
        padding-bottom: 1.5rem !important;
    }

    .pb-sm-5 {
        padding-bottom: 3rem !important;
    }

    .ps-sm-0 {
        padding-left: 0 !important;
    }

    .ps-sm-1 {
        padding-left: 0.25rem !important;
    }

    .ps-sm-2 {
        padding-left: 0.5rem !important;
    }

    .ps-sm-3 {
        padding-left: 1rem !important;
    }

    .ps-sm-4 {
        padding-left: 1.5rem !important;
    }

    .ps-sm-5 {
        padding-left: 3rem !important;
    }

    .gap-sm-0 {
        gap: 0 !important;
    }

    .gap-sm-1 {
        gap: 0.25rem !important;
    }

    .gap-sm-2 {
        gap: 0.5rem !important;
    }

    .gap-sm-3 {
        gap: 1rem !important;
    }

    .gap-sm-4 {
        gap: 1.5rem !important;
    }

    .gap-sm-5 {
        gap: 3rem !important;
    }

    .text-sm-start {
        text-align: left !important;
    }

    .text-sm-end {
        text-align: right !important;
    }

    .text-sm-center {
        text-align: center !important;
    }
}

@media (min-width: 768px) {
    .float-md-start {
        float: left !important;
    }

    .float-md-end {
        float: right !important;
    }

    .float-md-none {
        float: none !important;
    }

    .d-md-inline {
        display: inline !important;
    }

    .d-md-inline-block {
        display: inline-block !important;
    }

    .d-md-block {
        display: block !important;
    }

    .d-md-grid {
        display: grid !important;
    }

    .d-md-table {
        display: table !important;
    }

    .d-md-table-row {
        display: table-row !important;
    }

    .d-md-table-cell {
        display: table-cell !important;
    }

    .d-md-flex {
        display: flex !important;
    }

    .d-md-inline-flex {
        display: inline-flex !important;
    }

    .d-md-none {
        display: none !important;
    }

    .flex-md-fill {
        flex: 1 1 auto !important;
    }

    .flex-md-row {
        flex-direction: row !important;
    }

    .flex-md-column {
        flex-direction: column !important;
    }

    .flex-md-row-reverse {
        flex-direction: row-reverse !important;
    }

    .flex-md-column-reverse {
        flex-direction: column-reverse !important;
    }

    .flex-md-grow-0 {
        flex-grow: 0 !important;
    }

    .flex-md-grow-1 {
        flex-grow: 1 !important;
    }

    .flex-md-shrink-0 {
        flex-shrink: 0 !important;
    }

    .flex-md-shrink-1 {
        flex-shrink: 1 !important;
    }

    .flex-md-wrap {
        flex-wrap: wrap !important;
    }

    .flex-md-nowrap {
        flex-wrap: nowrap !important;
    }

    .flex-md-wrap-reverse {
        flex-wrap: wrap-reverse !important;
    }

    .justify-content-md-start {
        justify-content: flex-start !important;
    }

    .justify-content-md-end {
        justify-content: flex-end !important;
    }

    .justify-content-md-center {
        justify-content: center !important;
    }

    .justify-content-md-between {
        justify-content: space-between !important;
    }

    .justify-content-md-around {
        justify-content: space-around !important;
    }

    .justify-content-md-evenly {
        justify-content: space-evenly !important;
    }

    .align-items-md-start {
        align-items: flex-start !important;
    }

    .align-items-md-end {
        align-items: flex-end !important;
    }

    .align-items-md-center {
        align-items: center !important;
    }

    .align-items-md-baseline {
        align-items: baseline !important;
    }

    .align-items-md-stretch {
        align-items: stretch !important;
    }

    .align-content-md-start {
        align-content: flex-start !important;
    }

    .align-content-md-end {
        align-content: flex-end !important;
    }

    .align-content-md-center {
        align-content: center !important;
    }

    .align-content-md-between {
        align-content: space-between !important;
    }

    .align-content-md-around {
        align-content: space-around !important;
    }

    .align-content-md-stretch {
        align-content: stretch !important;
    }

    .align-self-md-auto {
        align-self: auto !important;
    }

    .align-self-md-start {
        align-self: flex-start !important;
    }

    .align-self-md-end {
        align-self: flex-end !important;
    }

    .align-self-md-center {
        align-self: center !important;
    }

    .align-self-md-baseline {
        align-self: baseline !important;
    }

    .align-self-md-stretch {
        align-self: stretch !important;
    }

    .order-md-first {
        order: -1 !important;
    }

    .order-md-0 {
        order: 0 !important;
    }

    .order-md-1 {
        order: 1 !important;
    }

    .order-md-2 {
        order: 2 !important;
    }

    .order-md-3 {
        order: 3 !important;
    }

    .order-md-4 {
        order: 4 !important;
    }

    .order-md-5 {
        order: 5 !important;
    }

    .order-md-last {
        order: 6 !important;
    }

    .m-md-0 {
        margin: 0 !important;
    }

    .m-md-1 {
        margin: 0.25rem !important;
    }

    .m-md-2 {
        margin: 0.5rem !important;
    }

    .m-md-3 {
        margin: 1rem !important;
    }

    .m-md-4 {
        margin: 1.5rem !important;
    }

    .m-md-5 {
        margin: 3rem !important;
    }

    .m-md-auto {
        margin: auto !important;
    }

    .mx-md-0 {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .mx-md-1 {
        margin-right: 0.25rem !important;
        margin-left: 0.25rem !important;
    }

    .mx-md-2 {
        margin-right: 0.5rem !important;
        margin-left: 0.5rem !important;
    }

    .mx-md-3 {
        margin-right: 1rem !important;
        margin-left: 1rem !important;
    }

    .mx-md-4 {
        margin-right: 1.5rem !important;
        margin-left: 1.5rem !important;
    }

    .mx-md-5 {
        margin-right: 3rem !important;
        margin-left: 3rem !important;
    }

    .mx-md-auto {
        margin-right: auto !important;
        margin-left: auto !important;
    }

    .my-md-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .my-md-1 {
        margin-top: 0.25rem !important;
        margin-bottom: 0.25rem !important;
    }

    .my-md-2 {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .my-md-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .my-md-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .my-md-5 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }

    .my-md-auto {
        margin-top: auto !important;
        margin-bottom: auto !important;
    }

    .mt-md-0 {
        margin-top: 0 !important;
    }

    .mt-md-1 {
        margin-top: 0.25rem !important;
    }

    .mt-md-2 {
        margin-top: 0.5rem !important;
    }

    .mt-md-3 {
        margin-top: 1rem !important;
    }

    .mt-md-4 {
        margin-top: 1.5rem !important;
    }

    .mt-md-5 {
        margin-top: 3rem !important;
    }

    .mt-md-auto {
        margin-top: auto !important;
    }

    .me-md-0 {
        margin-right: 0 !important;
    }

    .me-md-1 {
        margin-right: 0.25rem !important;
    }

    .me-md-2 {
        margin-right: 0.5rem !important;
    }

    .me-md-3 {
        margin-right: 1rem !important;
    }

    .me-md-4 {
        margin-right: 1.5rem !important;
    }

    .me-md-5 {
        margin-right: 3rem !important;
    }

    .me-md-auto {
        margin-right: auto !important;
    }

    .mb-md-0 {
        margin-bottom: 0 !important;
    }

    .mb-md-1 {
        margin-bottom: 0.25rem !important;
    }

    .mb-md-2 {
        margin-bottom: 0.5rem !important;
    }

    .mb-md-3 {
        margin-bottom: 1rem !important;
    }

    .mb-md-4 {
        margin-bottom: 1.5rem !important;
    }

    .mb-md-5 {
        margin-bottom: 3rem !important;
    }

    .mb-md-auto {
        margin-bottom: auto !important;
    }

    .ms-md-0 {
        margin-left: 0 !important;
    }

    .ms-md-1 {
        margin-left: 0.25rem !important;
    }

    .ms-md-2 {
        margin-left: 0.5rem !important;
    }

    .ms-md-3 {
        margin-left: 1rem !important;
    }

    .ms-md-4 {
        margin-left: 1.5rem !important;
    }

    .ms-md-5 {
        margin-left: 3rem !important;
    }

    .ms-md-auto {
        margin-left: auto !important;
    }

    .p-md-0 {
        padding: 0 !important;
    }

    .p-md-1 {
        padding: 0.25rem !important;
    }

    .p-md-2 {
        padding: 0.5rem !important;
    }

    .p-md-3 {
        padding: 1rem !important;
    }

    .p-md-4 {
        padding: 1.5rem !important;
    }

    .p-md-5 {
        padding: 3rem !important;
    }

    .px-md-0 {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .px-md-1 {
        padding-right: 0.25rem !important;
        padding-left: 0.25rem !important;
    }

    .px-md-2 {
        padding-right: 0.5rem !important;
        padding-left: 0.5rem !important;
    }

    .px-md-3 {
        padding-right: 1rem !important;
        padding-left: 1rem !important;
    }

    .px-md-4 {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important;
    }

    .px-md-5 {
        padding-right: 3rem !important;
        padding-left: 3rem !important;
    }

    .py-md-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .py-md-1 {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }

    .py-md-2 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }

    .py-md-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .py-md-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .py-md-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .pt-md-0 {
        padding-top: 0 !important;
    }

    .pt-md-1 {
        padding-top: 0.25rem !important;
    }

    .pt-md-2 {
        padding-top: 0.5rem !important;
    }

    .pt-md-3 {
        padding-top: 1rem !important;
    }

    .pt-md-4 {
        padding-top: 1.5rem !important;
    }

    .pt-md-5 {
        padding-top: 3rem !important;
    }

    .pe-md-0 {
        padding-right: 0 !important;
    }

    .pe-md-1 {
        padding-right: 0.25rem !important;
    }

    .pe-md-2 {
        padding-right: 0.5rem !important;
    }

    .pe-md-3 {
        padding-right: 1rem !important;
    }

    .pe-md-4 {
        padding-right: 1.5rem !important;
    }

    .pe-md-5 {
        padding-right: 3rem !important;
    }

    .pb-md-0 {
        padding-bottom: 0 !important;
    }

    .pb-md-1 {
        padding-bottom: 0.25rem !important;
    }

    .pb-md-2 {
        padding-bottom: 0.5rem !important;
    }

    .pb-md-3 {
        padding-bottom: 1rem !important;
    }

    .pb-md-4 {
        padding-bottom: 1.5rem !important;
    }

    .pb-md-5 {
        padding-bottom: 3rem !important;
    }

    .ps-md-0 {
        padding-left: 0 !important;
    }

    .ps-md-1 {
        padding-left: 0.25rem !important;
    }

    .ps-md-2 {
        padding-left: 0.5rem !important;
    }

    .ps-md-3 {
        padding-left: 1rem !important;
    }

    .ps-md-4 {
        padding-left: 1.5rem !important;
    }

    .ps-md-5 {
        padding-left: 3rem !important;
    }

    .gap-md-0 {
        gap: 0 !important;
    }

    .gap-md-1 {
        gap: 0.25rem !important;
    }

    .gap-md-2 {
        gap: 0.5rem !important;
    }

    .gap-md-3 {
        gap: 1rem !important;
    }

    .gap-md-4 {
        gap: 1.5rem !important;
    }

    .gap-md-5 {
        gap: 3rem !important;
    }

    .text-md-start {
        text-align: left !important;
    }

    .text-md-end {
        text-align: right !important;
    }

    .text-md-center {
        text-align: center !important;
    }
}

@media (min-width: 992px) {
    .float-lg-start {
        float: left !important;
    }

    .float-lg-end {
        float: right !important;
    }

    .float-lg-none {
        float: none !important;
    }

    .d-lg-inline {
        display: inline !important;
    }

    .d-lg-inline-block {
        display: inline-block !important;
    }

    .d-lg-block {
        display: block !important;
    }

    .d-lg-grid {
        display: grid !important;
    }

    .d-lg-table {
        display: table !important;
    }

    .d-lg-table-row {
        display: table-row !important;
    }

    .d-lg-table-cell {
        display: table-cell !important;
    }

    .d-lg-flex {
        display: flex !important;
    }

    .d-lg-inline-flex {
        display: inline-flex !important;
    }

    .d-lg-none {
        display: none !important;
    }

    .flex-lg-fill {
        flex: 1 1 auto !important;
    }

    .flex-lg-row {
        flex-direction: row !important;
    }

    .flex-lg-column {
        flex-direction: column !important;
    }

    .flex-lg-row-reverse {
        flex-direction: row-reverse !important;
    }

    .flex-lg-column-reverse {
        flex-direction: column-reverse !important;
    }

    .flex-lg-grow-0 {
        flex-grow: 0 !important;
    }

    .flex-lg-grow-1 {
        flex-grow: 1 !important;
    }

    .flex-lg-shrink-0 {
        flex-shrink: 0 !important;
    }

    .flex-lg-shrink-1 {
        flex-shrink: 1 !important;
    }

    .flex-lg-wrap {
        flex-wrap: wrap !important;
    }

    .flex-lg-nowrap {
        flex-wrap: nowrap !important;
    }

    .flex-lg-wrap-reverse {
        flex-wrap: wrap-reverse !important;
    }

    .justify-content-lg-start {
        justify-content: flex-start !important;
    }

    .justify-content-lg-end {
        justify-content: flex-end !important;
    }

    .justify-content-lg-center {
        justify-content: center !important;
    }

    .justify-content-lg-between {
        justify-content: space-between !important;
    }

    .justify-content-lg-around {
        justify-content: space-around !important;
    }

    .justify-content-lg-evenly {
        justify-content: space-evenly !important;
    }

    .align-items-lg-start {
        align-items: flex-start !important;
    }

    .align-items-lg-end {
        align-items: flex-end !important;
    }

    .align-items-lg-center {
        align-items: center !important;
    }

    .align-items-lg-baseline {
        align-items: baseline !important;
    }

    .align-items-lg-stretch {
        align-items: stretch !important;
    }

    .align-content-lg-start {
        align-content: flex-start !important;
    }

    .align-content-lg-end {
        align-content: flex-end !important;
    }

    .align-content-lg-center {
        align-content: center !important;
    }

    .align-content-lg-between {
        align-content: space-between !important;
    }

    .align-content-lg-around {
        align-content: space-around !important;
    }

    .align-content-lg-stretch {
        align-content: stretch !important;
    }

    .align-self-lg-auto {
        align-self: auto !important;
    }

    .align-self-lg-start {
        align-self: flex-start !important;
    }

    .align-self-lg-end {
        align-self: flex-end !important;
    }

    .align-self-lg-center {
        align-self: center !important;
    }

    .align-self-lg-baseline {
        align-self: baseline !important;
    }

    .align-self-lg-stretch {
        align-self: stretch !important;
    }

    .order-lg-first {
        order: -1 !important;
    }

    .order-lg-0 {
        order: 0 !important;
    }

    .order-lg-1 {
        order: 1 !important;
    }

    .order-lg-2 {
        order: 2 !important;
    }

    .order-lg-3 {
        order: 3 !important;
    }

    .order-lg-4 {
        order: 4 !important;
    }

    .order-lg-5 {
        order: 5 !important;
    }

    .order-lg-last {
        order: 6 !important;
    }

    .m-lg-0 {
        margin: 0 !important;
    }

    .m-lg-1 {
        margin: 0.25rem !important;
    }

    .m-lg-2 {
        margin: 0.5rem !important;
    }

    .m-lg-3 {
        margin: 1rem !important;
    }

    .m-lg-4 {
        margin: 1.5rem !important;
    }

    .m-lg-5 {
        margin: 3rem !important;
    }

    .m-lg-auto {
        margin: auto !important;
    }

    .mx-lg-0 {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .mx-lg-1 {
        margin-right: 0.25rem !important;
        margin-left: 0.25rem !important;
    }

    .mx-lg-2 {
        margin-right: 0.5rem !important;
        margin-left: 0.5rem !important;
    }

    .mx-lg-3 {
        margin-right: 1rem !important;
        margin-left: 1rem !important;
    }

    .mx-lg-4 {
        margin-right: 1.5rem !important;
        margin-left: 1.5rem !important;
    }

    .mx-lg-5 {
        margin-right: 3rem !important;
        margin-left: 3rem !important;
    }

    .mx-lg-auto {
        margin-right: auto !important;
        margin-left: auto !important;
    }

    .my-lg-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .my-lg-1 {
        margin-top: 0.25rem !important;
        margin-bottom: 0.25rem !important;
    }

    .my-lg-2 {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .my-lg-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .my-lg-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .my-lg-5 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }

    .my-lg-auto {
        margin-top: auto !important;
        margin-bottom: auto !important;
    }

    .mt-lg-0 {
        margin-top: 0 !important;
    }

    .mt-lg-1 {
        margin-top: 0.25rem !important;
    }

    .mt-lg-2 {
        margin-top: 0.5rem !important;
    }

    .mt-lg-3 {
        margin-top: 1rem !important;
    }

    .mt-lg-4 {
        margin-top: 1.5rem !important;
    }

    .mt-lg-5 {
        margin-top: 3rem !important;
    }

    .mt-lg-auto {
        margin-top: auto !important;
    }

    .me-lg-0 {
        margin-right: 0 !important;
    }

    .me-lg-1 {
        margin-right: 0.25rem !important;
    }

    .me-lg-2 {
        margin-right: 0.5rem !important;
    }

    .me-lg-3 {
        margin-right: 1rem !important;
    }

    .me-lg-4 {
        margin-right: 1.5rem !important;
    }

    .me-lg-5 {
        margin-right: 3rem !important;
    }

    .me-lg-auto {
        margin-right: auto !important;
    }

    .mb-lg-0 {
        margin-bottom: 0 !important;
    }

    .mb-lg-1 {
        margin-bottom: 0.25rem !important;
    }

    .mb-lg-2 {
        margin-bottom: 0.5rem !important;
    }

    .mb-lg-3 {
        margin-bottom: 1rem !important;
    }

    .mb-lg-4 {
        margin-bottom: 1.5rem !important;
    }

    .mb-lg-5 {
        margin-bottom: 3rem !important;
    }

    .mb-lg-auto {
        margin-bottom: auto !important;
    }

    .ms-lg-0 {
        margin-left: 0 !important;
    }

    .ms-lg-1 {
        margin-left: 0.25rem !important;
    }

    .ms-lg-2 {
        margin-left: 0.5rem !important;
    }

    .ms-lg-3 {
        margin-left: 1rem !important;
    }

    .ms-lg-4 {
        margin-left: 1.5rem !important;
    }

    .ms-lg-5 {
        margin-left: 3rem !important;
    }

    .ms-lg-auto {
        margin-left: auto !important;
    }

    .p-lg-0 {
        padding: 0 !important;
    }

    .p-lg-1 {
        padding: 0.25rem !important;
    }

    .p-lg-2 {
        padding: 0.5rem !important;
    }

    .p-lg-3 {
        padding: 1rem !important;
    }

    .p-lg-4 {
        padding: 1.5rem !important;
    }

    .p-lg-5 {
        padding: 3rem !important;
    }

    .px-lg-0 {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .px-lg-1 {
        padding-right: 0.25rem !important;
        padding-left: 0.25rem !important;
    }

    .px-lg-2 {
        padding-right: 0.5rem !important;
        padding-left: 0.5rem !important;
    }

    .px-lg-3 {
        padding-right: 1rem !important;
        padding-left: 1rem !important;
    }

    .px-lg-4 {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important;
    }

    .px-lg-5 {
        padding-right: 3rem !important;
        padding-left: 3rem !important;
    }

    .py-lg-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .py-lg-1 {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }

    .py-lg-2 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }

    .py-lg-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .py-lg-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .py-lg-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .pt-lg-0 {
        padding-top: 0 !important;
    }

    .pt-lg-1 {
        padding-top: 0.25rem !important;
    }

    .pt-lg-2 {
        padding-top: 0.5rem !important;
    }

    .pt-lg-3 {
        padding-top: 1rem !important;
    }

    .pt-lg-4 {
        padding-top: 1.5rem !important;
    }

    .pt-lg-5 {
        padding-top: 3rem !important;
    }

    .pe-lg-0 {
        padding-right: 0 !important;
    }

    .pe-lg-1 {
        padding-right: 0.25rem !important;
    }

    .pe-lg-2 {
        padding-right: 0.5rem !important;
    }

    .pe-lg-3 {
        padding-right: 1rem !important;
    }

    .pe-lg-4 {
        padding-right: 1.5rem !important;
    }

    .pe-lg-5 {
        padding-right: 3rem !important;
    }

    .pb-lg-0 {
        padding-bottom: 0 !important;
    }

    .pb-lg-1 {
        padding-bottom: 0.25rem !important;
    }

    .pb-lg-2 {
        padding-bottom: 0.5rem !important;
    }

    .pb-lg-3 {
        padding-bottom: 1rem !important;
    }

    .pb-lg-4 {
        padding-bottom: 1.5rem !important;
    }

    .pb-lg-5 {
        padding-bottom: 3rem !important;
    }

    .ps-lg-0 {
        padding-left: 0 !important;
    }

    .ps-lg-1 {
        padding-left: 0.25rem !important;
    }

    .ps-lg-2 {
        padding-left: 0.5rem !important;
    }

    .ps-lg-3 {
        padding-left: 1rem !important;
    }

    .ps-lg-4 {
        padding-left: 1.5rem !important;
    }

    .ps-lg-5 {
        padding-left: 3rem !important;
    }

    .gap-lg-0 {
        gap: 0 !important;
    }

    .gap-lg-1 {
        gap: 0.25rem !important;
    }

    .gap-lg-2 {
        gap: 0.5rem !important;
    }

    .gap-lg-3 {
        gap: 1rem !important;
    }

    .gap-lg-4 {
        gap: 1.5rem !important;
    }

    .gap-lg-5 {
        gap: 3rem !important;
    }

    .text-lg-start {
        text-align: left !important;
    }

    .text-lg-end {
        text-align: right !important;
    }

    .text-lg-center {
        text-align: center !important;
    }
}

@media (min-width: 1200px) {
    .float-xl-start {
        float: left !important;
    }

    .float-xl-end {
        float: right !important;
    }

    .float-xl-none {
        float: none !important;
    }

    .d-xl-inline {
        display: inline !important;
    }

    .d-xl-inline-block {
        display: inline-block !important;
    }

    .d-xl-block {
        display: block !important;
    }

    .d-xl-grid {
        display: grid !important;
    }

    .d-xl-table {
        display: table !important;
    }

    .d-xl-table-row {
        display: table-row !important;
    }

    .d-xl-table-cell {
        display: table-cell !important;
    }

    .d-xl-flex {
        display: flex !important;
    }

    .d-xl-inline-flex {
        display: inline-flex !important;
    }

    .d-xl-none {
        display: none !important;
    }

    .flex-xl-fill {
        flex: 1 1 auto !important;
    }

    .flex-xl-row {
        flex-direction: row !important;
    }

    .flex-xl-column {
        flex-direction: column !important;
    }

    .flex-xl-row-reverse {
        flex-direction: row-reverse !important;
    }

    .flex-xl-column-reverse {
        flex-direction: column-reverse !important;
    }

    .flex-xl-grow-0 {
        flex-grow: 0 !important;
    }

    .flex-xl-grow-1 {
        flex-grow: 1 !important;
    }

    .flex-xl-shrink-0 {
        flex-shrink: 0 !important;
    }

    .flex-xl-shrink-1 {
        flex-shrink: 1 !important;
    }

    .flex-xl-wrap {
        flex-wrap: wrap !important;
    }

    .flex-xl-nowrap {
        flex-wrap: nowrap !important;
    }

    .flex-xl-wrap-reverse {
        flex-wrap: wrap-reverse !important;
    }

    .justify-content-xl-start {
        justify-content: flex-start !important;
    }

    .justify-content-xl-end {
        justify-content: flex-end !important;
    }

    .justify-content-xl-center {
        justify-content: center !important;
    }

    .justify-content-xl-between {
        justify-content: space-between !important;
    }

    .justify-content-xl-around {
        justify-content: space-around !important;
    }

    .justify-content-xl-evenly {
        justify-content: space-evenly !important;
    }

    .align-items-xl-start {
        align-items: flex-start !important;
    }

    .align-items-xl-end {
        align-items: flex-end !important;
    }

    .align-items-xl-center {
        align-items: center !important;
    }

    .align-items-xl-baseline {
        align-items: baseline !important;
    }

    .align-items-xl-stretch {
        align-items: stretch !important;
    }

    .align-content-xl-start {
        align-content: flex-start !important;
    }

    .align-content-xl-end {
        align-content: flex-end !important;
    }

    .align-content-xl-center {
        align-content: center !important;
    }

    .align-content-xl-between {
        align-content: space-between !important;
    }

    .align-content-xl-around {
        align-content: space-around !important;
    }

    .align-content-xl-stretch {
        align-content: stretch !important;
    }

    .align-self-xl-auto {
        align-self: auto !important;
    }

    .align-self-xl-start {
        align-self: flex-start !important;
    }

    .align-self-xl-end {
        align-self: flex-end !important;
    }

    .align-self-xl-center {
        align-self: center !important;
    }

    .align-self-xl-baseline {
        align-self: baseline !important;
    }

    .align-self-xl-stretch {
        align-self: stretch !important;
    }

    .order-xl-first {
        order: -1 !important;
    }

    .order-xl-0 {
        order: 0 !important;
    }

    .order-xl-1 {
        order: 1 !important;
    }

    .order-xl-2 {
        order: 2 !important;
    }

    .order-xl-3 {
        order: 3 !important;
    }

    .order-xl-4 {
        order: 4 !important;
    }

    .order-xl-5 {
        order: 5 !important;
    }

    .order-xl-last {
        order: 6 !important;
    }

    .m-xl-0 {
        margin: 0 !important;
    }

    .m-xl-1 {
        margin: 0.25rem !important;
    }

    .m-xl-2 {
        margin: 0.5rem !important;
    }

    .m-xl-3 {
        margin: 1rem !important;
    }

    .m-xl-4 {
        margin: 1.5rem !important;
    }

    .m-xl-5 {
        margin: 3rem !important;
    }

    .m-xl-auto {
        margin: auto !important;
    }

    .mx-xl-0 {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .mx-xl-1 {
        margin-right: 0.25rem !important;
        margin-left: 0.25rem !important;
    }

    .mx-xl-2 {
        margin-right: 0.5rem !important;
        margin-left: 0.5rem !important;
    }

    .mx-xl-3 {
        margin-right: 1rem !important;
        margin-left: 1rem !important;
    }

    .mx-xl-4 {
        margin-right: 1.5rem !important;
        margin-left: 1.5rem !important;
    }

    .mx-xl-5 {
        margin-right: 3rem !important;
        margin-left: 3rem !important;
    }

    .mx-xl-auto {
        margin-right: auto !important;
        margin-left: auto !important;
    }

    .my-xl-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .my-xl-1 {
        margin-top: 0.25rem !important;
        margin-bottom: 0.25rem !important;
    }

    .my-xl-2 {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .my-xl-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .my-xl-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .my-xl-5 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }

    .my-xl-auto {
        margin-top: auto !important;
        margin-bottom: auto !important;
    }

    .mt-xl-0 {
        margin-top: 0 !important;
    }

    .mt-xl-1 {
        margin-top: 0.25rem !important;
    }

    .mt-xl-2 {
        margin-top: 0.5rem !important;
    }

    .mt-xl-3 {
        margin-top: 1rem !important;
    }

    .mt-xl-4 {
        margin-top: 1.5rem !important;
    }

    .mt-xl-5 {
        margin-top: 3rem !important;
    }

    .mt-xl-auto {
        margin-top: auto !important;
    }

    .me-xl-0 {
        margin-right: 0 !important;
    }

    .me-xl-1 {
        margin-right: 0.25rem !important;
    }

    .me-xl-2 {
        margin-right: 0.5rem !important;
    }

    .me-xl-3 {
        margin-right: 1rem !important;
    }

    .me-xl-4 {
        margin-right: 1.5rem !important;
    }

    .me-xl-5 {
        margin-right: 3rem !important;
    }

    .me-xl-auto {
        margin-right: auto !important;
    }

    .mb-xl-0 {
        margin-bottom: 0 !important;
    }

    .mb-xl-1 {
        margin-bottom: 0.25rem !important;
    }

    .mb-xl-2 {
        margin-bottom: 0.5rem !important;
    }

    .mb-xl-3 {
        margin-bottom: 1rem !important;
    }

    .mb-xl-4 {
        margin-bottom: 1.5rem !important;
    }

    .mb-xl-5 {
        margin-bottom: 3rem !important;
    }

    .mb-xl-auto {
        margin-bottom: auto !important;
    }

    .ms-xl-0 {
        margin-left: 0 !important;
    }

    .ms-xl-1 {
        margin-left: 0.25rem !important;
    }

    .ms-xl-2 {
        margin-left: 0.5rem !important;
    }

    .ms-xl-3 {
        margin-left: 1rem !important;
    }

    .ms-xl-4 {
        margin-left: 1.5rem !important;
    }

    .ms-xl-5 {
        margin-left: 3rem !important;
    }

    .ms-xl-auto {
        margin-left: auto !important;
    }

    .p-xl-0 {
        padding: 0 !important;
    }

    .p-xl-1 {
        padding: 0.25rem !important;
    }

    .p-xl-2 {
        padding: 0.5rem !important;
    }

    .p-xl-3 {
        padding: 1rem !important;
    }

    .p-xl-4 {
        padding: 1.5rem !important;
    }

    .p-xl-5 {
        padding: 3rem !important;
    }

    .px-xl-0 {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .px-xl-1 {
        padding-right: 0.25rem !important;
        padding-left: 0.25rem !important;
    }

    .px-xl-2 {
        padding-right: 0.5rem !important;
        padding-left: 0.5rem !important;
    }

    .px-xl-3 {
        padding-right: 1rem !important;
        padding-left: 1rem !important;
    }

    .px-xl-4 {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important;
    }

    .px-xl-5 {
        padding-right: 3rem !important;
        padding-left: 3rem !important;
    }

    .py-xl-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .py-xl-1 {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }

    .py-xl-2 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }

    .py-xl-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .py-xl-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .py-xl-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .pt-xl-0 {
        padding-top: 0 !important;
    }

    .pt-xl-1 {
        padding-top: 0.25rem !important;
    }

    .pt-xl-2 {
        padding-top: 0.5rem !important;
    }

    .pt-xl-3 {
        padding-top: 1rem !important;
    }

    .pt-xl-4 {
        padding-top: 1.5rem !important;
    }

    .pt-xl-5 {
        padding-top: 3rem !important;
    }

    .pe-xl-0 {
        padding-right: 0 !important;
    }

    .pe-xl-1 {
        padding-right: 0.25rem !important;
    }

    .pe-xl-2 {
        padding-right: 0.5rem !important;
    }

    .pe-xl-3 {
        padding-right: 1rem !important;
    }

    .pe-xl-4 {
        padding-right: 1.5rem !important;
    }

    .pe-xl-5 {
        padding-right: 3rem !important;
    }

    .pb-xl-0 {
        padding-bottom: 0 !important;
    }

    .pb-xl-1 {
        padding-bottom: 0.25rem !important;
    }

    .pb-xl-2 {
        padding-bottom: 0.5rem !important;
    }

    .pb-xl-3 {
        padding-bottom: 1rem !important;
    }

    .pb-xl-4 {
        padding-bottom: 1.5rem !important;
    }

    .pb-xl-5 {
        padding-bottom: 3rem !important;
    }

    .ps-xl-0 {
        padding-left: 0 !important;
    }

    .ps-xl-1 {
        padding-left: 0.25rem !important;
    }

    .ps-xl-2 {
        padding-left: 0.5rem !important;
    }

    .ps-xl-3 {
        padding-left: 1rem !important;
    }

    .ps-xl-4 {
        padding-left: 1.5rem !important;
    }

    .ps-xl-5 {
        padding-left: 3rem !important;
    }

    .gap-xl-0 {
        gap: 0 !important;
    }

    .gap-xl-1 {
        gap: 0.25rem !important;
    }

    .gap-xl-2 {
        gap: 0.5rem !important;
    }

    .gap-xl-3 {
        gap: 1rem !important;
    }

    .gap-xl-4 {
        gap: 1.5rem !important;
    }

    .gap-xl-5 {
        gap: 3rem !important;
    }

    .text-xl-start {
        text-align: left !important;
    }

    .text-xl-end {
        text-align: right !important;
    }

    .text-xl-center {
        text-align: center !important;
    }
}

@media (min-width: 1400px) {
    .float-xxl-start {
        float: left !important;
    }

    .float-xxl-end {
        float: right !important;
    }

    .float-xxl-none {
        float: none !important;
    }

    .d-xxl-inline {
        display: inline !important;
    }

    .d-xxl-inline-block {
        display: inline-block !important;
    }

    .d-xxl-block {
        display: block !important;
    }

    .d-xxl-grid {
        display: grid !important;
    }

    .d-xxl-table {
        display: table !important;
    }

    .d-xxl-table-row {
        display: table-row !important;
    }

    .d-xxl-table-cell {
        display: table-cell !important;
    }

    .d-xxl-flex {
        display: flex !important;
    }

    .d-xxl-inline-flex {
        display: inline-flex !important;
    }

    .d-xxl-none {
        display: none !important;
    }

    .flex-xxl-fill {
        flex: 1 1 auto !important;
    }

    .flex-xxl-row {
        flex-direction: row !important;
    }

    .flex-xxl-column {
        flex-direction: column !important;
    }

    .flex-xxl-row-reverse {
        flex-direction: row-reverse !important;
    }

    .flex-xxl-column-reverse {
        flex-direction: column-reverse !important;
    }

    .flex-xxl-grow-0 {
        flex-grow: 0 !important;
    }

    .flex-xxl-grow-1 {
        flex-grow: 1 !important;
    }

    .flex-xxl-shrink-0 {
        flex-shrink: 0 !important;
    }

    .flex-xxl-shrink-1 {
        flex-shrink: 1 !important;
    }

    .flex-xxl-wrap {
        flex-wrap: wrap !important;
    }

    .flex-xxl-nowrap {
        flex-wrap: nowrap !important;
    }

    .flex-xxl-wrap-reverse {
        flex-wrap: wrap-reverse !important;
    }

    .justify-content-xxl-start {
        justify-content: flex-start !important;
    }

    .justify-content-xxl-end {
        justify-content: flex-end !important;
    }

    .justify-content-xxl-center {
        justify-content: center !important;
    }

    .justify-content-xxl-between {
        justify-content: space-between !important;
    }

    .justify-content-xxl-around {
        justify-content: space-around !important;
    }

    .justify-content-xxl-evenly {
        justify-content: space-evenly !important;
    }

    .align-items-xxl-start {
        align-items: flex-start !important;
    }

    .align-items-xxl-end {
        align-items: flex-end !important;
    }

    .align-items-xxl-center {
        align-items: center !important;
    }

    .align-items-xxl-baseline {
        align-items: baseline !important;
    }

    .align-items-xxl-stretch {
        align-items: stretch !important;
    }

    .align-content-xxl-start {
        align-content: flex-start !important;
    }

    .align-content-xxl-end {
        align-content: flex-end !important;
    }

    .align-content-xxl-center {
        align-content: center !important;
    }

    .align-content-xxl-between {
        align-content: space-between !important;
    }

    .align-content-xxl-around {
        align-content: space-around !important;
    }

    .align-content-xxl-stretch {
        align-content: stretch !important;
    }

    .align-self-xxl-auto {
        align-self: auto !important;
    }

    .align-self-xxl-start {
        align-self: flex-start !important;
    }

    .align-self-xxl-end {
        align-self: flex-end !important;
    }

    .align-self-xxl-center {
        align-self: center !important;
    }

    .align-self-xxl-baseline {
        align-self: baseline !important;
    }

    .align-self-xxl-stretch {
        align-self: stretch !important;
    }

    .order-xxl-first {
        order: -1 !important;
    }

    .order-xxl-0 {
        order: 0 !important;
    }

    .order-xxl-1 {
        order: 1 !important;
    }

    .order-xxl-2 {
        order: 2 !important;
    }

    .order-xxl-3 {
        order: 3 !important;
    }

    .order-xxl-4 {
        order: 4 !important;
    }

    .order-xxl-5 {
        order: 5 !important;
    }

    .order-xxl-last {
        order: 6 !important;
    }

    .m-xxl-0 {
        margin: 0 !important;
    }

    .m-xxl-1 {
        margin: 0.25rem !important;
    }

    .m-xxl-2 {
        margin: 0.5rem !important;
    }

    .m-xxl-3 {
        margin: 1rem !important;
    }

    .m-xxl-4 {
        margin: 1.5rem !important;
    }

    .m-xxl-5 {
        margin: 3rem !important;
    }

    .m-xxl-auto {
        margin: auto !important;
    }

    .mx-xxl-0 {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .mx-xxl-1 {
        margin-right: 0.25rem !important;
        margin-left: 0.25rem !important;
    }

    .mx-xxl-2 {
        margin-right: 0.5rem !important;
        margin-left: 0.5rem !important;
    }

    .mx-xxl-3 {
        margin-right: 1rem !important;
        margin-left: 1rem !important;
    }

    .mx-xxl-4 {
        margin-right: 1.5rem !important;
        margin-left: 1.5rem !important;
    }

    .mx-xxl-5 {
        margin-right: 3rem !important;
        margin-left: 3rem !important;
    }

    .mx-xxl-auto {
        margin-right: auto !important;
        margin-left: auto !important;
    }

    .my-xxl-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .my-xxl-1 {
        margin-top: 0.25rem !important;
        margin-bottom: 0.25rem !important;
    }

    .my-xxl-2 {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .my-xxl-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .my-xxl-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .my-xxl-5 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }

    .my-xxl-auto {
        margin-top: auto !important;
        margin-bottom: auto !important;
    }

    .mt-xxl-0 {
        margin-top: 0 !important;
    }

    .mt-xxl-1 {
        margin-top: 0.25rem !important;
    }

    .mt-xxl-2 {
        margin-top: 0.5rem !important;
    }

    .mt-xxl-3 {
        margin-top: 1rem !important;
    }

    .mt-xxl-4 {
        margin-top: 1.5rem !important;
    }

    .mt-xxl-5 {
        margin-top: 3rem !important;
    }

    .mt-xxl-auto {
        margin-top: auto !important;
    }

    .me-xxl-0 {
        margin-right: 0 !important;
    }

    .me-xxl-1 {
        margin-right: 0.25rem !important;
    }

    .me-xxl-2 {
        margin-right: 0.5rem !important;
    }

    .me-xxl-3 {
        margin-right: 1rem !important;
    }

    .me-xxl-4 {
        margin-right: 1.5rem !important;
    }

    .me-xxl-5 {
        margin-right: 3rem !important;
    }

    .me-xxl-auto {
        margin-right: auto !important;
    }

    .mb-xxl-0 {
        margin-bottom: 0 !important;
    }

    .mb-xxl-1 {
        margin-bottom: 0.25rem !important;
    }

    .mb-xxl-2 {
        margin-bottom: 0.5rem !important;
    }

    .mb-xxl-3 {
        margin-bottom: 1rem !important;
    }

    .mb-xxl-4 {
        margin-bottom: 1.5rem !important;
    }

    .mb-xxl-5 {
        margin-bottom: 3rem !important;
    }

    .mb-xxl-auto {
        margin-bottom: auto !important;
    }

    .ms-xxl-0 {
        margin-left: 0 !important;
    }

    .ms-xxl-1 {
        margin-left: 0.25rem !important;
    }

    .ms-xxl-2 {
        margin-left: 0.5rem !important;
    }

    .ms-xxl-3 {
        margin-left: 1rem !important;
    }

    .ms-xxl-4 {
        margin-left: 1.5rem !important;
    }

    .ms-xxl-5 {
        margin-left: 3rem !important;
    }

    .ms-xxl-auto {
        margin-left: auto !important;
    }

    .p-xxl-0 {
        padding: 0 !important;
    }

    .p-xxl-1 {
        padding: 0.25rem !important;
    }

    .p-xxl-2 {
        padding: 0.5rem !important;
    }

    .p-xxl-3 {
        padding: 1rem !important;
    }

    .p-xxl-4 {
        padding: 1.5rem !important;
    }

    .p-xxl-5 {
        padding: 3rem !important;
    }

    .px-xxl-0 {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .px-xxl-1 {
        padding-right: 0.25rem !important;
        padding-left: 0.25rem !important;
    }

    .px-xxl-2 {
        padding-right: 0.5rem !important;
        padding-left: 0.5rem !important;
    }

    .px-xxl-3 {
        padding-right: 1rem !important;
        padding-left: 1rem !important;
    }

    .px-xxl-4 {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important;
    }

    .px-xxl-5 {
        padding-right: 3rem !important;
        padding-left: 3rem !important;
    }

    .py-xxl-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .py-xxl-1 {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }

    .py-xxl-2 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }

    .py-xxl-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .py-xxl-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .py-xxl-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .pt-xxl-0 {
        padding-top: 0 !important;
    }

    .pt-xxl-1 {
        padding-top: 0.25rem !important;
    }

    .pt-xxl-2 {
        padding-top: 0.5rem !important;
    }

    .pt-xxl-3 {
        padding-top: 1rem !important;
    }

    .pt-xxl-4 {
        padding-top: 1.5rem !important;
    }

    .pt-xxl-5 {
        padding-top: 3rem !important;
    }

    .pe-xxl-0 {
        padding-right: 0 !important;
    }

    .pe-xxl-1 {
        padding-right: 0.25rem !important;
    }

    .pe-xxl-2 {
        padding-right: 0.5rem !important;
    }

    .pe-xxl-3 {
        padding-right: 1rem !important;
    }

    .pe-xxl-4 {
        padding-right: 1.5rem !important;
    }

    .pe-xxl-5 {
        padding-right: 3rem !important;
    }

    .pb-xxl-0 {
        padding-bottom: 0 !important;
    }

    .pb-xxl-1 {
        padding-bottom: 0.25rem !important;
    }

    .pb-xxl-2 {
        padding-bottom: 0.5rem !important;
    }

    .pb-xxl-3 {
        padding-bottom: 1rem !important;
    }

    .pb-xxl-4 {
        padding-bottom: 1.5rem !important;
    }

    .pb-xxl-5 {
        padding-bottom: 3rem !important;
    }

    .ps-xxl-0 {
        padding-left: 0 !important;
    }

    .ps-xxl-1 {
        padding-left: 0.25rem !important;
    }

    .ps-xxl-2 {
        padding-left: 0.5rem !important;
    }

    .ps-xxl-3 {
        padding-left: 1rem !important;
    }

    .ps-xxl-4 {
        padding-left: 1.5rem !important;
    }

    .ps-xxl-5 {
        padding-left: 3rem !important;
    }

    .gap-xxl-0 {
        gap: 0 !important;
    }

    .gap-xxl-1 {
        gap: 0.25rem !important;
    }

    .gap-xxl-2 {
        gap: 0.5rem !important;
    }

    .gap-xxl-3 {
        gap: 1rem !important;
    }

    .gap-xxl-4 {
        gap: 1.5rem !important;
    }

    .gap-xxl-5 {
        gap: 3rem !important;
    }

    .text-xxl-start {
        text-align: left !important;
    }

    .text-xxl-end {
        text-align: right !important;
    }

    .text-xxl-center {
        text-align: center !important;
    }
}

@media (min-width: 1200px) {
    .fs-1 {
        font-size: 2.5rem !important;
    }

    .fs-2 {
        font-size: 2rem !important;
    }

    .fs-3 {
        font-size: 1.75rem !important;
    }

    .fs-4 {
        font-size: 1.5rem !important;
    }
}

@media print {
    .d-print-inline {
        display: inline !important;
    }

    .d-print-inline-block {
        display: inline-block !important;
    }

    .d-print-block {
        display: block !important;
    }

    .d-print-grid {
        display: grid !important;
    }

    .d-print-table {
        display: table !important;
    }

    .d-print-table-row {
        display: table-row !important;
    }

    .d-print-table-cell {
        display: table-cell !important;
    }

    .d-print-flex {
        display: flex !important;
    }

    .d-print-inline-flex {
        display: inline-flex !important;
    }

    .d-print-none {
        display: none !important;
    }
}

html {
    height: 100%;
    scroll-padding-top: calc(4.5rem - 1px);
}

.page-section {
    padding: 6rem 0;
}

    .page-section .page-section-heading {
        font-size: 2.25rem;
        line-height: 2rem;
    }

@media (min-width: 992px) {
    .page-section .page-section-heading {
        font-size: 3rem;
        line-height: 2.5rem;
    }
}

.divider-custom {
    margin: 1.25rem 0 1.5rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .divider-custom .divider-custom-line {
        width: 100%;
        max-width: 7rem;
        height: 0.25rem;
        background-color: #2c3e50;
        border-radius: 1rem;
        border-color: #2c3e50;
    }

    .divider-custom .divider-custom-line-dark {
        width: 100%;
        max-width: 6rem;
        height: 0.25rem;
        background-color: #FFFFFF;
        border-radius: 1rem;
        border-color: #FFFFFF;
    }

        .divider-custom .divider-custom-line:first-child {
            margin-right: 1rem;
        }

        .divider-custom .divider-custom-line:last-child {
            margin-left: 1rem;
        }

    .divider-custom .divider-custom-line-dark:first-child {
        margin-right: 1rem;
    }

    .divider-custom .divider-custom-line-dark:last-child {
        margin-left: 1rem;
    }

    .divider-custom .divider-custom-icon {
        color: #2c3e50;
        font-size: 2rem;
    }

    .divider-custom.divider-light .divider-custom-line {
        background-color: #fff;
    }

    .divider-custom.divider-light .divider-custom-icon {
        color: #fff;
    }

.btn-xl {
    padding: 1rem 1.75rem;
    font-size: 1.25rem;
}

.btn-social {
    border-radius: 100%;
    display: inline-flex;
    width: 3.25rem;
    height: 3.25rem;
    font-size: 1.25rem;
    justify-content: center;
    align-items: center;
}

#mainNav {
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-weight: 700;
}

    #mainNav .navbar-brand {
        color: #fff;
    }

    #mainNav .navbar-nav {
        margin-top: 1rem;
    }

        #mainNav .navbar-nav li.nav-item a.nav-link {
            color: #fff;
        }

            #mainNav .navbar-nav li.nav-item a.nav-link:hover {
                color: #1abc9c;
            }

            #mainNav .navbar-nav li.nav-item a.nav-link:active, #mainNav .navbar-nav li.nav-item a.nav-link:focus {
                color: #fff;
            }

            #mainNav .navbar-nav li.nav-item a.nav-link.active {
                color: #1abc9c;
            }

    #mainNav .navbar-toggler {
        font-size: 80%;
        padding: 0.8rem;
    }

@media (min-width: 992px) {
    #mainNav {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
        transition: padding-top 0.3s, padding-bottom 0.3s;
    }

        #mainNav .navbar-brand {
            font-size: 1.75em;
            transition: font-size 0.3s;
        }

        #mainNav .navbar-nav {
            margin-top: 0;
        }

            #mainNav .navbar-nav > li.nav-item > a.nav-link.active {
                color: #fff;
                background: #1abc9c;
            }

                #mainNav .navbar-nav > li.nav-item > a.nav-link.active:active, #mainNav .navbar-nav > li.nav-item > a.nav-link.active:focus, #mainNav .navbar-nav > li.nav-item > a.nav-link.active:hover {
                    color: #fff;
                    background: #1abc9c;
                }

        #mainNav.navbar-shrink {
            padding-top: 0.5rem;
            padding-bottom: 0.5rem;
        }

            #mainNav.navbar-shrink .navbar-brand {
                font-size: 1.5em;
            }
}

.form-floating input.form-control,
.form-floating textarea.form-control {
    font-size: 1.5rem;
    border-left: 0;
    border-right: 0;
    border-top: 0;
    border-radius: 0;
    border-width: 1px;
}

    .form-floating input.form-control:focus,
    .form-floating textarea.form-control:focus {
        box-shadow: none;
    }

.form-floating label {
    font-size: 1.5rem;
    color: #6c757d;
}

.masthead {
    padding-top: calc(6rem + 74px);
}

    .masthead .masthead-heading {
        font-size: 2.75rem;
        line-height: 2.75rem;
    }

    .masthead .masthead-subheading {
        font-size: 1.25rem;
    }

    .masthead .masthead-avatar {
        width: 15rem;
    }

@media (min-width: 992px) {
    .masthead {
        padding-top: calc(6rem + 104px);
    }

        .masthead .masthead-heading {
            font-size: 4rem;
            line-height: 3.5rem;
        }

        .masthead .masthead-subheading {
            font-size: 1.5rem;
        }
}

.groupContainerObject .groupContainerObject-item {
    cursor: pointer;
    position: relative;
    display: block;
    max-width: 25rem;
    border-radius: 0.5rem;
    overflow: hidden;
}

    .groupContainerObject .groupContainerObject-item .groupContainerObject-item-caption {
        position: absolute;
        top: 0;
        left: 0;
        transition: all 0.2s ease-in-out;
        opacity: 0;
        background-color: rgba(26, 188, 156, 0.9);
    }

        .groupContainerObject .groupContainerObject-item .groupContainerObject-item-caption:hover {
            opacity: 1;
        }

        .groupContainerObject .groupContainerObject-item .groupContainerObject-item-caption .groupContainerObject-item-caption-content {
            font-size: 1.5rem;
        }

.groupContainerObject-modal .btn-close {
    color: #1abc9c;
    font-size: 2rem;
    padding: 1rem;
}

.groupContainerObject-modal .groupContainerObject-modal-title {
    font-size: 2.25rem;
    line-height: 2rem;
}

@media (min-width: 992px) {
    .groupContainerObject-modal .groupContainerObject-modal-title {
        font-size: 3rem;
        line-height: 2.5rem;
    }
}

.footer {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #2c3e50;
    color: #fff;
}

.copyright {
    background-color: #1a252f;
}

.o30c {
    width: 32px;
    height: 64px;
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' width='267px' height='354px' style='shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg%3E%3Cpath style='opacity:0.036' fill='%23f4f4f4' d='M 242.5,-0.5 C 243.167,-0.5 243.833,-0.5 244.5,-0.5C 245.694,0.271873 246.694,1.27187 247.5,2.5C 247.5,3.16667 247.167,3.5 246.5,3.5C 244.524,1.98912 242.191,1.15579 239.5,1C 240.737,0.76791 241.737,0.26791 242.5,-0.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.041' fill='%23f0f0f0' d='M 235.5,2.5 C 236.251,1.42654 237.251,1.25988 238.5,2C 237.552,2.48278 236.552,2.64945 235.5,2.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.033' fill='%23f7f7f7' d='M 232.5,3.5 C 233.209,2.59603 234.209,2.26269 235.5,2.5C 234.791,3.40397 233.791,3.73731 232.5,3.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.064' fill='%23e7e7e7' d='M 96.5,5.5 C 95.8333,5.83333 95.1667,6.16667 94.5,6.5C 93.0813,5.54885 91.4147,5.21552 89.5,5.5C 90.1342,4.05322 91.3009,3.38655 93,3.5C 94.6991,3.38655 95.8658,4.05322 96.5,5.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.031' fill='%23dfe0df' d='M 157.5,5.5 C 156.448,5.64945 155.448,5.48278 154.5,5C 155.749,4.25988 156.749,4.42654 157.5,5.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.035' fill='%23fefffe' d='M 89.5,5.5 C 88.8333,6.16667 88.8333,6.16667 89.5,5.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.027' fill='%23e6e6e6' d='M 149.5,6.5 C 150.251,5.42654 151.251,5.25988 152.5,6C 151.552,6.48278 150.552,6.64945 149.5,6.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.036' fill='%23f6f6f6' d='M 232.5,3.5 C 226.03,5.24865 219.363,6.58198 212.5,7.5C 212.611,6.88258 212.944,6.38258 213.5,6C 219.798,4.83827 226.131,4.00494 232.5,3.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.035' fill='%23fefffe' d='M 88.5,6.5 C 87.8333,7.16667 87.8333,7.16667 88.5,6.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.031' fill='%23e7e7e7' d='M 96.5,5.5 C 98.8333,5.83333 100.167,7.16667 100.5,9.5C 99.5416,9.0472 98.7083,8.38053 98,7.5C 97.7216,8.4158 97.2216,9.08247 96.5,9.5C 96.5,8.16667 96.5,6.83333 96.5,5.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.024' fill='%23f4f4f4' d='M 145.5,7.5 C 146.251,6.42654 147.251,6.25988 148.5,7C 147.552,7.48278 146.552,7.64945 145.5,7.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.029' fill='%23e4e4e4' d='M 157.5,5.5 C 159.553,5.40206 161.22,6.06873 162.5,7.5C 160.447,7.59794 158.78,6.93127 157.5,5.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.031' fill='%23fefffe' d='M 87.5,7.5 C 86.8333,8.16667 86.8333,8.16667 87.5,7.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.02' fill='%23f9f9f9' d='M 142.5,8.5 C 142.897,7.47498 143.563,7.30831 144.5,8C 143.906,8.46434 143.239,8.63101 142.5,8.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.031' fill='%23eaeaea' d='M 162.5,8.5 C 162.5,8.16667 162.5,7.83333 162.5,7.5C 163.492,7.32842 164.158,7.66175 164.5,8.5C 163.833,8.5 163.167,8.5 162.5,8.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.043' fill='%23fefffe' d='M 210.5,8.5 C 210.842,7.66175 211.508,7.32842 212.5,7.5C 212.158,8.33825 211.492,8.67158 210.5,8.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.043' fill='%23f2f2f2' d='M 248.5,3.5 C 252.88,6.06826 253.547,9.40159 250.5,13.5C 251.75,11.032 251.583,8.69867 250,6.5C 249.329,5.74756 248.496,5.41423 247.5,5.5C 247.833,4.83333 248.167,4.16667 248.5,3.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.035' fill='%23fefffe' d='M 86.5,8.5 C 85.8333,9.16667 85.8333,9.16667 86.5,8.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.029' fill='%23fefffe' d='M 139.5,9.5 C 139.897,8.47498 140.563,8.30831 141.5,9C 140.906,9.46434 140.239,9.63101 139.5,9.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.031' fill='%23eaeaea' d='M 164.5,8.5 C 165.492,8.32842 166.158,8.66175 166.5,9.5C 165.508,9.67158 164.842,9.33825 164.5,8.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.039' fill='%23fefffe' d='M 210.5,8.5 C 209.833,9.16667 209.833,9.16667 210.5,8.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.035' fill='%23fefffe' d='M 85.5,9.5 C 84.8333,10.1667 84.8333,10.1667 85.5,9.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%23fdfdfd' d='M 150.5,13.5 C 152.137,12.7822 153.803,12.6155 155.5,13C 130.671,22.5029 110.504,38.0029 95,59.5C 90.5372,66.5557 87.8705,74.2224 87,82.5C 85.853,80.2688 84.853,77.9355 84,75.5C 81.1607,85.4463 79.9941,95.613 80.5,106C 80.6667,111.167 80.8333,116.333 81,121.5C 81.1981,123.382 81.6981,125.048 82.5,126.5C 82.7373,127.791 82.404,128.791 81.5,129.5C 79.8277,126.978 78.3277,124.312 77,121.5C 76.8171,124.365 76.3171,127.031 75.5,129.5C 72.418,116.34 70.418,103.007 69.5,89.5C 68.7325,76.4354 70.0659,63.6021 73.5,51C 73.4301,50.2352 73.0967,49.7352 72.5,49.5C 72.2627,48.209 72.596,47.209 73.5,46.5C 73.369,47.2389 73.5357,47.9056 74,48.5C 74.7348,46.1287 75.5682,43.7954 76.5,41.5C 76.3764,40.8933 76.0431,40.56 75.5,40.5C 75.3284,39.5084 75.6618,38.8417 76.5,38.5C 80.0796,32.0588 83.9129,25.0588 88,17.5C 90,14.8333 92,12.1667 94,9.5C 91.5842,20.8312 89.7509,32.3312 88.5,44C 88.5653,46.5912 89.0653,49.0912 90,51.5C 105.421,31.3681 125.587,18.7014 150.5,13.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.039' fill='%23f0f0f0' d='M 135.5,10.5 C 135.897,9.47498 136.563,9.30831 137.5,10C 136.906,10.4643 136.239,10.631 135.5,10.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.031' fill='%23eaeaea' d='M 166.5,9.5 C 167.492,9.32842 168.158,9.66175 168.5,10.5C 167.508,10.6716 166.842,10.3382 166.5,9.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.031' fill='%23e2e3e2' d='M 84.5,10.5 C 83.8333,11.1667 83.8333,11.1667 84.5,10.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.035' fill='%23e7e7e7' d='M 132.5,11.5 C 132.897,10.475 133.563,10.3083 134.5,11C 133.906,11.4643 133.239,11.631 132.5,11.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.031' fill='%23eaeaea' d='M 168.5,10.5 C 169.492,10.3284 170.158,10.6618 170.5,11.5C 169.508,11.6716 168.842,11.3382 168.5,10.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.039' fill='%23f8f9f8' d='M 130.5,11.5 C 131.833,12.1667 131.833,12.1667 130.5,11.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.031' fill='%23dcdcdc' d='M 170.5,11.5 C 171.791,11.2627 172.791,11.596 173.5,12.5C 172.209,12.7373 171.209,12.404 170.5,11.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.031' fill='%23fefffe' d='M 82.5,12.5 C 83.8333,13.1667 83.8333,13.1667 82.5,12.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.016' fill='%23cfcfcf' d='M 173.5,12.5 C 174.492,12.3284 175.158,12.6618 175.5,13.5C 174.508,13.6716 173.842,13.3382 173.5,12.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.04' fill='%23f3f3f3' d='M 209.5,9.5 C 209.5,9.83333 209.5,10.1667 209.5,10.5C 205.451,13.1342 201.118,15.3008 196.5,17C 194.93,18.3968 193.596,19.8968 192.5,21.5C 192.672,20.5084 192.338,19.8417 191.5,19.5C 190.375,17.8712 189.041,16.3712 187.5,15C 189.256,14.8595 190.922,15.3595 192.5,16.5C 198.305,14.347 203.972,12.0137 209.5,9.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.027' fill='%23d6d7d6' d='M 82.5,13.5 C 81.8333,14.1667 81.8333,14.1667 82.5,13.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.016' fill='%23d5d5d5' d='M 175.5,13.5 C 176.239,13.369 176.906,13.5357 177.5,14C 176.563,14.6917 175.897,14.525 175.5,13.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.039' fill='%23f4f4f4' d='M 250.5,13.5 C 250.672,14.4916 250.338,15.1583 249.5,15.5C 249.328,14.5084 249.662,13.8417 250.5,13.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.022' fill='%23ececec' d='M 39.5,15.5 C 37.2537,15.0639 35.0871,14.3972 33,13.5C 32.6174,14.056 32.1174,14.3893 31.5,14.5C 31.1667,13.1667 30.8333,13.1667 30.5,14.5C 24.891,15.6088 21.391,18.9421 20,24.5C 21.4033,32.7388 22.4033,41.0722 23,49.5C 21.8865,42.3236 20.0531,35.3236 17.5,28.5C 18.9896,17.1622 25.3229,11.9956 36.5,13C 37.9423,13.3768 38.9423,14.2101 39.5,15.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.027' fill='%23fefffe' d='M 39.5,15.5 C 40.1667,15.5 40.5,15.8333 40.5,16.5C 40.1667,16.1667 39.8333,15.8333 39.5,15.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.039' fill='%23fefffe' d='M 80.5,15.5 C 81.8333,16.1667 81.8333,16.1667 80.5,15.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.954' fill='%239f9f9f' d='M 247.5,2.5 C 248.167,2.5 248.5,2.83333 248.5,3.5C 248.167,4.16667 247.833,4.83333 247.5,5.5C 245.78,8.73108 243.447,11.5644 240.5,14C 242.443,13.6948 244.443,13.6948 246.5,14C 242.317,17.5587 238.984,21.7253 236.5,26.5C 236.338,23.3427 237.671,20.5094 240.5,18C 240.272,17.6012 239.938,17.4346 239.5,17.5C 238.449,16.7777 237.782,15.7777 237.5,14.5C 239.785,12.8818 241.785,10.8818 243.5,8.5C 242.528,8.40697 241.528,8.07364 240.5,7.5C 242.5,6.16667 244.5,4.83333 246.5,3.5C 247.167,3.5 247.5,3.16667 247.5,2.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.004' fill='%23fefffe' d='M 40.5,16.5 C 41.1667,16.5 41.5,16.8333 41.5,17.5C 41.1667,17.1667 40.8333,16.8333 40.5,16.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.027' fill='%23e4e4e4' d='M 249.5,15.5 C 249.672,16.4916 249.338,17.1583 248.5,17.5C 248.328,16.5084 248.662,15.8417 249.5,15.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.004' fill='%23fefffe' d='M 41.5,17.5 C 42.8333,18.1667 42.8333,18.1667 41.5,17.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.035' fill='%23fefffe' d='M 79.5,17.5 C 80.8333,18.1667 80.8333,18.1667 79.5,17.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%23474747' d='M 237.5,14.5 C 237.782,15.7777 238.449,16.7777 239.5,17.5C 231.501,20.2977 230.835,19.2977 237.5,14.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.027' fill='%23e4e4e4' d='M 248.5,17.5 C 248.672,18.4916 248.338,19.1583 247.5,19.5C 247.328,18.5084 247.662,17.8417 248.5,17.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.02' fill='%23e7e7e7' d='M 79.5,18.5 C 79.6716,19.4916 79.3382,20.1583 78.5,20.5C 78.3284,19.5084 78.6618,18.8417 79.5,18.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.039' fill='%23f7f7f7' d='M 100.5,9.5 C 100.219,16.6026 103.553,20.9359 110.5,22.5C 105.792,24.2276 102.625,22.5609 101,17.5C 100.503,14.854 100.336,12.1873 100.5,9.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%23959595' d='M 162.5,8.5 C 163.317,10.3077 162.65,11.8077 160.5,13C 149.319,20.1726 139.319,28.8393 130.5,39C 139.465,33.1841 149.132,28.3508 159.5,24.5C 149.56,29.5956 139.56,35.5956 129.5,42.5C 128.167,42.5 127.5,41.8333 127.5,40.5C 129.388,37.1009 131.888,34.1009 135,31.5C 135.667,30.8333 135.667,30.1667 135,29.5C 115.645,47.2082 104.478,69.2082 101.5,95.5C 102.5,95.5 103.5,95.5 104.5,95.5C 101.271,97.9416 98.271,100.608 95.5,103.5C 95.0623,102.494 94.3957,102.494 93.5,103.5C 93.5328,89.0353 96.8661,75.3686 103.5,62.5C 102.645,61.707 101.811,62.0403 101,63.5C 92.216,79.6502 87.716,96.6502 87.5,114.5C 85.4443,118.333 83.7776,122.333 82.5,126.5C 81.6981,125.048 81.1981,123.382 81,121.5C 80.8333,116.333 80.6667,111.167 80.5,106C 79.9941,95.613 81.1607,85.4463 84,75.5C 84.853,77.9355 85.853,80.2688 87,82.5C 87.8705,74.2224 90.5372,66.5557 95,59.5C 110.504,38.0029 130.671,22.5029 155.5,13C 153.803,12.6155 152.137,12.7822 150.5,13.5C 150.158,12.6618 149.492,12.3284 148.5,12.5C 152.953,10.8007 157.62,9.4674 162.5,8.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.02' fill='%23d0d1d0' d='M 78.5,20.5 C 77.8333,21.1667 77.8333,21.1667 78.5,20.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%23fcfcfc' d='M 159.5,37.5 C 159.5,37.1667 159.5,36.8333 159.5,36.5C 167.726,34.8535 175.726,35.1868 183.5,37.5C 182.761,37.369 182.094,37.5357 181.5,38C 183,38.5 184.5,39 186,39.5C 186.765,39.4301 187.265,39.0967 187.5,38.5C 188.492,38.3284 189.158,38.6618 189.5,39.5C 189.062,39.4346 188.728,39.6012 188.5,40C 190.332,40.7485 191.999,41.7485 193.5,43C 189.861,42.7221 186.194,42.7221 182.5,43C 166.051,48.5578 150.718,56.2244 136.5,66C 127.308,72.0163 120.975,80.1829 117.5,90.5C 113.031,91.795 108.698,93.4616 104.5,95.5C 103.5,95.5 102.5,95.5 101.5,95.5C 104.478,69.2082 115.645,47.2082 135,29.5C 135.667,30.1667 135.667,30.8333 135,31.5C 131.888,34.1009 129.388,37.1009 127.5,40.5C 124.808,42.2026 122.808,44.536 121.5,47.5C 122.002,48.521 122.668,48.6877 123.5,48C 125.396,45.932 127.396,44.0987 129.5,42.5C 139.56,35.5956 149.56,29.5956 159.5,24.5C 161.936,23.129 164.603,22.129 167.5,21.5C 167.917,22.1239 168.584,22.4573 169.5,22.5C 175.405,20.7662 181.405,20.2662 187.5,21C 175.779,25.3599 164.779,31.0266 154.5,38C 157.901,38.904 159.568,38.7374 159.5,37.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.027' fill='%23e4e4e4' d='M 247.5,19.5 C 247.672,20.4916 247.338,21.1583 246.5,21.5C 246.328,20.5084 246.662,19.8417 247.5,19.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%238e8e8e' d='M 30.5,14.5 C 30.8333,14.5 31.1667,14.5 31.5,14.5C 37.5406,18.5464 42.2073,23.8797 45.5,30.5C 44.8333,30.5 44.1667,30.5 43.5,30.5C 41.9363,27.7257 40.103,25.059 38,22.5C 37.6012,22.7284 37.4346,23.0618 37.5,23.5C 36.7784,23.0825 36.2784,22.4158 36,21.5C 34.7083,22.7911 33.5417,22.7911 32.5,21.5C 33.2389,21.631 33.9056,21.4643 34.5,21C 32.7682,19.0281 31.4348,16.8614 30.5,14.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.004' fill='%23fefffe' d='M 46.5,22.5 C 45.8333,21.1667 45.8333,21.1667 46.5,22.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.043' fill='%23fefffe' d='M 246.5,21.5 C 245.833,22.1667 245.833,22.1667 246.5,21.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%23515151' d='M 28.5,22.5 C 29.5676,21.5655 30.901,21.2322 32.5,21.5C 33.5417,22.7911 34.7083,22.7911 36,21.5C 36.2784,22.4158 36.7784,23.0825 37.5,23.5C 37.631,24.2389 37.4643,24.9056 37,25.5C 34.3103,24.0708 31.4769,23.0708 28.5,22.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.035' fill='%23fefffe' d='M 46.5,22.5 C 47.1667,22.5 47.5,22.8333 47.5,23.5C 47.1667,23.1667 46.8333,22.8333 46.5,22.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.031' fill='%23e2e3e2' d='M 76.5,22.5 C 77.8333,23.1667 77.8333,23.1667 76.5,22.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.031' fill='%23fefffe' d='M 245.5,22.5 C 245.672,23.4916 245.338,24.1583 244.5,24.5C 244.328,23.5084 244.662,22.8417 245.5,22.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%23fcfcfc' d='M 28.5,22.5 C 31.4769,23.0708 34.3103,24.0708 37,25.5C 37.4643,24.9056 37.631,24.2389 37.5,23.5C 37.4346,23.0618 37.6012,22.7284 38,22.5C 40.103,25.059 41.9363,27.7257 43.5,30.5C 46.1063,37.6546 48.1063,44.9879 49.5,52.5C 46.8838,61.8439 45.2171,71.3439 44.5,81C 44.2587,88.089 45.9253,94.589 49.5,100.5C 51.5507,106.27 53.8841,111.937 56.5,117.5C 51.6672,115.54 46.6672,114.707 41.5,115C 44.3004,116.309 46.9671,117.809 49.5,119.5C 49.2907,120.086 48.9574,120.586 48.5,121C 52.1429,122.805 54.4763,125.638 55.5,129.5C 53.7772,131.218 51.7772,132.551 49.5,133.5C 45.9086,130.575 42.5752,127.242 39.5,123.5C 36.9975,119.659 34.6642,116.326 32.5,113.5C 30.8993,110.45 29.8993,107.116 29.5,103.5C 30.1471,102.726 30.4805,101.726 30.5,100.5C 30.0643,97.8214 29.5643,95.1547 29,92.5C 28.51,93.7932 28.3433,95.1266 28.5,96.5C 27.5489,95.0813 27.2155,93.4147 27.5,91.5C 27.7451,80.0193 27.7451,68.3527 27.5,56.5C 28.4511,55.0813 28.7845,53.4147 28.5,51.5C 30.2012,51.9662 31.7012,51.9662 33,51.5C 33.6953,48.0037 33.1953,44.6703 31.5,41.5C 31.6236,40.8933 31.9569,40.56 32.5,40.5C 41.3904,44.6616 41.7238,43.6616 33.5,37.5C 32.2511,35.8639 30.5844,34.6972 28.5,34C 30.0016,33.4169 31.3349,32.5836 32.5,31.5C 29.8333,29.5 27.1667,27.5 24.5,25.5C 25.9014,24.4793 27.2347,23.4793 28.5,22.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.031' fill='%23e2e3e2' d='M 47.5,23.5 C 48.8333,24.1667 48.8333,24.1667 47.5,23.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.808' fill='%237b7b7b' d='M 96.5,5.5 C 96.5,6.83333 96.5,8.16667 96.5,9.5C 93.7038,21.911 91.7038,34.411 90.5,47C 95.9471,42.567 101.28,37.567 106.5,32C 118.834,22.001 132.834,15.501 148.5,12.5C 149.492,12.3284 150.158,12.6618 150.5,13.5C 125.587,18.7014 105.421,31.3681 90,51.5C 89.0653,49.0912 88.5653,46.5912 88.5,44C 89.7509,32.3312 91.5842,20.8312 94,9.5C 92,12.1667 90,14.8333 88,17.5C 83.9129,25.0588 80.0796,32.0588 76.5,38.5C 80.4583,26.5729 86.4583,15.9062 94.5,6.5C 95.1667,6.16667 95.8333,5.83333 96.5,5.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.016' fill='%23f3f3f3' d='M 110.5,22.5 C 110.842,21.6618 111.508,21.3284 112.5,21.5C 112.158,22.3382 111.492,22.6716 110.5,22.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.035' fill='%23e8e9e8' d='M 112.5,20.5 C 113.833,21.1667 113.833,21.1667 112.5,20.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.02' fill='%23fefffe' d='M 115.5,19.5 C 114.833,20.1667 114.833,20.1667 115.5,19.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.004' fill='%23f2f2f2' d='M 115.5,19.5 C 115.842,18.6618 116.508,18.3284 117.5,18.5C 117.158,19.3382 116.492,19.6716 115.5,19.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.039' fill='%23fefffe' d='M 117.5,17.5 C 118.833,18.1667 118.833,18.1667 117.5,17.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.039' fill='%23fefffe' d='M 119.5,16.5 C 120.833,17.1667 120.833,17.1667 119.5,16.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.035' fill='%23fefffe' d='M 121.5,15.5 C 122.833,16.1667 122.833,16.1667 121.5,15.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.039' fill='%23fefffe' d='M 123.5,14.5 C 124.833,15.1667 124.833,15.1667 123.5,14.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.004' fill='%23f9f9f9' d='M 127.5,13.5 C 127.103,14.525 126.437,14.6917 125.5,14C 126.094,13.5357 126.761,13.369 127.5,13.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.02' fill='%23f2f2f2' d='M 127.5,13.5 C 127.897,12.475 128.563,12.3083 129.5,13C 128.906,13.4643 128.239,13.631 127.5,13.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.031' fill='%23e2e3e2' d='M 75.5,24.5 C 76.8333,25.1667 76.8333,25.1667 75.5,24.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.02' fill='%23fefffe' d='M 244.5,24.5 C 243.833,25.1667 243.833,25.1667 244.5,24.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.035' fill='%23fefffe' d='M 50.5,27.5 C 49.8333,26.1667 49.8333,26.1667 50.5,27.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.008' fill='%23babbba' d='M 50.5,27.5 C 51.8333,28.1667 51.8333,28.1667 50.5,27.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.016' fill='%23f3f3f3' d='M 74.5,28.5 C 74.369,27.7611 74.5357,27.0944 75,26.5C 75.6917,27.4368 75.525,28.1034 74.5,28.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.647' fill='%239a9a9a' d='M 191.5,19.5 C 192.338,19.8417 192.672,20.5084 192.5,21.5C 180.93,25.1162 169.93,30.1162 159.5,36.5C 158.167,36.8333 158.167,37.1667 159.5,37.5C 159.568,38.7374 157.901,38.904 154.5,38C 164.779,31.0266 175.779,25.3599 187.5,21C 181.405,20.2662 175.405,20.7662 169.5,22.5C 168.584,22.4573 167.917,22.1239 167.5,21.5C 175.351,19.045 183.351,18.3783 191.5,19.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%237d7d7d' d='M 239.5,8.5 C 232.98,11.0934 226.647,14.26 220.5,18C 219.207,18.49 217.873,18.6567 216.5,18.5C 216.649,17.448 216.483,16.448 216,15.5C 214.471,16.7287 213.304,18.2287 212.5,20C 211.451,20.4922 210.451,20.3256 209.5,19.5C 207.599,28.915 205.932,38.2483 204.5,47.5C 204.869,45.0065 204.203,44.3398 202.5,45.5C 203.866,33.6363 206.199,21.9696 209.5,10.5C 210.376,10.3691 211.043,10.7025 211.5,11.5C 209.979,17.5138 210.979,18.3471 214.5,14C 217.893,11.4657 221.559,9.79906 225.5,9C 223.5,11 221.5,13 219.5,15C 223.142,13.6858 226.809,12.0192 230.5,10C 233.393,8.85123 236.393,8.35123 239.5,8.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.035' fill='%23fefffe' d='M 52.5,30.5 C 51.8333,29.1667 51.8333,29.1667 52.5,30.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.027' fill='%23eeeeee' d='M 74.5,28.5 C 74.631,29.2389 74.4643,29.9056 74,30.5C 73.3083,29.5632 73.475,28.8966 74.5,28.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.004' fill='%23e7e7e7' d='M 52.5,30.5 C 53.3382,30.8417 53.6716,31.5084 53.5,32.5C 52.6618,32.1583 52.3284,31.4916 52.5,30.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.039' fill='%23fefffe' d='M 72.5,31.5 C 73.8333,32.1667 73.8333,32.1667 72.5,31.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%235e5e5e' d='M 43.5,30.5 C 44.1667,30.5 44.8333,30.5 45.5,30.5C 45.4095,33.1522 46.0762,35.4855 47.5,37.5C 48.9863,42.4444 50.3197,47.4444 51.5,52.5C 47.1664,65.1696 45.6664,78.1696 47,91.5C 48.1449,94.4318 48.9782,97.4318 49.5,100.5C 45.9253,94.589 44.2587,88.089 44.5,81C 45.2171,71.3439 46.8838,61.8439 49.5,52.5C 48.1063,44.9879 46.1063,37.6546 43.5,30.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.039' fill='%23fefffe' d='M 53.5,32.5 C 54.1667,32.5 54.5,32.8333 54.5,33.5C 54.1667,33.1667 53.8333,32.8333 53.5,32.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.035' fill='%23e8e9e8' d='M 71.5,33.5 C 72.8333,34.1667 72.8333,34.1667 71.5,33.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.024' fill='%23e6e6e6' d='M 246.5,36.5 C 243.372,33.8994 242.205,30.566 243,26.5C 243.895,29.951 245.062,33.2843 246.5,36.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.024' fill='%23e5e5e5' d='M 54.5,33.5 C 55.3382,33.8417 55.6716,34.5084 55.5,35.5C 54.6618,35.1583 54.3284,34.4916 54.5,33.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.004' fill='%23e7e7e7' d='M 55.5,35.5 C 56.3382,35.8417 56.6716,36.5084 56.5,37.5C 55.6618,37.1583 55.3284,36.4916 55.5,35.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.039' fill='%23e8e8e8' d='M 70.5,37.5 C 70.369,36.7611 70.5357,36.0944 71,35.5C 71.6917,36.4368 71.525,37.1034 70.5,37.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.035' fill='%23f2f3f2' d='M 56.5,37.5 C 57.1667,37.5 57.5,37.8333 57.5,38.5C 57.1667,38.1667 56.8333,37.8333 56.5,37.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.035' fill='%23e4e4e4' d='M 246.5,36.5 C 248.167,37.5 249.5,38.8333 250.5,40.5C 248.167,40.1667 246.833,38.8333 246.5,36.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%238f8f8f' d='M 183.5,37.5 C 184.959,37.4326 186.292,37.7659 187.5,38.5C 187.265,39.0967 186.765,39.4301 186,39.5C 184.5,39 183,38.5 181.5,38C 182.094,37.5357 182.761,37.369 183.5,37.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.749' fill='%23a9a9a9' d='M 32.5,21.5 C 30.901,21.2322 29.5676,21.5655 28.5,22.5C 27.2347,23.4793 25.9014,24.4793 24.5,25.5C 27.1667,27.5 29.8333,29.5 32.5,31.5C 31.3349,32.5836 30.0016,33.4169 28.5,34C 30.5844,34.6972 32.2511,35.8639 33.5,37.5C 33.4431,38.609 33.1098,39.609 32.5,40.5C 31.9569,40.56 31.6236,40.8933 31.5,41.5C 33.1953,44.6703 33.6953,48.0037 33,51.5C 31.7012,51.9662 30.2012,51.9662 28.5,51.5C 28.7845,53.4147 28.4511,55.0813 27.5,56.5C 27.1667,56.5 26.8333,56.5 26.5,56.5C 26.523,54.0733 27.023,51.74 28,49.5C 29,48.1667 30,48.1667 31,49.5C 31.8824,45.4688 31.0491,41.8021 28.5,38.5C 29.376,37.7492 30.376,37.2492 31.5,37C 29.2852,35.9562 26.9519,35.2895 24.5,35C 25.9842,33.4263 27.6508,32.093 29.5,31C 26.6612,29.0797 23.6612,27.4131 20.5,26C 24.0513,22.3536 28.0513,20.8536 32.5,21.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%23515151' d='M 33.5,37.5 C 41.7238,43.6616 41.3904,44.6616 32.5,40.5C 33.1098,39.609 33.4431,38.609 33.5,37.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.016' fill='%23cacbca' d='M 250.5,40.5 C 251.167,40.5 251.5,40.8333 251.5,41.5C 251.167,41.1667 250.833,40.8333 250.5,40.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.088' fill='%23f2f2f2' d='M 70.5,37.5 C 69.4876,40.8529 67.1542,42.5195 63.5,42.5C 60.3775,42.62 58.3775,41.2867 57.5,38.5C 62.0928,41.3838 66.4262,41.0505 70.5,37.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.016' fill='%23cacbca' d='M 251.5,41.5 C 252.167,41.5 252.5,41.8333 252.5,42.5C 252.167,42.1667 251.833,41.8333 251.5,41.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%234e4e4e' d='M 127.5,40.5 C 127.5,41.8333 128.167,42.5 129.5,42.5C 127.396,44.0987 125.396,45.932 123.5,48C 122.668,48.6877 122.002,48.521 121.5,47.5C 122.808,44.536 124.808,42.2026 127.5,40.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.004' fill='%23d8d8d8' d='M 252.5,42.5 C 254.5,42.5 255.5,43.5 255.5,45.5C 254.167,44.8333 253.167,43.8333 252.5,42.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.796' fill='%237f7f7f' d='M 75.5,40.5 C 76.0431,40.56 76.3764,40.8933 76.5,41.5C 75.5682,43.7954 74.7348,46.1287 74,48.5C 73.5357,47.9056 73.369,47.2389 73.5,46.5C 73.595,44.2143 74.2616,42.2143 75.5,40.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%23999999' d='M 189.5,39.5 C 194.254,40.7123 198.588,42.7123 202.5,45.5C 202.167,46.1667 201.833,46.8333 201.5,47.5C 199.262,46.4634 196.929,46.2967 194.5,47C 189.067,49.9413 184.067,53.4413 179.5,57.5C 178.279,56.5354 176.946,56.702 175.5,58C 162.242,66.7566 151.575,77.9232 143.5,91.5C 138.489,91.6659 133.489,91.4993 128.5,91C 131.956,90.8198 135.289,90.1532 138.5,89C 131.476,88.9188 124.476,89.4188 117.5,90.5C 120.975,80.1829 127.308,72.0163 136.5,66C 150.718,56.2244 166.051,48.5578 182.5,43C 186.194,42.7221 189.861,42.7221 193.5,43C 191.999,41.7485 190.332,40.7485 188.5,40C 188.728,39.6012 189.062,39.4346 189.5,39.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.329' fill='%23e2e2e2' d='M 250.5,44.5 C 249.833,44.1667 249.167,43.8333 248.5,43.5C 249.301,41.2071 249.968,41.5404 250.5,44.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.02' fill='%23d0d1d0' d='M 255.5,45.5 C 256.167,45.5 256.5,45.8333 256.5,46.5C 256.167,46.1667 255.833,45.8333 255.5,45.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%23afafaf' d='M 60.5,61.5 C 63.102,68.5659 65.102,75.8992 66.5,83.5C 65.9033,83.7352 65.5699,84.2352 65.5,85C 67.1958,89.3968 68.0292,93.8968 68,98.5C 67.3507,95.0626 66.8507,94.896 66.5,98C 67.9005,103.507 69.2339,109.007 70.5,114.5C 69.8925,118.005 67.8925,120.505 64.5,122C 62.5048,122.613 60.8381,122.113 59.5,120.5C 56.6745,113.516 53.3412,106.849 49.5,100.5C 48.9782,97.4318 48.1449,94.4318 47,91.5C 45.6664,78.1696 47.1664,65.1696 51.5,52.5C 50.3197,47.4444 48.9863,42.4444 47.5,37.5C 49.0692,38.7335 50.5692,40.7335 52,43.5C 54.5075,50.5044 57.1742,57.5044 60,64.5C 60.4828,63.552 60.6495,62.552 60.5,61.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.698' fill='%23878787' d='M 45.5,30.5 C 52.8727,39.5814 57.8727,49.9147 60.5,61.5C 60.6495,62.552 60.4828,63.552 60,64.5C 57.1742,57.5044 54.5075,50.5044 52,43.5C 50.5692,40.7335 49.0692,38.7335 47.5,37.5C 46.0762,35.4855 45.4095,33.1522 45.5,30.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.012' fill='%23ededed' d='M 256.5,46.5 C 257.338,46.8417 257.672,47.5084 257.5,48.5C 256.662,48.1583 256.328,47.4916 256.5,46.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.024' fill='%23ececec' d='M 257.5,48.5 C 258.573,49.2506 258.74,50.2506 258,51.5C 257.517,50.552 257.351,49.552 257.5,48.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.031' fill='%23e9e9e9' d='M 21.5,51.5 C 22.5735,52.2506 22.7401,53.2506 22,54.5C 21.5172,53.552 21.3505,52.552 21.5,51.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.882' fill='%237f7f7f' d='M 234.5,28.5 C 229.896,36.2273 228.396,44.5606 230,53.5C 232.006,49.4866 234.506,45.8199 237.5,42.5C 240.509,50.035 244.176,50.3684 248.5,43.5C 249.167,43.8333 249.833,44.1667 250.5,44.5C 250.5,44.8333 250.5,45.1667 250.5,45.5C 248.696,47.344 246.196,49.0106 243,50.5C 240.201,50.3679 238.201,49.0345 237,46.5C 234.391,49.3832 232.558,52.7166 231.5,56.5C 230.726,57.7112 229.893,57.7112 229,56.5C 226.091,46.5562 227.424,37.2229 233,28.5C 233.69,27.2617 234.19,27.2617 234.5,28.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.027' fill='%23fcfcfc' d='M 258.5,52.5 C 259.525,52.8966 259.692,53.5632 259,54.5C 258.536,53.9056 258.369,53.2389 258.5,52.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%23939393' d='M 72.5,49.5 C 73.0967,49.7352 73.4301,50.2352 73.5,51C 70.0659,63.6021 68.7325,76.4354 69.5,89.5C 68.7671,87.7056 67.7671,86.0389 66.5,84.5C 68.4417,79.9443 69.1083,74.9443 68.5,69.5C 68.7736,62.5016 70.107,55.835 72.5,49.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.995' fill='%23fafafa' d='M 191.5,55.5 C 192.609,56.29 193.942,56.79 195.5,57C 176.877,63.6439 162.543,75.4773 152.5,92.5C 149.287,92.81 146.287,92.4767 143.5,91.5C 151.575,77.9232 162.242,66.7566 175.5,58C 176.946,56.702 178.279,56.5354 179.5,57.5C 179.735,58.0967 180.235,58.4301 181,58.5C 184.451,57.2628 187.951,56.2628 191.5,55.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.024' fill='%23f1f1f1' d='M 259.5,55.5 C 260.573,56.2506 260.74,57.2506 260,58.5C 259.517,57.552 259.351,56.552 259.5,55.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%23989898' d='M 199.5,54.5 C 197.152,59.8593 194.819,65.1926 192.5,70.5C 189.269,72.2199 186.436,74.5532 184,77.5C 181,81.1667 178,84.8333 175,88.5C 173.833,90.3333 172.667,92.1667 171.5,94C 173.044,94.2896 174.377,94.9563 175.5,96C 168.37,95.9388 161.37,95.4388 154.5,94.5C 158.846,94.6657 163.179,94.499 167.5,94C 162.492,93.4992 157.492,92.9992 152.5,92.5C 162.543,75.4773 176.877,63.6439 195.5,57C 193.942,56.79 192.609,56.29 191.5,55.5C 194.127,54.9084 196.794,54.5751 199.5,54.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.024' fill='%23fafafa' d='M 20.5,57.5 C 21.6557,64.9887 21.8223,72.6554 21,80.5C 20.5003,72.8406 20.3336,65.1739 20.5,57.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.024' fill='%23f1f1f1' d='M 260.5,59.5 C 261.573,60.2506 261.74,61.2506 261,62.5C 260.517,61.552 260.351,60.552 260.5,59.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%23868686' d='M 26.5,56.5 C 26.8333,56.5 27.1667,56.5 27.5,56.5C 27.7451,68.3527 27.7451,80.0193 27.5,91.5C 25.547,79.8372 25.2137,68.1705 26.5,56.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.024' fill='%23f1f1f1' d='M 261.5,63.5 C 262.573,64.2506 262.74,65.2506 262,66.5C 261.517,65.552 261.351,64.552 261.5,63.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%23f8f8f8' d='M 93.5,103.5 C 91.7664,107.3 89.7664,110.966 87.5,114.5C 87.716,96.6502 92.216,79.6502 101,63.5C 101.811,62.0403 102.645,61.707 103.5,62.5C 96.8661,75.3686 93.5328,89.0353 93.5,103.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.678' fill='%23808080' d='M 251.5,47.5 C 255.083,57.8308 257.749,68.4974 259.5,79.5C 258.833,79.5 258.5,79.8333 258.5,80.5C 256.105,70.2247 253.438,59.8913 250.5,49.5C 250.543,48.5836 250.876,47.9169 251.5,47.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.02' fill='%23f3f3f3' d='M 262.5,67.5 C 263.598,68.6009 263.765,69.9343 263,71.5C 262.51,70.2068 262.343,68.8734 262.5,67.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.035' fill='%23f0f0f0' d='M 263.5,72.5 C 264.573,73.2506 264.74,74.2506 264,75.5C 263.517,74.552 263.351,73.552 263.5,72.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.367' fill='%23f2f2f2' d='M 68.5,69.5 C 69.1083,74.9443 68.4417,79.9443 66.5,84.5C 66.5,84.1667 66.5,83.8333 66.5,83.5C 67.1667,78.8333 67.8333,74.1667 68.5,69.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.025' fill='%23f5f5f5' d='M 264.5,77.5 C 265.622,79.2884 265.789,81.2884 265,83.5C 264.505,81.5273 264.338,79.5273 264.5,77.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.031' fill='%23f1f1f1' d='M 21.5,84.5 C 22.6225,86.2884 22.7891,88.2884 22,90.5C 21.5045,88.5273 21.3379,86.5273 21.5,84.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.034' fill='%23f3f3f3' d='M 266.5,85.5 C 266.5,90.1667 266.5,94.8333 266.5,99.5C 265.167,94.8333 265.167,90.1667 266.5,85.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%235b5b5b' d='M 143.5,91.5 C 146.287,92.4767 149.287,92.81 152.5,92.5C 157.492,92.9992 162.492,93.4992 167.5,94C 163.179,94.499 158.846,94.6657 154.5,94.5C 137.799,94.21 121.132,94.5433 104.5,95.5C 108.698,93.4616 113.031,91.795 117.5,90.5C 124.476,89.4188 131.476,88.9188 138.5,89C 135.289,90.1532 131.956,90.8198 128.5,91C 133.489,91.4993 138.489,91.6659 143.5,91.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.027' fill='%23eeeeee' d='M 22.5,93.5 C 23.6129,94.9464 23.7796,96.6131 23,98.5C 22.5065,96.8659 22.3398,95.1992 22.5,93.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%23777777' d='M 259.5,79.5 C 261.559,86.6469 261.893,93.9802 260.5,101.5C 259.778,101.918 259.278,102.584 259,103.5C 258.601,103.272 258.435,102.938 258.5,102.5C 259.773,95.1708 259.773,87.8374 258.5,80.5C 258.5,79.8333 258.833,79.5 259.5,79.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%23fbfbfb' d='M 240.5,7.5 C 241.528,8.07364 242.528,8.40697 243.5,8.5C 241.785,10.8818 239.785,12.8818 237.5,14.5C 230.835,19.2977 231.501,20.2977 239.5,17.5C 239.938,17.4346 240.272,17.6012 240.5,18C 237.671,20.5094 236.338,23.3427 236.5,26.5C 236.167,27.5 235.5,28.1667 234.5,28.5C 234.19,27.2617 233.69,27.2617 233,28.5C 227.424,37.2229 226.091,46.5562 229,56.5C 229.893,57.7112 230.726,57.7112 231.5,56.5C 232.558,52.7166 234.391,49.3832 237,46.5C 238.201,49.0345 240.201,50.3679 243,50.5C 246.196,49.0106 248.696,47.344 250.5,45.5C 251.338,45.8417 251.672,46.5084 251.5,47.5C 250.876,47.9169 250.543,48.5836 250.5,49.5C 253.438,59.8913 256.105,70.2247 258.5,80.5C 259.773,87.8374 259.773,95.1708 258.5,102.5C 254.986,110.664 249.653,117.498 242.5,123C 229.712,131.729 216.045,138.895 201.5,144.5C 199.279,144.561 198.946,143.895 200.5,142.5C 189.861,143.315 179.194,144.148 168.5,145C 178.675,145.348 188.842,145.848 199,146.5C 202.016,146.273 204.85,145.606 207.5,144.5C 207.389,145.117 207.056,145.617 206.5,146C 208.723,146.566 210.723,147.4 212.5,148.5C 211.761,148.369 211.094,148.536 210.5,149C 220.466,152.968 226.966,160.135 230,170.5C 231.352,173.72 232.186,177.053 232.5,180.5C 228.62,176.455 224.287,172.955 219.5,170C 218.5,169.333 217.5,169.333 216.5,170C 217.252,170.671 217.586,171.504 217.5,172.5C 218.441,174.466 219.441,176.466 220.5,178.5C 220.333,178.833 220.167,179.167 220,179.5C 219.148,178.429 218.315,177.429 217.5,176.5C 210.779,168.295 210.112,168.629 215.5,177.5C 215.626,179.622 216.293,180.622 217.5,180.5C 217.833,180.5 218.167,180.5 218.5,180.5C 219.382,186.518 218.049,191.852 214.5,196.5C 213.65,192.438 212.483,188.438 211,184.5C 210.601,184.728 210.435,185.062 210.5,185.5C 209.662,185.158 209.328,184.492 209.5,183.5C 210.07,180.685 209.236,178.019 207,175.5C 206.153,177.854 205.32,180.188 204.5,182.5C 203.206,183.29 202.039,184.29 201,185.5C 200.954,179.638 199.954,173.971 198,168.5C 197.833,169 197.667,169.5 197.5,170C 199.878,177.183 200.045,184.349 198,191.5C 200.001,188.669 202.167,186.003 204.5,183.5C 206.397,185.269 207.564,187.602 208,190.5C 208.464,189.906 208.631,189.239 208.5,188.5C 209.903,191.909 210.57,195.575 210.5,199.5C 209.167,203.833 209.167,208.167 210.5,212.5C 210.795,214.735 210.461,216.735 209.5,218.5C 209.66,216.801 209.494,215.134 209,213.5C 208.393,218.277 206.727,222.61 204,226.5C 194.667,237.167 184.667,247.167 174,256.5C 168.667,263.833 163.333,271.167 158,278.5C 151.167,285.333 144.333,292.167 137.5,299C 135.532,300.544 133.365,301.711 131,302.5C 130.601,302.272 130.435,301.938 130.5,301.5C 142.39,277.778 156.89,255.778 174,235.5C 175,233.5 176,231.5 177,229.5C 177.5,208.169 177.667,186.836 177.5,165.5C 180.572,165.817 183.572,165.484 186.5,164.5C 186.291,163.914 185.957,163.414 185.5,163C 178.898,162.422 172.898,164.089 167.5,168C 166.549,168.718 166.383,169.551 167,170.5C 167.718,169.549 168.551,169.383 169.5,170C 166.459,175.25 163.292,180.417 160,185.5C 156.167,190.667 151.667,195.167 146.5,199C 143.008,202.068 139.675,202.068 136.5,199C 119.032,198.45 102.698,202.45 87.5,211C 84.2352,219.032 80.0685,226.532 75,233.5C 69.6121,239.716 64.1121,245.716 58.5,251.5C 56.8333,252.167 55.1667,252.833 53.5,253.5C 43.1263,252.305 35.6263,246.971 31,237.5C 31.6966,240.754 33.1966,243.754 35.5,246.5C 35.0302,247.463 34.3635,247.463 33.5,246.5C 26.2475,241.226 21.5809,234.559 19.5,226.5C 24.5179,227.585 27.6846,230.585 29,235.5C 29.3333,234.5 29.6667,233.5 30,232.5C 39.3022,237.018 48.1355,236.185 56.5,230C 60.2988,227.203 63.7988,224.036 67,220.5C 72.5896,208.929 69.7563,200.095 58.5,194C 53.2282,190.744 47.5616,188.577 41.5,187.5C 40.4324,186.566 39.099,186.232 37.5,186.5C 36.7375,185.732 35.7375,185.232 34.5,185C 40.3464,181.27 46.6797,179.603 53.5,180C 60.9601,185.126 67.4601,191.293 73,198.5C 70.1502,191.29 65.3168,185.457 58.5,181C 61.0977,181.126 63.431,182.126 65.5,184C 68.8333,187.333 72.1667,190.667 75.5,194C 76.7589,194.982 78.0922,195.315 79.5,195C 75.8604,191.36 72.1937,187.694 68.5,184C 57.3339,176.12 45.8339,175.62 34,182.5C 33.5026,179.854 33.3359,177.187 33.5,174.5C 34.3227,171.023 34.8227,167.356 35,163.5C 36.6814,159.321 39.5147,156.321 43.5,154.5C 45.266,160.214 48.5994,164.714 53.5,168C 51.4311,168.324 51.0977,169.158 52.5,170.5C 49.8474,175.189 50.3474,175.523 54,171.5C 63.6766,159.395 65.0099,146.395 58,132.5C 58.1859,136.484 58.1859,140.484 58,144.5C 56,142.5 54,140.5 52,138.5C 51.3333,137.5 51.3333,136.5 52,135.5C 57.9177,129.058 64.751,124.058 72.5,120.5C 72.8993,124.116 73.8993,127.45 75.5,130.5C 75.9195,135.339 77.9195,139.339 81.5,142.5C 82.9974,128.34 87.664,115.34 95.5,103.5C 98.271,100.608 101.271,97.9416 104.5,95.5C 121.132,94.5433 137.799,94.21 154.5,94.5C 161.37,95.4388 168.37,95.9388 175.5,96C 174.377,94.9563 173.044,94.2896 171.5,94C 172.667,92.1667 173.833,90.3333 175,88.5C 178,84.8333 181,81.1667 184,77.5C 186.436,74.5532 189.269,72.2199 192.5,70.5C 184.515,85.1358 176.015,99.4691 167,113.5C 164.932,115.562 162.432,116.728 159.5,117C 158.663,118.011 158.33,119.178 158.5,120.5C 157.833,121.5 157.167,122.5 156.5,123.5C 152.333,119.502 147.333,118.002 141.5,119C 132.19,128.642 122.524,137.975 112.5,147C 107.283,150.847 101.616,152.347 95.5,151.5C 96.6302,152.622 97.2969,153.956 97.5,155.5C 94.7581,159.981 92.2581,164.647 90,169.5C 89.2195,170.944 89.3861,172.277 90.5,173.5C 97.9282,177.548 105.595,181.048 113.5,184C 134.142,189.573 149.975,183.407 161,165.5C 163.135,155.552 162.635,145.719 159.5,136C 159.57,135.235 159.903,134.735 160.5,134.5C 169.943,140.32 178.443,138.987 186,130.5C 192.858,120.94 197.192,110.273 199,98.5C 200.808,81.4914 202.642,64.4914 204.5,47.5C 205.932,38.2483 207.599,28.915 209.5,19.5C 210.451,20.3256 211.451,20.4922 212.5,20C 213.304,18.2287 214.471,16.7287 216,15.5C 216.483,16.448 216.649,17.448 216.5,18.5C 217.873,18.6567 219.207,18.49 220.5,18C 226.647,14.26 232.98,11.0934 239.5,8.5C 239.5,7.83333 239.833,7.5 240.5,7.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.416' fill='%239e9e9e' d='M 29.5,103.5 C 28.7814,101.236 28.448,98.9029 28.5,96.5C 28.3433,95.1266 28.51,93.7932 29,92.5C 29.5643,95.1547 30.0643,97.8214 30.5,100.5C 30.4805,101.726 30.1471,102.726 29.5,103.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.033' fill='%23f3f3f3' d='M 23.5,100.5 C 24.5735,101.251 24.7401,102.251 24,103.5C 23.5172,102.552 23.3505,101.552 23.5,100.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.033' fill='%23f9f9f9' d='M 264.5,100.5 C 265.598,101.601 265.765,102.934 265,104.5C 264.51,103.207 264.343,101.873 264.5,100.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.033' fill='%23fdfdfd' d='M 263.5,105.5 C 264.525,105.897 264.692,106.563 264,107.5C 263.536,106.906 263.369,106.239 263.5,105.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.035' fill='%23e8e8e8' d='M 24.5,105.5 C 25.5735,106.251 25.7401,107.251 25,108.5C 24.5172,107.552 24.3505,106.552 24.5,105.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.027' fill='%23eaeaea' d='M 262.5,110.5 C 262.369,109.761 262.536,109.094 263,108.5C 263.692,109.437 263.525,110.103 262.5,110.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.035' fill='%23f6f6f6' d='M 25.5,109.5 C 26.525,109.897 26.6917,110.563 26,111.5C 25.5357,110.906 25.369,110.239 25.5,109.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.035' fill='%23f8f8f8' d='M 262.5,110.5 C 262.672,111.492 262.338,112.158 261.5,112.5C 261.328,111.508 261.662,110.842 262.5,110.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%23696969' d='M 49.5,100.5 C 53.3412,106.849 56.6745,113.516 59.5,120.5C 58.2719,119.694 57.2719,118.694 56.5,117.5C 53.8841,111.937 51.5507,106.27 49.5,100.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.031' fill='%23fefffe' d='M 261.5,112.5 C 260.833,113.167 260.833,113.167 261.5,112.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.027' fill='%23eaeaea' d='M 26.5,112.5 C 27.525,112.897 27.6917,113.563 27,114.5C 26.5357,113.906 26.369,113.239 26.5,112.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.035' fill='%23fefffe' d='M 259.5,114.5 C 260.833,115.167 260.833,115.167 259.5,114.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.035' fill='%23fefffe' d='M 27.5,115.5 C 28.8333,116.167 28.8333,116.167 27.5,115.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.02' fill='%23fefffe' d='M 259.5,115.5 C 258.833,116.167 258.833,116.167 259.5,115.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%23dadada' d='M 56.5,117.5 C 57.2719,118.694 58.2719,119.694 59.5,120.5C 61.0542,124.654 59.7209,127.654 55.5,129.5C 54.4763,125.638 52.1429,122.805 48.5,121C 48.9574,120.586 49.2907,120.086 49.5,119.5C 46.9671,117.809 44.3004,116.309 41.5,115C 46.6672,114.707 51.6672,115.54 56.5,117.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.035' fill='%23fefffe' d='M 28.5,117.5 C 29.8333,118.167 29.8333,118.167 28.5,117.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.514' fill='%23a8a8a8' d='M 39.5,123.5 C 35.6927,121.225 33.3593,117.892 32.5,113.5C 34.6642,116.326 36.9975,119.659 39.5,123.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%23969696' d='M 209.5,110.5 C 210.097,110.735 210.43,111.235 210.5,112C 209.333,114.833 208.167,117.667 207,120.5C 206.667,119.833 206.333,119.167 206,118.5C 204.578,120.638 202.745,121.805 200.5,122C 204.503,118.845 207.503,115.012 209.5,110.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.035' fill='%23fbfcfb' d='M 257.5,117.5 C 258.833,118.167 258.833,118.167 257.5,117.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.035' fill='%23fefffe' d='M 257.5,118.5 C 256.833,119.167 256.833,119.167 257.5,118.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.035' fill='%23f5f6f5' d='M 29.5,119.5 C 30.8333,120.167 30.8333,120.167 29.5,119.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%23525252' d='M 156.5,123.5 C 153.386,126.922 149.386,128.422 144.5,128C 141.5,131 138.5,134 135.5,137C 141.027,135.712 146.694,135.379 152.5,136C 154.167,137 155.833,138 157.5,139C 155.31,139.925 153.31,141.092 151.5,142.5C 151.463,152.743 147.129,160.577 138.5,166C 125.066,171.988 111.066,174.155 96.5,172.5C 97.7623,167.309 100.096,162.642 103.5,158.5C 101.472,157.451 99.472,156.451 97.5,155.5C 97.2969,153.956 96.6302,152.622 95.5,151.5C 101.616,152.347 107.283,150.847 112.5,147C 122.524,137.975 132.19,128.642 141.5,119C 147.333,118.002 152.333,119.502 156.5,123.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.035' fill='%23fefffe' d='M 256.5,119.5 C 255.833,120.167 255.833,120.167 256.5,119.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%23a0a0a0' d='M 208.5,123.5 C 210.795,120.703 213.295,118.036 216,115.5C 215.975,117.92 215.309,120.253 214,122.5C 213.667,121.833 213.333,121.167 213,120.5C 211.871,122.141 210.371,123.141 208.5,123.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.027' fill='%23fefffe' d='M 255.5,120.5 C 254.833,121.167 254.833,121.167 255.5,120.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.035' fill='%23f5f6f5' d='M 30.5,121.5 C 31.8333,122.167 31.8333,122.167 30.5,121.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.016' fill='%23fefffe' d='M 254.5,121.5 C 253.833,122.167 253.833,122.167 254.5,121.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.016' fill='%23fefffe' d='M 253.5,122.5 C 252.833,123.167 252.833,123.167 253.5,122.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.016' fill='%23fefffe' d='M 252.5,123.5 C 251.833,124.167 251.833,124.167 252.5,123.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.027' fill='%23eaeaea' d='M 31.5,123.5 C 32.525,123.897 32.6917,124.563 32,125.5C 31.5357,124.906 31.369,124.239 31.5,123.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.016' fill='%23fefffe' d='M 251.5,124.5 C 250.833,125.167 250.833,125.167 251.5,124.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%23989898' d='M 81.5,129.5 C 81.7886,132.649 81.2886,135.649 80,138.5C 78.3952,135.809 76.8952,133.142 75.5,130.5C 75.5,130.167 75.5,129.833 75.5,129.5C 76.3171,127.031 76.8171,124.365 77,121.5C 78.3277,124.312 79.8277,126.978 81.5,129.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%23929292' d='M 208.5,123.5 C 205.217,127.3 201.217,129.8 196.5,131C 199.667,129.167 202.167,126.667 204,123.5C 204.333,124.167 204.667,124.833 205,125.5C 205.816,124.177 206.983,123.511 208.5,123.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.02' fill='%23fefffe' d='M 250.5,125.5 C 249.833,126.167 249.833,126.167 250.5,125.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.024' fill='%23fefffe' d='M 32.5,126.5 C 33.525,126.897 33.6917,127.563 33,128.5C 32.5357,127.906 32.369,127.239 32.5,126.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.035' fill='%23fefffe' d='M 249.5,126.5 C 248.833,127.167 248.833,127.167 249.5,126.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.035' fill='%23fefffe' d='M 248.5,127.5 C 247.833,128.167 247.833,128.167 248.5,127.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%23e9e9e9' d='M 158.5,120.5 C 158.033,125.4 158.699,130.067 160.5,134.5C 159.903,134.735 159.57,135.235 159.5,136C 162.635,145.719 163.135,155.552 161,165.5C 149.975,183.407 134.142,189.573 113.5,184C 105.595,181.048 97.9282,177.548 90.5,173.5C 89.3861,172.277 89.2195,170.944 90,169.5C 92.2581,164.647 94.7581,159.981 97.5,155.5C 99.472,156.451 101.472,157.451 103.5,158.5C 100.096,162.642 97.7623,167.309 96.5,172.5C 111.066,174.155 125.066,171.988 138.5,166C 147.129,160.577 151.463,152.743 151.5,142.5C 153.31,141.092 155.31,139.925 157.5,139C 155.833,138 154.167,137 152.5,136C 146.694,135.379 141.027,135.712 135.5,137C 138.5,134 141.5,131 144.5,128C 149.386,128.422 153.386,126.922 156.5,123.5C 157.167,122.5 157.833,121.5 158.5,120.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.035' fill='%23fefffe' d='M 247.5,128.5 C 246.833,129.167 246.833,129.167 247.5,128.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.02' fill='%23cdcecd' d='M 246.5,129.5 C 245.833,130.167 245.833,130.167 246.5,129.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.024' fill='%23fefffe' d='M 33.5,130.5 C 34.525,130.897 34.6917,131.563 34,132.5C 33.5357,131.906 33.369,131.239 33.5,130.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.027' fill='%23fefffe' d='M 243.5,130.5 C 244.833,131.167 244.833,131.167 243.5,130.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%23555555' d='M 204.5,47.5 C 202.642,64.4914 200.808,81.4914 199,98.5C 197.192,110.273 192.858,120.94 186,130.5C 178.443,138.987 169.943,140.32 160.5,134.5C 158.699,130.067 158.033,125.4 158.5,120.5C 158.33,119.178 158.663,118.011 159.5,117C 162.432,116.728 164.932,115.562 167,113.5C 176.015,99.4691 184.515,85.1358 192.5,70.5C 194.819,65.1926 197.152,59.8593 199.5,54.5C 200.167,52.1667 200.833,49.8333 201.5,47.5C 201.833,46.8333 202.167,46.1667 202.5,45.5C 204.203,44.3398 204.869,45.0065 204.5,47.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%23b0b0b0' d='M 200.5,57.5 C 200.189,72.3952 198.689,87.3952 196,102.5C 194.124,114.42 188.957,124.586 180.5,133C 166.46,139.156 159.794,134.656 160.5,119.5C 166.284,117.562 170.784,113.896 174,108.5C 179.748,98.0029 185.748,87.6696 192,77.5C 195.673,71.1588 198.506,64.4921 200.5,57.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.035' fill='%23fefffe' d='M 243.5,131.5 C 242.833,132.167 242.833,132.167 243.5,131.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.98' fill='%235b5b5b' d='M 66.5,83.5 C 66.5,83.8333 66.5,84.1667 66.5,84.5C 67.7671,86.0389 68.7671,87.7056 69.5,89.5C 70.418,103.007 72.418,116.34 75.5,129.5C 75.5,129.833 75.5,130.167 75.5,130.5C 73.8993,127.45 72.8993,124.116 72.5,120.5C 64.751,124.058 57.9177,129.058 52,135.5C 51.3333,136.5 51.3333,137.5 52,138.5C 54,140.5 56,142.5 58,144.5C 58.1859,140.484 58.1859,136.484 58,132.5C 65.0099,146.395 63.6766,159.395 54,171.5C 50.3474,175.523 49.8474,175.189 52.5,170.5C 51.0977,169.158 51.4311,168.324 53.5,168C 48.5994,164.714 45.266,160.214 43.5,154.5C 43.1667,153.833 42.8333,153.167 42.5,152.5C 42.2155,150.585 42.5489,148.919 43.5,147.5C 44.1646,149.369 44.8313,151.369 45.5,153.5C 46.7703,150.894 48.4369,148.561 50.5,146.5C 49.5,145.167 48.5,143.833 47.5,142.5C 46.8076,143.025 46.3076,143.692 46,144.5C 45.8138,141.964 45.3138,139.631 44.5,137.5C 42.6854,138.63 40.6854,139.296 38.5,139.5C 39.0913,136.386 40.758,133.886 43.5,132C 45.6889,131.678 47.6889,132.178 49.5,133.5C 51.7772,132.551 53.7772,131.218 55.5,129.5C 59.7209,127.654 61.0542,124.654 59.5,120.5C 60.8381,122.113 62.5048,122.613 64.5,122C 67.8925,120.505 69.8925,118.005 70.5,114.5C 69.2339,109.007 67.9005,103.507 66.5,98C 66.8507,94.896 67.3507,95.0626 68,98.5C 68.0292,93.8968 67.1958,89.3968 65.5,85C 65.5699,84.2352 65.9033,83.7352 66.5,83.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.02' fill='%23dedede' d='M 240.5,133.5 C 240.842,132.662 241.508,132.328 242.5,132.5C 242.158,133.338 241.492,133.672 240.5,133.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.027' fill='%23fefffe' d='M 240.5,133.5 C 239.833,134.167 239.833,134.167 240.5,133.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.024' fill='%23f8f8f8' d='M 34.5,134.5 C 35.5735,135.251 35.7401,136.251 35,137.5C 34.5172,136.552 34.3505,135.552 34.5,134.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.02' fill='%23dedede' d='M 237.5,135.5 C 237.842,134.662 238.508,134.328 239.5,134.5C 239.158,135.338 238.492,135.672 237.5,135.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.035' fill='%23fefffe' d='M 237.5,135.5 C 236.833,136.167 236.833,136.167 237.5,135.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.004' fill='%23cdcdcd' d='M 234.5,137.5 C 234.842,136.662 235.508,136.328 236.5,136.5C 236.158,137.338 235.492,137.672 234.5,137.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%235d5d5d' d='M 95.5,103.5 C 87.664,115.34 82.9974,128.34 81.5,142.5C 77.9195,139.339 75.9195,135.339 75.5,130.5C 76.8952,133.142 78.3952,135.809 80,138.5C 81.2886,135.649 81.7886,132.649 81.5,129.5C 82.404,128.791 82.7373,127.791 82.5,126.5C 83.7776,122.333 85.4443,118.333 87.5,114.5C 89.7664,110.966 91.7664,107.3 93.5,103.5C 94.3957,102.494 95.0623,102.494 95.5,103.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.027' fill='%23e2e3e2' d='M 234.5,137.5 C 233.833,138.167 233.833,138.167 234.5,137.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%23929292' d='M 199.5,137.5 C 200.239,137.369 200.906,137.536 201.5,138C 200.643,138.689 199.977,139.522 199.5,140.5C 198.635,141.583 197.635,141.749 196.5,141C 197.71,139.961 198.71,138.794 199.5,137.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.024' fill='%23fefffe' d='M 231.5,138.5 C 232.833,139.167 232.833,139.167 231.5,138.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.039' fill='%23fefffe' d='M 231.5,139.5 C 230.833,140.167 230.833,140.167 231.5,139.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%23fbfbfb' d='M 151.5,142.5 C 149.694,148.776 146.361,154.11 141.5,158.5C 142.259,152.335 139.925,147.335 134.5,143.5C 138.49,141.424 142.823,140.091 147.5,139.5C 149.653,139.561 150.986,140.561 151.5,142.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%23797979' d='M 200.5,142.5 C 202.903,139.885 205.903,139.052 209.5,140C 206.568,141.145 203.568,141.978 200.5,142.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%236c6c6c' d='M 260.5,101.5 C 257.894,110.531 252.894,118.031 245.5,124C 233.864,132.653 221.197,139.486 207.5,144.5C 204.85,145.606 202.016,146.273 199,146.5C 188.842,145.848 178.675,145.348 168.5,145C 179.194,144.148 189.861,143.315 200.5,142.5C 198.946,143.895 199.279,144.561 201.5,144.5C 216.045,138.895 229.712,131.729 242.5,123C 249.653,117.498 254.986,110.664 258.5,102.5C 258.435,102.938 258.601,103.272 259,103.5C 259.278,102.584 259.778,101.918 260.5,101.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%23e8e8e8' d='M 44.5,137.5 C 45.3138,139.631 45.8138,141.964 46,144.5C 46.3076,143.692 46.8076,143.025 47.5,142.5C 48.5,143.833 49.5,145.167 50.5,146.5C 48.4369,148.561 46.7703,150.894 45.5,153.5C 44.8313,151.369 44.1646,149.369 43.5,147.5C 44.2071,144.214 44.5405,140.881 44.5,137.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.031' fill='%23e8e8e8' d='M 230.5,140.5 C 230.573,142.027 229.906,143.027 228.5,143.5C 228.427,141.973 229.094,140.973 230.5,140.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.026' fill='%23ebebeb' d='M 34.5,140.5 C 35.6225,142.288 35.7891,144.288 35,146.5C 34.5045,144.527 34.3379,142.527 34.5,140.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.022' fill='%23f3f3f3' d='M 228.5,143.5 C 227.841,146.455 227.508,149.455 227.5,152.5C 226.848,151.551 226.514,150.385 226.5,149C 226.393,146.779 227.06,144.946 228.5,143.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.022' fill='%23f8f8f8' d='M 33.5,151.5 C 33.3505,150.448 33.5172,149.448 34,148.5C 34.7401,149.749 34.5735,150.749 33.5,151.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%23cecece' d='M 54.5,151.5 C 52.4362,151.762 51.1029,152.929 50.5,155C 53.9153,156.143 54.2486,157.81 51.5,160C 52.0442,160.717 52.7109,161.217 53.5,161.5C 54.3984,162.158 55.3984,162.824 56.5,163.5C 56,163.833 55.5,164.167 55,164.5C 49.0861,161.006 47.5861,156.173 50.5,150C 52.3524,149.227 53.6857,149.727 54.5,151.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%232d2d2d' d='M 54.5,151.5 C 59.8137,153.275 60.8137,156.442 57.5,161C 56.2068,161.49 54.8734,161.657 53.5,161.5C 52.7109,161.217 52.0442,160.717 51.5,160C 54.2486,157.81 53.9153,156.143 50.5,155C 51.1029,152.929 52.4362,151.762 54.5,151.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.024' fill='%23efefef' d='M 33.5,151.5 C 33.7373,152.791 33.404,153.791 32.5,154.5C 32.2627,153.209 32.596,152.209 33.5,151.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%23717171' d='M 134.5,143.5 C 139.925,147.335 142.259,152.335 141.5,158.5C 140.035,159.737 138.368,160.737 136.5,161.5C 140.557,153.685 138.557,148.351 130.5,145.5C 131.671,144.655 133.005,143.989 134.5,143.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.035' fill='%23f0f0f0' d='M 227.5,152.5 C 228.338,152.842 228.672,153.508 228.5,154.5C 227.662,154.158 227.328,153.492 227.5,152.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.012' fill='%23e9e9e9' d='M 32.5,154.5 C 32.6716,155.492 32.3382,156.158 31.5,156.5C 31.3284,155.508 31.6618,154.842 32.5,154.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%23fdfdfd' d='M 111.5,155.5 C 112.811,159.918 114.811,164.251 117.5,168.5C 111.693,171.13 105.693,171.797 99.5,170.5C 102.764,164.904 106.764,159.904 111.5,155.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.012' fill='%23f0f0f0' d='M 228.5,154.5 C 229.338,154.842 229.672,155.508 229.5,156.5C 228.662,156.158 228.328,155.492 228.5,154.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%23d3d3d3' d='M 130.5,145.5 C 138.557,148.351 140.557,153.685 136.5,161.5C 132.164,164.561 127.33,166.561 122,167.5C 116.495,164.822 114.495,160.488 116,154.5C 120.302,150.601 125.136,147.601 130.5,145.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%232f2f2f' d='M 124.5,149.5 C 132.161,148.663 135.661,151.996 135,159.5C 130.431,165.519 125.598,165.853 120.5,160.5C 118.754,155.667 120.087,152 124.5,149.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.035' fill='%23fefffe' d='M 229.5,156.5 C 230.167,156.5 230.5,156.833 230.5,157.5C 230.167,157.167 229.833,156.833 229.5,156.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.012' fill='%23e9e9e9' d='M 31.5,156.5 C 31.6716,157.492 31.3382,158.158 30.5,158.5C 30.3284,157.508 30.6618,156.842 31.5,156.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.027' fill='%23dfe0df' d='M 230.5,157.5 C 231.833,158.167 231.833,158.167 230.5,157.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.016' fill='%23e9e9e9' d='M 30.5,158.5 C 30.6716,159.492 30.3382,160.158 29.5,160.5C 29.3284,159.508 29.6618,158.842 30.5,158.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.031' fill='%23fefffe' d='M 232.5,160.5 C 231.833,159.167 231.833,159.167 232.5,160.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.027' fill='%23e7e7e7' d='M 29.5,160.5 C 29.631,161.239 29.4643,161.906 29,162.5C 28.3083,161.563 28.475,160.897 29.5,160.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.012' fill='%23efefef' d='M 232.5,160.5 C 233.338,160.842 233.672,161.508 233.5,162.5C 232.662,162.158 232.328,161.492 232.5,160.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.024' fill='%23d9dad9' d='M 233.5,162.5 C 234.833,163.167 234.833,163.167 233.5,162.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.027' fill='%23f1f1f1' d='M 27.5,163.5 C 28.525,163.897 28.6917,164.563 28,165.5C 27.5357,164.906 27.369,164.239 27.5,163.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.537' fill='%23afafaf' d='M 212.5,148.5 C 218.655,150.815 223.488,154.815 227,160.5C 231.007,167.117 233.173,174.117 233.5,181.5C 232.893,181.376 232.56,181.043 232.5,180.5C 232.186,177.053 231.352,173.72 230,170.5C 226.966,160.135 220.466,152.968 210.5,149C 211.094,148.536 211.761,148.369 212.5,148.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.016' fill='%23efefef' d='M 235.5,166.5 C 234.475,166.103 234.308,165.437 235,164.5C 235.464,165.094 235.631,165.761 235.5,166.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.035' fill='%23e9e9e9' d='M 235.5,166.5 C 236.525,166.897 236.692,167.563 236,168.5C 235.536,167.906 235.369,167.239 235.5,166.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.018' fill='%23f5f5f5' d='M 26.5,166.5 C 27.5983,167.601 27.765,168.934 27,170.5C 26.51,169.207 26.3433,167.873 26.5,166.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.871' fill='%237b7b7b' d='M 42.5,152.5 C 42.8333,153.167 43.1667,153.833 43.5,154.5C 39.5147,156.321 36.6814,159.321 35,163.5C 34.8227,167.356 34.3227,171.023 33.5,174.5C 33.631,173.761 33.4643,173.094 33,172.5C 32.7216,173.416 32.2216,174.082 31.5,174.5C 30.9861,167.157 33.1528,160.824 38,155.5C 39.129,153.859 40.629,152.859 42.5,152.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.031' fill='%23e6e6e6' d='M 236.5,169.5 C 237.573,170.251 237.74,171.251 237,172.5C 236.517,171.552 236.351,170.552 236.5,169.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.035' fill='%23fefffe' d='M 25.5,171.5 C 26.8333,172.167 26.8333,172.167 25.5,171.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.016' fill='%23e9e9e9' d='M 25.5,172.5 C 25.6716,173.492 25.3382,174.158 24.5,174.5C 24.3284,173.508 24.6618,172.842 25.5,172.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%23505050' d='M 217.5,176.5 C 217.158,177.338 216.492,177.672 215.5,177.5C 210.112,168.629 210.779,168.295 217.5,176.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.035' fill='%23fbfcfb' d='M 24.5,174.5 C 23.8333,175.167 23.8333,175.167 24.5,174.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.031' fill='%23e1e1e1' d='M 237.5,173.5 C 238.598,174.601 238.765,175.934 238,177.5C 237.51,176.207 237.343,174.873 237.5,173.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.024' fill='%23d6d7d6' d='M 23.5,175.5 C 22.8333,176.167 22.8333,176.167 23.5,175.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%23737373' d='M 102.5,177.5 C 112.325,176.342 122.325,176.175 132.5,177C 122.5,178.713 112.5,178.88 102.5,177.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.004' fill='%23e7e7e7' d='M 22.5,176.5 C 22.5,178.5 21.5,179.5 19.5,179.5C 20.1667,178.167 21.1667,177.167 22.5,176.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.376' fill='%23a8a8a8' d='M 209.5,183.5 C 208.91,182.234 208.41,180.901 208,179.5C 207.699,182.507 207.865,185.507 208.5,188.5C 208.631,189.239 208.464,189.906 208,190.5C 207.564,187.602 206.397,185.269 204.5,183.5C 204.5,183.167 204.5,182.833 204.5,182.5C 205.32,180.188 206.153,177.854 207,175.5C 209.236,178.019 210.07,180.685 209.5,183.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.016' fill='%23c4c5c4' d='M 19.5,179.5 C 18.8333,180.167 18.8333,180.167 19.5,179.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%23d7d7d7' d='M 217.5,172.5 C 223.235,177.641 225.235,183.974 223.5,191.5C 222.007,187.657 220.34,183.99 218.5,180.5C 218.167,179.167 217.833,179.167 217.5,180.5C 216.293,180.622 215.626,179.622 215.5,177.5C 216.492,177.672 217.158,177.338 217.5,176.5C 218.315,177.429 219.148,178.429 220,179.5C 220.167,179.167 220.333,178.833 220.5,178.5C 219.441,176.466 218.441,174.466 217.5,172.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.024' fill='%23dddddd' d='M 236.5,178.5 C 237.525,178.897 237.692,179.563 237,180.5C 236.536,179.906 236.369,179.239 236.5,178.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.031' fill='%23eff0ef' d='M 18.5,180.5 C 17.8333,181.167 17.8333,181.167 18.5,180.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.035' fill='%23fefffe' d='M 17.5,181.5 C 16.8333,182.167 16.8333,182.167 17.5,181.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.031' fill='%23e5e6e5' d='M 235.5,181.5 C 236.833,182.167 236.833,182.167 235.5,181.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.031' fill='%23fefffe' d='M 16.5,182.5 C 15.8333,183.167 15.8333,183.167 16.5,182.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%235c5c5c' d='M 33.5,174.5 C 33.3359,177.187 33.5026,179.854 34,182.5C 45.8339,175.62 57.3339,176.12 68.5,184C 72.1937,187.694 75.8604,191.36 79.5,195C 78.0922,195.315 76.7589,194.982 75.5,194C 72.1667,190.667 68.8333,187.333 65.5,184C 63.431,182.126 61.0977,181.126 58.5,181C 65.3168,185.457 70.1502,191.29 73,198.5C 67.4601,191.293 60.9601,185.126 53.5,180C 46.6797,179.603 40.3464,181.27 34.5,185C 35.7375,185.232 36.7375,185.732 37.5,186.5C 32.8333,187.833 28.1667,187.833 23.5,186.5C 25.5994,185.388 27.9327,184.721 30.5,184.5C 30.2529,181.061 30.5863,177.728 31.5,174.5C 32.2216,174.082 32.7216,173.416 33,172.5C 33.4643,173.094 33.631,173.761 33.5,174.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.035' fill='%23fefffe' d='M 13.5,183.5 C 14.8333,184.167 14.8333,184.167 13.5,183.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.031' fill='%23e5e6e5' d='M 234.5,183.5 C 235.833,184.167 235.833,184.167 234.5,183.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.031' fill='%23e8e9e8' d='M 11.5,184.5 C 12.8333,185.167 12.8333,185.167 11.5,184.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.016' fill='%23fefffe' d='M 11.5,185.5 C 10.8333,186.167 10.8333,186.167 11.5,185.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%23787878' d='M 204.5,182.5 C 204.5,182.833 204.5,183.167 204.5,183.5C 202.167,186.003 200.001,188.669 198,191.5C 200.045,184.349 199.878,177.183 197.5,170C 197.667,169.5 197.833,169 198,168.5C 199.954,173.971 200.954,179.638 201,185.5C 202.039,184.29 203.206,183.29 204.5,182.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.027' fill='%23e2e3e2' d='M 233.5,185.5 C 234.833,186.167 234.833,186.167 233.5,185.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.024' fill='%23d9dad9' d='M 8.5,186.5 C 9.83333,187.167 9.83333,187.167 8.5,186.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.031' fill='%23e5e6e5' d='M 233.5,186.5 C 232.833,187.167 232.833,187.167 233.5,186.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.024' fill='%23d9dad9' d='M 8.5,187.5 C 7.83333,188.167 7.83333,188.167 8.5,187.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%23cecece' d='M 128.5,302.5 C 124.267,305.09 119.6,306.09 114.5,305.5C 114.351,304.448 114.517,303.448 115,302.5C 121.111,296.966 126.778,290.966 132,284.5C 143.275,266.894 154.942,249.56 167,232.5C 169.562,210.896 171.396,189.23 172.5,167.5C 173.167,167.167 173.833,166.833 174.5,166.5C 174.833,170 175.167,173.5 175.5,177C 174.822,195.494 174.322,213.994 174,232.5C 156.074,254.014 140.907,277.348 128.5,302.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.031' fill='%23e5e6e5' d='M 232.5,187.5 C 231.833,188.167 231.833,188.167 232.5,187.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.031' fill='%23e5e6e5' d='M 7.5,188.5 C 6.83333,189.167 6.83333,189.167 7.5,188.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%23717171' d='M 23.5,186.5 C 28.1667,187.833 32.8333,187.833 37.5,186.5C 39.099,186.232 40.4324,186.566 41.5,187.5C 40.448,187.351 39.448,187.517 38.5,188C 39.7375,188.232 40.7375,188.732 41.5,189.5C 33.4487,188.035 25.4487,188.202 17.5,190C 11.4089,192.039 8.07558,196.206 7.5,202.5C 8.5,202.5 9.5,202.5 10.5,202.5C 10.5,205.833 10.5,209.167 10.5,212.5C 9.71003,213.609 9.21003,214.942 9,216.5C 8.81988,212.076 8.65321,207.743 8.5,203.5C 7.13077,205.764 6.13077,208.097 5.5,210.5C 3.25443,196.327 9.25443,188.327 23.5,186.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%23b1b1b1' d='M 41.5,189.5 C 50.4998,191.586 58.3332,195.92 65,202.5C 68.6961,209.268 68.0294,215.601 63,221.5C 60.3333,223.5 57.6667,225.5 55,227.5C 55.4978,225.473 55.3311,223.473 54.5,221.5C 53.573,223.946 51.9063,224.779 49.5,224C 46.9614,221.63 44.6281,219.13 42.5,216.5C 40.4148,212.292 37.0815,210.459 32.5,211C 28.5272,215.284 27.5272,220.117 29.5,225.5C 29.2965,227.39 29.9632,228.89 31.5,230C 31.1667,230.167 30.8333,230.333 30.5,230.5C 26.2671,227.259 21.6004,224.926 16.5,223.5C 12.171,221.18 10.171,217.513 10.5,212.5C 10.5,209.167 10.5,205.833 10.5,202.5C 9.5,202.5 8.5,202.5 7.5,202.5C 8.07558,196.206 11.4089,192.039 17.5,190C 25.4487,188.202 33.4487,188.035 41.5,189.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.035' fill='%23fbfcfb' d='M 231.5,188.5 C 230.833,189.167 230.833,189.167 231.5,188.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.024' fill='%23d9dad9' d='M 6.5,189.5 C 5.83333,190.167 5.83333,190.167 6.5,189.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.024' fill='%23fefffe' d='M 230.5,189.5 C 229.833,190.167 229.833,190.167 230.5,189.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.024' fill='%23d9dad9' d='M 5.5,190.5 C 4.83333,191.167 4.83333,191.167 5.5,190.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.024' fill='%23fefffe' d='M 229.5,190.5 C 228.833,191.167 228.833,191.167 229.5,190.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.024' fill='%23fefffe' d='M 228.5,191.5 C 227.833,192.167 227.833,192.167 228.5,191.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.027' fill='%23ebebeb' d='M 4.5,191.5 C 4.67158,192.492 4.33825,193.158 3.5,193.5C 3.32842,192.508 3.66175,191.842 4.5,191.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.031' fill='%23e5e6e5' d='M 227.5,192.5 C 226.833,193.167 226.833,193.167 227.5,192.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.031' fill='%23e8e9e8' d='M 3.5,193.5 C 2.83333,194.167 2.83333,194.167 3.5,193.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.024' fill='%23d3d4d3' d='M 226.5,193.5 C 225.833,194.167 225.833,194.167 226.5,193.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.024' fill='%23d3d4d3' d='M 225.5,194.5 C 224.833,195.167 224.833,195.167 225.5,194.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.592' fill='%23b9b9b9' d='M 214.5,196.5 C 214.013,197.473 213.513,198.473 213,199.5C 212.228,194.809 211.395,190.142 210.5,185.5C 210.435,185.062 210.601,184.728 211,184.5C 212.483,188.438 213.65,192.438 214.5,196.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.024' fill='%23d3d4d3' d='M 224.5,195.5 C 223.833,196.167 223.833,196.167 224.5,195.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.024' fill='%23f7f7f7' d='M 1.5,197.5 C 1.36899,196.761 1.53566,196.094 2,195.5C 2.69169,196.437 2.52502,197.103 1.5,197.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.024' fill='%23d3d4d3' d='M 223.5,196.5 C 222.833,197.167 222.833,197.167 223.5,196.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.024' fill='%23f7f7f7' d='M 1.5,197.5 C 1.65668,198.873 1.49001,200.207 1,201.5C 0.235015,199.934 0.401682,198.601 1.5,197.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.016' fill='%23dedede' d='M 222.5,197.5 C 222.573,199.027 221.906,200.027 220.5,200.5C 220.427,198.973 221.094,197.973 222.5,197.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.016' fill='%23dedede' d='M 220.5,200.5 C 220.573,202.027 219.906,203.027 218.5,203.5C 218.427,201.973 219.094,200.973 220.5,200.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%23808080' d='M 210.5,199.5 C 211.833,203.833 211.833,208.167 210.5,212.5C 209.167,208.167 209.167,203.833 210.5,199.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.016' fill='%23d8d8d8' d='M 218.5,203.5 C 218.672,204.492 218.338,205.158 217.5,205.5C 217.328,204.508 217.662,203.842 218.5,203.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.022' fill='%23d8d8d8' d='M -0.5,202.5 C 0.833333,204.167 0.833333,205.833 -0.5,207.5C -0.5,205.833 -0.5,204.167 -0.5,202.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.031' fill='%23e5e6e5' d='M 217.5,205.5 C 216.833,206.167 216.833,206.167 217.5,205.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%23555555' d='M 130.5,301.5 C 129.833,301.833 129.167,302.167 128.5,302.5C 140.907,277.348 156.074,254.014 174,232.5C 174.322,213.994 174.822,195.494 175.5,177C 175.167,173.5 174.833,170 174.5,166.5C 173.833,166.833 173.167,167.167 172.5,167.5C 171.396,189.23 169.562,210.896 167,232.5C 154.942,249.56 143.275,266.894 132,284.5C 126.778,290.966 121.111,296.966 115,302.5C 114.517,303.448 114.351,304.448 114.5,305.5C 116.631,306.314 118.964,306.814 121.5,307C 120.263,307.232 119.263,307.732 118.5,308.5C 116.833,308.5 115.167,308.5 113.5,308.5C 112.038,319.801 111.038,331.134 110.5,342.5C 109.094,342.027 108.427,341.027 108.5,339.5C 107.321,322.578 109.821,306.245 116,290.5C 116.279,286.83 116.112,283.163 115.5,279.5C 117.26,283.547 118.26,287.88 118.5,292.5C 119.212,293.739 120.212,294.239 121.5,294C 124.5,290.333 127.5,286.667 130.5,283C 127.051,281.251 123.717,279.417 120.5,277.5C 125.662,279.665 128.662,277.998 129.5,272.5C 130.584,274.319 131.918,275.985 133.5,277.5C 135.5,274.833 137.5,272.167 139.5,269.5C 138.23,268.712 137.23,267.712 136.5,266.5C 139.168,266.166 141.168,264.833 142.5,262.5C 139.35,255.385 137.017,248.051 135.5,240.5C 141.718,240.851 147.552,242.518 153,245.5C 155.335,242.834 157.169,239.834 158.5,236.5C 154.592,231.081 149.259,228.747 142.5,229.5C 136.79,228.439 132.624,230.439 130,235.5C 128.595,241.382 126.595,247.049 124,252.5C 118.667,260.5 113.333,268.5 108,276.5C 109.049,272.382 110.716,268.382 113,264.5C 117.395,258.434 121.395,252.1 125,245.5C 125.977,243.26 126.477,240.927 126.5,238.5C 121.497,238.085 117.33,239.752 114,243.5C 109.52,255.069 105.186,266.736 101,278.5C 95.3744,285.794 89.3744,292.794 83,299.5C 78.4286,307.668 77.2619,316.334 79.5,325.5C 78.8333,325.833 78.1667,326.167 77.5,326.5C 76.5152,322.74 75.8485,318.907 75.5,315C 76.2498,310.504 76.9165,306.004 77.5,301.5C 78.3764,301.631 79.0431,301.298 79.5,300.5C 80.0671,298.018 80.7337,295.684 81.5,293.5C 81.4701,294.497 81.9701,295.164 83,295.5C 87.7054,293.479 88.872,290.479 86.5,286.5C 87.4822,287.141 88.4822,287.807 89.5,288.5C 92.5598,286.981 94.0598,284.648 94,281.5C 92.6244,280.295 91.4577,278.962 90.5,277.5C 90.5,276.833 90.8333,276.5 91.5,276.5C 92.3382,276.158 92.6716,275.492 92.5,274.5C 92.369,273.761 92.5357,273.094 93,272.5C 93.7543,275.639 94.7543,278.639 96,281.5C 98.4338,278.691 99.6005,275.691 99.5,272.5C 102.201,269.765 103.868,266.431 104.5,262.5C 106.461,258.018 108.128,253.351 109.5,248.5C 109.795,246.577 110.628,244.91 112,243.5C 113.926,237.958 112.092,234.625 106.5,233.5C 102.299,231.316 98.7989,228.316 96,224.5C 95.5357,225.094 95.369,225.761 95.5,226.5C 95.5,227.167 95.1667,227.5 94.5,227.5C 94.5,226.5 94.5,225.5 94.5,224.5C 91.5944,224.957 88.9278,225.957 86.5,227.5C 87.0761,230.876 87.7428,234.209 88.5,237.5C 88.1667,238.167 87.8333,238.833 87.5,239.5C 87.5,239.833 87.5,240.167 87.5,240.5C 87.6646,243.518 87.498,246.518 87,249.5C 86.7585,243.116 86.0918,236.782 85,230.5C 81.3581,235.146 76.8581,238.646 71.5,241C 68.6549,244.344 65.6549,247.511 62.5,250.5C 65.2796,252.706 68.4462,254.039 72,254.5C 73.3756,254.316 74.2089,253.649 74.5,252.5C 76.4044,252.738 77.7377,253.738 78.5,255.5C 75.5,255.5 72.5,255.5 69.5,255.5C 66.3777,254.439 63.3777,253.105 60.5,251.5C 59.8333,251.5 59.1667,251.5 58.5,251.5C 64.1121,245.716 69.6121,239.716 75,233.5C 80.0685,226.532 84.2352,219.032 87.5,211C 102.698,202.45 119.032,198.45 136.5,199C 139.675,202.068 143.008,202.068 146.5,199C 151.667,195.167 156.167,190.667 160,185.5C 163.292,180.417 166.459,175.25 169.5,170C 168.551,169.383 167.718,169.549 167,170.5C 166.383,169.551 166.549,168.718 167.5,168C 172.898,164.089 178.898,162.422 185.5,163C 185.957,163.414 186.291,163.914 186.5,164.5C 183.572,165.484 180.572,165.817 177.5,165.5C 177.667,186.836 177.5,208.169 177,229.5C 176,231.5 175,233.5 174,235.5C 156.89,255.778 142.39,277.778 130.5,301.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%23494949' d='M 153.5,203.5 C 152.93,210.541 150.097,211.875 145,207.5C 143.236,210.557 142.402,213.89 142.5,217.5C 140.821,217.715 139.821,217.048 139.5,215.5C 141.433,212.247 142.933,208.581 144,204.5C 145.684,206.351 147.517,208.018 149.5,209.5C 150.66,207.289 151.993,205.289 153.5,203.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%23fafafa' d='M 153.5,203.5 C 151.993,205.289 150.66,207.289 149.5,209.5C 147.517,208.018 145.684,206.351 144,204.5C 142.933,208.581 141.433,212.247 139.5,215.5C 138.657,212.484 137.157,209.817 135,207.5C 134.333,205.5 134.333,203.5 135,201.5C 136.525,204.087 138.692,204.92 141.5,204C 146.193,201.979 150.36,199.146 154,195.5C 154.43,198.192 154.263,200.859 153.5,203.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%23fbfbfb' d='M 125.5,213.5 C 124.174,210.277 124.674,207.277 127,204.5C 128.599,202.964 130.433,202.464 132.5,203C 133.641,208.75 133.807,214.584 133,220.5C 130.63,217.961 128.13,215.628 125.5,213.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%23f7f7f7' d='M 86.5,227.5 C 83.2494,230.246 80.0827,233.246 77,236.5C 76.8333,236.167 76.6667,235.833 76.5,235.5C 82.0746,228.18 86.7413,220.347 90.5,212C 101.803,206.609 113.636,203.109 126,201.5C 124.447,204.447 122.947,207.613 121.5,211C 112.547,210.893 105.381,214.393 100,221.5C 99.1268,221.265 98.2935,220.931 97.5,220.5C 94.7542,222.473 91.7542,223.973 88.5,225C 87.6195,225.708 86.9528,226.542 86.5,227.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%238e8e8e' d='M 125.5,236.5 C 123.58,233.661 121.913,230.661 120.5,227.5C 121.433,223.119 120.766,218.786 118.5,214.5C 120.436,215.019 122.269,214.353 124,212.5C 124.383,213.056 124.883,213.389 125.5,213.5C 127.595,217.931 130.929,220.931 135.5,222.5C 135.335,218.818 135.501,215.152 136,211.5C 136.949,213.093 138.115,214.426 139.5,215.5C 139.821,217.048 140.821,217.715 142.5,217.5C 142.402,213.89 143.236,210.557 145,207.5C 150.097,211.875 152.93,210.541 153.5,203.5C 154.117,203.389 154.617,203.056 155,202.5C 155.333,199.5 155.667,196.5 156,193.5C 156.689,192.643 157.522,191.977 158.5,191.5C 160.347,194.202 161.513,197.202 162,200.5C 163.263,211.77 162.097,222.77 158.5,233.5C 151.497,227.864 143.497,226.03 134.5,228C 130.926,230.412 127.926,233.245 125.5,236.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%23f4f4f4' d='M 169.5,172.5 C 170.163,174.473 170.496,176.639 170.5,179C 168.695,196.489 166.862,213.989 165,231.5C 163.248,234.672 161.248,237.672 159,240.5C 160.292,235.942 161.625,231.276 163,226.5C 164.877,216.819 164.877,207.152 163,197.5C 162.235,194.804 161.068,192.304 159.5,190C 163.995,184.845 167.328,179.011 169.5,172.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.031' fill='%23fefffe' d='M 0.5,209.5 C 1.57346,210.251 1.74012,211.251 1,212.5C 0.517215,211.552 0.350549,210.552 0.5,209.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.016' fill='%23d8d8d8' d='M 215.5,208.5 C 216.525,208.897 216.692,209.563 216,210.5C 215.536,209.906 215.369,209.239 215.5,208.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%23636363' d='M 42.5,216.5 C 41.475,216.897 41.3083,217.563 42,218.5C 44.921,222.092 48.421,224.925 52.5,227C 50.7975,229.568 48.6308,230.068 46,228.5C 44.3333,230.167 42.6667,231.833 41,233.5C 39.4024,233.07 37.9024,232.736 36.5,232.5C 32.8229,227.14 30.9895,221.14 31,214.5C 30.5017,217.817 30.335,221.15 30.5,224.5C 29.8333,224.5 29.5,224.833 29.5,225.5C 27.5272,220.117 28.5272,215.284 32.5,211C 37.0815,210.459 40.4148,212.292 42.5,216.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.031' fill='%23fefffe' d='M 1.5,213.5 C 2.52502,213.897 2.69169,214.563 2,215.5C 1.53566,214.906 1.36899,214.239 1.5,213.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%23f8f8f8' d='M 112.5,213.5 C 114.167,213.5 115.833,213.5 117.5,213.5C 118.339,216.835 118.839,220.168 119,223.5C 115.36,221.045 113.193,217.711 112.5,213.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%23fbfbfb' d='M 110.5,214.5 C 111.623,220.17 112.623,226.003 113.5,232C 113.167,232.833 112.833,233.667 112.5,234.5C 106.634,231.96 101.634,228.293 97.5,223.5C 98.9952,223.522 100.662,223.189 102.5,222.5C 104.882,219.452 107.548,216.785 110.5,214.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.035' fill='%23f6f6f6' d='M 214.5,214.5 C 215.525,214.897 215.692,215.563 215,216.5C 214.536,215.906 214.369,215.239 214.5,214.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.012' fill='%23d5d5d5' d='M 3.5,218.5 C 2.47498,218.103 2.30831,217.437 3,216.5C 3.46434,217.094 3.63101,217.761 3.5,218.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.039' fill='%23fefffe' d='M 3.5,218.5 C 4.83333,219.167 4.83333,219.167 3.5,218.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.733' fill='%23909090' d='M 10.5,212.5 C 10.171,217.513 12.171,221.18 16.5,223.5C 16.5,224.5 16.5,225.5 16.5,226.5C 10.876,222.608 7.20938,217.275 5.5,210.5C 6.13077,208.097 7.13077,205.764 8.5,203.5C 8.65321,207.743 8.81988,212.076 9,216.5C 9.21003,214.942 9.71003,213.609 10.5,212.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.035' fill='%23fefffe' d='M 4.5,220.5 C 5.83333,221.167 5.83333,221.167 4.5,220.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.035' fill='%23fefffe' d='M 213.5,220.5 C 214.833,221.167 214.833,221.167 213.5,220.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%23f4f4f4' d='M 120.5,227.5 C 121.913,230.661 123.58,233.661 125.5,236.5C 121.226,236.257 117.559,237.591 114.5,240.5C 114.167,239.833 113.833,239.167 113.5,238.5C 114.512,236.448 115.179,234.281 115.5,232C 114.831,228.501 114.664,225.001 115,221.5C 117.04,223.37 118.873,225.37 120.5,227.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.035' fill='%23f2f3f2' d='M 6.5,223.5 C 5.83333,222.167 5.83333,222.167 6.5,223.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.035' fill='%23fefffe' d='M 212.5,223.5 C 213.833,224.167 213.833,224.167 212.5,223.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.012' fill='%23d5d5d5' d='M 6.5,223.5 C 7.33825,223.842 7.67158,224.508 7.5,225.5C 6.66175,225.158 6.32842,224.492 6.5,223.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%23fcfcfc' d='M 94.5,227.5 C 95.0021,232.838 95.1688,238.172 95,243.5C 92.3098,241.973 90.1432,239.973 88.5,237.5C 87.7428,234.209 87.0761,230.876 86.5,227.5C 88.9278,225.957 91.5944,224.957 94.5,224.5C 94.5,225.5 94.5,226.5 94.5,227.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.035' fill='%23fefffe' d='M 7.5,225.5 C 8.83333,226.167 8.83333,226.167 7.5,225.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.039' fill='%23fefffe' d='M 211.5,225.5 C 212.833,226.167 212.833,226.167 211.5,225.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.027' fill='%23e2e3e2' d='M 9.5,228.5 C 8.83333,227.167 8.83333,227.167 9.5,228.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%23d4d4d4' d='M 36.5,232.5 C 33.4423,230.757 31.4423,228.09 30.5,224.5C 30.335,221.15 30.5017,217.817 31,214.5C 30.9895,221.14 32.8229,227.14 36.5,232.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.039' fill='%23fefffe' d='M 210.5,227.5 C 211.833,228.167 211.833,228.167 210.5,227.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.039' fill='%23fefffe' d='M 9.5,228.5 C 10.8333,229.167 10.8333,229.167 9.5,228.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%23fdfdfd' d='M 136.5,266.5 C 132.637,262.713 127.97,261.213 122.5,262C 123.066,262.995 123.733,263.828 124.5,264.5C 124.427,266.027 125.094,267.027 126.5,267.5C 126.427,269.027 127.094,270.027 128.5,270.5C 128.328,271.492 128.662,272.158 129.5,272.5C 128.662,277.998 125.662,279.665 120.5,277.5C 118.898,275.926 116.898,275.259 114.5,275.5C 114.232,277.099 114.566,278.432 115.5,279.5C 116.112,283.163 116.279,286.83 116,290.5C 109.821,306.245 107.321,322.578 108.5,339.5C 107.126,345.197 103.459,347.364 97.5,346C 88.429,341.768 82.429,334.935 79.5,325.5C 77.2619,316.334 78.4286,307.668 83,299.5C 89.3744,292.794 95.3744,285.794 101,278.5C 105.186,266.736 109.52,255.069 114,243.5C 117.33,239.752 121.497,238.085 126.5,238.5C 126.477,240.927 125.977,243.26 125,245.5C 121.395,252.1 117.395,258.434 113,264.5C 110.716,268.382 109.049,272.382 108,276.5C 113.333,268.5 118.667,260.5 124,252.5C 126.595,247.049 128.595,241.382 130,235.5C 132.624,230.439 136.79,228.439 142.5,229.5C 149.259,228.747 154.592,231.081 158.5,236.5C 157.169,239.834 155.335,242.834 153,245.5C 147.552,242.518 141.718,240.851 135.5,240.5C 137.017,248.051 139.35,255.385 142.5,262.5C 141.168,264.833 139.168,266.166 136.5,266.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.024' fill='%23d6d7d6' d='M 209.5,229.5 C 210.833,230.167 210.833,230.167 209.5,229.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.031' fill='%23e8e9e8' d='M 11.5,231.5 C 10.8333,230.167 10.8333,230.167 11.5,231.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.035' fill='%23fefffe' d='M 209.5,230.5 C 208.833,231.167 208.833,231.167 209.5,230.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.031' fill='%23fefffe' d='M 11.5,231.5 C 12.8333,232.167 12.8333,232.167 11.5,231.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%23f8f8f8' d='M 87.5,240.5 C 87.8333,240.5 88.1667,240.5 88.5,240.5C 88.5,243.833 88.5,247.167 88.5,250.5C 87.8339,253.689 87.1672,257.023 86.5,260.5C 84.3297,257.988 81.663,256.321 78.5,255.5C 77.7377,253.738 76.4044,252.738 74.5,252.5C 74.2089,253.649 73.3756,254.316 72,254.5C 68.4462,254.039 65.2796,252.706 62.5,250.5C 65.6549,247.511 68.6549,244.344 71.5,241C 76.8581,238.646 81.3581,235.146 85,230.5C 86.0918,236.782 86.7585,243.116 87,249.5C 87.498,246.518 87.6646,243.518 87.5,240.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%23555555' d='M 41.5,187.5 C 47.5616,188.577 53.2282,190.744 58.5,194C 69.7563,200.095 72.5896,208.929 67,220.5C 63.7988,224.036 60.2988,227.203 56.5,230C 48.1355,236.185 39.3022,237.018 30,232.5C 29.6667,233.5 29.3333,234.5 29,235.5C 27.6846,230.585 24.5179,227.585 19.5,226.5C 18.6522,225.375 17.6522,225.375 16.5,226.5C 16.5,225.5 16.5,224.5 16.5,223.5C 21.6004,224.926 26.2671,227.259 30.5,230.5C 30.8333,230.333 31.1667,230.167 31.5,230C 29.9632,228.89 29.2965,227.39 29.5,225.5C 29.5,224.833 29.8333,224.5 30.5,224.5C 31.4423,228.09 33.4423,230.757 36.5,232.5C 37.9024,232.736 39.4024,233.07 41,233.5C 42.6667,231.833 44.3333,230.167 46,228.5C 48.6308,230.068 50.7975,229.568 52.5,227C 48.421,224.925 44.921,222.092 42,218.5C 41.3083,217.563 41.475,216.897 42.5,216.5C 44.6281,219.13 46.9614,221.63 49.5,224C 51.9063,224.779 53.573,223.946 54.5,221.5C 55.3311,223.473 55.4978,225.473 55,227.5C 57.6667,225.5 60.3333,223.5 63,221.5C 68.0294,215.601 68.6961,209.268 65,202.5C 58.3332,195.92 50.4998,191.586 41.5,189.5C 40.7375,188.732 39.7375,188.232 38.5,188C 39.448,187.517 40.448,187.351 41.5,187.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.024' fill='%23d3d4d3' d='M 207.5,232.5 C 208.833,233.167 208.833,233.167 207.5,232.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.031' fill='%23e8e9e8' d='M 13.5,234.5 C 12.8333,233.167 12.8333,233.167 13.5,234.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.039' fill='%23fefffe' d='M 207.5,233.5 C 206.833,234.167 206.833,234.167 207.5,233.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.031' fill='%23fefffe' d='M 13.5,234.5 C 14.8333,235.167 14.8333,235.167 13.5,234.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.031' fill='%23fefffe' d='M 206.5,234.5 C 205.833,235.167 205.833,235.167 206.5,234.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.027' fill='%23e2e3e2' d='M 15.5,237.5 C 14.8333,236.167 14.8333,236.167 15.5,237.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.031' fill='%23fefffe' d='M 15.5,237.5 C 16.8333,238.167 16.8333,238.167 15.5,237.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.008' fill='%23babbba' d='M 203.5,237.5 C 204.833,238.167 204.833,238.167 203.5,237.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%23737373' d='M 19.5,226.5 C 21.5809,234.559 26.2475,241.226 33.5,246.5C 32.6618,246.842 32.3284,247.508 32.5,248.5C 24.4911,243.151 19.1578,235.818 16.5,226.5C 17.6522,225.375 18.6522,225.375 19.5,226.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.012' fill='%23d3d4d3' d='M 203.5,238.5 C 202.833,239.167 202.833,239.167 203.5,238.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.031' fill='%23ebeceb' d='M 17.5,240.5 C 16.8333,239.167 16.8333,239.167 17.5,240.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.004' fill='%23fefffe' d='M 202.5,239.5 C 201.833,240.167 201.833,240.167 202.5,239.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.039' fill='%23fefffe' d='M 17.5,240.5 C 18.8333,241.167 18.8333,241.167 17.5,240.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.008' fill='%23babbba' d='M 19.5,243.5 C 18.8333,242.167 18.8333,242.167 19.5,243.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%23fcfcfc' d='M 137.5,242.5 C 143.219,243.517 148.552,245.517 153.5,248.5C 150.5,253.167 147.5,257.833 144.5,262.5C 141.583,256.008 139.25,249.341 137.5,242.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.031' fill='%23ebeceb' d='M 19.5,243.5 C 20.1667,243.5 20.5,243.833 20.5,244.5C 20.1667,244.167 19.8333,243.833 19.5,243.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%23949494' d='M 95.5,226.5 C 96.5435,232.65 97.2101,238.984 97.5,245.5C 93.7793,245.109 90.7793,243.442 88.5,240.5C 88.5,239.833 88.1667,239.5 87.5,239.5C 87.8333,238.833 88.1667,238.167 88.5,237.5C 90.1432,239.973 92.3098,241.973 95,243.5C 95.1688,238.172 95.0021,232.838 94.5,227.5C 95.1667,227.5 95.5,227.167 95.5,226.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.031' fill='%23ebeceb' d='M 20.5,244.5 C 21.1667,244.5 21.5,244.833 21.5,245.5C 21.1667,245.167 20.8333,244.833 20.5,244.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.027' fill='%23fefffe' d='M 21.5,245.5 C 22.8333,246.167 22.8333,246.167 21.5,245.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%23ababab' d='M 106.5,233.5 C 112.092,234.625 113.926,237.958 112,243.5C 110.628,244.91 109.795,246.577 109.5,248.5C 108.833,247.5 108.167,246.5 107.5,245.5C 107.507,242.962 107.841,240.462 108.5,238C 108.481,236.167 107.815,234.667 106.5,233.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.012' fill='%23c4c5c4' d='M 23.5,248.5 C 22.8333,247.167 22.8333,247.167 23.5,248.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.031' fill='%23e5e6e5' d='M 23.5,248.5 C 24.1667,248.5 24.5,248.833 24.5,249.5C 24.1667,249.167 23.8333,248.833 23.5,248.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.031' fill='%23ebeceb' d='M 24.5,249.5 C 25.1667,249.5 25.5,249.833 25.5,250.5C 25.1667,250.167 24.8333,249.833 24.5,249.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.035' fill='%23fefffe' d='M 25.5,250.5 C 26.1667,250.5 26.5,250.833 26.5,251.5C 26.1667,251.167 25.8333,250.833 25.5,250.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%23444444' d='M 74.5,252.5 C 72.8042,252.315 71.4709,251.481 70.5,250C 72.4122,249.721 73.7456,250.554 74.5,252.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.024' fill='%23fefffe' d='M 26.5,251.5 C 27.8333,252.167 27.8333,252.167 26.5,251.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%23f5f5f5' d='M 37.5,251.5 C 40.3311,252.079 42.6644,253.412 44.5,255.5C 44.762,256.978 44.4287,258.311 43.5,259.5C 41.1831,257.684 39.0165,255.684 37,253.5C 36.3083,252.563 36.475,251.897 37.5,251.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%23515151' d='M 53.5,253.5 C 51.4903,254.693 49.3237,254.693 47,253.5C 45.9701,253.836 45.4701,254.503 45.5,255.5C 45.1667,255.5 44.8333,255.5 44.5,255.5C 42.6644,253.412 40.3311,252.079 37.5,251.5C 36.6522,250.375 35.6522,250.375 34.5,251.5C 33.5987,250.71 32.9321,249.71 32.5,248.5C 32.3284,247.508 32.6618,246.842 33.5,246.5C 34.3635,247.463 35.0302,247.463 35.5,246.5C 33.1966,243.754 31.6966,240.754 31,237.5C 35.6263,246.971 43.1263,252.305 53.5,253.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.935' fill='%23797979' d='M 58.5,251.5 C 59.1667,251.5 59.8333,251.5 60.5,251.5C 56.4046,256.738 51.4046,258.071 45.5,255.5C 45.4701,254.503 45.9701,253.836 47,253.5C 49.3237,254.693 51.4903,254.693 53.5,253.5C 55.1667,252.833 56.8333,252.167 58.5,251.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.008' fill='%23babbba' d='M 29.5,255.5 C 28.8333,254.167 28.8333,254.167 29.5,255.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.008' fill='%23babbba' d='M 29.5,255.5 C 30.1667,255.5 30.5,255.833 30.5,256.5C 30.1667,256.167 29.8333,255.833 29.5,255.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%237c7c7c' d='M 107.5,245.5 C 108.167,246.5 108.833,247.5 109.5,248.5C 108.128,253.351 106.461,258.018 104.5,262.5C 102.027,264.765 100.36,268.098 99.5,272.5C 97.323,272.414 95.323,271.747 93.5,270.5C 92.8165,270.863 92.1499,271.196 91.5,271.5C 91.5,270.167 92.1667,269.5 93.5,269.5C 95.0861,270.413 96.5861,270.413 98,269.5C 102.019,261.801 105.186,253.801 107.5,245.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.008' fill='%23babbba' d='M 30.5,256.5 C 31.1667,256.5 31.5,256.833 31.5,257.5C 31.1667,257.167 30.8333,256.833 30.5,256.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.004' fill='%23e5e5e5' d='M 31.5,257.5 C 32.4916,257.328 33.1583,257.662 33.5,258.5C 32.5084,258.672 31.8417,258.338 31.5,257.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.024' fill='%23fefffe' d='M 33.5,258.5 C 34.1667,258.5 34.5,258.833 34.5,259.5C 34.1667,259.167 33.8333,258.833 33.5,258.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.529' fill='%23a6a6a6' d='M 37.5,251.5 C 36.475,251.897 36.3083,252.563 37,253.5C 39.0165,255.684 41.1831,257.684 43.5,259.5C 44.4287,258.311 44.762,256.978 44.5,255.5C 44.8333,255.5 45.1667,255.5 45.5,255.5C 45.5,257.5 45.5,259.5 45.5,261.5C 40.1319,260.151 36.4652,256.818 34.5,251.5C 35.6522,250.375 36.6522,250.375 37.5,251.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.039' fill='%23fefffe' d='M 34.5,259.5 C 35.1667,259.5 35.5,259.833 35.5,260.5C 35.1667,260.167 34.8333,259.833 34.5,259.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.035' fill='%23fefffe' d='M 35.5,260.5 C 36.1667,260.5 36.5,260.833 36.5,261.5C 36.1667,261.167 35.8333,260.833 35.5,260.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.016' fill='%23d4d4d4' d='M 57.5,261.5 C 58.2506,260.427 59.2506,260.26 60.5,261C 59.552,261.483 58.552,261.649 57.5,261.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.035' fill='%23ededed' d='M 70.5,261.5 C 69.7611,261.631 69.0944,261.464 68.5,261C 69.4368,260.308 70.1034,260.475 70.5,261.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.031' fill='%23e7e7e7' d='M 36.5,261.5 C 37.4916,261.328 38.1583,261.662 38.5,262.5C 37.5084,262.672 36.8417,262.338 36.5,261.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.018' fill='%23d7d7d7' d='M 53.5,262.5 C 54.2506,261.427 55.2506,261.26 56.5,262C 55.552,262.483 54.552,262.649 53.5,262.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.035' fill='%23ededed' d='M 70.5,261.5 C 71.4916,261.328 72.1583,261.662 72.5,262.5C 71.5084,262.672 70.8417,262.338 70.5,261.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.875' fill='%238c8c8c' d='M 88.5,250.5 C 93.2094,264.956 89.8761,267.122 78.5,257C 75.3054,256.819 72.3054,256.319 69.5,255.5C 72.5,255.5 75.5,255.5 78.5,255.5C 81.663,256.321 84.3297,257.988 86.5,260.5C 87.1672,257.023 87.8339,253.689 88.5,250.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.029' fill='%23fefffe' d='M 38.5,262.5 C 39.4916,262.328 40.1583,262.662 40.5,263.5C 39.5084,263.672 38.8417,263.338 38.5,262.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.02' fill='%23dedede' d='M 50.5,263.5 C 50.8966,262.475 51.5632,262.308 52.5,263C 51.9056,263.464 51.2389,263.631 50.5,263.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.035' fill='%23fbfcfb' d='M 72.5,262.5 C 73.1667,262.5 73.5,262.833 73.5,263.5C 73.1667,263.167 72.8333,262.833 72.5,262.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%23f3f3f3' d='M 136.5,266.5 C 137.23,267.712 138.23,268.712 139.5,269.5C 137.5,272.167 135.5,274.833 133.5,277.5C 131.918,275.985 130.584,274.319 129.5,272.5C 128.662,272.158 128.328,271.492 128.5,270.5C 128.573,268.973 127.906,267.973 126.5,267.5C 126.573,265.973 125.906,264.973 124.5,264.5C 124.47,263.503 124.97,262.836 126,262.5C 129.576,263.708 133.076,265.041 136.5,266.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.039' fill='%23eaeaea' d='M 40.5,263.5 C 43.8333,263.5 47.1667,263.5 50.5,263.5C 47.1667,264.833 43.8333,264.833 40.5,263.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.031' fill='%23e8e9e8' d='M 73.5,263.5 C 74.1667,263.5 74.5,263.833 74.5,264.5C 74.1667,264.167 73.8333,263.833 73.5,263.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%233d3d3d' d='M 136.5,266.5 C 133.076,265.041 129.576,263.708 126,262.5C 124.97,262.836 124.47,263.503 124.5,264.5C 123.733,263.828 123.066,262.995 122.5,262C 127.97,261.213 132.637,262.713 136.5,266.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.031' fill='%23e8e9e8' d='M 74.5,264.5 C 75.1667,264.5 75.5,264.833 75.5,265.5C 75.1667,265.167 74.8333,264.833 74.5,264.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%234a4a4a' d='M 124.5,264.5 C 125.906,264.973 126.573,265.973 126.5,267.5C 125.094,267.027 124.427,266.027 124.5,264.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.031' fill='%23e4e4e4' d='M 75.5,265.5 C 76.9063,265.973 77.573,266.973 77.5,268.5C 76.0937,268.027 75.427,267.027 75.5,265.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.439' fill='%23dadada' d='M 93.5,269.5 C 92.1667,269.5 91.5,270.167 91.5,271.5C 90.596,270.791 90.2627,269.791 90.5,268.5C 91.791,268.263 92.791,268.596 93.5,269.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%23c2c2c2' d='M 104.5,262.5 C 103.868,266.431 102.201,269.765 99.5,272.5C 100.36,268.098 102.027,264.765 104.5,262.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%234a4a4a' d='M 126.5,267.5 C 127.906,267.973 128.573,268.973 128.5,270.5C 127.094,270.027 126.427,269.027 126.5,267.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.036' fill='%23f6f6f6' d='M 77.5,268.5 C 79.2385,270.119 79.7385,272.119 79,274.5C 78.187,272.564 77.687,270.564 77.5,268.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%23f9f9f9' d='M 99.5,272.5 C 99.6005,275.691 98.4338,278.691 96,281.5C 94.7543,278.639 93.7543,275.639 93,272.5C 92.5357,273.094 92.369,273.761 92.5,274.5C 91.596,273.791 91.2627,272.791 91.5,271.5C 92.1499,271.196 92.8165,270.863 93.5,270.5C 95.323,271.747 97.323,272.414 99.5,272.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.012' fill='%23dfe0df' d='M 173.5,270.5 C 174.833,271.167 174.833,271.167 173.5,270.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.035' fill='%23fefffe' d='M 173.5,271.5 C 172.833,272.167 172.833,272.167 173.5,271.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.741' fill='%238b8b8b' d='M 91.5,276.5 C 90.8333,276.5 90.5,276.833 90.5,277.5C 89.2058,276.71 88.0391,275.71 87,274.5C 86.5012,278.486 86.3345,282.486 86.5,286.5C 84.8207,285.084 83.1541,283.75 81.5,282.5C 82.4577,279.875 83.6243,279.875 85,282.5C 85.6385,279.464 85.4718,276.464 84.5,273.5C 84.5565,272.263 85.0565,271.263 86,270.5C 88.0396,272.37 89.8729,274.37 91.5,276.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.027' fill='%23fefffe' d='M 172.5,272.5 C 171.833,273.167 171.833,273.167 172.5,272.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%23fcfcfc' d='M 90.5,277.5 C 91.4577,278.962 92.6244,280.295 94,281.5C 94.0598,284.648 92.5598,286.981 89.5,288.5C 88.4822,287.807 87.4822,287.141 86.5,286.5C 86.3345,282.486 86.5012,278.486 87,274.5C 88.0391,275.71 89.2058,276.71 90.5,277.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.031' fill='%23eeeeee' d='M 77.5,278.5 C 77.3505,277.448 77.5172,276.448 78,275.5C 78.7401,276.749 78.5735,277.749 77.5,278.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%233c3c3c' d='M 120.5,277.5 C 119.07,277.579 117.736,277.246 116.5,276.5C 115.614,277.325 115.281,278.325 115.5,279.5C 114.566,278.432 114.232,277.099 114.5,275.5C 116.898,275.259 118.898,275.926 120.5,277.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.024' fill='%23d3d4d3' d='M 169.5,275.5 C 170.833,276.167 170.833,276.167 169.5,275.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%23fbfbfb' d='M 120.5,277.5 C 123.717,279.417 127.051,281.251 130.5,283C 127.5,286.667 124.5,290.333 121.5,294C 120.212,294.239 119.212,293.739 118.5,292.5C 118.26,287.88 117.26,283.547 115.5,279.5C 115.281,278.325 115.614,277.325 116.5,276.5C 117.736,277.246 119.07,277.579 120.5,277.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%23707070' d='M 209.5,218.5 C 209.313,220.564 208.813,222.564 208,224.5C 199.734,234.769 190.734,244.435 181,253.5C 168.624,270.215 155.124,286.049 140.5,301C 136.359,303.449 132.026,305.449 127.5,307C 124.568,307.953 121.568,308.453 118.5,308.5C 119.263,307.732 120.263,307.232 121.5,307C 118.964,306.814 116.631,306.314 114.5,305.5C 119.6,306.09 124.267,305.09 128.5,302.5C 129.167,302.167 129.833,301.833 130.5,301.5C 130.435,301.938 130.601,302.272 131,302.5C 133.365,301.711 135.532,300.544 137.5,299C 144.333,292.167 151.167,285.333 158,278.5C 163.333,271.167 168.667,263.833 174,256.5C 184.667,247.167 194.667,237.167 204,226.5C 206.727,222.61 208.393,218.277 209,213.5C 209.494,215.134 209.66,216.801 209.5,218.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.039' fill='%23fefffe' d='M 169.5,276.5 C 168.833,277.167 168.833,277.167 169.5,276.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%23e9e9e9' d='M 129.5,277.5 C 132.569,277.963 133.069,279.296 131,281.5C 128.628,280.683 128.128,279.35 129.5,277.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.016' fill='%23fefffe' d='M 168.5,277.5 C 167.833,278.167 167.833,278.167 168.5,277.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.031' fill='%23dedede' d='M 77.5,278.5 C 77.631,279.239 77.4643,279.906 77,280.5C 76.3083,279.563 76.475,278.897 77.5,278.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.016' fill='%23c7c8c7' d='M 166.5,279.5 C 167.833,280.167 167.833,280.167 166.5,279.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.024' fill='%23d3d4d3' d='M 166.5,280.5 C 165.833,281.167 165.833,281.167 166.5,280.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.027' fill='%23dfe0df' d='M 165.5,281.5 C 164.833,282.167 164.833,282.167 165.5,281.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.039' fill='%23f4f4f4' d='M 75.5,281.5 C 76.525,281.897 76.6917,282.563 76,283.5C 75.5357,282.906 75.369,282.239 75.5,281.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%23fcfcfc' d='M 80.5,283.5 C 80.5,282.833 80.8333,282.5 81.5,282.5C 83.1541,283.75 84.8207,285.084 86.5,286.5C 88.872,290.479 87.7054,293.479 83,295.5C 81.9701,295.164 81.4701,294.497 81.5,293.5C 81.8128,289.958 81.4794,286.625 80.5,283.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.035' fill='%23fefffe' d='M 164.5,282.5 C 163.833,283.167 163.833,283.167 164.5,282.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.035' fill='%23fefffe' d='M 163.5,283.5 C 162.833,284.167 162.833,284.167 163.5,283.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.039' fill='%23fefffe' d='M 74.5,284.5 C 75.8333,285.167 75.8333,285.167 74.5,284.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.008' fill='%23fefffe' d='M 162.5,284.5 C 161.833,285.167 161.833,285.167 162.5,284.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.016' fill='%23c7c8c7' d='M 160.5,286.5 C 161.833,287.167 161.833,287.167 160.5,286.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.039' fill='%23ededed' d='M 73.5,286.5 C 74.525,286.897 74.6917,287.563 74,288.5C 73.5357,287.906 73.369,287.239 73.5,286.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%23a5a5a5' d='M 80.5,283.5 C 81.4794,286.625 81.8128,289.958 81.5,293.5C 80.7337,295.684 80.0671,298.018 79.5,300.5C 79.0431,301.298 78.3764,301.631 77.5,301.5C 75.0417,297.949 75.5417,294.615 79,291.5C 79.567,288.832 80.067,286.166 80.5,283.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.024' fill='%23d6d7d6' d='M 160.5,287.5 C 159.833,288.167 159.833,288.167 160.5,287.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.027' fill='%23dfe0df' d='M 159.5,288.5 C 158.833,289.167 158.833,289.167 159.5,288.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.012' fill='%23fefffe' d='M 173.5,288.5 C 174.833,289.167 174.833,289.167 173.5,288.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.035' fill='%23f5f6f5' d='M 158.5,289.5 C 157.833,290.167 157.833,290.167 158.5,289.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.035' fill='%23fefffe' d='M 157.5,290.5 C 156.833,291.167 156.833,291.167 157.5,290.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.027' fill='%23d7d7d7' d='M 72.5,290.5 C 73.525,290.897 73.6917,291.563 73,292.5C 72.5357,291.906 72.369,291.239 72.5,290.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.035' fill='%23fefffe' d='M 156.5,291.5 C 155.833,292.167 155.833,292.167 156.5,291.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.035' fill='%23fefffe' d='M 155.5,292.5 C 154.833,293.167 154.833,293.167 155.5,292.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.035' fill='%23fefffe' d='M 154.5,293.5 C 153.833,294.167 153.833,294.167 154.5,293.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%23e0e0e0' d='M 118.5,292.5 C 118.884,294.665 118.217,296.332 116.5,297.5C 115.214,295.069 115.881,293.403 118.5,292.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.031' fill='%23ededed' d='M 71.5,296.5 C 72.525,296.897 72.6917,297.563 72,298.5C 71.5357,297.906 71.369,297.239 71.5,296.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.004' fill='%23fefffe' d='M 147.5,299.5 C 148.833,300.167 148.833,300.167 147.5,299.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.035' fill='%23fefffe' d='M 147.5,300.5 C 146.833,301.167 146.833,301.167 147.5,300.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.035' fill='%23fefffe' d='M 146.5,301.5 C 145.833,302.167 145.833,302.167 146.5,301.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.035' fill='%23f8f9f8' d='M 145.5,302.5 C 144.833,303.167 144.833,303.167 145.5,302.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.031' fill='%23e8e9e8' d='M 144.5,303.5 C 143.833,304.167 143.833,304.167 144.5,303.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.004' fill='%23d1d1d1' d='M 141.5,305.5 C 141.842,304.662 142.508,304.328 143.5,304.5C 143.158,305.338 142.492,305.672 141.5,305.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.035' fill='%23f5f6f5' d='M 141.5,305.5 C 140.833,306.167 140.833,306.167 141.5,305.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.012' fill='%23d5d5d5' d='M 138.5,307.5 C 138.842,306.662 139.508,306.328 140.5,306.5C 140.158,307.338 139.492,307.672 138.5,307.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.031' fill='%23f2f2f2' d='M 136.5,308.5 C 136.842,307.662 137.508,307.328 138.5,307.5C 138.158,308.338 137.492,308.672 136.5,308.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.031' fill='%23f2f2f2' d='M 134.5,309.5 C 134.842,308.662 135.508,308.328 136.5,308.5C 136.158,309.338 135.492,309.672 134.5,309.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.02' fill='%23cacaca' d='M 70.5,308.5 C 71.6408,311.64 71.8075,314.973 71,318.5C 70.5017,315.183 70.335,311.85 70.5,308.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.027' fill='%23eaeaea' d='M 134.5,309.5 C 134.103,310.525 133.437,310.692 132.5,310C 133.094,309.536 133.761,309.369 134.5,309.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.02' fill='%23fefffe' d='M 129.5,311.5 C 129.897,310.475 130.563,310.308 131.5,311C 130.906,311.464 130.239,311.631 129.5,311.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.012' fill='%23d5d5d5' d='M 126.5,312.5 C 126.897,311.475 127.563,311.308 128.5,312C 127.906,312.464 127.239,312.631 126.5,312.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.035' fill='%23f8f9f8' d='M 126.5,312.5 C 125.833,313.167 125.833,313.167 126.5,312.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.004' fill='%23babbba' d='M 125.5,313.5 C 124.833,314.167 124.833,314.167 125.5,313.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.024' fill='%23fefffe' d='M 122.5,314.5 C 123.833,315.167 123.833,315.167 122.5,314.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.027' fill='%23fefffe' d='M 122.5,315.5 C 121.833,316.167 121.833,316.167 122.5,315.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.027' fill='%23fefffe' d='M 121.5,316.5 C 120.833,317.167 120.833,317.167 121.5,316.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.012' fill='%23d5d5d5' d='M 120.5,317.5 C 120.672,318.492 120.338,319.158 119.5,319.5C 119.328,318.508 119.662,317.842 120.5,317.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.027' fill='%23dfe0df' d='M 119.5,319.5 C 118.833,320.167 118.833,320.167 119.5,319.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.025' fill='%23f8f8f8' d='M 71.5,320.5 C 72.6129,321.946 72.7796,323.613 72,325.5C 71.5065,323.866 71.3398,322.199 71.5,320.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.035' fill='%23fefffe' d='M 118.5,320.5 C 117.833,321.167 117.833,321.167 118.5,320.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.027' fill='%23dfe0df' d='M 116.5,322.5 C 117.833,323.167 117.833,323.167 116.5,322.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.022' fill='%23f4f4f4' d='M 72.5,326.5 C 73.5735,327.251 73.7401,328.251 73,329.5C 72.5172,328.552 72.3505,327.552 72.5,326.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.027' fill='%23e3e3e3' d='M 115.5,339.5 C 115.334,334.489 115.501,329.489 116,324.5C 116.816,329.684 116.65,334.684 115.5,339.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.027' fill='%23e6e6e6' d='M 74.5,332.5 C 73.475,332.103 73.3083,331.437 74,330.5C 74.4643,331.094 74.631,331.761 74.5,332.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.02' fill='%23fefffe' d='M 74.5,332.5 C 75.525,332.897 75.6917,333.563 75,334.5C 74.5357,333.906 74.369,333.239 74.5,332.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.035' fill='%23fefffe' d='M 75.5,335.5 C 76.8333,336.167 76.8333,336.167 75.5,335.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.027' fill='%23dcdddc' d='M 77.5,338.5 C 76.8333,337.167 76.8333,337.167 77.5,338.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.008' fill='%23fefffe' d='M 77.5,338.5 C 78.8333,339.167 78.8333,339.167 77.5,338.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.027' fill='%23dcdddc' d='M 79.5,341.5 C 78.8333,340.167 78.8333,340.167 79.5,341.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.027' fill='%23e7e7e7' d='M 115.5,339.5 C 115.649,340.552 115.483,341.552 115,342.5C 114.26,341.251 114.427,340.251 115.5,339.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.035' fill='%23fefffe' d='M 79.5,341.5 C 80.1667,341.5 80.5,341.833 80.5,342.5C 80.1667,342.167 79.8333,341.833 79.5,341.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.024' fill='%23fefffe' d='M 80.5,342.5 C 81.1667,342.5 81.5,342.833 81.5,343.5C 81.1667,343.167 80.8333,342.833 80.5,342.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:1' fill='%236d6d6d' d='M 79.5,325.5 C 82.429,334.935 88.429,341.768 97.5,346C 103.459,347.364 107.126,345.197 108.5,339.5C 108.427,341.027 109.094,342.027 110.5,342.5C 107.11,349.459 101.777,351.293 94.5,348C 85.7055,343.365 80.0388,336.199 77.5,326.5C 78.1667,326.167 78.8333,325.833 79.5,325.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.008' fill='%23fefffe' d='M 81.5,343.5 C 82.1667,343.5 82.5,343.833 82.5,344.5C 82.1667,344.167 81.8333,343.833 81.5,343.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.031' fill='%23e2e3e2' d='M 113.5,343.5 C 114.833,344.167 114.833,344.167 113.5,343.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.008' fill='%23fefffe' d='M 82.5,344.5 C 83.1667,344.5 83.5,344.833 83.5,345.5C 83.1667,345.167 82.8333,344.833 82.5,344.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.008' fill='%23fefffe' d='M 83.5,345.5 C 84.1667,345.5 84.5,345.833 84.5,346.5C 84.1667,346.167 83.8333,345.833 83.5,345.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.027' fill='%23eaeaea' d='M 113.5,344.5 C 113.672,345.492 113.338,346.158 112.5,346.5C 112.328,345.508 112.662,344.842 113.5,344.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.024' fill='%23fefffe' d='M 84.5,346.5 C 85.1667,346.5 85.5,346.833 85.5,347.5C 85.1667,347.167 84.8333,346.833 84.5,346.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.031' fill='%23e2e3e2' d='M 112.5,346.5 C 111.833,347.167 111.833,347.167 112.5,346.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.035' fill='%23fefffe' d='M 85.5,347.5 C 86.1667,347.5 86.5,347.833 86.5,348.5C 86.1667,348.167 85.8333,347.833 85.5,347.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.039' fill='%23fefffe' d='M 111.5,347.5 C 110.833,348.167 110.833,348.167 111.5,347.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.027' fill='%23dcdddc' d='M 86.5,348.5 C 87.8333,349.167 87.8333,349.167 86.5,348.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.035' fill='%23fefffe' d='M 110.5,348.5 C 109.833,349.167 109.833,349.167 110.5,348.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.031' fill='%23fefffe' d='M 89.5,350.5 C 88.8333,349.167 88.8333,349.167 89.5,350.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.039' fill='%23fefffe' d='M 109.5,349.5 C 108.833,350.167 108.833,350.167 109.5,349.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.024' fill='%23f2f2f2' d='M 89.5,350.5 C 90.4916,350.328 91.1583,350.662 91.5,351.5C 90.5084,351.672 89.8417,351.338 89.5,350.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.031' fill='%23ececec' d='M 106.5,351.5 C 106.842,350.662 107.508,350.328 108.5,350.5C 108.158,351.338 107.492,351.672 106.5,351.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.031' fill='%23f2f2f2' d='M 91.5,351.5 C 92.2389,351.369 92.9056,351.536 93.5,352C 92.5632,352.692 91.8966,352.525 91.5,351.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.031' fill='%23fefffe' d='M 106.5,351.5 C 105.833,352.167 105.833,352.167 106.5,351.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.024' fill='%23fbfbfb' d='M 94.5,353.5 C 95.8333,352.167 97.1667,352.167 98.5,353.5C 97.1667,353.5 95.8333,353.5 94.5,353.5 Z'/%3E%3C/g%3E%3Cg%3E%3Cpath style='opacity:0.03' fill='%23f7f7f7' d='M 101.5,353.5 C 102.568,352.566 103.901,352.232 105.5,352.5C 105.5,352.833 105.5,353.167 105.5,353.5C 104.167,353.5 102.833,353.5 101.5,353.5 Z'/%3E%3C/g%3E%3C/svg%3E%0A");
    background-size: contain;
    opacity: 0.75;
    background-repeat: no-repeat;
    background-position: center;
}

.clanShadow {
    font-size: 4em;
    line-height: 1em;
    font-size: 82px;
    text-shadow: 6px 6px 0px #7b7ad0, 10px 10px 0px #2a296c;
}

.clanSubheader {
    display: block;
    font-family: 'Bungee Hairline';
    font-size: 2.5em;
    text-shadow: 0px 0px 15px white;
}

.clanShadowCategory {
    color: white;
    text-shadow: 6px 6px 0px #7b7ad0, 10px 10px 0px #2a296c;
}

.clanShadowCategoryDark {
    color: white;
    text-shadow: 6px 6px 0px #7b7ad0, 10px 10px 0px #2a296c;
}

.steps {
    display: flex;
    flex-wrap: wrap; 
    max-width: 100vw;
    justify-content: center;
    align-items: center;
    position: relative;
    gap: 1rem;
}

.step-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border-radius: 20%;
    border: none;
    background-color: rgb(28, 167, 229);
    color: white;
    transition: .4s;
    padding: 5px;
}

    .step-button[aria-expanded="true"] {
        width: 55px;
        height: 55px;
        background-color: rgb(28, 197, 229);
        color: #FFF;
        text-shadow: 2px 2px 2px #000;
    }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .steps {
        justify-content: space-around; /* Adjust layout for smaller screens */
        padding: 1rem;
    }

    .step-button {
        width: 20px;
        height: 20px;
        padding: 4px;
        font-size: 0.8rem; /* Smaller text */
    }
}

.error {
    background-color: red !important;
    color: #fff;
}

.done {
    background-color: dimgrey;
    color: #fff;
}

.step-item {
    z-index: 10;
    text-align: center;
}

#progress {
    -webkit-appearance: none;
    position: absolute;
    width: 95%;
    z-index: 5;
    height: 10px;
    margin-left: 18px;
    margin-bottom: 18px;
    margin-top: 0px;
}
    /* to customize progress bar */
    #progress::-webkit-progress-value {
        background-color: greenyellow;
        transition: .5s ease;
    }

    #progress::-webkit-progress-bar {
        background-color: darkslategrey;
    }

.photo-upload-box {
    width: 100%;
    height: 200px;
    border: 2px dashed #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

    .photo-upload-box:hover {
        border-color: #007bff;
    }

.upload-label {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #999;
}

    .upload-label span {
        pointer-events: none;
    }

.equal-box {
    height: 250px; /* Set fixed height for all boxes */
    margin: 5px;
}

.thumbnail-img {
    min-height: 200px;
    max-height: 200px; /* Control the image height */
    width: 100%; /* Make image width full */
    object-fit: cover; /* Scale image while maintaining aspect ratio */
}

.quoteField {
    font-style: italic;
    font-family: monospace;
    font-size: 18px;
    width: 100%;
    margin-top: 5px;
}