@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@400;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@700;800&display=swap');
/*==== 1. Abstracts ====*/
@import url("../vendor/fontawesome/css/all.min.css");

:root {
    --primary: #673ab7;
    --secondary: #48A9F8;
    --gradient: linear-gradient(73.08deg, #673ab7 15.14%, #9a70e5 92.25%);
    --primary-hover: #512e90;
    --primary-dark: #261543;
    --rgba-primary-1: rgba(103, 58, 183, 0.1);
    --rgba-primary-2: rgba(103, 58, 183, 0.2);
    --rgba-primary-3: rgba(103, 58, 183, 0.3);
    --rgba-primary-4: rgba(103, 58, 183, 0.4);
    --rgba-primary-5: rgba(103, 58, 183, 0.5);
    --rgba-primary-6: rgba(103, 58, 183, 0.6);
    --rgba-primary-7: rgba(103, 58, 183, 0.7);
    --rgba-primary-8: rgba(103, 58, 183, 0.8);
    --rgba-primary-9: rgba(103, 58, 183, 0.9);
    --font-family-base: Poppins, sans-serif;
    --font-family-title: Poppins, sans-serif;
    --border-radius-base: 8px;
    --border-color: #DDDDDD;
    --bg-white: #FFF;
    --title: #212529;
}

:root {
    --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: #673ab7;
    --bs-secondary: #48A9F8;
    --bs-success: #56c760;
    --bs-info: #58bad7;
    --bs-warning: #f0a901;
    --bs-danger: #f75a5b;
    --bs-light: #f4f4f4;
    --bs-dark: #000;
    --bs-primary-rgb: 103, 58, 183;
    --bs-secondary-rgb: 72, 169, 248;
    --bs-success-rgb: 86, 199, 96;
    --bs-info-rgb: 88, 186, 215;
    --bs-warning-rgb: 240, 169, 1;
    --bs-danger-rgb: 247, 90, 91;
    --bs-light-rgb: 244, 244, 244;
    --bs-dark-rgb: 0, 0, 0;
    --bs-white-rgb: 255, 255, 255;
    --bs-black-rgb: 0, 0, 0;
    --bs-body-color-rgb: 126, 126, 126;
    --bs-body-bg-rgb: 247, 247, 247;
    --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --bs-font-monospace: 'Almarai', sans-serif;
    --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
    --bs-body-font-family: 'Almarai', sans-serif;
    --bs-body-font-size: 0.875rem;
    --bs-body-font-weight: 500;
    --bs-body-line-height: 1.6;
    --bs-body-color: #7e7e7e;
    --bs-body-bg: #f7f7f7;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: smooth;
    }
}

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: #f7f7f7;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    direction: rtl;
    text-align: right;
}

hr {
    margin: 1rem 0;
    color: inherit;
    background-color: currentColor;
    border: 0;
    opacity: 0.25;
}

    hr:not([size]) {
        height: 1px;
    }

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 600;
    line-height: 1.2;
    color: #212529;
}

h1, .h1 {
    font-size: calc(1.3rem + 0.6vw);
}

@media (min-width: 1200px) {
    h1, .h1 {
        font-size: 1.75rem;
    }
}

h2, .h2 {
    font-size: calc(1.275rem + 0.3vw);
}

@media (min-width: 1200px) {
    h2, .h2 {
        font-size: 1.5rem;
    }
}

h3, .h3 {
    font-size: calc(1.2625rem + 0.15vw);
}

@media (min-width: 1200px) {
    h3, .h3 {
        font-size: 1.375rem;
    }
}

h4, .h4 {
    font-size: 1.25rem;
}

h5, .h5 {
    font-size: 1.125rem;
}

h6, .h6 {
    font-size: 1rem;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

abbr[title],
abbr[data-bs-original-title] {
    text-decoration: underline dotted;
    cursor: help;
    text-decoration-skip-ink: none;
}

address {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: inherit;
}

ol,
ul {
    padding-right: 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: .5rem;
    margin-right: 0;
}

blockquote {
    margin: 0 0 1rem;
}

b,
strong {
    font-weight: bolder;
}

small, .small {
    font-size: 0.875em;
}

mark, .mark {
    padding: 0.2em;
    background-color: #fcf8e3;
}

sub,
sup {
    position: relative;
    font-size: 0.75em;
    line-height: 0;
    vertical-align: baseline;
}

sub {
    bottom: -.25em;
}

sup {
    top: -.5em;
}

a {
    color: #673ab7;
    text-decoration: underline;
}

    a:hover {
        color: #522e92;
    }

    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;
    direction: ltr;
    unicode-bidi: bidi-override;
}

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: #d63384;
    word-wrap: break-word;
}

a > code {
    color: inherit;
}

kbd {
    padding: 0.2rem 0.4rem;
    font-size: 0.875em;
    color: #fff;
    background-color: #212529;
    border-radius: 0.2rem;
}

    kbd kbd {
        padding: 0;
        font-size: 1em;
        font-weight: 700;
    }

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: #AEAED5;
    text-align: right;
}

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]::-webkit-calendar-picker-indicator {
    display: none;
}

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: right;
    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: right;
}

::-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;
}

[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-file-upload-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.09375rem;
    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-right: 0;
    list-style: none;
}

.list-inline {
    padding-right: 0;
    list-style: none;
}

.list-inline-item {
    display: inline-block;
}

    .list-inline-item:not(:last-child) {
        margin-left: 0.5rem;
    }

.initialism {
    font-size: 0.875em;
    text-transform: uppercase;
}

.blockquote {
    margin-bottom: 1rem;
    font-size: 1.09375rem;
}

    .blockquote > :last-child {
        margin-bottom: 0;
    }

.blockquote-footer {
    margin-top: -1rem;
    margin-bottom: 1rem;
    font-size: 0.875em;
    color: #6c757d;
}

    .blockquote-footer::before {
        content: "\2014\00A0";
    }

.img-fluid {
    max-width: 100%;
    height: auto;
}

.img-thumbnail {
    padding: 0.25rem;
    background-color: #f7f7f7;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    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-sm,
.container-md,
.container-lg,
.container-xl {
    width: 100%;
    padding-left: var(--bs-gutter-x, 15px);
    padding-right: var(--bs-gutter-x, 15px);
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 576px) {
    .container, .container-sm {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container, .container-sm, .container-md {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container, .container-sm, .container-md, .container-lg {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container, .container-sm, .container-md, .container-lg, .container-xl {
        max-width: 1024px;
    }
}

.row {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-left: calc(-.5 * var(--bs-gutter-x));
    margin-right: calc(-.5 * var(--bs-gutter-x));
}

    .row > * {
        flex-shrink: 0;
        width: 100%;
        max-width: 100%;
        padding-left: calc(var(--bs-gutter-x) * .5);
        padding-right: calc(var(--bs-gutter-x) * .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.33333%;
}

.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.66667%;
}

.col-auto {
    flex: 0 0 auto;
    width: auto;
}

.col-1 {
    flex: 0 0 auto;
    width: 8.33333%;
}

.col-2 {
    flex: 0 0 auto;
    width: 16.66667%;
}

.col-3 {
    flex: 0 0 auto;
    width: 25%;
}

.col-4 {
    flex: 0 0 auto;
    width: 33.33333%;
}

.col-5 {
    flex: 0 0 auto;
    width: 41.66667%;
}

.col-6 {
    flex: 0 0 auto;
    width: 50%;
}

.col-7 {
    flex: 0 0 auto;
    width: 58.33333%;
}

.col-8 {
    flex: 0 0 auto;
    width: 66.66667%;
}

.col-9 {
    flex: 0 0 auto;
    width: 75%;
}

.col-10 {
    flex: 0 0 auto;
    width: 83.33333%;
}

.col-11 {
    flex: 0 0 auto;
    width: 91.66667%;
}

.col-12 {
    flex: 0 0 auto;
    width: 100%;
}

.offset-1 {
    margin-right: 8.33333%;
}

.offset-2 {
    margin-right: 16.66667%;
}

.offset-3 {
    margin-right: 25%;
}

.offset-4 {
    margin-right: 33.33333%;
}

.offset-5 {
    margin-right: 41.66667%;
}

.offset-6 {
    margin-right: 50%;
}

.offset-7 {
    margin-right: 58.33333%;
}

.offset-8 {
    margin-right: 66.66667%;
}

.offset-9 {
    margin-right: 75%;
}

.offset-10 {
    margin-right: 83.33333%;
}

.offset-11 {
    margin-right: 91.66667%;
}

.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.33333%;
    }

    .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.66667%;
    }

    .col-sm-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-sm-1 {
        flex: 0 0 auto;
        width: 8.33333%;
    }

    .col-sm-2 {
        flex: 0 0 auto;
        width: 16.66667%;
    }

    .col-sm-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-sm-4 {
        flex: 0 0 auto;
        width: 33.33333%;
    }

    .col-sm-5 {
        flex: 0 0 auto;
        width: 41.66667%;
    }

    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-sm-7 {
        flex: 0 0 auto;
        width: 58.33333%;
    }

    .col-sm-8 {
        flex: 0 0 auto;
        width: 66.66667%;
    }

    .col-sm-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-sm-10 {
        flex: 0 0 auto;
        width: 83.33333%;
    }

    .col-sm-11 {
        flex: 0 0 auto;
        width: 91.66667%;
    }

    .col-sm-12 {
        flex: 0 0 auto;
        width: 100%;
    }

    .offset-sm-0 {
        margin-right: 0;
    }

    .offset-sm-1 {
        margin-right: 8.33333%;
    }

    .offset-sm-2 {
        margin-right: 16.66667%;
    }

    .offset-sm-3 {
        margin-right: 25%;
    }

    .offset-sm-4 {
        margin-right: 33.33333%;
    }

    .offset-sm-5 {
        margin-right: 41.66667%;
    }

    .offset-sm-6 {
        margin-right: 50%;
    }

    .offset-sm-7 {
        margin-right: 58.33333%;
    }

    .offset-sm-8 {
        margin-right: 66.66667%;
    }

    .offset-sm-9 {
        margin-right: 75%;
    }

    .offset-sm-10 {
        margin-right: 83.33333%;
    }

    .offset-sm-11 {
        margin-right: 91.66667%;
    }

    .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.33333%;
    }

    .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.66667%;
    }

    .col-md-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-md-1 {
        flex: 0 0 auto;
        width: 8.33333%;
    }

    .col-md-2 {
        flex: 0 0 auto;
        width: 16.66667%;
    }

    .col-md-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-md-4 {
        flex: 0 0 auto;
        width: 33.33333%;
    }

    .col-md-5 {
        flex: 0 0 auto;
        width: 41.66667%;
    }

    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-md-7 {
        flex: 0 0 auto;
        width: 58.33333%;
    }

    .col-md-8 {
        flex: 0 0 auto;
        width: 66.66667%;
    }

    .col-md-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-md-10 {
        flex: 0 0 auto;
        width: 83.33333%;
    }

    .col-md-11 {
        flex: 0 0 auto;
        width: 91.66667%;
    }

    .col-md-12 {
        flex: 0 0 auto;
        width: 100%;
    }

    .offset-md-0 {
        margin-right: 0;
    }

    .offset-md-1 {
        margin-right: 8.33333%;
    }

    .offset-md-2 {
        margin-right: 16.66667%;
    }

    .offset-md-3 {
        margin-right: 25%;
    }

    .offset-md-4 {
        margin-right: 33.33333%;
    }

    .offset-md-5 {
        margin-right: 41.66667%;
    }

    .offset-md-6 {
        margin-right: 50%;
    }

    .offset-md-7 {
        margin-right: 58.33333%;
    }

    .offset-md-8 {
        margin-right: 66.66667%;
    }

    .offset-md-9 {
        margin-right: 75%;
    }

    .offset-md-10 {
        margin-right: 83.33333%;
    }

    .offset-md-11 {
        margin-right: 91.66667%;
    }

    .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.33333%;
    }

    .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.66667%;
    }

    .col-lg-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-lg-1 {
        flex: 0 0 auto;
        width: 8.33333%;
    }

    .col-lg-2 {
        flex: 0 0 auto;
        width: 16.66667%;
    }

    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333%;
    }

    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.66667%;
    }

    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-lg-7 {
        flex: 0 0 auto;
        width: 58.33333%;
    }

    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.66667%;
    }

    .col-lg-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-lg-10 {
        flex: 0 0 auto;
        width: 83.33333%;
    }

    .col-lg-11 {
        flex: 0 0 auto;
        width: 91.66667%;
    }

    .col-lg-12 {
        flex: 0 0 auto;
        width: 100%;
    }

    .offset-lg-0 {
        margin-right: 0;
    }

    .offset-lg-1 {
        margin-right: 8.33333%;
    }

    .offset-lg-2 {
        margin-right: 16.66667%;
    }

    .offset-lg-3 {
        margin-right: 25%;
    }

    .offset-lg-4 {
        margin-right: 33.33333%;
    }

    .offset-lg-5 {
        margin-right: 41.66667%;
    }

    .offset-lg-6 {
        margin-right: 50%;
    }

    .offset-lg-7 {
        margin-right: 58.33333%;
    }

    .offset-lg-8 {
        margin-right: 66.66667%;
    }

    .offset-lg-9 {
        margin-right: 75%;
    }

    .offset-lg-10 {
        margin-right: 83.33333%;
    }

    .offset-lg-11 {
        margin-right: 91.66667%;
    }

    .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.33333%;
    }

    .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.66667%;
    }

    .col-xl-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-xl-1 {
        flex: 0 0 auto;
        width: 8.33333%;
    }

    .col-xl-2 {
        flex: 0 0 auto;
        width: 16.66667%;
    }

    .col-xl-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-xl-4 {
        flex: 0 0 auto;
        width: 33.33333%;
    }

    .col-xl-5 {
        flex: 0 0 auto;
        width: 41.66667%;
    }

    .col-xl-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-xl-7 {
        flex: 0 0 auto;
        width: 58.33333%;
    }

    .col-xl-8 {
        flex: 0 0 auto;
        width: 66.66667%;
    }

    .col-xl-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-xl-10 {
        flex: 0 0 auto;
        width: 83.33333%;
    }

    .col-xl-11 {
        flex: 0 0 auto;
        width: 91.66667%;
    }

    .col-xl-12 {
        flex: 0 0 auto;
        width: 100%;
    }

    .offset-xl-0 {
        margin-right: 0;
    }

    .offset-xl-1 {
        margin-right: 8.33333%;
    }

    .offset-xl-2 {
        margin-right: 16.66667%;
    }

    .offset-xl-3 {
        margin-right: 25%;
    }

    .offset-xl-4 {
        margin-right: 33.33333%;
    }

    .offset-xl-5 {
        margin-right: 41.66667%;
    }

    .offset-xl-6 {
        margin-right: 50%;
    }

    .offset-xl-7 {
        margin-right: 58.33333%;
    }

    .offset-xl-8 {
        margin-right: 66.66667%;
    }

    .offset-xl-9 {
        margin-right: 75%;
    }

    .offset-xl-10 {
        margin-right: 83.33333%;
    }

    .offset-xl-11 {
        margin-right: 91.66667%;
    }

    .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: 1440) {
    .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.33333%;
    }

    .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.66667%;
    }

    .col-xxl-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-xxl-1 {
        flex: 0 0 auto;
        width: 8.33333%;
    }

    .col-xxl-2 {
        flex: 0 0 auto;
        width: 16.66667%;
    }

    .col-xxl-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-xxl-4 {
        flex: 0 0 auto;
        width: 33.33333%;
    }

    .col-xxl-5 {
        flex: 0 0 auto;
        width: 41.66667%;
    }

    .col-xxl-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-xxl-7 {
        flex: 0 0 auto;
        width: 58.33333%;
    }

    .col-xxl-8 {
        flex: 0 0 auto;
        width: 66.66667%;
    }

    .col-xxl-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-xxl-10 {
        flex: 0 0 auto;
        width: 83.33333%;
    }

    .col-xxl-11 {
        flex: 0 0 auto;
        width: 91.66667%;
    }

    .col-xxl-12 {
        flex: 0 0 auto;
        width: 100%;
    }

    .offset-xxl-0 {
        margin-right: 0;
    }

    .offset-xxl-1 {
        margin-right: 8.33333%;
    }

    .offset-xxl-2 {
        margin-right: 16.66667%;
    }

    .offset-xxl-3 {
        margin-right: 25%;
    }

    .offset-xxl-4 {
        margin-right: 33.33333%;
    }

    .offset-xxl-5 {
        margin-right: 41.66667%;
    }

    .offset-xxl-6 {
        margin-right: 50%;
    }

    .offset-xxl-7 {
        margin-right: 58.33333%;
    }

    .offset-xxl-8 {
        margin-right: 66.66667%;
    }

    .offset-xxl-9 {
        margin-right: 75%;
    }

    .offset-xxl-10 {
        margin-right: 83.33333%;
    }

    .offset-xxl-11 {
        margin-right: 91.66667%;
    }

    .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-bg: transparent;
    --bs-table-accent-bg: transparent;
    --bs-table-striped-color: #7e7e7e;
    --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
    --bs-table-active-color: #7e7e7e;
    --bs-table-active-bg: rgba(0, 0, 0, 0.1);
    --bs-table-hover-color: #7e7e7e;
    --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
    width: 100%;
    margin-bottom: 1rem;
    color: #7e7e7e;
    vertical-align: top;
    border-color: #E1E1F0;
}

    .table > :not(caption) > * > * {
        padding: 0.5rem 0.5rem;
        background-color: var(--bs-table-bg);
        border-bottom-width: 1px;
        box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
    }

    .table > tbody {
        vertical-align: inherit;
    }

    .table > thead {
        vertical-align: bottom;
    }

    .table > :not(:first-child) {
        border-top: 2px solid currentColor;
    }

.caption-top {
    caption-side: top;
}

.table-sm > :not(caption) > * > * {
    padding: 0.25rem 0.25rem;
}

.table-bordered > :not(caption) > * {
    border-width: 1px 0;
}

    .table-bordered > :not(caption) > * > * {
        border-width: 0 1px;
    }

.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-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-bg: #e1d8f1;
    --bs-table-striped-bg: #d6cde5;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #cbc2d9;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #d0c8df;
    --bs-table-hover-color: #000;
    color: #000;
    border-color: #cbc2d9;
}

.table-secondary {
    --bs-table-bg: #daeefe;
    --bs-table-striped-bg: #cfe2f1;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #c4d6e5;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #cadceb;
    --bs-table-hover-color: #000;
    color: #000;
    border-color: #c4d6e5;
}

.table-success {
    --bs-table-bg: #ddf4df;
    --bs-table-striped-bg: #d2e8d4;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #c7dcc9;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #cce2ce;
    --bs-table-hover-color: #000;
    color: #000;
    border-color: #c7dcc9;
}

.table-info {
    --bs-table-bg: #def1f7;
    --bs-table-striped-bg: #d3e5eb;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #c8d9de;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #cddfe4;
    --bs-table-hover-color: #000;
    color: #000;
    border-color: #c8d9de;
}

.table-warning {
    --bs-table-bg: #fceecc;
    --bs-table-striped-bg: #efe2c2;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #e3d6b8;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #e9dcbd;
    --bs-table-hover-color: #000;
    color: #000;
    border-color: #e3d6b8;
}

.table-danger {
    --bs-table-bg: #fddede;
    --bs-table-striped-bg: #f0d3d3;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #e4c8c8;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #eacdcd;
    --bs-table-hover-color: #000;
    color: #000;
    border-color: #e4c8c8;
}

.table-light {
    --bs-table-bg: #f4f4f4;
    --bs-table-striped-bg: #e8e8e8;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: gainsboro;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #e2e2e2;
    --bs-table-hover-color: #000;
    color: #000;
    border-color: gainsboro;
}

.table-dark {
    --bs-table-bg: #000;
    --bs-table-striped-bg: #0d0d0d;
    --bs-table-striped-color: #fff;
    --bs-table-active-bg: #1a1a1a;
    --bs-table-active-color: #fff;
    --bs-table-hover-bg: #131313;
    --bs-table-hover-color: #fff;
    color: #fff;
    border-color: #1a1a1a;
}

.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: 1439.98) {
    .table-responsive-xxl {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

.form-label {
    margin-bottom: 0.5rem;
}

.col-form-label {
    padding-top: calc(0.375rem + 1px);
    padding-bottom: calc(0.375rem + 1px);
    margin-bottom: 0;
    font-size: inherit;
    line-height: 1.6;
}

.col-form-label-lg {
    padding-top: calc(0.5rem + 1px);
    padding-bottom: calc(0.5rem + 1px);
    font-size: 1.09375rem;
}

.col-form-label-sm {
    padding-top: calc(0.25rem + 1px);
    padding-bottom: calc(0.25rem + 1px);
    font-size: 0.76563rem;
}

.form-text {
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: #AEAED5;
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.6;
    color: #7e7e7e;
    background-color: #f7f7f7;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    appearance: none;
    border-radius: 0.25rem;
    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: #7e7e7e;
    background-color: #f7f7f7;
    border-color: #b39ddb;
    outline: 0;
    box-shadow: 0 0 0 0rem rgba(103, 58, 183, 0.25);
}

.form-control::-webkit-date-and-time-value {
    height: 1.6em;
}

input#donation-amount:disabled {
    background: #fff;
}

.form-control::placeholder {
    color: #6c757d;
    opacity: 1;
}

.form-control:disabled, .form-control[readonly] {
    background-color: #e9ecef;
    opacity: 1;
}

.form-control::file-selector-button {
    padding: 0.375rem 0.75rem;
    margin: -0.375rem -0.75rem;
    margin-inline-end: 0.75rem;
    color: #7e7e7e;
    background-color: #e9ecef;
    pointer-events: none;
    border-color: inherit;
    border-style: solid;
    border-width: 0;
    border-inline-end-width: 1px;
    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::-webkit-file-upload-button {
    padding: 0.375rem 0.75rem;
    margin: -0.375rem -0.75rem;
    margin-inline-end: 0.75rem;
    color: #7e7e7e;
    background-color: #e9ecef;
    pointer-events: none;
    border-color: inherit;
    border-style: solid;
    border-width: 0;
    border-inline-end-width: 1px;
    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::-webkit-file-upload-button {
        transition: none;
    }
}

.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
    background-color: #dde0e3;
}

.form-control-plaintext {
    display: block;
    width: 100%;
    padding: 0.375rem 0;
    margin-bottom: 0;
    line-height: 1.6;
    color: #7e7e7e;
    background-color: transparent;
    border: solid transparent;
    border-width: 1px 0;
}

    .form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
        padding-left: 0;
        padding-right: 0;
    }

.form-control-sm {
    min-height: calc(1.6em + 0.5rem + 2px);
    padding: 0.25rem 0.5rem;
    font-size: 0.76563rem;
    border-radius: 0.2rem;
}

    .form-control-sm::file-selector-button {
        padding: 0.25rem 0.5rem;
        margin: -0.25rem -0.5rem;
        margin-inline-end: 0.5rem;
    }

    .form-control-sm::-webkit-file-upload-button {
        padding: 0.25rem 0.5rem;
        margin: -0.25rem -0.5rem;
        margin-inline-end: 0.5rem;
    }

.form-control-lg {
    min-height: calc(1.6em + 1rem + 2px);
    padding: 0.5rem 1rem;
    font-size: 1.09375rem;
    border-radius: 0.3rem;
}

    .form-control-lg::file-selector-button {
        padding: 0.5rem 1rem;
        margin: -0.5rem -1rem;
        margin-inline-end: 1rem;
    }

    .form-control-lg::-webkit-file-upload-button {
        padding: 0.5rem 1rem;
        margin: -0.5rem -1rem;
        margin-inline-end: 1rem;
    }

textarea.form-control {
    min-height: calc(1.6em + 0.75rem + 2px);
}

textarea.form-control-sm {
    min-height: calc(1.6em + 0.5rem + 2px);
}

textarea.form-control-lg {
    min-height: calc(1.6em + 1rem + 2px);
}

.form-control-color {
    width: 3rem;
    height: auto;
    padding: 0.375rem;
}

    .form-control-color:not(:disabled):not([readonly]) {
        cursor: pointer;
    }

    .form-control-color::-moz-color-swatch {
        height: 1.6em;
        border-radius: 0.25rem;
    }

    .form-control-color::-webkit-color-swatch {
        height: 1.6em;
        border-radius: 0.25rem;
    }

.form-select {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem 0.375rem 2.25rem;
    -moz-padding-start: calc(0.75rem - 3px);
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.6;
    color: #7e7e7e;
    background-color: #f7f7f7;
    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 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: left 0.75rem center;
    background-size: 16px 12px;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    appearance: none;
}

@media (prefers-reduced-motion: reduce) {
    .form-select {
        transition: none;
    }
}

.form-select:focus {
    border-color: #b39ddb;
    outline: 0;
    box-shadow: 0 0 0 0rem rgba(103, 58, 183, 0.25);
}

.form-select[multiple], .form-select[size]:not([size="1"]) {
    padding-left: 0.75rem;
    background-image: none;
}

.form-select:disabled {
    background-color: #e9ecef;
}

.form-select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #7e7e7e;
}

.form-select-sm {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    padding-right: 0.5rem;
    font-size: 0.76563rem;
    border-radius: 0.2rem;
}

.form-select-lg {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-right: 1rem;
    font-size: 1.09375rem;
    border-radius: 0.3rem;
}

.form-check {
    display: block;
    min-height: 1.4rem;
    padding-right: 1.5em;
    margin-bottom: 0.125rem;
}

    .form-check .form-check-input {
        float: right;
        margin-right: -1.5em;
    }

.form-check-input {
    width: 1em;
    height: 1em;
    margin-top: 0.3em;
    vertical-align: top;
    background-color: #f7f7f7;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid rgba(0, 0, 0, 0.25);
    appearance: none;
    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: #b39ddb;
        outline: 0;
        box-shadow: 0 0 0 0rem rgba(103, 58, 183, 0.25);
    }

    .form-check-input:checked {
        background-color: #00caca;
        border-color: #00caca;
    }

        .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 10l3 3l6-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: #673ab7;
        border-color: #673ab7;
        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 {
            opacity: 0.5;
        }

.form-switch {
    padding-right: 2.5em;
}

    .form-switch .form-check-input {
        width: 2em;
        margin-right: -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: right 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='%23b39ddb'/%3e%3c/svg%3e");
}

.form-switch .form-check-input:checked {
    background-position: left 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-check-inline {
    display: inline-block;
    margin-left: 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: 1rem;
    padding: 0;
    background-color: transparent;
    appearance: none;
}

    .form-range:focus {
        outline: 0;
    }

        .form-range:focus::-webkit-slider-thumb {
            box-shadow: 0 0 0 1px #f7f7f7, 0 0 0 0rem rgba(103, 58, 183, 0.25);
        }

        .form-range:focus::-moz-range-thumb {
            box-shadow: 0 0 0 1px #f7f7f7, 0 0 0 0rem rgba(103, 58, 183, 0.25);
        }

    .form-range::-moz-focus-outer {
        border: 0;
    }

    .form-range::-webkit-slider-thumb {
        width: 1rem;
        height: 1rem;
        margin-top: -0.25rem;
        background-color: #673ab7;
        border: 0;
        border-radius: 1rem;
        transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
        appearance: none;
    }

@media (prefers-reduced-motion: reduce) {
    .form-range::-webkit-slider-thumb {
        transition: none;
    }
}

.form-range::-webkit-slider-thumb:active {
    background-color: #d1c4e9;
}

.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: #673ab7;
    border: 0;
    border-radius: 1rem;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    appearance: none;
}

@media (prefers-reduced-motion: reduce) {
    .form-range::-moz-range-thumb {
        transition: none;
    }
}

.form-range::-moz-range-thumb:active {
    background-color: #d1c4e9;
}

.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-select {
        height: calc(3.5rem + 2px);
        line-height: 1.25;
    }

    .form-floating > label {
        position: absolute;
        top: 0;
        right: 0;
        height: 100%;
        padding: 1rem 0.75rem;
        pointer-events: none;
        border: 1px solid transparent;
        transform-origin: 100% 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 {
    padding: 1rem 0.75rem;
}

    .form-floating > .form-control::placeholder {
        color: transparent;
    }

    .form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown) {
        padding-top: 1.625rem;
        padding-bottom: 0.625rem;
    }

    .form-floating > .form-control:-webkit-autofill {
        padding-top: 1.625rem;
        padding-bottom: 0.625rem;
    }

.form-floating > .form-select {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
}

    .form-floating > .form-control:focus ~ label,
    .form-floating > .form-control:not(:placeholder-shown) ~ label,
    .form-floating > .form-select ~ label {
        opacity: 0.65;
        transform: scale(0.85) translateY(-0.5rem) translateX(-0.15rem);
    }

.form-floating > .form-control:-webkit-autofill ~ label {
    opacity: 0.65;
    transform: scale(0.85) translateY(-0.5rem) translateX(-0.15rem);
}

.input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}

    .input-group > .form-control,
    .input-group > .form-select {
        position: relative;
        flex: 1 1 auto;
        width: 1%;
        min-width: 0;
    }

        .input-group > .form-control:focus,
        .input-group > .form-select:focus {
            z-index: 3;
        }

    .input-group .btn {
        position: relative;
        z-index: 2;
    }

        .input-group .btn:focus {
            z-index: 3;
        }

.input-group-text {
    display: flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.6;
    color: #7e7e7e;
    text-align: center;
    white-space: nowrap;
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}

.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.09375rem;
    border-radius: 0.3rem;
}

.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.76563rem;
    border-radius: 0.2rem;
}

.input-group-lg > .form-select,
.input-group-sm > .form-select {
    padding-left: 3rem;
}

.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),
.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n + 3) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.input-group.has-validation > :nth-last-child(n + 3):not(.dropdown-toggle):not(.dropdown-menu),
.input-group.has-validation > .dropdown-toggle:nth-last-child(n + 4) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    margin-right: -1px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.valid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: #56c760;
}

.valid-tooltip {
    position: absolute;
    top: 100%;
    z-index: 5;
    display: none;
    max-width: 100%;
    padding: 0.25rem 0.5rem;
    margin-top: .1rem;
    font-size: 0.76563rem;
    color: #000;
    background-color: rgba(86, 199, 96, 0.9);
    border-radius: 0.25rem;
}

.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: #56c760;
    padding-left: calc(1.6em + 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='%2356c760' d='M2.3 6.73L.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: left calc(0.4em + 0.1875rem) center;
    background-size: calc(0.8em + 0.375rem) calc(0.8em + 0.375rem);
}

    .was-validated .form-control:valid:focus, .form-control.is-valid:focus {
        border-color: #56c760;
        box-shadow: 0 0 0 0rem rgba(86, 199, 96, 0.25);
    }

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
    padding-left: calc(1.6em + 0.75rem);
    background-position: top calc(0.4em + 0.1875rem) left calc(0.4em + 0.1875rem);
}

.was-validated .form-select:valid, .form-select.is-valid {
    border-color: #56c760;
}

    .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-left: 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 5l6 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='%2356c760' d='M2.3 6.73L.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: left 0.75rem center, center left 2.25rem;
        background-size: 16px 12px, calc(0.8em + 0.375rem) calc(0.8em + 0.375rem);
    }

    .was-validated .form-select:valid:focus, .form-select.is-valid:focus {
        border-color: #56c760;
        box-shadow: 0 0 0 0rem rgba(86, 199, 96, 0.25);
    }

.was-validated .form-check-input:valid, .form-check-input.is-valid {
    border-color: #56c760;
}

    .was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {
        background-color: #56c760;
    }

    .was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus {
        box-shadow: 0 0 0 0rem rgba(86, 199, 96, 0.25);
    }

    .was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
        color: #56c760;
    }

.form-check-inline .form-check-input ~ .valid-feedback {
    margin-right: .5em;
}

.was-validated .input-group .form-control:valid, .input-group .form-control.is-valid, .was-validated
.input-group .form-select:valid,
.input-group .form-select.is-valid {
    z-index: 1;
}

    .was-validated .input-group .form-control:valid:focus, .input-group .form-control.is-valid:focus, .was-validated
    .input-group .form-select:valid:focus,
    .input-group .form-select.is-valid:focus {
        z-index: 3;
    }

.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: #f75a5b;
}

.invalid-tooltip {
    position: absolute;
    top: 100%;
    z-index: 5;
    display: none;
    max-width: 100%;
    padding: 0.25rem 0.5rem;
    margin-top: .1rem;
    font-size: 0.76563rem;
    color: #000;
    background-color: rgba(247, 90, 91, 0.9);
    border-radius: 0.25rem;
}

.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: #f75a5b;
    padding-left: calc(1.6em + 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='%23f75a5b'%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='%23f75a5b' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: left calc(0.4em + 0.1875rem) center;
    background-size: calc(0.8em + 0.375rem) calc(0.8em + 0.375rem);
}

    .was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
        border-color: #f75a5b;
        box-shadow: 0 0 0 0rem rgba(247, 90, 91, 0.25);
    }

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
    padding-left: calc(1.6em + 0.75rem);
    background-position: top calc(0.4em + 0.1875rem) left calc(0.4em + 0.1875rem);
}

.was-validated .form-select:invalid, .form-select.is-invalid {
    border-color: #f75a5b;
}

    .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-left: 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 5l6 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='%23f75a5b'%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='%23f75a5b' stroke='none'/%3e%3c/svg%3e");
        background-position: left 0.75rem center, center left 2.25rem;
        background-size: 16px 12px, calc(0.8em + 0.375rem) calc(0.8em + 0.375rem);
    }

    .was-validated .form-select:invalid:focus, .form-select.is-invalid:focus {
        border-color: #f75a5b;
        box-shadow: 0 0 0 0rem rgba(247, 90, 91, 0.25);
    }

.was-validated .form-check-input:invalid, .form-check-input.is-invalid {
    border-color: #f75a5b;
}

    .was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked {
        background-color: #f75a5b;
    }

    .was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus {
        box-shadow: 0 0 0 0rem rgba(247, 90, 91, 0.25);
    }

    .was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
        color: #f75a5b;
    }

.form-check-inline .form-check-input ~ .invalid-feedback {
    margin-right: .5em;
}

.was-validated .input-group .form-control:invalid, .input-group .form-control.is-invalid, .was-validated
.input-group .form-select:invalid,
.input-group .form-select.is-invalid {
    z-index: 2;
}

    .was-validated .input-group .form-control:invalid:focus, .input-group .form-control.is-invalid:focus, .was-validated
    .input-group .form-select:invalid:focus,
    .input-group .form-select.is-invalid:focus {
        z-index: 3;
    }

.btn {
    display: inline-block;
    font-weight: 400;
    line-height: 1.6;
    color: #7e7e7e;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    border-radius: 0.25rem;
    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: #7e7e7e;
}

.btn-check:focus + .btn, .btn:focus {
    outline: 0;
    box-shadow: 0 0 0 0rem rgba(103, 58, 183, 0.25);
}

.btn:disabled, .btn.disabled,
fieldset:disabled .btn {
    pointer-events: none;
    opacity: 0.65;
}

.btn-primary {
    color: #fff;
    background-color: #673ab7;
    border-color: #673ab7;
}

    .btn-primary:hover {
        color: #fff;
        background-color: #58319c;
        border-color: #522e92;
    }

    .btn-check:focus + .btn-primary, .btn-primary:focus {
        color: #fff;
        background-color: #58319c;
        border-color: #522e92;
        box-shadow: 0 0 0 0rem rgba(126, 88, 194, 0.5);
    }

    .btn-check:checked + .btn-primary,
    .btn-check:active + .btn-primary, .btn-primary:active, .btn-primary.active,
    .show > .btn-primary.dropdown-toggle {
        color: #fff;
        background-color: #522e92;
        border-color: #4d2c89;
    }

        .btn-check:checked + .btn-primary:focus,
        .btn-check:active + .btn-primary:focus, .btn-primary:active:focus, .btn-primary.active:focus,
        .show > .btn-primary.dropdown-toggle:focus {
            box-shadow: 0 0 0 0rem rgba(126, 88, 194, 0.5);
        }

    .btn-primary:disabled, .btn-primary.disabled {
        color: #fff;
        background-color: #673ab7;
        border-color: #673ab7;
    }

.btn-secondary {
    color: #000;
    background-color: #48A9F8;
    border-color: #48A9F8;
}

    .btn-secondary:hover {
        color: #000;
        background-color: #63b6f9;
        border-color: #5ab2f9;
    }

    .btn-check:focus + .btn-secondary, .btn-secondary:focus {
        color: #000;
        background-color: #63b6f9;
        border-color: #5ab2f9;
        box-shadow: 0 0 0 0rem rgba(61, 144, 211, 0.5);
    }

    .btn-check:checked + .btn-secondary,
    .btn-check:active + .btn-secondary, .btn-secondary:active, .btn-secondary.active,
    .show > .btn-secondary.dropdown-toggle {
        color: #000;
        background-color: #6dbaf9;
        border-color: #5ab2f9;
    }

        .btn-check:checked + .btn-secondary:focus,
        .btn-check:active + .btn-secondary:focus, .btn-secondary:active:focus, .btn-secondary.active:focus,
        .show > .btn-secondary.dropdown-toggle:focus {
            box-shadow: 0 0 0 0rem rgba(61, 144, 211, 0.5);
        }

    .btn-secondary:disabled, .btn-secondary.disabled {
        color: #000;
        background-color: #48A9F8;
        border-color: #48A9F8;
    }

.btn-success {
    color: #000;
    background-color: #56c760;
    border-color: #56c760;
}

    .btn-success:hover {
        color: #000;
        background-color: #6fcf78;
        border-color: #67cd70;
    }

    .btn-check:focus + .btn-success, .btn-success:focus {
        color: #000;
        background-color: #6fcf78;
        border-color: #67cd70;
        box-shadow: 0 0 0 0rem rgba(73, 169, 82, 0.5);
    }

    .btn-check:checked + .btn-success,
    .btn-check:active + .btn-success, .btn-success:active, .btn-success.active,
    .show > .btn-success.dropdown-toggle {
        color: #000;
        background-color: #78d280;
        border-color: #67cd70;
    }

        .btn-check:checked + .btn-success:focus,
        .btn-check:active + .btn-success:focus, .btn-success:active:focus, .btn-success.active:focus,
        .show > .btn-success.dropdown-toggle:focus {
            box-shadow: 0 0 0 0rem rgba(73, 169, 82, 0.5);
        }

    .btn-success:disabled, .btn-success.disabled {
        color: #000;
        background-color: #56c760;
        border-color: #56c760;
    }

.btn-info {
    color: #000;
    background-color: #58bad7;
    border-color: #58bad7;
}

    .btn-info:hover {
        color: #000;
        background-color: #71c4dd;
        border-color: #69c1db;
    }

    .btn-check:focus + .btn-info, .btn-info:focus {
        color: #000;
        background-color: #71c4dd;
        border-color: #69c1db;
        box-shadow: 0 0 0 0rem rgba(75, 158, 183, 0.5);
    }

    .btn-check:checked + .btn-info,
    .btn-check:active + .btn-info, .btn-info:active, .btn-info.active,
    .show > .btn-info.dropdown-toggle {
        color: #000;
        background-color: #79c8df;
        border-color: #69c1db;
    }

        .btn-check:checked + .btn-info:focus,
        .btn-check:active + .btn-info:focus, .btn-info:active:focus, .btn-info.active:focus,
        .show > .btn-info.dropdown-toggle:focus {
            box-shadow: 0 0 0 0rem rgba(75, 158, 183, 0.5);
        }

    .btn-info:disabled, .btn-info.disabled {
        color: #000;
        background-color: #58bad7;
        border-color: #58bad7;
    }

.btn-warning {
    color: #000;
    background-color: #f0a901;
    border-color: #f0a901;
}

    .btn-warning:hover {
        color: #000;
        background-color: #f2b627;
        border-color: #f2b21a;
    }

    .btn-check:focus + .btn-warning, .btn-warning:focus {
        color: #000;
        background-color: #f2b627;
        border-color: #f2b21a;
        box-shadow: 0 0 0 0rem rgba(204, 144, 1, 0.5);
    }

    .btn-check:checked + .btn-warning,
    .btn-check:active + .btn-warning, .btn-warning:active, .btn-warning.active,
    .show > .btn-warning.dropdown-toggle {
        color: #000;
        background-color: #f3ba34;
        border-color: #f2b21a;
    }

        .btn-check:checked + .btn-warning:focus,
        .btn-check:active + .btn-warning:focus, .btn-warning:active:focus, .btn-warning.active:focus,
        .show > .btn-warning.dropdown-toggle:focus {
            box-shadow: 0 0 0 0rem rgba(204, 144, 1, 0.5);
        }

    .btn-warning:disabled, .btn-warning.disabled {
        color: #000;
        background-color: #f0a901;
        border-color: #f0a901;
    }

.btn-danger {
    color: #000;
    background-color: #f75a5b;
    border-color: #f75a5b;
}

    .btn-danger:hover {
        color: #000;
        background-color: #f87374;
        border-color: #f86b6b;
    }

    .btn-check:focus + .btn-danger, .btn-danger:focus {
        color: #000;
        background-color: #f87374;
        border-color: #f86b6b;
        box-shadow: 0 0 0 0rem rgba(210, 77, 77, 0.5);
    }

    .btn-check:checked + .btn-danger,
    .btn-check:active + .btn-danger, .btn-danger:active, .btn-danger.active,
    .show > .btn-danger.dropdown-toggle {
        color: #000;
        background-color: #f97b7c;
        border-color: #f86b6b;
    }

        .btn-check:checked + .btn-danger:focus,
        .btn-check:active + .btn-danger:focus, .btn-danger:active:focus, .btn-danger.active:focus,
        .show > .btn-danger.dropdown-toggle:focus {
            box-shadow: 0 0 0 0rem rgba(210, 77, 77, 0.5);
        }

    .btn-danger:disabled, .btn-danger.disabled {
        color: #000;
        background-color: #f75a5b;
        border-color: #f75a5b;
    }

.btn-light {
    color: #000;
    background-color: #f4f4f4;
    border-color: #f4f4f4;
}

    .btn-light:hover {
        color: #000;
        background-color: #f6f6f6;
        border-color: whitesmoke;
    }

    .btn-check:focus + .btn-light, .btn-light:focus {
        color: #000;
        background-color: #f6f6f6;
        border-color: whitesmoke;
        box-shadow: 0 0 0 0rem rgba(207, 207, 207, 0.5);
    }

    .btn-check:checked + .btn-light,
    .btn-check:active + .btn-light, .btn-light:active, .btn-light.active,
    .show > .btn-light.dropdown-toggle {
        color: #000;
        background-color: #f6f6f6;
        border-color: whitesmoke;
    }

        .btn-check:checked + .btn-light:focus,
        .btn-check:active + .btn-light:focus, .btn-light:active:focus, .btn-light.active:focus,
        .show > .btn-light.dropdown-toggle:focus {
            box-shadow: 0 0 0 0rem rgba(207, 207, 207, 0.5);
        }

    .btn-light:disabled, .btn-light.disabled {
        color: #000;
        background-color: #f4f4f4;
        border-color: #f4f4f4;
    }

.btn-dark {
    color: #fff;
    background-color: #000;
    border-color: #000;
}

    .btn-dark:hover {
        color: #fff;
        background-color: black;
        border-color: black;
    }

    .btn-check:focus + .btn-dark, .btn-dark:focus {
        color: #fff;
        background-color: black;
        border-color: black;
        box-shadow: 0 0 0 0rem rgba(38, 38, 38, 0.5);
    }

    .btn-check:checked + .btn-dark,
    .btn-check:active + .btn-dark, .btn-dark:active, .btn-dark.active,
    .show > .btn-dark.dropdown-toggle {
        color: #fff;
        background-color: black;
        border-color: black;
    }

        .btn-check:checked + .btn-dark:focus,
        .btn-check:active + .btn-dark:focus, .btn-dark:active:focus, .btn-dark.active:focus,
        .show > .btn-dark.dropdown-toggle:focus {
            box-shadow: 0 0 0 0rem rgba(38, 38, 38, 0.5);
        }

    .btn-dark:disabled, .btn-dark.disabled {
        color: #fff;
        background-color: #000;
        border-color: #000;
    }

.btn-outline-primary {
    color: #673ab7;
    border-color: #673ab7;
}

    .btn-outline-primary:hover {
        color: #fff;
        background-color: #673ab7;
        border-color: #673ab7;
    }

    .btn-check:focus + .btn-outline-primary, .btn-outline-primary:focus {
        box-shadow: 0 0 0 0rem rgba(103, 58, 183, 0.5);
    }

    .btn-check:checked + .btn-outline-primary,
    .btn-check:active + .btn-outline-primary, .btn-outline-primary:active, .btn-outline-primary.active, .btn-outline-primary.dropdown-toggle.show {
        color: #fff;
        background-color: #673ab7;
        border-color: #673ab7;
    }

        .btn-check:checked + .btn-outline-primary:focus,
        .btn-check:active + .btn-outline-primary:focus, .btn-outline-primary:active:focus, .btn-outline-primary.active:focus, .btn-outline-primary.dropdown-toggle.show:focus {
            box-shadow: 0 0 0 0rem rgba(103, 58, 183, 0.5);
        }

    .btn-outline-primary:disabled, .btn-outline-primary.disabled {
        color: #673ab7;
        background-color: transparent;
    }

.btn-outline-secondary {
    color: #48A9F8;
    border-color: #48A9F8;
}

    .btn-outline-secondary:hover {
        color: #000;
        background-color: #48A9F8;
        border-color: #48A9F8;
    }

    .btn-check:focus + .btn-outline-secondary, .btn-outline-secondary:focus {
        box-shadow: 0 0 0 0rem rgba(72, 169, 248, 0.5);
    }

    .btn-check:checked + .btn-outline-secondary,
    .btn-check:active + .btn-outline-secondary, .btn-outline-secondary:active, .btn-outline-secondary.active, .btn-outline-secondary.dropdown-toggle.show {
        color: #000;
        background-color: #48A9F8;
        border-color: #48A9F8;
    }

        .btn-check:checked + .btn-outline-secondary:focus,
        .btn-check:active + .btn-outline-secondary:focus, .btn-outline-secondary:active:focus, .btn-outline-secondary.active:focus, .btn-outline-secondary.dropdown-toggle.show:focus {
            box-shadow: 0 0 0 0rem rgba(72, 169, 248, 0.5);
        }

    .btn-outline-secondary:disabled, .btn-outline-secondary.disabled {
        color: #48A9F8;
        background-color: transparent;
    }

.btn-outline-success {
    color: #56c760;
    border-color: #56c760;
}

    .btn-outline-success:hover {
        color: #000;
        background-color: #56c760;
        border-color: #56c760;
    }

    .btn-check:focus + .btn-outline-success, .btn-outline-success:focus {
        box-shadow: 0 0 0 0rem rgba(86, 199, 96, 0.5);
    }

    .btn-check:checked + .btn-outline-success,
    .btn-check:active + .btn-outline-success, .btn-outline-success:active, .btn-outline-success.active, .btn-outline-success.dropdown-toggle.show {
        color: #000;
        background-color: #56c760;
        border-color: #56c760;
    }

        .btn-check:checked + .btn-outline-success:focus,
        .btn-check:active + .btn-outline-success:focus, .btn-outline-success:active:focus, .btn-outline-success.active:focus, .btn-outline-success.dropdown-toggle.show:focus {
            box-shadow: 0 0 0 0rem rgba(86, 199, 96, 0.5);
        }

    .btn-outline-success:disabled, .btn-outline-success.disabled {
        color: #56c760;
        background-color: transparent;
    }

.btn-outline-info {
    color: #58bad7;
    border-color: #58bad7;
}

    .btn-outline-info:hover {
        color: #000;
        background-color: #58bad7;
        border-color: #58bad7;
    }

    .btn-check:focus + .btn-outline-info, .btn-outline-info:focus {
        box-shadow: 0 0 0 0rem rgba(88, 186, 215, 0.5);
    }

    .btn-check:checked + .btn-outline-info,
    .btn-check:active + .btn-outline-info, .btn-outline-info:active, .btn-outline-info.active, .btn-outline-info.dropdown-toggle.show {
        color: #000;
        background-color: #58bad7;
        border-color: #58bad7;
    }

        .btn-check:checked + .btn-outline-info:focus,
        .btn-check:active + .btn-outline-info:focus, .btn-outline-info:active:focus, .btn-outline-info.active:focus, .btn-outline-info.dropdown-toggle.show:focus {
            box-shadow: 0 0 0 0rem rgba(88, 186, 215, 0.5);
        }

    .btn-outline-info:disabled, .btn-outline-info.disabled {
        color: #58bad7;
        background-color: transparent;
    }

.btn-outline-warning {
    color: #f0a901;
    border-color: #f0a901;
}

    .btn-outline-warning:hover {
        color: #000;
        background-color: #f0a901;
        border-color: #f0a901;
    }

    .btn-check:focus + .btn-outline-warning, .btn-outline-warning:focus {
        box-shadow: 0 0 0 0rem rgba(240, 169, 1, 0.5);
    }

    .btn-check:checked + .btn-outline-warning,
    .btn-check:active + .btn-outline-warning, .btn-outline-warning:active, .btn-outline-warning.active, .btn-outline-warning.dropdown-toggle.show {
        color: #000;
        background-color: #f0a901;
        border-color: #f0a901;
    }

        .btn-check:checked + .btn-outline-warning:focus,
        .btn-check:active + .btn-outline-warning:focus, .btn-outline-warning:active:focus, .btn-outline-warning.active:focus, .btn-outline-warning.dropdown-toggle.show:focus {
            box-shadow: 0 0 0 0rem rgba(240, 169, 1, 0.5);
        }

    .btn-outline-warning:disabled, .btn-outline-warning.disabled {
        color: #f0a901;
        background-color: transparent;
    }

.btn-outline-danger {
    color: #f75a5b;
    border-color: #f75a5b;
}

    .btn-outline-danger:hover {
        color: #000;
        background-color: #f75a5b;
        border-color: #f75a5b;
    }

    .btn-check:focus + .btn-outline-danger, .btn-outline-danger:focus {
        box-shadow: 0 0 0 0rem rgba(247, 90, 91, 0.5);
    }

    .btn-check:checked + .btn-outline-danger,
    .btn-check:active + .btn-outline-danger, .btn-outline-danger:active, .btn-outline-danger.active, .btn-outline-danger.dropdown-toggle.show {
        color: #000;
        background-color: #f75a5b;
        border-color: #f75a5b;
    }

        .btn-check:checked + .btn-outline-danger:focus,
        .btn-check:active + .btn-outline-danger:focus, .btn-outline-danger:active:focus, .btn-outline-danger.active:focus, .btn-outline-danger.dropdown-toggle.show:focus {
            box-shadow: 0 0 0 0rem rgba(247, 90, 91, 0.5);
        }

    .btn-outline-danger:disabled, .btn-outline-danger.disabled {
        color: #f75a5b;
        background-color: transparent;
    }

.btn-outline-light {
    color: #f4f4f4;
    border-color: #f4f4f4;
}

    .btn-outline-light:hover {
        color: #000;
        background-color: #f4f4f4;
        border-color: #f4f4f4;
    }

    .btn-check:focus + .btn-outline-light, .btn-outline-light:focus {
        box-shadow: 0 0 0 0rem rgba(244, 244, 244, 0.5);
    }

    .btn-check:checked + .btn-outline-light,
    .btn-check:active + .btn-outline-light, .btn-outline-light:active, .btn-outline-light.active, .btn-outline-light.dropdown-toggle.show {
        color: #000;
        background-color: #f4f4f4;
        border-color: #f4f4f4;
    }

        .btn-check:checked + .btn-outline-light:focus,
        .btn-check:active + .btn-outline-light:focus, .btn-outline-light:active:focus, .btn-outline-light.active:focus, .btn-outline-light.dropdown-toggle.show:focus {
            box-shadow: 0 0 0 0rem rgba(244, 244, 244, 0.5);
        }

    .btn-outline-light:disabled, .btn-outline-light.disabled {
        color: #f4f4f4;
        background-color: transparent;
    }

.btn-outline-dark {
    color: #000;
    border-color: #000;
}

    .btn-outline-dark:hover {
        color: #fff;
        background-color: #000;
        border-color: #000;
    }

    .btn-check:focus + .btn-outline-dark, .btn-outline-dark:focus {
        box-shadow: 0 0 0 0rem rgba(0, 0, 0, 0.5);
    }

    .btn-check:checked + .btn-outline-dark,
    .btn-check:active + .btn-outline-dark, .btn-outline-dark:active, .btn-outline-dark.active, .btn-outline-dark.dropdown-toggle.show {
        color: #fff;
        background-color: #000;
        border-color: #000;
    }

        .btn-check:checked + .btn-outline-dark:focus,
        .btn-check:active + .btn-outline-dark:focus, .btn-outline-dark:active:focus, .btn-outline-dark.active:focus, .btn-outline-dark.dropdown-toggle.show:focus {
            box-shadow: 0 0 0 0rem rgba(0, 0, 0, 0.5);
        }

    .btn-outline-dark:disabled, .btn-outline-dark.disabled {
        color: #000;
        background-color: transparent;
    }

.btn-link {
    font-weight: 400;
    color: #673ab7;
    text-decoration: underline;
}

    .btn-link:hover {
        color: #522e92;
    }

    .btn-link:disabled, .btn-link.disabled {
        color: #6c757d;
    }

.btn-lg, .btn-group-lg > .btn {
    padding: 0.5rem 1rem;
    font-size: 1.09375rem;
    border-radius: 0.3rem;
}

.btn-sm, .btn-group-sm > .btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.76563rem;
    border-radius: 0.2rem;
}

.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 {
    position: relative;
}

.dropdown-toggle {
    white-space: nowrap;
}

    .dropdown-toggle::after {
        display: inline-block;
        margin-right: 0.255em;
        vertical-align: 0.255em;
        content: "";
        border-top: 0.3em solid;
        border-left: 0.3em solid transparent;
        border-bottom: 0;
        border-right: 0.3em solid transparent;
    }

    .dropdown-toggle:empty::after {
        margin-right: 0;
    }

.dropdown-menu {
    position: absolute;
    z-index: 1000;
    display: none;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 0.875rem;
    color: #7e7e7e;
    text-align: right;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}

    .dropdown-menu[data-bs-popper] {
        top: 100%;
        right: 0;
        margin-top: 0.125rem;
    }

.dropdown-menu-start {
    --bs-position: start;
}

    .dropdown-menu-start[data-bs-popper] {
        left: auto;
        right: 0;
    }

.dropdown-menu-end {
    --bs-position: end;
}

    .dropdown-menu-end[data-bs-popper] {
        left: 0;
        right: auto;
    }

@media (min-width: 576px) {
    .dropdown-menu-sm-start {
        --bs-position: start;
    }

        .dropdown-menu-sm-start[data-bs-popper] {
            left: auto;
            right: 0;
        }

    .dropdown-menu-sm-end {
        --bs-position: end;
    }

        .dropdown-menu-sm-end[data-bs-popper] {
            left: 0;
            right: auto;
        }
}

@media (min-width: 768px) {
    .dropdown-menu-md-start {
        --bs-position: start;
    }

        .dropdown-menu-md-start[data-bs-popper] {
            left: auto;
            right: 0;
        }

    .dropdown-menu-md-end {
        --bs-position: end;
    }

        .dropdown-menu-md-end[data-bs-popper] {
            left: 0;
            right: auto;
        }
}

@media (min-width: 992px) {
    .dropdown-menu-lg-start {
        --bs-position: start;
    }

        .dropdown-menu-lg-start[data-bs-popper] {
            left: auto;
            right: 0;
        }

    .dropdown-menu-lg-end {
        --bs-position: end;
    }

        .dropdown-menu-lg-end[data-bs-popper] {
            left: 0;
            right: auto;
        }
}

@media (min-width: 1200px) {
    .dropdown-menu-xl-start {
        --bs-position: start;
    }

        .dropdown-menu-xl-start[data-bs-popper] {
            left: auto;
            right: 0;
        }

    .dropdown-menu-xl-end {
        --bs-position: end;
    }

        .dropdown-menu-xl-end[data-bs-popper] {
            left: 0;
            right: auto;
        }
}

@media (min-width: 1440) {
    .dropdown-menu-xxl-start {
        --bs-position: start;
    }

        .dropdown-menu-xxl-start[data-bs-popper] {
            left: auto;
            right: 0;
        }

    .dropdown-menu-xxl-end {
        --bs-position: end;
    }

        .dropdown-menu-xxl-end[data-bs-popper] {
            left: 0;
            right: auto;
        }
}

.dropup .dropdown-menu[data-bs-popper] {
    top: auto;
    bottom: 100%;
    margin-top: 0;
    margin-bottom: 0.125rem;
}

.dropup .dropdown-toggle::after {
    display: inline-block;
    margin-right: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0;
    border-left: 0.3em solid transparent;
    border-bottom: 0.3em solid;
    border-right: 0.3em solid transparent;
}

.dropup .dropdown-toggle:empty::after {
    margin-right: 0;
}

.dropend .dropdown-menu[data-bs-popper] {
    top: 0;
    left: auto;
    right: 100%;
    margin-top: 0;
    margin-right: 0.125rem;
}

.dropend .dropdown-toggle::after {
    display: inline-block;
    margin-right: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid transparent;
    border-left: 0;
    border-bottom: 0.3em solid transparent;
    border-right: 0.3em solid;
}

.dropend .dropdown-toggle:empty::after {
    margin-right: 0;
}

.dropend .dropdown-toggle::after {
    vertical-align: 0;
}

.dropstart .dropdown-menu[data-bs-popper] {
    top: 0;
    left: 100%;
    right: auto;
    margin-top: 0;
    margin-left: 0.125rem;
}

.dropstart .dropdown-toggle::after {
    display: inline-block;
    margin-right: 0.255em;
    vertical-align: 0.255em;
    content: "";
}

.dropstart .dropdown-toggle::after {
    display: none;
}

.dropstart .dropdown-toggle::before {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid transparent;
    border-left: 0.3em solid;
    border-bottom: 0.3em solid transparent;
}

.dropstart .dropdown-toggle:empty::after {
    margin-right: 0;
}

.dropstart .dropdown-toggle::before {
    vertical-align: 0;
}

.dropdown-divider {
    height: 0;
    margin: 0.5rem 0;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 0.25rem 1rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}

    .dropdown-item:hover, .dropdown-item:focus {
        color: #1e2125;
        background-color: #e9ecef;
    }

    .dropdown-item.active, .dropdown-item:active {
        color: #fff;
        text-decoration: none;
        background-color: #673ab7;
    }

    .dropdown-item.disabled, .dropdown-item:disabled {
        color: #adb5bd;
        pointer-events: none;
        background-color: transparent;
    }

.dropdown-menu.show {
    display: block;
}

.dropdown-header {
    display: block;
    padding: 0.5rem 1rem;
    margin-bottom: 0;
    font-size: 0.76563rem;
    color: #6c757d;
    white-space: nowrap;
}

.dropdown-item-text {
    display: block;
    padding: 0.25rem 1rem;
    color: #212529;
}

.dropdown-menu-dark {
    color: #dee2e6;
    background-color: #343a40;
    border-color: rgba(0, 0, 0, 0.15);
}

    .dropdown-menu-dark .dropdown-item {
        color: #dee2e6;
    }

        .dropdown-menu-dark .dropdown-item:hover, .dropdown-menu-dark .dropdown-item:focus {
            color: #fff;
            background-color: rgba(255, 255, 255, 0.15);
        }

        .dropdown-menu-dark .dropdown-item.active, .dropdown-menu-dark .dropdown-item:active {
            color: #fff;
            background-color: #673ab7;
        }

        .dropdown-menu-dark .dropdown-item.disabled, .dropdown-menu-dark .dropdown-item:disabled {
            color: #adb5bd;
        }

    .dropdown-menu-dark .dropdown-divider {
        border-color: rgba(0, 0, 0, 0.15);
    }

    .dropdown-menu-dark .dropdown-item-text {
        color: #dee2e6;
    }

    .dropdown-menu-dark .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 > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) {
    margin-right: -1px;
}

.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn {
    border-top-left-radius: 0;
    border-bottom-left-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-right-radius: 0;
    border-bottom-right-radius: 0;
}

.dropdown-toggle-split {
    padding-left: 0.5625rem;
    padding-right: 0.5625rem;
}

    .dropdown-toggle-split::after,
    .dropup .dropdown-toggle-split::after,
    .dropend .dropdown-toggle-split::after {
        margin-right: 0;
    }

.dropstart .dropdown-toggle-split::before {
    margin-left: 0;
}

.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
    padding-left: 0.375rem;
    padding-right: 0.375rem;
}

.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
    padding-left: 0.75rem;
    padding-right: 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: -1px;
        }

        .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
        .btn-group-vertical > .btn-group:not(:last-child) > .btn {
            border-bottom-left-radius: 0;
            border-bottom-right-radius: 0;
        }

        .btn-group-vertical > .btn ~ .btn,
        .btn-group-vertical > .btn-group:not(:first-child) > .btn {
            border-top-right-radius: 0;
            border-top-left-radius: 0;
        }

.nav {
    display: flex;
    flex-wrap: wrap;
    padding-right: 0;
    margin-bottom: 0;
    list-style: none;
}

.nav-link {
    display: block;
    padding: 0.5rem 1rem;
    color: #673ab7;
    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: #522e92;
}

.nav-link.disabled {
    color: #6c757d;
    pointer-events: none;
    cursor: default;
}

.nav-tabs {
    border-bottom: 1px solid #dee2e6;
}

    .nav-tabs .nav-link {
        margin-bottom: -1px;
        background: none;
        border: 1px solid transparent;
        border-top-right-radius: 0.25rem;
        border-top-left-radius: 0.25rem;
    }

        .nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
            border-color: #e9ecef #e9ecef #dee2e6;
            isolation: isolate;
        }

        .nav-tabs .nav-link.disabled {
            color: #6c757d;
            background-color: transparent;
            border-color: transparent;
        }

        .nav-tabs .nav-link.active,
        .nav-tabs .nav-item.show .nav-link {
            color: #495057;
            background-color: #f7f7f7;
            border-color: #dee2e6 #dee2e6 #f7f7f7;
        }

    .nav-tabs .dropdown-menu {
        margin-top: -1px;
        border-top-right-radius: 0;
        border-top-left-radius: 0;
    }

.nav-pills .nav-link {
    background: none;
    border: 0;
    border-radius: 0.25rem;
}

    .nav-pills .nav-link.active,
    .nav-pills .show > .nav-link {
        color: #fff;
        background-color: #673ab7;
    }

.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 {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

    .navbar > .container,
    .navbar > .container-fluid, .navbar > .container-sm, .navbar > .container-md, .navbar > .container-lg, .navbar > .container-xl {
        display: flex;
        flex-wrap: inherit;
        align-items: center;
        justify-content: space-between;
    }

.navbar-brand {
    padding-top: 0.325rem;
    padding-bottom: 0.325rem;
    margin-left: 1rem;
    font-size: 1.09375rem;
    text-decoration: none;
    white-space: nowrap;
}

.navbar-nav {
    display: flex;
    flex-direction: column;
    padding-right: 0;
    margin-bottom: 0;
    list-style: none;
}

    .navbar-nav .nav-link {
        padding-left: 0;
        padding-right: 0;
    }

    .navbar-nav .dropdown-menu {
        position: static;
    }

.navbar-text {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
}

.navbar-toggler {
    padding: 0.25rem 0.75rem;
    font-size: 1.09375rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    transition: box-shadow 0.15s ease-in-out;
}

@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 0rem;
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    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-left: 0.5rem;
                padding-right: 0.5rem;
            }

        .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-header {
            display: none;
        }

        .navbar-expand-sm .offcanvas {
            position: inherit;
            bottom: 0;
            z-index: 1000;
            flex-grow: 1;
            visibility: visible !important;
            background-color: transparent;
            border-left: 0;
            border-right: 0;
            transition: none;
            transform: none;
        }

        .navbar-expand-sm .offcanvas-top,
        .navbar-expand-sm .offcanvas-bottom {
            height: auto;
            border-top: 0;
            border-bottom: 0;
        }

        .navbar-expand-sm .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-left: 0.5rem;
                padding-right: 0.5rem;
            }

        .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-header {
            display: none;
        }

        .navbar-expand-md .offcanvas {
            position: inherit;
            bottom: 0;
            z-index: 1000;
            flex-grow: 1;
            visibility: visible !important;
            background-color: transparent;
            border-left: 0;
            border-right: 0;
            transition: none;
            transform: none;
        }

        .navbar-expand-md .offcanvas-top,
        .navbar-expand-md .offcanvas-bottom {
            height: auto;
            border-top: 0;
            border-bottom: 0;
        }

        .navbar-expand-md .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-left: 0.5rem;
                padding-right: 0.5rem;
            }

        .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-header {
            display: none;
        }

        .navbar-expand-lg .offcanvas {
            position: inherit;
            bottom: 0;
            z-index: 1000;
            flex-grow: 1;
            visibility: visible !important;
            background-color: transparent;
            border-left: 0;
            border-right: 0;
            transition: none;
            transform: none;
        }

        .navbar-expand-lg .offcanvas-top,
        .navbar-expand-lg .offcanvas-bottom {
            height: auto;
            border-top: 0;
            border-bottom: 0;
        }

        .navbar-expand-lg .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-left: 0.5rem;
                padding-right: 0.5rem;
            }

        .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-header {
            display: none;
        }

        .navbar-expand-xl .offcanvas {
            position: inherit;
            bottom: 0;
            z-index: 1000;
            flex-grow: 1;
            visibility: visible !important;
            background-color: transparent;
            border-left: 0;
            border-right: 0;
            transition: none;
            transform: none;
        }

        .navbar-expand-xl .offcanvas-top,
        .navbar-expand-xl .offcanvas-bottom {
            height: auto;
            border-top: 0;
            border-bottom: 0;
        }

        .navbar-expand-xl .offcanvas-body {
            display: flex;
            flex-grow: 0;
            padding: 0;
            overflow-y: visible;
        }
}

@media (min-width: 1440) {
    .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-left: 0.5rem;
                padding-right: 0.5rem;
            }

        .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-header {
            display: none;
        }

        .navbar-expand-xxl .offcanvas {
            position: inherit;
            bottom: 0;
            z-index: 1000;
            flex-grow: 1;
            visibility: visible !important;
            background-color: transparent;
            border-left: 0;
            border-right: 0;
            transition: none;
            transform: none;
        }

        .navbar-expand-xxl .offcanvas-top,
        .navbar-expand-xxl .offcanvas-bottom {
            height: auto;
            border-top: 0;
            border-bottom: 0;
        }

        .navbar-expand-xxl .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-left: 0.5rem;
            padding-right: 0.5rem;
        }

    .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-header {
        display: none;
    }

    .navbar-expand .offcanvas {
        position: inherit;
        bottom: 0;
        z-index: 1000;
        flex-grow: 1;
        visibility: visible !important;
        background-color: transparent;
        border-left: 0;
        border-right: 0;
        transition: none;
        transform: none;
    }

    .navbar-expand .offcanvas-top,
    .navbar-expand .offcanvas-bottom {
        height: auto;
        border-top: 0;
        border-bottom: 0;
    }

    .navbar-expand .offcanvas-body {
        display: flex;
        flex-grow: 0;
        padding: 0;
        overflow-y: visible;
    }

.navbar-light .navbar-brand {
    color: rgba(0, 0, 0, 0.9);
}

    .navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
        color: rgba(0, 0, 0, 0.9);
    }

.navbar-light .navbar-nav .nav-link {
    color: rgba(0, 0, 0, 0.55);
}

    .navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
        color: rgba(0, 0, 0, 0.7);
    }

    .navbar-light .navbar-nav .nav-link.disabled {
        color: rgba(0, 0, 0, 0.3);
    }

    .navbar-light .navbar-nav .show > .nav-link,
    .navbar-light .navbar-nav .nav-link.active {
        color: rgba(0, 0, 0, 0.9);
    }

.navbar-light .navbar-toggler {
    color: rgba(0, 0, 0, 0.55);
    border-color: rgba(0, 0, 0, 0.1);
}

.navbar-light .navbar-toggler-icon {
    background-image: 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");
}

.navbar-light .navbar-text {
    color: rgba(0, 0, 0, 0.55);
}

    .navbar-light .navbar-text a,
    .navbar-light .navbar-text a:hover,
    .navbar-light .navbar-text a:focus {
        color: rgba(0, 0, 0, 0.9);
    }

.navbar-dark .navbar-brand {
    color: #fff;
}

    .navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
        color: #fff;
    }

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.55);
}

    .navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
        color: rgba(255, 255, 255, 0.75);
    }

    .navbar-dark .navbar-nav .nav-link.disabled {
        color: rgba(255, 255, 255, 0.25);
    }

    .navbar-dark .navbar-nav .show > .nav-link,
    .navbar-dark .navbar-nav .nav-link.active {
        color: #fff;
    }

.navbar-dark .navbar-toggler {
    color: rgba(255, 255, 255, 0.55);
    border-color: rgba(255, 255, 255, 0.1);
}

.navbar-dark .navbar-toggler-icon {
    background-image: 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");
}

.navbar-dark .navbar-text {
    color: rgba(255, 255, 255, 0.55);
}

    .navbar-dark .navbar-text a,
    .navbar-dark .navbar-text a:hover,
    .navbar-dark .navbar-text a:focus {
        color: #fff;
    }

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0.25rem;
}

    .card > hr {
        margin-left: 0;
        margin-right: 0;
    }

    .card > .list-group {
        border-top: inherit;
        border-bottom: inherit;
    }

        .card > .list-group:first-child {
            border-top-width: 0;
            border-top-right-radius: calc(0.25rem - 1px);
            border-top-left-radius: calc(0.25rem - 1px);
        }

        .card > .list-group:last-child {
            border-bottom-width: 0;
            border-bottom-left-radius: calc(0.25rem - 1px);
            border-bottom-right-radius: calc(0.25rem - 1px);
        }

        .card > .card-header + .list-group,
        .card > .list-group + .card-footer {
            border-top: 0;
        }

.card-body {
    flex: 1 1 auto;
    padding: 1rem 1rem;
}

.card-title {
    margin-bottom: 0.5rem;
}

.card-subtitle {
    margin-top: -0.25rem;
    margin-bottom: 0;
}

.card-text:last-child {
    margin-bottom: 0;
}

.card-link + .card-link {
    margin-right: 1rem;
}

.card-header {
    padding: 0.5rem 1rem;
    margin-bottom: 0;
    background-color: rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

    .card-header:first-child {
        border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
    }

.card-footer {
    padding: 0.5rem 1rem;
    background-color: rgba(0, 0, 0, 0.03);
    border-top: 1px solid rgba(0, 0, 0, 0.125);
}

    .card-footer:last-child {
        border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
    }

.card-header-tabs {
    margin-left: -0.5rem;
    margin-bottom: -0.5rem;
    margin-right: -0.5rem;
    border-bottom: 0;
}

    .card-header-tabs .nav-link.active {
        background-color: #fff;
        border-bottom-color: #fff;
    }

.card-header-pills {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
}

.card-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 1rem;
    border-radius: calc(0.25rem - 1px);
}

.card-img,
.card-img-top,
.card-img-bottom {
    width: 100%;
}

.card-img,
.card-img-top {
    border-top-right-radius: calc(0.25rem - 1px);
    border-top-left-radius: calc(0.25rem - 1px);
}

.card-img,
.card-img-bottom {
    border-bottom-left-radius: calc(0.25rem - 1px);
    border-bottom-right-radius: calc(0.25rem - 1px);
}

.card-group > .card {
    margin-bottom: 15px;
}

@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-right: 0;
                border-right: 0;
            }

            .card-group > .card:not(:last-child) {
                border-top-left-radius: 0;
                border-bottom-left-radius: 0;
            }

                .card-group > .card:not(:last-child) .card-img-top,
                .card-group > .card:not(:last-child) .card-header {
                    border-top-left-radius: 0;
                }

                .card-group > .card:not(:last-child) .card-img-bottom,
                .card-group > .card:not(:last-child) .card-footer {
                    border-bottom-left-radius: 0;
                }

            .card-group > .card:not(:first-child) {
                border-top-right-radius: 0;
                border-bottom-right-radius: 0;
            }

                .card-group > .card:not(:first-child) .card-img-top,
                .card-group > .card:not(:first-child) .card-header {
                    border-top-right-radius: 0;
                }

                .card-group > .card:not(:first-child) .card-img-bottom,
                .card-group > .card:not(:first-child) .card-footer {
                    border-bottom-right-radius: 0;
                }
}

.accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 0.875rem;
    color: #7e7e7e;
    text-align: right;
    background-color: #f7f7f7;
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    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;
}

@media (prefers-reduced-motion: reduce) {
    .accordion-button {
        transition: none;
    }
}

.accordion-button:not(.collapsed) {
    color: #5d34a5;
    background-color: #f0ebf8;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

    .accordion-button:not(.collapsed)::after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%235d34a5'%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");
        transform: rotate(180deg);
    }

.accordion-button::after {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: auto;
    content: "";
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%237e7e7e'%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");
    background-repeat: no-repeat;
    background-size: 1.25rem;
    transition: transform 0.2s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .accordion-button::after {
        transition: none;
    }
}

.accordion-button:hover {
    z-index: 2;
}

.accordion-button:focus {
    z-index: 3;
    border-color: #b39ddb;
    outline: 0;
    box-shadow: 0 0 0 0rem rgba(103, 58, 183, 0.25);
}

.accordion-header {
    margin-bottom: 0;
}

.accordion-item {
    background-color: #f7f7f7;
    border: 1px solid rgba(0, 0, 0, 0.125);
}

    .accordion-item:first-of-type {
        border-top-right-radius: 0.25rem;
        border-top-left-radius: 0.25rem;
    }

        .accordion-item:first-of-type .accordion-button {
            border-top-right-radius: calc(0.25rem - 1px);
            border-top-left-radius: calc(0.25rem - 1px);
        }

    .accordion-item:not(:first-of-type) {
        border-top: 0;
    }

    .accordion-item:last-of-type {
        border-bottom-left-radius: 0.25rem;
        border-bottom-right-radius: 0.25rem;
    }

        .accordion-item:last-of-type .accordion-button.collapsed {
            border-bottom-left-radius: calc(0.25rem - 1px);
            border-bottom-right-radius: calc(0.25rem - 1px);
        }

        .accordion-item:last-of-type .accordion-collapse {
            border-bottom-left-radius: 0.25rem;
            border-bottom-right-radius: 0.25rem;
        }

.accordion-body {
    padding: 1rem 1.25rem;
}

.accordion-flush .accordion-collapse {
    border-width: 0;
}

.accordion-flush .accordion-item {
    border-left: 0;
    border-right: 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 {
        border-radius: 0;
    }

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 0 0;
    margin-bottom: 1rem;
    list-style: none;
}

.breadcrumb-item + .breadcrumb-item {
    padding-right: 0.5rem;
}

    .breadcrumb-item + .breadcrumb-item::before {
        float: right;
        padding-left: 0.5rem;
        color: #6c757d;
        content: var(--bs-breadcrumb-divider, "/");
    }

.breadcrumb-item.active {
    color: #6c757d;
}

.pagination {
    display: flex;
    padding-right: 0;
    list-style: none;
}

.page-link {
    position: relative;
    display: block;
    color: #673ab7;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #dee2e6;
    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: #522e92;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.page-link:focus {
    z-index: 3;
    color: #522e92;
    background-color: #e9ecef;
    outline: 0;
    box-shadow: 0 0 0 0rem rgba(103, 58, 183, 0.25);
}

.page-item:not(:first-child) .page-link {
    margin-right: -1px;
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #673ab7;
    border-color: #673ab7;
}

.page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #fff;
    border-color: #dee2e6;
}

.page-link {
    padding: 0.375rem 0.75rem;
}

.page-item:first-child .page-link {
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
}

.page-item:last-child .page-link {
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}

.pagination-lg .page-link {
    padding: 0.75rem 1.5rem;
    font-size: 1.09375rem;
}

.pagination-lg .page-item:first-child .page-link {
    border-top-right-radius: 0.3rem;
    border-bottom-right-radius: 0.3rem;
}

.pagination-lg .page-item:last-child .page-link {
    border-top-left-radius: 0.3rem;
    border-bottom-left-radius: 0.3rem;
}

.pagination-sm .page-link {
    padding: 0.25rem 0.5rem;
    font-size: 0.76563rem;
}

.pagination-sm .page-item:first-child .page-link {
    border-top-right-radius: 0.2rem;
    border-bottom-right-radius: 0.2rem;
}

.pagination-sm .page-item:last-child .page-link {
    border-top-left-radius: 0.2rem;
    border-bottom-left-radius: 0.2rem;
}

.badge {
    display: inline-block;
    padding: 0.35em 0.65em;
    font-size: 0.75em;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
}

    .badge:empty {
        display: none;
    }

.btn .badge {
    position: relative;
    top: -1px;
}

.alert {
    position: relative;
    padding: 1rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}

.alert-heading {
    color: inherit;
}

.alert-link {
    font-weight: 700;
}

.alert-dismissible {
    padding-left: 3rem;
}

    .alert-dismissible .btn-close {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 2;
        padding: 1.25rem 1rem;
    }

.alert-primary {
    color: #3e236e;
    background-color: #e1d8f1;
    border-color: #d1c4e9;
}

    .alert-primary .alert-link {
        color: #321c58;
    }

.alert-secondary {
    color: #2b6595;
    background-color: #daeefe;
    border-color: #c8e5fd;
}

    .alert-secondary .alert-link {
        color: #225177;
    }

.alert-success {
    color: #34773a;
    background-color: #ddf4df;
    border-color: #cceecf;
}

    .alert-success .alert-link {
        color: #2a5f2e;
    }

.alert-info {
    color: #357081;
    background-color: #def1f7;
    border-color: #cdeaf3;
}

    .alert-info .alert-link {
        color: #2a5a67;
    }

.alert-warning {
    color: #906501;
    background-color: #fceecc;
    border-color: #fbe5b3;
}

    .alert-warning .alert-link {
        color: #735101;
    }

.alert-danger {
    color: #943637;
    background-color: #fddede;
    border-color: #fdcece;
}

    .alert-danger .alert-link {
        color: #762b2c;
    }

.alert-light {
    color: #626262;
    background-color: #fdfdfd;
    border-color: #fcfcfc;
}

    .alert-light .alert-link {
        color: #4e4e4e;
    }

.alert-dark {
    color: black;
    background-color: #cccccc;
    border-color: #b3b3b3;
}

    .alert-dark .alert-link {
        color: black;
    }

@keyframes progress-bar-stripes {
    0% {
        background-position-x: 1rem;
    }
}

.progress {
    display: flex;
    height: 1rem;
    overflow: hidden;
    font-size: 0.65625rem;
    background-color: #e9ecef;
    border-radius: 0.25rem;
}

.progress-bar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    background-color: #673ab7;
    transition: width 0.6s ease;
}

@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: 1rem 1rem;
}

.progress-bar-animated {
    animation: 1s linear infinite progress-bar-stripes;
}

@media (prefers-reduced-motion: reduce) {
    .progress-bar-animated {
        animation: none;
    }
}

.list-group {
    display: flex;
    flex-direction: column;
    padding-right: 0;
    margin-bottom: 0;
    border-radius: 0.25rem;
}

.list-group-numbered {
    list-style-type: none;
    counter-reset: section;
}

    .list-group-numbered > li::before {
        content: counters(section, ".") ". ";
        counter-increment: section;
    }

.list-group-item-action {
    width: 100%;
    color: #495057;
    text-align: inherit;
}

    .list-group-item-action:hover, .list-group-item-action:focus {
        z-index: 1;
        color: #495057;
        text-decoration: none;
        background-color: #f8f9fa;
    }

    .list-group-item-action:active {
        color: #7e7e7e;
        background-color: #e9ecef;
    }

.list-group-item {
    position: relative;
    display: block;
    padding: 0.5rem 1rem;
    color: #212529;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.125);
}

    .list-group-item:first-child {
        border-top-right-radius: inherit;
        border-top-left-radius: inherit;
    }

    .list-group-item:last-child {
        border-bottom-left-radius: inherit;
        border-bottom-right-radius: inherit;
    }

    .list-group-item.disabled, .list-group-item:disabled {
        color: #6c757d;
        pointer-events: none;
        background-color: #fff;
    }

    .list-group-item.active {
        z-index: 2;
        color: #fff;
        background-color: #673ab7;
        border-color: #673ab7;
    }

    .list-group-item + .list-group-item {
        border-top-width: 0;
    }

        .list-group-item + .list-group-item.active {
            margin-top: -1px;
            border-top-width: 1px;
        }

.list-group-horizontal {
    flex-direction: row;
}

    .list-group-horizontal > .list-group-item:first-child {
        border-bottom-right-radius: 0.25rem;
        border-top-left-radius: 0;
    }

    .list-group-horizontal > .list-group-item:last-child {
        border-top-left-radius: 0.25rem;
        border-bottom-right-radius: 0;
    }

    .list-group-horizontal > .list-group-item.active {
        margin-top: 0;
    }

    .list-group-horizontal > .list-group-item + .list-group-item {
        border-top-width: 1px;
        border-right-width: 0;
    }

        .list-group-horizontal > .list-group-item + .list-group-item.active {
            margin-right: -1px;
            border-right-width: 1px;
        }

@media (min-width: 576px) {
    .list-group-horizontal-sm {
        flex-direction: row;
    }

        .list-group-horizontal-sm > .list-group-item:first-child {
            border-bottom-right-radius: 0.25rem;
            border-top-left-radius: 0;
        }

        .list-group-horizontal-sm > .list-group-item:last-child {
            border-top-left-radius: 0.25rem;
            border-bottom-right-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: 1px;
            border-right-width: 0;
        }

            .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
                margin-right: -1px;
                border-right-width: 1px;
            }
}

@media (min-width: 768px) {
    .list-group-horizontal-md {
        flex-direction: row;
    }

        .list-group-horizontal-md > .list-group-item:first-child {
            border-bottom-right-radius: 0.25rem;
            border-top-left-radius: 0;
        }

        .list-group-horizontal-md > .list-group-item:last-child {
            border-top-left-radius: 0.25rem;
            border-bottom-right-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: 1px;
            border-right-width: 0;
        }

            .list-group-horizontal-md > .list-group-item + .list-group-item.active {
                margin-right: -1px;
                border-right-width: 1px;
            }
}

@media (min-width: 992px) {
    .list-group-horizontal-lg {
        flex-direction: row;
    }

        .list-group-horizontal-lg > .list-group-item:first-child {
            border-bottom-right-radius: 0.25rem;
            border-top-left-radius: 0;
        }

        .list-group-horizontal-lg > .list-group-item:last-child {
            border-top-left-radius: 0.25rem;
            border-bottom-right-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: 1px;
            border-right-width: 0;
        }

            .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
                margin-right: -1px;
                border-right-width: 1px;
            }
}

@media (min-width: 1200px) {
    .list-group-horizontal-xl {
        flex-direction: row;
    }

        .list-group-horizontal-xl > .list-group-item:first-child {
            border-bottom-right-radius: 0.25rem;
            border-top-left-radius: 0;
        }

        .list-group-horizontal-xl > .list-group-item:last-child {
            border-top-left-radius: 0.25rem;
            border-bottom-right-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: 1px;
            border-right-width: 0;
        }

            .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
                margin-right: -1px;
                border-right-width: 1px;
            }
}

@media (min-width: 1440) {
    .list-group-horizontal-xxl {
        flex-direction: row;
    }

        .list-group-horizontal-xxl > .list-group-item:first-child {
            border-bottom-right-radius: 0.25rem;
            border-top-left-radius: 0;
        }

        .list-group-horizontal-xxl > .list-group-item:last-child {
            border-top-left-radius: 0.25rem;
            border-bottom-right-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: 1px;
            border-right-width: 0;
        }

            .list-group-horizontal-xxl > .list-group-item + .list-group-item.active {
                margin-right: -1px;
                border-right-width: 1px;
            }
}

.list-group-flush {
    border-radius: 0;
}

    .list-group-flush > .list-group-item {
        border-width: 0 0 1px;
    }

        .list-group-flush > .list-group-item:last-child {
            border-bottom-width: 0;
        }

.list-group-item-primary {
    color: #3e236e;
    background-color: #e1d8f1;
}

    .list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
        color: #3e236e;
        background-color: #cbc2d9;
    }

    .list-group-item-primary.list-group-item-action.active {
        color: #fff;
        background-color: #3e236e;
        border-color: #3e236e;
    }

.list-group-item-secondary {
    color: #2b6595;
    background-color: #daeefe;
}

    .list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
        color: #2b6595;
        background-color: #c4d6e5;
    }

    .list-group-item-secondary.list-group-item-action.active {
        color: #fff;
        background-color: #2b6595;
        border-color: #2b6595;
    }

.list-group-item-success {
    color: #34773a;
    background-color: #ddf4df;
}

    .list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
        color: #34773a;
        background-color: #c7dcc9;
    }

    .list-group-item-success.list-group-item-action.active {
        color: #fff;
        background-color: #34773a;
        border-color: #34773a;
    }

.list-group-item-info {
    color: #357081;
    background-color: #def1f7;
}

    .list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
        color: #357081;
        background-color: #c8d9de;
    }

    .list-group-item-info.list-group-item-action.active {
        color: #fff;
        background-color: #357081;
        border-color: #357081;
    }

.list-group-item-warning {
    color: #906501;
    background-color: #fceecc;
}

    .list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
        color: #906501;
        background-color: #e3d6b8;
    }

    .list-group-item-warning.list-group-item-action.active {
        color: #fff;
        background-color: #906501;
        border-color: #906501;
    }

.list-group-item-danger {
    color: #943637;
    background-color: #fddede;
}

    .list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
        color: #943637;
        background-color: #e4c8c8;
    }

    .list-group-item-danger.list-group-item-action.active {
        color: #fff;
        background-color: #943637;
        border-color: #943637;
    }

.list-group-item-light {
    color: #626262;
    background-color: #fdfdfd;
}

    .list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
        color: #626262;
        background-color: #e4e4e4;
    }

    .list-group-item-light.list-group-item-action.active {
        color: #fff;
        background-color: #626262;
        border-color: #626262;
    }

.list-group-item-dark {
    color: black;
    background-color: #cccccc;
}

    .list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
        color: black;
        background-color: #b8b8b8;
    }

    .list-group-item-dark.list-group-item-action.active {
        color: #fff;
        background-color: black;
        border-color: black;
    }

.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 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
    border: 0;
    border-radius: 0.25rem;
    opacity: 0.5;
}

    .btn-close:hover {
        color: #000;
        text-decoration: none;
        opacity: 0.75;
    }

    .btn-close:focus {
        outline: 0;
        box-shadow: 0 0 0 0rem rgba(103, 58, 183, 0.25);
        opacity: 1;
    }

    .btn-close:disabled, .btn-close.disabled {
        pointer-events: none;
        user-select: none;
        opacity: 0.25;
    }

.btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%);
}

.toast {
    width: 350px;
    max-width: 100%;
    font-size: 0.875rem;
    pointer-events: auto;
    background-color: rgba(255, 255, 255, 0.85);
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}

    .toast.showing {
        opacity: 0;
    }

    .toast:not(.show) {
        display: none;
    }

.toast-container {
    width: max-content;
    max-width: 100%;
    pointer-events: none;
}

    .toast-container > :not(:last-child) {
        margin-bottom: 15px;
    }

.toast-header {
    display: flex;
    align-items: center;
    padding: 0.5rem 0.75rem;
    color: #6c757d;
    background-color: rgba(255, 255, 255, 0.85);
    background-clip: padding-box;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    border-top-right-radius: calc(0.25rem - 1px);
    border-top-left-radius: calc(0.25rem - 1px);
}

    .toast-header .btn-close {
        margin-left: -0.375rem;
        margin-right: 0.75rem;
    }

.toast-body {
    padding: 0.75rem;
    word-wrap: break-word;
}

.modal {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1055;
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 0.5rem;
    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% - 1rem);
}

    .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% - 1rem);
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
    outline: 0;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1050;
    width: 100vw;
    height: 100vh;
    background-color: #000;
}

    .modal-backdrop.fade {
        opacity: 0;
    }

    .modal-backdrop.show {
        opacity: 0.5;
    }

.modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #E1E1F0;
    border-top-right-radius: calc(0.3rem - 1px);
    border-top-left-radius: calc(0.3rem - 1px);
}

    .modal-header .btn-close {
        padding: 0.5rem 0.5rem;
        margin: -0.5rem auto -0.5rem -0.5rem;
    }

.modal-title {
    margin-bottom: 0;
    line-height: 1.6;
}

.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 1rem;
}

.modal-footer {
    display: flex;
    flex-wrap: wrap;
    flex-shrink: 0;
    align-items: center;
    justify-content: flex-end;
    padding: 0.75rem;
    border-top: 1px solid #E1E1F0;
    border-bottom-left-radius: calc(0.3rem - 1px);
    border-bottom-right-radius: calc(0.3rem - 1px);
}

    .modal-footer > * {
        margin: 0.25rem;
    }

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto;
    }

    .modal-dialog-scrollable {
        height: calc(100% - 3.5rem);
    }

    .modal-dialog-centered {
        min-height: calc(100% - 3.5rem);
    }

    .modal-sm {
        max-width: 300px;
    }
}

@media (min-width: 992px) {
    .modal-lg,
    .modal-xl {
        max-width: 800px;
    }
}

@media (min-width: 1200px) {
    .modal-xl {
        max-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 {
        border-radius: 0;
    }

    .modal-fullscreen .modal-body {
        overflow-y: auto;
    }

    .modal-fullscreen .modal-footer {
        border-radius: 0;
    }

@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 {
            border-radius: 0;
        }

        .modal-fullscreen-sm-down .modal-body {
            overflow-y: auto;
        }

        .modal-fullscreen-sm-down .modal-footer {
            border-radius: 0;
        }
}

@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 {
            border-radius: 0;
        }

        .modal-fullscreen-md-down .modal-body {
            overflow-y: auto;
        }

        .modal-fullscreen-md-down .modal-footer {
            border-radius: 0;
        }
}

@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 {
            border-radius: 0;
        }

        .modal-fullscreen-lg-down .modal-body {
            overflow-y: auto;
        }

        .modal-fullscreen-lg-down .modal-footer {
            border-radius: 0;
        }
}

@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 {
            border-radius: 0;
        }

        .modal-fullscreen-xl-down .modal-body {
            overflow-y: auto;
        }

        .modal-fullscreen-xl-down .modal-footer {
            border-radius: 0;
        }
}

@media (max-width: 1439.98) {
    .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 {
            border-radius: 0;
        }

        .modal-fullscreen-xxl-down .modal-body {
            overflow-y: auto;
        }

        .modal-fullscreen-xxl-down .modal-footer {
            border-radius: 0;
        }
}

.tooltip {
    position: absolute;
    z-index: 1080;
    display: block;
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: 1.6;
    text-align: right;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    white-space: normal;
    line-break: auto;
    font-size: 0.76563rem;
    word-wrap: break-word;
    opacity: 0;
}

    .tooltip.show {
        opacity: 0.9;
    }

    .tooltip .tooltip-arrow {
        position: absolute;
        display: block;
        width: 0.8rem;
        height: 0.4rem;
    }

        .tooltip .tooltip-arrow::before {
            position: absolute;
            content: "";
            border-color: transparent;
            border-style: solid;
        }

.bs-tooltip-top, .bs-tooltip-auto[data-popper-placement^="top"] {
    padding: 0.4rem 0;
}

    .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: 0.4rem 0.4rem 0;
            border-top-color: #000;
        }

.bs-tooltip-end, .bs-tooltip-auto[data-popper-placement^="right"] {
    padding: 0 0.4rem;
}

    .bs-tooltip-end .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow {
        right: 0;
        width: 0.4rem;
        height: 0.8rem;
    }

        .bs-tooltip-end .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow::before {
            left: -1px;
            border-width: 0.4rem 0 0.4rem 0.4rem;
            border-left-color: #000;
        }

.bs-tooltip-bottom, .bs-tooltip-auto[data-popper-placement^="bottom"] {
    padding: 0.4rem 0;
}

    .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 0.4rem 0.4rem;
            border-bottom-color: #000;
        }

.bs-tooltip-start, .bs-tooltip-auto[data-popper-placement^="left"] {
    padding: 0 0.4rem;
}

    .bs-tooltip-start .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow {
        left: 0;
        width: 0.4rem;
        height: 0.8rem;
    }

        .bs-tooltip-start .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow::before {
            right: -1px;
            border-width: 0.4rem 0.4rem 0.4rem 0;
            border-right-color: #000;
        }

.tooltip-inner {
    max-width: 200px;
    padding: 0.25rem 0.5rem;
    color: #fff;
    text-align: center;
    background-color: #000;
    border-radius: 0.25rem;
}

.popover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1070;
    display: block;
    max-width: 276px;
    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: 1.6;
    text-align: right;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    white-space: normal;
    line-break: auto;
    font-size: 0.76563rem;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
}

    .popover .popover-arrow {
        position: absolute;
        display: block;
        width: 1rem;
        height: 0.5rem;
    }

        .popover .popover-arrow::before, .popover .popover-arrow::after {
            position: absolute;
            display: block;
            content: "";
            border-color: transparent;
            border-style: solid;
        }

.bs-popover-top > .popover-arrow, .bs-popover-auto[data-popper-placement^="top"] > .popover-arrow {
    bottom: calc(-0.5rem - 1px);
}

    .bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^="top"] > .popover-arrow::before {
        bottom: 0;
        border-width: 0.5rem 0.5rem 0;
        border-top-color: rgba(0, 0, 0, 0.25);
    }

    .bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^="top"] > .popover-arrow::after {
        bottom: 1px;
        border-width: 0.5rem 0.5rem 0;
        border-top-color: #fff;
    }

.bs-popover-end > .popover-arrow, .bs-popover-auto[data-popper-placement^="right"] > .popover-arrow {
    right: calc(-0.5rem - 1px);
    width: 0.5rem;
    height: 1rem;
}

    .bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^="right"] > .popover-arrow::before {
        right: 0;
        border-width: 0.5rem 0 0.5rem 0.5rem;
        border-left-color: rgba(0, 0, 0, 0.25);
    }

    .bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^="right"] > .popover-arrow::after {
        right: 1px;
        border-width: 0.5rem 0 0.5rem 0.5rem;
        border-left-color: #fff;
    }

.bs-popover-bottom > .popover-arrow, .bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow {
    top: calc(-0.5rem - 1px);
}

    .bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow::before {
        top: 0;
        border-width: 0 0.5rem 0.5rem 0.5rem;
        border-bottom-color: rgba(0, 0, 0, 0.25);
    }

    .bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow::after {
        top: 1px;
        border-width: 0 0.5rem 0.5rem 0.5rem;
        border-bottom-color: #fff;
    }

.bs-popover-bottom .popover-header::before, .bs-popover-auto[data-popper-placement^="bottom"] .popover-header::before {
    position: absolute;
    top: 0;
    right: 50%;
    display: block;
    width: 1rem;
    margin-right: -0.5rem;
    content: "";
    border-bottom: 1px solid #f0f0f0;
}

.bs-popover-start > .popover-arrow, .bs-popover-auto[data-popper-placement^="left"] > .popover-arrow {
    left: calc(-0.5rem - 1px);
    width: 0.5rem;
    height: 1rem;
}

    .bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^="left"] > .popover-arrow::before {
        left: 0;
        border-width: 0.5rem 0.5rem 0.5rem 0;
        border-right-color: rgba(0, 0, 0, 0.25);
    }

    .bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^="left"] > .popover-arrow::after {
        left: 1px;
        border-width: 0.5rem 0.5rem 0.5rem 0;
        border-right-color: #fff;
    }

.popover-header {
    padding: 0.5rem 1rem;
    margin-bottom: 0;
    font-size: 0.875rem;
    color: #212529;
    background-color: #f0f0f0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    border-top-right-radius: calc(0.3rem - 1px);
    border-top-left-radius: calc(0.3rem - 1px);
}

    .popover-header:empty {
        display: none;
    }

.popover-body {
    padding: 1rem 1rem;
    color: #7e7e7e;
}

.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: right;
    width: 100%;
    margin-left: -100%;
    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 {
    right: 0;
}

.carousel-control-next {
    left: 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%;
}

.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='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-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='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;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-left: 15%;
    margin-bottom: 1rem;
    margin-right: 15%;
    list-style: none;
}

    .carousel-indicators [data-bs-target] {
        box-sizing: content-box;
        flex: 0 1 auto;
        width: 30px;
        height: 3px;
        padding: 0;
        margin-left: 3px;
        margin-right: 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;
    left: 15%;
    bottom: 1.25rem;
    right: 15%;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: center;
}

.carousel-dark .carousel-control-next-icon,
.carousel-dark .carousel-control-prev-icon {
    filter: invert(1) grayscale(100);
}

.carousel-dark .carousel-indicators [data-bs-target] {
    background-color: #000;
}

.carousel-dark .carousel-caption {
    color: #000;
}

@keyframes spinner-border {
    to {
        transform: rotate(360deg);
    }
}

.spinner-border {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: -0.125em;
    border: 0.25em solid currentColor;
    border-left-color: transparent;
    border-radius: 50%;
    animation: 0.75s linear infinite spinner-border;
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.2em;
}

@keyframes spinner-grow {
    0% {
        transform: scale(0);
    }

    50% {
        opacity: 1;
        transform: none;
    }
}

.spinner-grow {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: -0.125em;
    background-color: currentColor;
    border-radius: 50%;
    opacity: 0;
    animation: 0.75s linear infinite spinner-grow;
}

.spinner-grow-sm {
    width: 1rem;
    height: 1rem;
}

@media (prefers-reduced-motion: reduce) {
    .spinner-border,
    .spinner-grow {
        animation-duration: 1.5s;
    }
}

.offcanvas {
    position: fixed;
    bottom: 0;
    z-index: 1045;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    visibility: hidden;
    background-color: #fff;
    background-clip: padding-box;
    outline: 0;
    transition: transform 0.3s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .offcanvas {
        transition: none;
    }
}

.offcanvas-backdrop {
    position: fixed;
    top: 0;
    right: 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: 1rem 1rem;
}

    .offcanvas-header .btn-close {
        padding: 0.5rem 0.5rem;
        margin-top: -0.5rem;
        margin-left: -0.5rem;
        margin-bottom: -0.5rem;
    }

.offcanvas-title {
    margin-bottom: 0;
    line-height: 1.6;
}

.offcanvas-body {
    flex-grow: 1;
    padding: 1rem 1rem;
    overflow-y: auto;
}

.offcanvas-start {
    top: 0;
    right: 0;
    width: 400px;
    border-left: 1px solid rgba(0, 0, 0, 0.2);
    transform: translateX(100%);
}

.offcanvas-end {
    top: 0;
    left: 0;
    width: 400px;
    border-right: 1px solid rgba(0, 0, 0, 0.2);
    transform: translateX(-100%);
}

.offcanvas-top {
    top: 0;
    left: 0;
    right: 0;
    height: 30vh;
    max-height: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    transform: translateY(-100%);
}

.offcanvas-bottom {
    left: 0;
    right: 0;
    height: 30vh;
    max-height: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
}

.offcanvas.show {
    transform: none;
}

.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: .6em;
}

.placeholder-sm {
    min-height: .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 {
    mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
    mask-size: 200% 100%;
    animation: placeholder-wave 2s linear infinite;
}

@keyframes placeholder-wave {
    100% {
        mask-position: -200% 0%;
    }
}

.clearfix::after {
    display: block;
    clear: both;
    content: "";
}

.link-primary {
    color: #673ab7;
}

    .link-primary:hover, .link-primary:focus {
        color: #522e92;
    }

.link-secondary {
    color: #48A9F8;
}

    .link-secondary:hover, .link-secondary:focus {
        color: #6dbaf9;
    }

.link-success {
    color: #56c760;
}

    .link-success:hover, .link-success:focus {
        color: #78d280;
    }

.link-info {
    color: #58bad7;
}

    .link-info:hover, .link-info:focus {
        color: #79c8df;
    }

.link-warning {
    color: #f0a901;
}

    .link-warning:hover, .link-warning:focus {
        color: #f3ba34;
    }

.link-danger {
    color: #f75a5b;
}

    .link-danger:hover, .link-danger:focus {
        color: #f97b7c;
    }

.link-light {
    color: #f4f4f4;
}

    .link-light:hover, .link-light:focus {
        color: #f6f6f6;
    }

.link-dark {
    color: #000;
}

    .link-dark:hover, .link-dark:focus {
        color: black;
    }

.ratio {
    position: relative;
    width: 100%;
}

    .ratio::before {
        display: block;
        padding-top: var(--bs-aspect-ratio);
        content: "";
    }

    .ratio > * {
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
    }

.ratio-1x1 {
    --bs-aspect-ratio: 100%;
}

.ratio-4x3 {
    --bs-aspect-ratio: calc(3 / 4 * 100%);
}

.ratio-16x9 {
    --bs-aspect-ratio: calc(9 / 16 * 100%);
}

.ratio-21x9 {
    --bs-aspect-ratio: calc(9 / 21 * 100%);
}

.fixed-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
}

.fixed-bottom {
    position: fixed;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1030;
}

.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
}

@media (min-width: 576px) {
    .sticky-sm-top {
        position: sticky;
        top: 0;
        z-index: 1020;
    }
}

@media (min-width: 768px) {
    .sticky-md-top {
        position: sticky;
        top: 0;
        z-index: 1020;
    }
}

@media (min-width: 992px) {
    .sticky-lg-top {
        position: sticky;
        top: 0;
        z-index: 1020;
    }
}

@media (min-width: 1200px) {
    .sticky-xl-top {
        position: sticky;
        top: 0;
        z-index: 1020;
    }
}

@media (min-width: 1440) {
    .sticky-xxl-top {
        position: sticky;
        top: 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;
    left: 0;
    bottom: 0;
    right: 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: right !important;
}

.float-end {
    float: left !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 {
    right: 0 !important;
}

.start-50 {
    right: 50% !important;
}

.start-100 {
    right: 100% !important;
}

.end-0 {
    left: 0 !important;
}

.end-50 {
    left: 50% !important;
}

.end-100 {
    left: 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: 1px solid #E1E1F0 !important;
}

.border-0 {
    border: 0 !important;
}

.border-top {
    border-top: 1px solid #E1E1F0 !important;
}

.border-top-0 {
    border-top: 0 !important;
}

.border-end {
    border-left: 1px solid #E1E1F0 !important;
}

.border-end-0 {
    border-left: 0 !important;
}

.border-bottom {
    border-bottom: 1px solid #E1E1F0 !important;
}

.border-bottom-0 {
    border-bottom: 0 !important;
}

.border-start {
    border-right: 1px solid #E1E1F0 !important;
}

.border-start-0 {
    border-right: 0 !important;
}

.border-primary {
    border-color: #673ab7 !important;
}

.border-secondary {
    border-color: #48A9F8 !important;
}

.border-success {
    border-color: #56c760 !important;
}

.border-info {
    border-color: #58bad7 !important;
}

.border-warning {
    border-color: #f0a901 !important;
}

.border-danger {
    border-color: #f75a5b !important;
}

.border-light {
    border-color: #f4f4f4 !important;
}

.border-dark {
    border-color: #000 !important;
}

.border-white {
    border-color: #fff !important;
}

.border-1 {
    border-width: 1px !important;
}

.border-2 {
    border-width: 2px !important;
}

.border-3 {
    border-width: 3px !important;
}

.border-4 {
    border-width: 4px !important;
}

.border-5 {
    border-width: 5px !important;
}

.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;
}

.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;
}

.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-left: 0 !important;
    margin-right: 0 !important;
}

.mx-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
}

.mx-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
}

.mx-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
}

.mx-4 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
}

.mx-5 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
}

.mx-auto {
    margin-left: auto !important;
    margin-right: 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-left: 0 !important;
}

.me-1 {
    margin-left: 0.25rem !important;
}

.me-2 {
    margin-left: 0.5rem !important;
}

.me-3 {
    margin-left: 1rem !important;
}

.me-4 {
    margin-left: 1.5rem !important;
}

.me-5 {
    margin-left: 3rem !important;
}

.me-auto {
    margin-left: 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-right: 0 !important;
}

.ms-1 {
    margin-right: 0.25rem !important;
}

.ms-2 {
    margin-right: 0.5rem !important;
}

.ms-3 {
    margin-right: 1rem !important;
}

.ms-4 {
    margin-right: 1.5rem !important;
}

.ms-5 {
    margin-right: 3rem !important;
}

.ms-auto {
    margin-right: 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-left: 0 !important;
    padding-right: 0 !important;
}

.px-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
}

.px-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
}

.px-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

.px-4 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
}

.px-5 {
    padding-left: 3rem !important;
    padding-right: 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-left: 0 !important;
}

.pe-1 {
    padding-left: 0.25rem !important;
}

.pe-2 {
    padding-left: 0.5rem !important;
}

.pe-3 {
    padding-left: 1rem !important;
}

.pe-4 {
    padding-left: 1.5rem !important;
}

.pe-5 {
    padding-left: 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-right: 0 !important;
}

.ps-1 {
    padding-right: 0.25rem !important;
}

.ps-2 {
    padding-right: 0.5rem !important;
}

.ps-3 {
    padding-right: 1rem !important;
}

.ps-4 {
    padding-right: 1.5rem !important;
}

.ps-5 {
    padding-right: 3rem !important;
}

.font-monospace {
    font-family: var(--bs-font-monospace) !important;
}

.fs-1 {
    font-size: calc(1.3rem + 0.6vw) !important;
}

.fs-2 {
    font-size: calc(1.275rem + 0.3vw) !important;
}

.fs-3 {
    font-size: calc(1.2625rem + 0.15vw) !important;
}

.fs-4 {
    font-size: 1.25rem !important;
}

.fs-5 {
    font-size: 1.125rem !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-bolder {
    font-weight: bolder !important;
}

.lh-1 {
    line-height: 1 !important;
}

.lh-sm {
    line-height: 1.25 !important;
}

.lh-base {
    line-height: 1.6 !important;
}

.lh-lg {
    line-height: 2 !important;
}

.text-start {
    text-align: right !important;
}

.text-end {
    text-align: left !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;
}

.text-primary {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}

.text-secondary {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}

.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: #AEAED5 !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: rgba(var(--bs-primary-rgb), 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 {
    user-select: all !important;
}

.user-select-auto {
    user-select: auto !important;
}

.user-select-none {
    user-select: none !important;
}

.pe-none {
    pointer-events: none !important;
}

.pe-auto {
    pointer-events: auto !important;
}

.rounded {
    border-radius: 0.25rem !important;
}

.rounded-0 {
    border-radius: 0 !important;
}

.rounded-1 {
    border-radius: 0.2rem !important;
}

.rounded-2 {
    border-radius: 0.25rem !important;
}

.rounded-3 {
    border-radius: 0.3rem !important;
}

.rounded-circle {
    border-radius: 50% !important;
}

.rounded-pill {
    border-radius: 50rem !important;
}

.rounded-top {
    border-top-right-radius: 0.25rem !important;
    border-top-left-radius: 0.25rem !important;
}

.rounded-end {
    border-top-left-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
}

.rounded-bottom {
    border-bottom-left-radius: 0.25rem !important;
    border-bottom-right-radius: 0.25rem !important;
}

.rounded-start {
    border-bottom-right-radius: 0.25rem !important;
    border-top-right-radius: 0.25rem !important;
}

.visible {
    visibility: visible !important;
}

.invisible {
    visibility: hidden !important;
}

@media (min-width: 576px) {
    .float-sm-start {
        float: right !important;
    }

    .float-sm-end {
        float: left !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;
    }

    .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;
    }

    .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-left: 0 !important;
        margin-right: 0 !important;
    }

    .mx-sm-1 {
        margin-left: 0.25rem !important;
        margin-right: 0.25rem !important;
    }

    .mx-sm-2 {
        margin-left: 0.5rem !important;
        margin-right: 0.5rem !important;
    }

    .mx-sm-3 {
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }

    .mx-sm-4 {
        margin-left: 1.5rem !important;
        margin-right: 1.5rem !important;
    }

    .mx-sm-5 {
        margin-left: 3rem !important;
        margin-right: 3rem !important;
    }

    .mx-sm-auto {
        margin-left: auto !important;
        margin-right: 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-left: 0 !important;
    }

    .me-sm-1 {
        margin-left: 0.25rem !important;
    }

    .me-sm-2 {
        margin-left: 0.5rem !important;
    }

    .me-sm-3 {
        margin-left: 1rem !important;
    }

    .me-sm-4 {
        margin-left: 1.5rem !important;
    }

    .me-sm-5 {
        margin-left: 3rem !important;
    }

    .me-sm-auto {
        margin-left: 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-right: 0 !important;
    }

    .ms-sm-1 {
        margin-right: 0.25rem !important;
    }

    .ms-sm-2 {
        margin-right: 0.5rem !important;
    }

    .ms-sm-3 {
        margin-right: 1rem !important;
    }

    .ms-sm-4 {
        margin-right: 1.5rem !important;
    }

    .ms-sm-5 {
        margin-right: 3rem !important;
    }

    .ms-sm-auto {
        margin-right: 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-left: 0 !important;
        padding-right: 0 !important;
    }

    .px-sm-1 {
        padding-left: 0.25rem !important;
        padding-right: 0.25rem !important;
    }

    .px-sm-2 {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }

    .px-sm-3 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .px-sm-4 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    .px-sm-5 {
        padding-left: 3rem !important;
        padding-right: 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-left: 0 !important;
    }

    .pe-sm-1 {
        padding-left: 0.25rem !important;
    }

    .pe-sm-2 {
        padding-left: 0.5rem !important;
    }

    .pe-sm-3 {
        padding-left: 1rem !important;
    }

    .pe-sm-4 {
        padding-left: 1.5rem !important;
    }

    .pe-sm-5 {
        padding-left: 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-right: 0 !important;
    }

    .ps-sm-1 {
        padding-right: 0.25rem !important;
    }

    .ps-sm-2 {
        padding-right: 0.5rem !important;
    }

    .ps-sm-3 {
        padding-right: 1rem !important;
    }

    .ps-sm-4 {
        padding-right: 1.5rem !important;
    }

    .ps-sm-5 {
        padding-right: 3rem !important;
    }

    .text-sm-start {
        text-align: right !important;
    }

    .text-sm-end {
        text-align: left !important;
    }

    .text-sm-center {
        text-align: center !important;
    }
}

@media (min-width: 768px) {
    .float-md-start {
        float: right !important;
    }

    .float-md-end {
        float: left !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;
    }

    .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;
    }

    .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-left: 0 !important;
        margin-right: 0 !important;
    }

    .mx-md-1 {
        margin-left: 0.25rem !important;
        margin-right: 0.25rem !important;
    }

    .mx-md-2 {
        margin-left: 0.5rem !important;
        margin-right: 0.5rem !important;
    }

    .mx-md-3 {
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }

    .mx-md-4 {
        margin-left: 1.5rem !important;
        margin-right: 1.5rem !important;
    }

    .mx-md-5 {
        margin-left: 3rem !important;
        margin-right: 3rem !important;
    }

    .mx-md-auto {
        margin-left: auto !important;
        margin-right: 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-left: 0 !important;
    }

    .me-md-1 {
        margin-left: 0.25rem !important;
    }

    .me-md-2 {
        margin-left: 0.5rem !important;
    }

    .me-md-3 {
        margin-left: 1rem !important;
    }

    .me-md-4 {
        margin-left: 1.5rem !important;
    }

    .me-md-5 {
        margin-left: 3rem !important;
    }

    .me-md-auto {
        margin-left: 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-right: 0 !important;
    }

    .ms-md-1 {
        margin-right: 0.25rem !important;
    }

    .ms-md-2 {
        margin-right: 0.5rem !important;
    }

    .ms-md-3 {
        margin-right: 1rem !important;
    }

    .ms-md-4 {
        margin-right: 1.5rem !important;
    }

    .ms-md-5 {
        margin-right: 3rem !important;
    }

    .ms-md-auto {
        margin-right: 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-left: 0 !important;
        padding-right: 0 !important;
    }

    .px-md-1 {
        padding-left: 0.25rem !important;
        padding-right: 0.25rem !important;
    }

    .px-md-2 {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }

    .px-md-3 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .px-md-4 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    .px-md-5 {
        padding-left: 3rem !important;
        padding-right: 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-left: 0 !important;
    }

    .pe-md-1 {
        padding-left: 0.25rem !important;
    }

    .pe-md-2 {
        padding-left: 0.5rem !important;
    }

    .pe-md-3 {
        padding-left: 1rem !important;
    }

    .pe-md-4 {
        padding-left: 1.5rem !important;
    }

    .pe-md-5 {
        padding-left: 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-right: 0 !important;
    }

    .ps-md-1 {
        padding-right: 0.25rem !important;
    }

    .ps-md-2 {
        padding-right: 0.5rem !important;
    }

    .ps-md-3 {
        padding-right: 1rem !important;
    }

    .ps-md-4 {
        padding-right: 1.5rem !important;
    }

    .ps-md-5 {
        padding-right: 3rem !important;
    }

    .text-md-start {
        text-align: right !important;
    }

    .text-md-end {
        text-align: left !important;
    }

    .text-md-center {
        text-align: center !important;
    }
}

@media (min-width: 992px) {
    .float-lg-start {
        float: right !important;
    }

    .float-lg-end {
        float: left !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;
    }

    .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;
    }

    .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-left: 0 !important;
        margin-right: 0 !important;
    }

    .mx-lg-1 {
        margin-left: 0.25rem !important;
        margin-right: 0.25rem !important;
    }

    .mx-lg-2 {
        margin-left: 0.5rem !important;
        margin-right: 0.5rem !important;
    }

    .mx-lg-3 {
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }

    .mx-lg-4 {
        margin-left: 1.5rem !important;
        margin-right: 1.5rem !important;
    }

    .mx-lg-5 {
        margin-left: 3rem !important;
        margin-right: 3rem !important;
    }

    .mx-lg-auto {
        margin-left: auto !important;
        margin-right: 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-left: 0 !important;
    }

    .me-lg-1 {
        margin-left: 0.25rem !important;
    }

    .me-lg-2 {
        margin-left: 0.5rem !important;
    }

    .me-lg-3 {
        margin-left: 1rem !important;
    }

    .me-lg-4 {
        margin-left: 1.5rem !important;
    }

    .me-lg-5 {
        margin-left: 3rem !important;
    }

    .me-lg-auto {
        margin-left: 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-right: 0 !important;
    }

    .ms-lg-1 {
        margin-right: 0.25rem !important;
    }

    .ms-lg-2 {
        margin-right: 0.5rem !important;
    }

    .ms-lg-3 {
        margin-right: 1rem !important;
    }

    .ms-lg-4 {
        margin-right: 1.5rem !important;
    }

    .ms-lg-5 {
        margin-right: 3rem !important;
    }

    .ms-lg-auto {
        margin-right: 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-left: 0 !important;
        padding-right: 0 !important;
    }

    .px-lg-1 {
        padding-left: 0.25rem !important;
        padding-right: 0.25rem !important;
    }

    .px-lg-2 {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }

    .px-lg-3 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .px-lg-4 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    .px-lg-5 {
        padding-left: 3rem !important;
        padding-right: 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-left: 0 !important;
    }

    .pe-lg-1 {
        padding-left: 0.25rem !important;
    }

    .pe-lg-2 {
        padding-left: 0.5rem !important;
    }

    .pe-lg-3 {
        padding-left: 1rem !important;
    }

    .pe-lg-4 {
        padding-left: 1.5rem !important;
    }

    .pe-lg-5 {
        padding-left: 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-right: 0 !important;
    }

    .ps-lg-1 {
        padding-right: 0.25rem !important;
    }

    .ps-lg-2 {
        padding-right: 0.5rem !important;
    }

    .ps-lg-3 {
        padding-right: 1rem !important;
    }

    .ps-lg-4 {
        padding-right: 1.5rem !important;
    }

    .ps-lg-5 {
        padding-right: 3rem !important;
    }

    .text-lg-start {
        text-align: right !important;
    }

    .text-lg-end {
        text-align: left !important;
    }

    .text-lg-center {
        text-align: center !important;
    }
}

@media (min-width: 1200px) {
    .float-xl-start {
        float: right !important;
    }

    .float-xl-end {
        float: left !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;
    }

    .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;
    }

    .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-left: 0 !important;
        margin-right: 0 !important;
    }

    .mx-xl-1 {
        margin-left: 0.25rem !important;
        margin-right: 0.25rem !important;
    }

    .mx-xl-2 {
        margin-left: 0.5rem !important;
        margin-right: 0.5rem !important;
    }

    .mx-xl-3 {
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }

    .mx-xl-4 {
        margin-left: 1.5rem !important;
        margin-right: 1.5rem !important;
    }

    .mx-xl-5 {
        margin-left: 3rem !important;
        margin-right: 3rem !important;
    }

    .mx-xl-auto {
        margin-left: auto !important;
        margin-right: 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-left: 0 !important;
    }

    .me-xl-1 {
        margin-left: 0.25rem !important;
    }

    .me-xl-2 {
        margin-left: 0.5rem !important;
    }

    .me-xl-3 {
        margin-left: 1rem !important;
    }

    .me-xl-4 {
        margin-left: 1.5rem !important;
    }

    .me-xl-5 {
        margin-left: 3rem !important;
    }

    .me-xl-auto {
        margin-left: 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-right: 0 !important;
    }

    .ms-xl-1 {
        margin-right: 0.25rem !important;
    }

    .ms-xl-2 {
        margin-right: 0.5rem !important;
    }

    .ms-xl-3 {
        margin-right: 1rem !important;
    }

    .ms-xl-4 {
        margin-right: 1.5rem !important;
    }

    .ms-xl-5 {
        margin-right: 3rem !important;
    }

    .ms-xl-auto {
        margin-right: 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-left: 0 !important;
        padding-right: 0 !important;
    }

    .px-xl-1 {
        padding-left: 0.25rem !important;
        padding-right: 0.25rem !important;
    }

    .px-xl-2 {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }

    .px-xl-3 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .px-xl-4 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    .px-xl-5 {
        padding-left: 3rem !important;
        padding-right: 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-left: 0 !important;
    }

    .pe-xl-1 {
        padding-left: 0.25rem !important;
    }

    .pe-xl-2 {
        padding-left: 0.5rem !important;
    }

    .pe-xl-3 {
        padding-left: 1rem !important;
    }

    .pe-xl-4 {
        padding-left: 1.5rem !important;
    }

    .pe-xl-5 {
        padding-left: 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-right: 0 !important;
    }

    .ps-xl-1 {
        padding-right: 0.25rem !important;
    }

    .ps-xl-2 {
        padding-right: 0.5rem !important;
    }

    .ps-xl-3 {
        padding-right: 1rem !important;
    }

    .ps-xl-4 {
        padding-right: 1.5rem !important;
    }

    .ps-xl-5 {
        padding-right: 3rem !important;
    }

    .text-xl-start {
        text-align: right !important;
    }

    .text-xl-end {
        text-align: left !important;
    }

    .text-xl-center {
        text-align: center !important;
    }
}

@media (min-width: 1440) {
    .float-xxl-start {
        float: right !important;
    }

    .float-xxl-end {
        float: left !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;
    }

    .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;
    }

    .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-left: 0 !important;
        margin-right: 0 !important;
    }

    .mx-xxl-1 {
        margin-left: 0.25rem !important;
        margin-right: 0.25rem !important;
    }

    .mx-xxl-2 {
        margin-left: 0.5rem !important;
        margin-right: 0.5rem !important;
    }

    .mx-xxl-3 {
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }

    .mx-xxl-4 {
        margin-left: 1.5rem !important;
        margin-right: 1.5rem !important;
    }

    .mx-xxl-5 {
        margin-left: 3rem !important;
        margin-right: 3rem !important;
    }

    .mx-xxl-auto {
        margin-left: auto !important;
        margin-right: 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-left: 0 !important;
    }

    .me-xxl-1 {
        margin-left: 0.25rem !important;
    }

    .me-xxl-2 {
        margin-left: 0.5rem !important;
    }

    .me-xxl-3 {
        margin-left: 1rem !important;
    }

    .me-xxl-4 {
        margin-left: 1.5rem !important;
    }

    .me-xxl-5 {
        margin-left: 3rem !important;
    }

    .me-xxl-auto {
        margin-left: 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-right: 0 !important;
    }

    .ms-xxl-1 {
        margin-right: 0.25rem !important;
    }

    .ms-xxl-2 {
        margin-right: 0.5rem !important;
    }

    .ms-xxl-3 {
        margin-right: 1rem !important;
    }

    .ms-xxl-4 {
        margin-right: 1.5rem !important;
    }

    .ms-xxl-5 {
        margin-right: 3rem !important;
    }

    .ms-xxl-auto {
        margin-right: 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-left: 0 !important;
        padding-right: 0 !important;
    }

    .px-xxl-1 {
        padding-left: 0.25rem !important;
        padding-right: 0.25rem !important;
    }

    .px-xxl-2 {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }

    .px-xxl-3 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .px-xxl-4 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    .px-xxl-5 {
        padding-left: 3rem !important;
        padding-right: 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-left: 0 !important;
    }

    .pe-xxl-1 {
        padding-left: 0.25rem !important;
    }

    .pe-xxl-2 {
        padding-left: 0.5rem !important;
    }

    .pe-xxl-3 {
        padding-left: 1rem !important;
    }

    .pe-xxl-4 {
        padding-left: 1.5rem !important;
    }

    .pe-xxl-5 {
        padding-left: 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-right: 0 !important;
    }

    .ps-xxl-1 {
        padding-right: 0.25rem !important;
    }

    .ps-xxl-2 {
        padding-right: 0.5rem !important;
    }

    .ps-xxl-3 {
        padding-right: 1rem !important;
    }

    .ps-xxl-4 {
        padding-right: 1.5rem !important;
    }

    .ps-xxl-5 {
        padding-right: 3rem !important;
    }

    .text-xxl-start {
        text-align: right !important;
    }

    .text-xxl-end {
        text-align: left !important;
    }

    .text-xxl-center {
        text-align: center !important;
    }
}

@media (min-width: 1200px) {
    .fs-1 {
        font-size: 1.75rem !important;
    }

    .fs-2 {
        font-size: 1.5rem !important;
    }

    .fs-3 {
        font-size: 1.375rem !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;
    }
}

/*==== 3. Global/Base ====*/
* {
    outline: none;
    padding: 0;
}

    *::after {
        margin: 0;
        padding: 0;
    }

    *::before {
        margin: 0;
        padding: 0;
    }

::selection {
    color: #fff;
    background: #002e53;
}

body {
    line-height: 1.6;
    color: #7e7e7e;
    font-size: 0.875rem;
    font-weight: 400;
    font-family: var(--font-family-base);
}

    body.fixed {
        overflow: hidden;
        position: fixed;
    }

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--font-family-title);
    font-weight: 600;
    color: var(--title);
}

    h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a, h6 a, .h6 a, .h1 a, .h2 a, .h3 a, .h4 a, .h5 a, .h6 a {
        color: var(--title);
    }

h1, .h1 {
    font-size: 1.75rem;
}

h2, .h2 {
    font-size: 1.5rem;
}

h3, .h3 {
    font-size: 1.375rem;
}

h4, .h4 {
    font-size: 1.25rem;
}

h5, .h5 {
    font-size: 1.125rem;
}

h6, .h6 {
    font-size: 1rem;
}

ul {
    padding: 0;
    margin: 0;
}

img {
    border-style: none;
    height: auto;
    max-width: 100%;
    vertical-align: middle;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    outline: none;
    color: var(--primary);
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
}

    a:hover, a:focus, a.active {
        text-decoration: none;
        outline: none;
        color: var(--primary-hover);
    }

.text-primary {
    color: var(--primary) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}

.border-bottom {
    border-bottom: 1px solid #F1F1F1 !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.text-black {
    color: #071c35;
}

.container {
    max-width: 1024px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 15px;
    padding-left: 15px;
    box-sizing: border-box;
    padding-top: 15px;
    padding-bottom: 15px;
    position: relative;
}

b,
strong,
.strong {
    font-weight: 500;
}

.h-0 {
    height: 0;
}

#main-wrapper {
    opacity: 0;
    transition: all 0.25s ease-in;
    overflow: hidden;
    position: relative;
    z-index: 1;
    margin-top: 60px;
}

    #main-wrapper.show {
        opacity: 1;
    }

.bg-gray {
    background-color: #f0f6ff;
}

.content-inner {
    padding-top: 40px;
}

.content-inner-1 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.content-inner-2 {
    padding-top: 120px;
    padding-bottom: 0;
}

.rounded {
    border-radius: var(--border-radius-base) !important;
}

::-webkit-scrollbar {
    display: none;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

body {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.dz-icon {
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-base);
    color: #fff;
    font-size: 13px;
    margin-left: 12px;
}

    .dz-icon svg {
        width: 20px;
        height: 20px;
    }

    .dz-icon i {
        line-height: 1;
    }

    .dz-icon img {
        border-radius: 50%;
    }

.bottom-content {
    padding-bottom: 80px;
}

.font-10 {
    font-size: 10px;
}

.font-12 {
    font-size: 12px;
}

.font-13 {
    font-size: 13px;
}

.font-14 {
    font-size: 14px;
}

.font-16 {
    font-size: 16px;
}

.font-18 {
    font-size: 18px;
}

.font-20 {
    font-size: 20px;
}

.font-22 {
    font-size: 22px;
}

.font-24 {
    font-size: 24px;
}

.font-26 {
    font-size: 26px;
}

.font-30 {
    font-size: 30px;
}

.font-35 {
    font-size: 35px;
}

.font-40 {
    font-size: 40px;
}

.font-45 {
    font-size: 45px;
}

.font-50 {
    font-size: 50px;
}

.font-55 {
    font-size: 55px;
}

.font-60 {
    font-size: 60px;
}

.font-70 {
    font-size: 70px;
}

.font-75 {
    font-size: 75px;
}

.font-80 {
    font-size: 80px;
}

.font-90 {
    font-size: 90px;
}

.font-100 {
    font-size: 100px;
}

.font-w100 {
    font-weight: 100;
}

.font-w200 {
    font-weight: 200;
}

.font-w300 {
    font-weight: 300;
}

.font-w400 {
    font-weight: 400;
}

.font-w500 {
    font-weight: 500;
}

.font-w600 {
    font-weight: 600;
}

.font-w700 {
    font-weight: 700;
}

.font-w800 {
    font-weight: 800;
}

.font-w900 {
    font-weight: 900;
}

.p-a0 {
    padding: 0px;
}

.p-l0 {
    padding-right: 0px;
}

.p-r0 {
    padding-left: 0px;
}

.p-t0 {
    padding-top: 0px;
}

.p-b0 {
    padding-bottom: 0px;
}

.p-lr0 {
    padding-right: 0px;
    padding-left: 0px;
}

.p-tb0 {
    padding-bottom: 0px;
    padding-top: 0px;
}

.m-a0 {
    margin: 0px;
}

.m-l0 {
    margin-right: 0px;
}

.m-r0 {
    margin-left: 0px;
}

.m-t0 {
    margin-top: 0px;
}

.m-b0 {
    margin-bottom: 0px;
}

.m-lr0 {
    margin-right: 0px;
    margin-left: 0px;
}

.m-tb0 {
    margin-bottom: 0px;
    margin-top: 0px;
}

.p-a5 {
    padding: 5px;
}

.p-l5 {
    padding-right: 5px;
}

.p-r5 {
    padding-left: 5px;
}

.p-t5 {
    padding-top: 5px;
}

.p-b5 {
    padding-bottom: 5px;
}

.p-lr5 {
    padding-right: 5px;
    padding-left: 5px;
}

.p-tb5 {
    padding-bottom: 5px;
    padding-top: 5px;
}

.m-a5 {
    margin: 5px;
}

.m-l5 {
    margin-right: 5px;
}

.m-r5 {
    margin-left: 5px;
}

.m-t5 {
    margin-top: 5px;
}

.m-b5 {
    margin-bottom: 5px;
}

.m-lr5 {
    margin-right: 5px;
    margin-left: 5px;
}

.m-tb5 {
    margin-bottom: 5px;
    margin-top: 5px;
}

.p-a10 {
    padding: 10px;
}

.p-l10 {
    padding-right: 10px;
}

.p-r10 {
    padding-left: 10px;
}

.p-t10 {
    padding-top: 10px;
}

.p-b10 {
    padding-bottom: 10px;
}

.p-lr10 {
    padding-right: 10px;
    padding-left: 10px;
}

.p-tb10 {
    padding-bottom: 10px;
    padding-top: 10px;
}

.m-a10 {
    margin: 10px;
}

.m-l10 {
    margin-right: 10px;
}

.m-r10 {
    margin-left: 10px;
}

.m-t10 {
    margin-top: 10px;
}

.m-b10 {
    margin-bottom: 10px;
}

.m-lr10 {
    margin-right: 10px;
    margin-left: 10px;
}

.m-tb10 {
    margin-bottom: 10px;
    margin-top: 10px;
}

.p-a15 {
    padding: 15px;
}

.p-l15 {
    padding-right: 15px;
}

.p-r15 {
    padding-left: 15px;
}

.p-t15 {
    padding-top: 15px;
}

.p-b15 {
    padding-bottom: 15px;
}

.p-lr15 {
    padding-right: 15px;
    padding-left: 15px;
}

.p-tb15 {
    padding-bottom: 15px;
    padding-top: 15px;
}

.m-a15 {
    margin: 15px;
}

.m-l15 {
    margin-right: 15px;
}

.m-r15 {
    margin-left: 15px;
}

.m-t15 {
    margin-top: 15px;
}

.m-b15 {
    margin-bottom: 15px;
}

.m-lr15 {
    margin-right: 15px;
    margin-left: 15px;
}

.m-tb15 {
    margin-bottom: 15px;
    margin-top: 15px;
}

.p-a20 {
    padding: 20px;
}

.p-l20 {
    padding-right: 20px;
}

.p-r20 {
    padding-left: 20px;
}

.p-t20 {
    padding-top: 20px;
}

.p-b20 {
    padding-bottom: 20px;
}

.p-lr20 {
    padding-right: 20px;
    padding-left: 20px;
}

.p-tb20 {
    padding-bottom: 20px;
    padding-top: 20px;
}

.m-a20 {
    margin: 20px;
}

.m-l20 {
    margin-right: 20px;
}

.m-r20 {
    margin-left: 20px;
}

.m-t20 {
    margin-top: 20px;
}

.m-b20 {
    margin-bottom: 20px;
}

.m-lr20 {
    margin-right: 20px;
    margin-left: 20px;
}

.m-tb20 {
    margin-bottom: 20px;
    margin-top: 20px;
}

.p-a25 {
    padding: 25px;
}

.p-l25 {
    padding-right: 25px;
}

.p-r25 {
    padding-left: 25px;
}

.p-t25 {
    padding-top: 25px;
}

.p-b25 {
    padding-bottom: 25px;
}

.p-lr25 {
    padding-right: 25px;
    padding-left: 25px;
}

.p-tb25 {
    padding-bottom: 25px;
    padding-top: 25px;
}

.m-a25 {
    margin: 25px;
}

.m-l25 {
    margin-right: 25px;
}

.m-r25 {
    margin-left: 25px;
}

.m-t25 {
    margin-top: 25px;
}

.m-b25 {
    margin-bottom: 25px;
}

.m-lr25 {
    margin-right: 25px;
    margin-left: 25px;
}

.m-tb25 {
    margin-bottom: 25px;
    margin-top: 25px;
}

.p-a30 {
    padding: 30px;
}

.p-l30 {
    padding-right: 30px;
}

.p-r30 {
    padding-left: 30px;
}

.p-t30 {
    padding-top: 30px;
}

.p-b30 {
    padding-bottom: 30px;
}

.p-lr30 {
    padding-right: 30px;
    padding-left: 30px;
}

.p-tb30 {
    padding-bottom: 30px;
    padding-top: 30px;
}

.m-a30 {
    margin: 30px;
}

.m-l30 {
    margin-right: 30px;
}

.m-r30 {
    margin-left: 30px;
}

.m-t30 {
    margin-top: 30px;
}

.m-b30 {
    margin-bottom: 30px;
}

.m-lr30 {
    margin-right: 30px;
    margin-left: 30px;
}

.m-tb30 {
    margin-bottom: 30px;
    margin-top: 30px;
}

.p-a35 {
    padding: 35px;
}

.p-l35 {
    padding-right: 35px;
}

.p-r35 {
    padding-left: 35px;
}

.p-t35 {
    padding-top: 35px;
}

.p-b35 {
    padding-bottom: 35px;
}

.p-lr35 {
    padding-right: 35px;
    padding-left: 35px;
}

.p-tb35 {
    padding-bottom: 35px;
    padding-top: 35px;
}

.m-a35 {
    margin: 35px;
}

.m-l35 {
    margin-right: 35px;
}

.m-r35 {
    margin-left: 35px;
}

.m-t35 {
    margin-top: 35px;
}

.m-b35 {
    margin-bottom: 35px;
}

.m-lr35 {
    margin-right: 35px;
    margin-left: 35px;
}

.m-tb35 {
    margin-bottom: 35px;
    margin-top: 35px;
}

.p-a40 {
    padding: 40px;
}

.p-l40 {
    padding-right: 40px;
}

.p-r40 {
    padding-left: 40px;
}

.p-t40 {
    padding-top: 40px;
}

.p-b40 {
    padding-bottom: 40px;
}

.p-lr40 {
    padding-right: 40px;
    padding-left: 40px;
}

.p-tb40 {
    padding-bottom: 40px;
    padding-top: 40px;
}

.m-a40 {
    margin: 40px;
}

.m-l40 {
    margin-right: 40px;
}

.m-r40 {
    margin-left: 40px;
}

.m-t40 {
    margin-top: 40px;
}

.m-b40 {
    margin-bottom: 40px;
}

.m-lr40 {
    margin-right: 40px;
    margin-left: 40px;
}

.m-tb40 {
    margin-bottom: 40px;
    margin-top: 40px;
}

.p-a45 {
    padding: 45px;
}

.p-l45 {
    padding-right: 45px;
}

.p-r45 {
    padding-left: 45px;
}

.p-t45 {
    padding-top: 45px;
}

.p-b45 {
    padding-bottom: 45px;
}

.p-lr45 {
    padding-right: 45px;
    padding-left: 45px;
}

.p-tb45 {
    padding-bottom: 45px;
    padding-top: 45px;
}

.m-a45 {
    margin: 45px;
}

.m-l45 {
    margin-right: 45px;
}

.m-r45 {
    margin-left: 45px;
}

.m-t45 {
    margin-top: 45px;
}

.m-b45 {
    margin-bottom: 45px;
}

.m-lr45 {
    margin-right: 45px;
    margin-left: 45px;
}

.m-tb45 {
    margin-bottom: 45px;
    margin-top: 45px;
}

.p-a50 {
    padding: 50px;
}

.p-l50 {
    padding-right: 50px;
}

.p-r50 {
    padding-left: 50px;
}

.p-t50 {
    padding-top: 50px;
}

.p-b50 {
    padding-bottom: 50px;
}

.p-lr50 {
    padding-right: 50px;
    padding-left: 50px;
}

.p-tb50 {
    padding-bottom: 50px;
    padding-top: 50px;
}

.m-a50 {
    margin: 50px;
}

.m-l50 {
    margin-right: 50px;
}

.m-r50 {
    margin-left: 50px;
}

.m-t50 {
    margin-top: 50px;
}

.m-b50 {
    margin-bottom: 50px;
}

.m-lr50 {
    margin-right: 50px;
    margin-left: 50px;
}

.m-tb50 {
    margin-bottom: 50px;
    margin-top: 50px;
}

.p-a55 {
    padding: 55px;
}

.p-l55 {
    padding-right: 55px;
}

.p-r55 {
    padding-left: 55px;
}

.p-t55 {
    padding-top: 55px;
}

.p-b55 {
    padding-bottom: 55px;
}

.p-lr55 {
    padding-right: 55px;
    padding-left: 55px;
}

.p-tb55 {
    padding-bottom: 55px;
    padding-top: 55px;
}

.m-a55 {
    margin: 55px;
}

.m-l55 {
    margin-right: 55px;
}

.m-r55 {
    margin-left: 55px;
}

.m-t55 {
    margin-top: 55px;
}

.m-b55 {
    margin-bottom: 55px;
}

.m-lr55 {
    margin-right: 55px;
    margin-left: 55px;
}

.m-tb55 {
    margin-bottom: 55px;
    margin-top: 55px;
}

.p-a60 {
    padding: 60px;
}

.p-l60 {
    padding-right: 60px;
}

.p-r60 {
    padding-left: 60px;
}

.p-t60 {
    padding-top: 60px;
}

.p-b60 {
    padding-bottom: 60px;
}

.p-lr60 {
    padding-right: 60px;
    padding-left: 60px;
}

.p-tb60 {
    padding-bottom: 60px;
    padding-top: 60px;
}

.m-a60 {
    margin: 60px;
}

.m-l60 {
    margin-right: 60px;
}

.m-r60 {
    margin-left: 60px;
}

.m-t60 {
    margin-top: 60px;
}

.m-b60 {
    margin-bottom: 60px;
}

.m-lr60 {
    margin-right: 60px;
    margin-left: 60px;
}

.m-tb60 {
    margin-bottom: 60px;
    margin-top: 60px;
}

.p-a65 {
    padding: 65px;
}

.p-l65 {
    padding-right: 65px;
}

.p-r65 {
    padding-left: 65px;
}

.p-t65 {
    padding-top: 65px;
}

.p-b65 {
    padding-bottom: 65px;
}

.p-lr65 {
    padding-right: 65px;
    padding-left: 65px;
}

.p-tb65 {
    padding-bottom: 65px;
    padding-top: 65px;
}

.m-a65 {
    margin: 65px;
}

.m-l65 {
    margin-right: 65px;
}

.m-r65 {
    margin-left: 65px;
}

.m-t65 {
    margin-top: 65px;
}

.m-b65 {
    margin-bottom: 65px;
}

.m-lr65 {
    margin-right: 65px;
    margin-left: 65px;
}

.m-tb65 {
    margin-bottom: 65px;
    margin-top: 65px;
}

.p-a70 {
    padding: 70px;
}

.p-l70 {
    padding-right: 70px;
}

.p-r70 {
    padding-left: 70px;
}

.p-t70 {
    padding-top: 70px;
}

.p-b70 {
    padding-bottom: 70px;
}

.p-lr70 {
    padding-right: 70px;
    padding-left: 70px;
}

.p-tb70 {
    padding-bottom: 70px;
    padding-top: 70px;
}

.m-a70 {
    margin: 70px;
}

.m-l70 {
    margin-right: 70px;
}

.m-r70 {
    margin-left: 70px;
}

.m-t70 {
    margin-top: 70px;
}

.m-b70 {
    margin-bottom: 70px;
}

.m-lr70 {
    margin-right: 70px;
    margin-left: 70px;
}

.m-tb70 {
    margin-bottom: 70px;
    margin-top: 70px;
}

.p-a75 {
    padding: 75px;
}

.p-l75 {
    padding-right: 75px;
}

.p-r75 {
    padding-left: 75px;
}

.p-t75 {
    padding-top: 75px;
}

.p-b75 {
    padding-bottom: 75px;
}

.p-lr75 {
    padding-right: 75px;
    padding-left: 75px;
}

.p-tb75 {
    padding-bottom: 75px;
    padding-top: 75px;
}

.m-a75 {
    margin: 75px;
}

.m-l75 {
    margin-right: 75px;
}

.m-r75 {
    margin-left: 75px;
}

.m-t75 {
    margin-top: 75px;
}

.m-b75 {
    margin-bottom: 75px;
}

.m-lr75 {
    margin-right: 75px;
    margin-left: 75px;
}

.m-tb75 {
    margin-bottom: 75px;
    margin-top: 75px;
}

.p-a80 {
    padding: 80px;
}

.p-l80 {
    padding-right: 80px;
}

.p-r80 {
    padding-left: 80px;
}

.p-t80 {
    padding-top: 80px;
}

.p-b80 {
    padding-bottom: 80px;
}

.p-lr80 {
    padding-right: 80px;
    padding-left: 80px;
}

.p-tb80 {
    padding-bottom: 80px;
    padding-top: 80px;
}

.m-a80 {
    margin: 80px;
}

.m-l80 {
    margin-right: 80px;
}

.m-r80 {
    margin-left: 80px;
}

.m-t80 {
    margin-top: 80px;
}

.m-b80 {
    margin-bottom: 80px;
}

.m-lr80 {
    margin-right: 80px;
    margin-left: 80px;
}

.m-tb80 {
    margin-bottom: 80px;
    margin-top: 80px;
}

.p-a85 {
    padding: 85px;
}

.p-l85 {
    padding-right: 85px;
}

.p-r85 {
    padding-left: 85px;
}

.p-t85 {
    padding-top: 85px;
}

.p-b85 {
    padding-bottom: 85px;
}

.p-lr85 {
    padding-right: 85px;
    padding-left: 85px;
}

.p-tb85 {
    padding-bottom: 85px;
    padding-top: 85px;
}

.m-a85 {
    margin: 85px;
}

.m-l85 {
    margin-right: 85px;
}

.m-r85 {
    margin-left: 85px;
}

.m-t85 {
    margin-top: 85px;
}

.m-b85 {
    margin-bottom: 85px;
}

.m-lr85 {
    margin-right: 85px;
    margin-left: 85px;
}

.m-tb85 {
    margin-bottom: 85px;
    margin-top: 85px;
}

.p-a90 {
    padding: 90px;
}

.p-l90 {
    padding-right: 90px;
}

.p-r90 {
    padding-left: 90px;
}

.p-t90 {
    padding-top: 90px;
}

.p-b90 {
    padding-bottom: 90px;
}

.p-lr90 {
    padding-right: 90px;
    padding-left: 90px;
}

.p-tb90 {
    padding-bottom: 90px;
    padding-top: 90px;
}

.m-a90 {
    margin: 90px;
}

.m-l90 {
    margin-right: 90px;
}

.m-r90 {
    margin-left: 90px;
}

.m-t90 {
    margin-top: 90px;
}

.m-b90 {
    margin-bottom: 90px;
}

.m-lr90 {
    margin-right: 90px;
    margin-left: 90px;
}

.m-tb90 {
    margin-bottom: 90px;
    margin-top: 90px;
}

.p-a95 {
    padding: 95px;
}

.p-l95 {
    padding-right: 95px;
}

.p-r95 {
    padding-left: 95px;
}

.p-t95 {
    padding-top: 95px;
}

.p-b95 {
    padding-bottom: 95px;
}

.p-lr95 {
    padding-right: 95px;
    padding-left: 95px;
}

.p-tb95 {
    padding-bottom: 95px;
    padding-top: 95px;
}

.m-a95 {
    margin: 95px;
}

.m-l95 {
    margin-right: 95px;
}

.m-r95 {
    margin-left: 95px;
}

.m-t95 {
    margin-top: 95px;
}

.m-b95 {
    margin-bottom: 95px;
}

.m-lr95 {
    margin-right: 95px;
    margin-left: 95px;
}

.m-tb95 {
    margin-bottom: 95px;
    margin-top: 95px;
}

.p-a100 {
    padding: 100px;
}

.p-l100 {
    padding-right: 100px;
}

.p-r100 {
    padding-left: 100px;
}

.p-t100 {
    padding-top: 100px;
}

.p-b100 {
    padding-bottom: 100px;
}

.p-lr100 {
    padding-right: 100px;
    padding-left: 100px;
}

.p-tb100 {
    padding-bottom: 100px;
    padding-top: 100px;
}

.m-a100 {
    margin: 100px;
}

.m-l100 {
    margin-right: 100px;
}

.m-r100 {
    margin-left: 100px;
}

.m-t100 {
    margin-top: 100px;
}

.m-b100 {
    margin-bottom: 100px;
}

.m-lr100 {
    margin-right: 100px;
    margin-left: 100px;
}

.m-tb100 {
    margin-bottom: 100px;
    margin-top: 100px;
}

@media only screen and (max-width: 1200px) {
    .m-lg-t0 {
        margin-top: 0px;
    }

    .m-lg-b0 {
        margin-bottom: 0px;
    }

    .m-lg-t5 {
        margin-top: 5px;
    }

    .m-lg-b5 {
        margin-bottom: 5px;
    }

    .m-lg-t10 {
        margin-top: 10px;
    }

    .m-lg-b10 {
        margin-bottom: 10px;
    }

    .m-lg-t15 {
        margin-top: 15px;
    }

    .m-lg-b15 {
        margin-bottom: 15px;
    }

    .m-lg-t20 {
        margin-top: 20px;
    }

    .m-lg-b20 {
        margin-bottom: 20px;
    }

    .m-lg-t25 {
        margin-top: 25px;
    }

    .m-lg-b25 {
        margin-bottom: 25px;
    }

    .m-lg-t30 {
        margin-top: 30px;
    }

    .m-lg-b30 {
        margin-bottom: 30px;
    }

    .m-lg-t35 {
        margin-top: 35px;
    }

    .m-lg-b35 {
        margin-bottom: 35px;
    }

    .m-lg-t40 {
        margin-top: 40px;
    }

    .m-lg-b40 {
        margin-bottom: 40px;
    }

    .m-lg-t45 {
        margin-top: 45px;
    }

    .m-lg-b45 {
        margin-bottom: 45px;
    }

    .m-lg-t50 {
        margin-top: 50px;
    }

    .m-lg-b50 {
        margin-bottom: 50px;
    }

    .m-lg-t55 {
        margin-top: 55px;
    }

    .m-lg-b55 {
        margin-bottom: 55px;
    }

    .m-lg-t60 {
        margin-top: 60px;
    }

    .m-lg-b60 {
        margin-bottom: 60px;
    }

    .m-lg-t65 {
        margin-top: 65px;
    }

    .m-lg-b65 {
        margin-bottom: 65px;
    }

    .m-lg-t70 {
        margin-top: 70px;
    }

    .m-lg-b70 {
        margin-bottom: 70px;
    }

    .m-lg-t75 {
        margin-top: 75px;
    }

    .m-lg-b75 {
        margin-bottom: 75px;
    }

    .m-lg-t80 {
        margin-top: 80px;
    }

    .m-lg-b80 {
        margin-bottom: 80px;
    }

    .m-lg-t85 {
        margin-top: 85px;
    }

    .m-lg-b85 {
        margin-bottom: 85px;
    }

    .m-lg-t90 {
        margin-top: 90px;
    }

    .m-lg-b90 {
        margin-bottom: 90px;
    }

    .m-lg-t95 {
        margin-top: 95px;
    }

    .m-lg-b95 {
        margin-bottom: 95px;
    }

    .m-lg-t100 {
        margin-top: 100px;
    }

    .m-lg-b100 {
        margin-bottom: 100px;
    }
}

@media only screen and (max-width: 991px) {
    .m-md-t0 {
        margin-top: 0px;
    }

    .m-md-b0 {
        margin-bottom: 0px;
    }

    .m-md-t5 {
        margin-top: 5px;
    }

    .m-md-b5 {
        margin-bottom: 5px;
    }

    .m-md-t10 {
        margin-top: 10px;
    }

    .m-md-b10 {
        margin-bottom: 10px;
    }

    .m-md-t15 {
        margin-top: 15px;
    }

    .m-md-b15 {
        margin-bottom: 15px;
    }

    .m-md-t20 {
        margin-top: 20px;
    }

    .m-md-b20 {
        margin-bottom: 20px;
    }

    .m-md-t25 {
        margin-top: 25px;
    }

    .m-md-b25 {
        margin-bottom: 25px;
    }

    .m-md-t30 {
        margin-top: 30px;
    }

    .m-md-b30 {
        margin-bottom: 30px;
    }

    .m-md-t35 {
        margin-top: 35px;
    }

    .m-md-b35 {
        margin-bottom: 35px;
    }

    .m-md-t40 {
        margin-top: 40px;
    }

    .m-md-b40 {
        margin-bottom: 40px;
    }

    .m-md-t45 {
        margin-top: 45px;
    }

    .m-md-b45 {
        margin-bottom: 45px;
    }

    .m-md-t50 {
        margin-top: 50px;
    }

    .m-md-b50 {
        margin-bottom: 50px;
    }

    .m-md-t55 {
        margin-top: 55px;
    }

    .m-md-b55 {
        margin-bottom: 55px;
    }

    .m-md-t60 {
        margin-top: 60px;
    }

    .m-md-b60 {
        margin-bottom: 60px;
    }

    .m-md-t65 {
        margin-top: 65px;
    }

    .m-md-b65 {
        margin-bottom: 65px;
    }

    .m-md-t70 {
        margin-top: 70px;
    }

    .m-md-b70 {
        margin-bottom: 70px;
    }

    .m-md-t75 {
        margin-top: 75px;
    }

    .m-md-b75 {
        margin-bottom: 75px;
    }

    .m-md-t80 {
        margin-top: 80px;
    }

    .m-md-b80 {
        margin-bottom: 80px;
    }

    .m-md-t85 {
        margin-top: 85px;
    }

    .m-md-b85 {
        margin-bottom: 85px;
    }

    .m-md-t90 {
        margin-top: 90px;
    }

    .m-md-b90 {
        margin-bottom: 90px;
    }

    .m-md-t95 {
        margin-top: 95px;
    }

    .m-md-b95 {
        margin-bottom: 95px;
    }

    .m-md-t100 {
        margin-top: 100px;
    }

    .m-md-b100 {
        margin-bottom: 100px;
    }
}

@media only screen and (max-width: 767px) {
    .m-sm-t0 {
        margin-top: 0px;
    }

    .m-sm-b0 {
        margin-bottom: 0px;
    }

    .m-sm-t5 {
        margin-top: 5px;
    }

    .m-sm-b5 {
        margin-bottom: 5px;
    }

    .m-sm-t10 {
        margin-top: 10px;
    }

    .m-sm-b10 {
        margin-bottom: 10px;
    }

    .m-sm-t15 {
        margin-top: 15px;
    }

    .m-sm-b15 {
        margin-bottom: 15px;
    }

    .m-sm-t20 {
        margin-top: 20px;
    }

    .m-sm-b20 {
        margin-bottom: 20px;
    }

    .m-sm-t25 {
        margin-top: 25px;
    }

    .m-sm-b25 {
        margin-bottom: 25px;
    }

    .m-sm-t30 {
        margin-top: 30px;
    }

    .m-sm-b30 {
        margin-bottom: 30px;
    }

    .m-sm-t35 {
        margin-top: 35px;
    }

    .m-sm-b35 {
        margin-bottom: 35px;
    }

    .m-sm-t40 {
        margin-top: 40px;
    }

    .m-sm-b40 {
        margin-bottom: 40px;
    }

    .m-sm-t45 {
        margin-top: 45px;
    }

    .m-sm-b45 {
        margin-bottom: 45px;
    }

    .m-sm-t50 {
        margin-top: 50px;
    }

    .m-sm-b50 {
        margin-bottom: 50px;
    }

    .m-sm-t55 {
        margin-top: 55px;
    }

    .m-sm-b55 {
        margin-bottom: 55px;
    }

    .m-sm-t60 {
        margin-top: 60px;
    }

    .m-sm-b60 {
        margin-bottom: 60px;
    }

    .m-sm-t65 {
        margin-top: 65px;
    }

    .m-sm-b65 {
        margin-bottom: 65px;
    }

    .m-sm-t70 {
        margin-top: 70px;
    }

    .m-sm-b70 {
        margin-bottom: 70px;
    }

    .m-sm-t75 {
        margin-top: 75px;
    }

    .m-sm-b75 {
        margin-bottom: 75px;
    }

    .m-sm-t80 {
        margin-top: 80px;
    }

    .m-sm-b80 {
        margin-bottom: 80px;
    }

    .m-sm-t85 {
        margin-top: 85px;
    }

    .m-sm-b85 {
        margin-bottom: 85px;
    }

    .m-sm-t90 {
        margin-top: 90px;
    }

    .m-sm-b90 {
        margin-bottom: 90px;
    }

    .m-sm-t95 {
        margin-top: 95px;
    }

    .m-sm-b95 {
        margin-bottom: 95px;
    }

    .m-sm-t100 {
        margin-top: 100px;
    }

    .m-sm-b100 {
        margin-bottom: 100px;
    }
}

@media only screen and (max-width: 576px) {
    .m-xs-t0 {
        margin-top: 0px;
    }

    .m-xs-b0 {
        margin-bottom: 0px;
    }

    .m-xs-t5 {
        margin-top: 5px;
    }

    .m-xs-b5 {
        margin-bottom: 5px;
    }

    .m-xs-t10 {
        margin-top: 10px;
    }

    .m-xs-b10 {
        margin-bottom: 10px;
    }

    .m-xs-t15 {
        margin-top: 15px;
    }

    .m-xs-b15 {
        margin-bottom: 15px;
    }

    .m-xs-t20 {
        margin-top: 20px;
    }

    .m-xs-b20 {
        margin-bottom: 20px;
    }

    .m-xs-t25 {
        margin-top: 25px;
    }

    .m-xs-b25 {
        margin-bottom: 25px;
    }

    .m-xs-t30 {
        margin-top: 30px;
    }

    .m-xs-b30 {
        margin-bottom: 30px;
    }

    .m-xs-t35 {
        margin-top: 35px;
    }

    .m-xs-b35 {
        margin-bottom: 35px;
    }

    .m-xs-t40 {
        margin-top: 40px;
    }

    .m-xs-b40 {
        margin-bottom: 40px;
    }

    .m-xs-t45 {
        margin-top: 45px;
    }

    .m-xs-b45 {
        margin-bottom: 45px;
    }

    .m-xs-t50 {
        margin-top: 50px;
    }

    .m-xs-b50 {
        margin-bottom: 50px;
    }

    .m-xs-t55 {
        margin-top: 55px;
    }

    .m-xs-b55 {
        margin-bottom: 55px;
    }

    .m-xs-t60 {
        margin-top: 60px;
    }

    .m-xs-b60 {
        margin-bottom: 60px;
    }

    .m-xs-t65 {
        margin-top: 65px;
    }

    .m-xs-b65 {
        margin-bottom: 65px;
    }

    .m-xs-t70 {
        margin-top: 70px;
    }

    .m-xs-b70 {
        margin-bottom: 70px;
    }

    .m-xs-t75 {
        margin-top: 75px;
    }

    .m-xs-b75 {
        margin-bottom: 75px;
    }

    .m-xs-t80 {
        margin-top: 80px;
    }

    .m-xs-b80 {
        margin-bottom: 80px;
    }

    .m-xs-t85 {
        margin-top: 85px;
    }

    .m-xs-b85 {
        margin-bottom: 85px;
    }

    .m-xs-t90 {
        margin-top: 90px;
    }

    .m-xs-b90 {
        margin-bottom: 90px;
    }

    .m-xs-t95 {
        margin-top: 95px;
    }

    .m-xs-b95 {
        margin-bottom: 95px;
    }

    .m-xs-t100 {
        margin-top: 100px;
    }

    .m-xs-b100 {
        margin-bottom: 100px;
    }
}

.m-auto {
    margin: auto;
}

.max-w50 {
    max-width: 50px;
}

.max-w60 {
    max-width: 60px;
}

.max-w80 {
    max-width: 80px;
}

.max-w100 {
    max-width: 100px;
}

.max-w200 {
    max-width: 200px;
}

.max-w300 {
    max-width: 300px;
}

.max-w400 {
    max-width: 400px;
}

.max-w500 {
    max-width: 500px;
}

.max-w600 {
    max-width: 600px;
}

.max-w700 {
    max-width: 700px;
}

.max-w800 {
    max-width: 800px;
}

.max-w900 {
    max-width: 900px;
}

.max-w1000 {
    max-width: 1000px;
}

.bg-img-fix {
    background-attachment: fixed;
    background-size: cover;
}

.full-img {
    width: 100%;
}

.sticky-top {
    top: 120px;
}

.img-cover {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

section {
    position: relative;
    z-index: 1;
}

.rounded-xl {
    border-radius: 50% !important;
}

.rounded-lg {
    border-radius: 20px !important;
}

.rounded-md {
    border-radius: 10px !important;
}

.rounded-sm {
    border-radius: 5px !important;
}

.text-maroon {
    color: #9e0168;
}

.text-orange {
    color: #ff8853;
}

.text-yellow {
    color: #ffa808;
}

.text-skyblue {
    color: #029e76;
}

.text-red {
    color: #ff586e;
}

.text-green {
    color: #029e76;
}

.text-blue {
    color: #5543d1;
}

.bg-maroon {
    background-color: #dd2ca0;
}

    .bg-maroon.light {
        background-color: rgba(221, 44, 160, 0.1);
    }

        .bg-maroon.light svg path {
            fill: #dd2ca0;
        }

        .bg-maroon.light i {
            color: #dd2ca0;
        }

.bg-orange {
    background-color: #ff8853;
}

    .bg-orange.light {
        background-color: rgba(255, 200, 0, 0.1);
    }

        .bg-orange.light svg path {
            fill: #ff8853;
        }

        .bg-orange.light i {
            color: #ff8853;
        }

.bg-yellow {
    background-color: #ffc600;
}

    .bg-yellow.light {
        background-color: rgba(255, 200, 0, 0.1);
    }

        .bg-yellow.light svg path {
            fill: #ffc600;
        }

        .bg-yellow.light i {
            color: #ffc600;
        }

.bg-skyblue {
    background-color: #00aeff;
}

    .bg-skyblue.light {
        background-color: rgba(0, 174, 255, 0.1);
    }

        .bg-skyblue.light svg path {
            fill: #00aeff;
        }

        .bg-skyblue.light i {
            color: #00aeff;
        }

.bg-red {
    background-color: #ff586e;
}

    .bg-red.light {
        background-color: rgba(255, 88, 110, 0.1);
    }

        .bg-red.light svg path {
            fill: #ff586e;
        }

        .bg-red.light i {
            color: #ff586e;
        }

.bg-green {
    background-color: #04a57c;
}

    .bg-green.light {
        background-color: rgba(4, 165, 124, 0.1);
    }

        .bg-green.light svg path,
        .bg-green.light svg rect {
            fill: #04a57c;
        }

        .bg-green.light i {
            color: #04a57c;
        }

.bg-blue {
    background-color: #4a8be0;
}

    .bg-blue.light {
        background-color: rgba(74, 139, 224, 0.1);
    }

        .bg-blue.light svg path {
            fill: #4a8be0;
        }

        .bg-blue.light i {
            color: #4a8be0;
        }

.bg-pink {
    background-color: #ff4db8;
}

    .bg-pink.light {
        background-color: rgba(255, 77, 184, 0.1);
    }

        .bg-pink.light svg path {
            fill: #ff4db8;
        }

        .bg-pink.light svg circle {
            fill: #fff;
        }

        .bg-pink.light i {
            color: #ff4db8;
        }

/* Letter Spacing */
.letter-1 {
    letter-spacing: 1px;
}

.letter-2 {
    letter-spacing: 2px;
}

.letter-s3 {
    letter-spacing: 3px;
}

.letter-s4 {
    letter-spacing: 4px;
}

.letter-s5 {
    letter-spacing: 5px;
}

/*==== 4. Layout ====*/
.header {
    background-color: var(--bg-white);
    min-height: 55px;
    z-index: 2;
    border-bottom: 1px solid var(--border-color);
}

    .header.transparent {
        position: absolute;
        width: 100%;
        top: 0;
        background: transparent;
        border: 0;
        right: 0;
    }

        .header.transparent .right-content .menu-toggler {
            color: #fff;
        }

        .header.transparent .main-bar .back-btn {
            color: #fff;
        }

            .header.transparent .main-bar .back-btn svg path {
                fill: #fff;
            }

        .header.transparent .main-bar .menu-toggler {
            color: #fff;
        }

            .header.transparent .main-bar .menu-toggler svg path {
                fill: #fff;
            }

        .header.transparent .main-bar.sticky-header .right-content .menu-toggler {
            color: var(--primary);
        }

        .header.transparent .main-bar.sticky-header .header-content .back-btn {
            color: #000;
        }

            .header.transparent .main-bar.sticky-header .header-content .back-btn svg path {
                fill: #a19fa8;
            }

        .header.transparent .main-bar.sticky-header .header-content .menu-toggler {
            color: #000;
        }

            .header.transparent .main-bar.sticky-header .header-content .menu-toggler svg path {
                fill: #a19fa8;
            }

        .header.transparent .main-bar.sticky-header .header-content .mid-content h5, .header.transparent .main-bar.sticky-header .header-content .mid-content .h5 {
            color: #000;
        }

        .header.transparent .main-bar.sticky-header .left-content .theme-btn,
        .header.transparent .main-bar.sticky-header .left-content .theme-color {
            color: #a19fa8;
        }

            .header.transparent .main-bar.sticky-header .left-content .theme-btn svg,
            .header.transparent .main-bar.sticky-header .left-content .theme-color svg {
                stroke: #a19fa8;
            }

                .header.transparent .main-bar.sticky-header .left-content .theme-btn svg path,
                .header.transparent .main-bar.sticky-header .left-content .theme-color svg path {
                    stroke: #a19fa8;
                }

                .header.transparent .main-bar.sticky-header .left-content .theme-btn svg.color-plate path,
                .header.transparent .main-bar.sticky-header .left-content .theme-color svg.color-plate path {
                    fill: #a19fa8;
                }

        .header.transparent .main-bar:not(.sticky-header) .form-check.checkmark {
            padding: 0;
        }

            .header.transparent .main-bar:not(.sticky-header) .form-check.checkmark .form-check-label {
                width: 20px;
                height: 20px;
                cursor: pointer;
                border-radius: 0;
                text-align: center;
                border: 0;
                line-height: 0;
            }

                .header.transparent .main-bar:not(.sticky-header) .form-check.checkmark .form-check-label svg path {
                    stroke: #fff;
                }

            .header.transparent .main-bar:not(.sticky-header) .form-check.checkmark .form-check-input {
                display: none;
            }

                .header.transparent .main-bar:not(.sticky-header) .form-check.checkmark .form-check-input:checked + .form-check-label {
                    background-color: transparent;
                }

                    .header.transparent .main-bar:not(.sticky-header) .form-check.checkmark .form-check-input:checked + .form-check-label svg path {
                        fill: #fff;
                    }

        .header.transparent .main-bar h5, .header.transparent .main-bar .h5 {
            color: #fff;
        }

        .header.transparent .main-bar .dropdown .dropdown-toggle:after {
            content: none;
        }

        .header.transparent .left-content .theme-btn,
        .header.transparent .left-content .theme-color {
            width: 35px;
            display: inline-block;
            height: 35px;
            text-align: center;
            line-height: 35px;
            padding: 0;
        }

            .header.transparent .left-content .theme-btn svg,
            .header.transparent .left-content .theme-color svg {
                stroke: #ffff;
            }

                .header.transparent .left-content .theme-btn svg path,
                .header.transparent .left-content .theme-color svg path {
                    stroke: #ffff;
                }

                .header.transparent .left-content .theme-btn svg.color-plate path,
                .header.transparent .left-content .theme-color svg.color-plate path {
                    fill: #ffff;
                }

            .header.transparent .left-content .theme-btn .light,
            .header.transparent .left-content .theme-color .light {
                display: none;
            }

            .header.transparent .left-content .theme-btn.active .light,
            .header.transparent .left-content .theme-color.active .light {
                display: inline-block;
            }

            .header.transparent .left-content .theme-btn.active .dark,
            .header.transparent .left-content .theme-color.active .dark {
                display: none;
            }

    .header .back-btn {
        display: flex;
        line-height: 1;
        font-size: 16px;
        width: 35px;
        height: 35px;
        align-items: center;
        justify-content: center;
    }

    .header .menu-toggler {
        font-size: 20px;
        color: var(--title);
        display: flex;
        align-items: center;
    }

        .header .menu-toggler i {
            line-height: 1;
        }

    .header .container {
        padding-top: 0;
        padding-bottom: 0;
    }

    .header .sticky-header {
        position: fixed;
        top: 0;
        z-index: 99999;
        right: 0;
        box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.1);
        background: var(--bg-white);
        transition: all 0.5s;
        width: 100%;
    }

    .header .header-content {
        display: flex;
        height: 100%;
        min-height: 55px;
        align-items: center;
    }

        .header .header-content .right-content {
            width: 30px;
            height: 100%;
            display: flex;
            align-items: center;
        }

        .header .header-content .mid-content {
            flex: 1;
            text-align: center;
        }

        .header .header-content .left-content .form-check.checkmark {
            padding: 0;
        }

            .header .header-content .left-content .form-check.checkmark .form-check-label {
                width: 20px;
                height: 20px;
                cursor: pointer;
                border-radius: 0;
                text-align: center;
                border: 0;
                line-height: 0;
            }

            .header .header-content .left-content .form-check.checkmark .form-check-input {
                display: none;
            }

                .header .header-content .left-content .form-check.checkmark .form-check-input:checked + .form-check-label {
                    background-color: transparent;
                }

                    .header .header-content .left-content .form-check.checkmark .form-check-input:checked + .form-check-label svg path {
                        fill: var(--primary);
                    }

    .header.user-head .header-content .mid-content {
        display: flex;
        align-items: center;
    }

        .header.user-head .header-content .mid-content .media {
            margin-left: 10px;
        }

    .header.user-head .header-content .left-content .dropdown .dropdown-toggle:after {
        content: none;
    }

.menubar-area {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100%;
    background-color: #fff;
    padding: 8px;
    z-index: 999;
    box-shadow: 0 12px 26px 0 rgba(0, 0, 0, 0.3);
}

    .menubar-area .toolbar-inner {
        padding-right: 0;
        padding-left: 0;
        display: flex;
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
        align-items: center;
        justify-content: space-between;
    }

        .menubar-area .toolbar-inner .nav-link,
        .menubar-area .toolbar-inner .menu-toggler {
            color: var(--title);
            text-align: center;
            width: 25%;
            padding: 0 0;
            font-size: 18px;
        }

            .menubar-area .toolbar-inner .nav-link i,
            .menubar-area .toolbar-inner .menu-toggler i {
                line-height: 1;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .menubar-area .toolbar-inner .nav-link.active,
            .menubar-area .toolbar-inner .menu-toggler.active {
                position: relative;
            }

                .menubar-area .toolbar-inner .nav-link.active svg path,
                .menubar-area .toolbar-inner .menu-toggler.active svg path {
                    fill: var(--primary);
                }

                .menubar-area .toolbar-inner .nav-link.active:after,
                .menubar-area .toolbar-inner .menu-toggler.active:after {
                    content: "";
                    position: absolute;
                    bottom: -20px;
                    right: 50%;
                    width: 70px;
                    height: 6px;
                    background: var(--primary);
                    border-radius: 10px 10px 0px 0px;
                    transform: translateX(50%);
                }

            .menubar-area .toolbar-inner .nav-link .title,
            .menubar-area .toolbar-inner .menu-toggler .title {
                display: block;
                margin-top: 5px;
                font-weight: 500;
                font-size: 12px;
            }

.header.transparent ~ .banner-wrapper,
.header.transparent ~ .content-inner {
    padding-top: 55px !important;
}

    .header.transparent ~ .banner-wrapper + .content-inner {
        padding-top: 0 !important;
    }

/* Start Header is-fixed Animation */
.main-bar {
    -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
    -khtml-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
    -moz-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
    -ms-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
    -o-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
    transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
}

    .main-bar.sticky-header {
        -webkit-animation: 0.50s ease 0s normal forwards 1 running headerSlideDown;
        -khtml-animation: 0.50s ease 0s normal forwards 1 running headerSlideDown;
        -moz-animation: 0.50s ease 0s normal forwards 1 running headerSlideDown;
        -ms-animation: 0.50s ease 0s normal forwards 1 running headerSlideDown;
        -o-animation: 0.50s ease 0s normal forwards 1 running headerSlideDown;
        animation: 0.50s ease 0s normal forwards 1 running headerSlideDown;
    }

@-moz-keyframes headerSlideDown {
    0% {
        margin-top: -150px;
    }

    100% {
        margin-top: 0;
    }
}

@-ms-keyframes headerSlideDown {
    0% {
        margin-top: -150px;
    }

    100% {
        margin-top: 0;
    }
}

@-webkit-keyframes headerSlideDown {
    0% {
        margin-top: -150px;
    }

    100% {
        margin-top: 0;
    }
}

@keyframes headerSlideDown {
    0% {
        margin-top: -150px;
    }

    100% {
        margin-top: 0;
    }
}

/* Header is-fixed Animation End */
.sidebar {
    height: 100vh;
    width: 260px;
    background-color: var(--bg-white);
    position: fixed;
    right: -260px;
    top: 0;
    z-index: 999999;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    display: flex;
    flex-direction: column;
    overflow-y: scroll;
}

    .sidebar.show {
        right: 0;
    }

    .sidebar.right {
        right: auto;
        left: -260px;
    }

        .sidebar.right.show {
            right: auto;
            left: 0;
        }

    .sidebar .nav-label {
        margin: 20px 0 0;
        padding: 20px 0 8px;
        text-transform: uppercase;
        font-size: 14px;
        letter-spacing: 0.05rem;
        border-top: 1px solid var(--border-color);
        color: #000;
        font-weight: 600;
    }

    .sidebar .sidebar-bottom {
        margin-top: auto;
        padding: 20px;
    }

        .sidebar .sidebar-bottom p {
            margin: 0;
            font-size: 13px;
        }

        .sidebar .sidebar-bottom .name {
            margin-bottom: 5px;
        }

        .sidebar .sidebar-bottom ul {
            display: flex;
        }

            .sidebar .sidebar-bottom ul li {
                width: 25%;
            }

                .sidebar .sidebar-bottom ul li a {
                    display: block;
                    text-align: center;
                    padding: 15px;
                    font-size: 18px;
                    color: var(--title);
                }

    .sidebar .author-box {
        background-color: var(--secondary);
        display: flex;
        align-items: center;
        padding: 20px 15px;
        margin-bottom: 30px;
    }

        .sidebar .author-box .dz-media {
            border-radius: 50%;
            border: 2px solid #fff;
            width: 45px;
            height: 45px;
            overflow: hidden;
            margin-left: 12px;
        }

        .sidebar .author-box span {
            color: #fff;
        }

        .sidebar .author-box .name {
            color: #fff;
            margin-bottom: 0;
        }

    .sidebar .navbar-nav {
        padding: 0 18px;
        margin-bottom: 30px;
    }

        .sidebar .navbar-nav > .nav-label:first-child {
            border-top: 0;
            margin: 0;
            padding-top: 0;
        }

        .sidebar .navbar-nav li > a {
            position: relative;
            padding: 8px 0 8px 15px;
            color: inherit;
            display: flex;
            align-items: center;
            font-weight: 400;
            color: #000;
        }

            .sidebar .navbar-nav li > a:after {
                content: "\f105";
                font-family: "Font Awesome 6 Free";
                left: 0;
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                opacity: 0.5;
                font-weight: 700;
                color: #000;
                font-size: 10px;
            }

            .sidebar .navbar-nav li > a .custom-switch {
                margin-right: auto;
                align-items: center;
                display: flex;
            }

            .sidebar .navbar-nav li > a .badge {
                margin-right: auto;
                font-size: 10px;
                min-width: 20px;
                min-height: 20px;
                padding: 0;
                height: 20px;
                line-height: 20px;
            }

.menu-toggler {
    position: relative;
}

    .menu-toggler.show:after {
        content: "";
        position: fixed;
        height: 100%;
        width: 100%;
        right: 0;
        top: 0;
        background-color: rgba(0, 0, 0, 0.5);
        -webkit-transition: all 0.5s;
        -ms-transition: all 0.5s;
        transition: all 0.5s;
        z-index: 99999;
    }

.footer {
    height: auto;
    align-items: center;
    display: flex;
    z-index: 1;
    flex-direction: column;
}

    .footer.fixed {
        width: 100%;
        right: 0;
        bottom: 0;
        border-top: 1px solid var(--border-color);
        z-index: 999;
        position: fixed;
        background-color: #f7f7f7;
    }

    .footer .chat-footer form {
        width: 100%;
    }

        .footer .chat-footer form .input-wrapper .form-control {
            border: 0;
            padding-right: 0;
            padding-left: 0;
        }

            .footer .chat-footer form .input-wrapper .form-control::placeholder {
                color: #B0B0B0;
            }

        .footer .chat-footer form .input-wrapper .btn {
            position: absolute;
            bottom: 5px;
            left: 5px;
        }

            .footer .chat-footer form .input-wrapper .btn:hover svg path {
                fill: #fff;
            }

        .footer .chat-footer form .input-wrapper .icon-popup {
            position: absolute;
            bottom: 10px;
            right: 10px;
            z-index: 999;
        }

        .footer .chat-footer form .input-wrapper.message-area {
            background-color: #fff;
            position: relative;
            padding-left: 48px;
            overflow: hidden;
            border-radius: 28px;
            border: 1px solid #DADADA;
            padding-right: 45px;
        }

            .footer .chat-footer form .input-wrapper.message-area .emoji-icon {
                display: inline-block;
                padding-left: 7px;
                padding-top: 10px;
            }

                .footer .chat-footer form .input-wrapper.message-area .emoji-icon img {
                    width: 40px;
                    height: 40px;
                }

    .footer .form-check.checkmark {
        padding: 0;
    }

        .footer .form-check.checkmark .form-check-label {
            width: 48px;
            height: 48px;
            cursor: pointer;
            border-radius: 30px;
            text-align: center;
            line-height: 45px;
            border: 1px solid #EAEAEA;
        }

        .footer .form-check.checkmark .form-check-input {
            display: none;
        }

            .footer .form-check.checkmark .form-check-input:checked + .form-check-label {
                background-color: #EAEAEA;
            }

                .footer .form-check.checkmark .form-check-input:checked + .form-check-label svg path {
                    fill: var(--primary);
                }

.message-icon {
    display: none;
}

    .message-icon .container {
        padding: 14px;
    }

    .message-icon .checkbox.messagebar-sheet-image {
        width: 40px;
        height: 40px;
        background-size: contain;
        position: relative;
        display: inline-block;
        background-repeat: no-repeat;
        margin: 0 6px 10px;
    }

    .message-icon .checkbox input[type="checkbox"] {
        position: absolute;
        bottom: 0;
        background-color: transparent;
        left: 0;
        border-color: #fff;
        box-shadow: 0 0px 6px 0 rgba(0, 0, 0, 0.3);
    }

        .message-icon .checkbox input[type="checkbox"]:checked {
            background-color: var(--primary);
            border-color: var(--primary);
        }

[data-theme-color="color-primary"] .footer.transparent {
    background-color: #e5e0ee;
}

[data-theme-color="color-green"] .footer.transparent {
    background-color: #d1ffd9;
}

[data-theme-color="color-blue"] .footer.transparent {
    background-color: #b1dcff;
}

[data-theme-color="color-pink"] .footer.transparent {
    background-color: #ffe2e8;
}

[data-theme-color="color-yellow"] .footer.transparent {
    background-color: #fff8dc;
}

[data-theme-color="color-orange"] .footer.transparent {
    background-color: #ffe4bd;
}

[data-theme-color="color-purple"] .footer.transparent {
    background-color: #e1bfff;
}

[data-theme-color="color-red"] .footer.transparent {
    background-color: #ffdbd9;
}

[data-theme-color="color-lightblue"] .footer.transparent {
    background-color: #d3f1ff;
}

[data-theme-color="color-teal"] .footer.transparent {
    background-color: #e3e3e3;
}

[data-theme-color="color-lime"] .footer.transparent {
    background-color: #fcffdd;
}

[data-theme-color="color-deeporange"] .footer.transparent {
    background-color: #ffbd9d;
}

[data-theme-color="color-primary"] {
    --primary: #673ab7;
    --primary-hover: #512e90;
    --primary-dark: #261543;
    --gradient: linear-gradient(73.08deg, #673ab7 15.14%, #9a70e5 92.25%);
    --rgba-primary-1: rgba(103,58,183,0.1);
    --rgba-primary-2: rgba(103,58,183,0.2);
    --rgba-primary-3: rgba(103,58,183,0.3);
    --rgba-primary-4: rgba(103,58,183,0.4);
    --rgba-primary-5: rgba(103,58,183,0.5);
    --rgba-primary-6: rgba(103,58,183,0.6);
    --rgba-primary-7: rgba(103,58,183,0.7);
    --rgba-primary-8: rgba(103,58,183,0.8);
    --rgba-primary-9: rgba(103,58,183,0.9);
}

[data-theme-color="color-green"] {
    --primary: #4cd964;
    --primary-hover: #2ac845;
    --primary-dark: #197328;
    --gradient: linear-gradient(73.08deg, #44b156 15.14%, #4cd964 92.25%);
    --rgba-primary-1: rgba(76,217,100,0.1);
    --rgba-primary-2: rgba(76,217,100,0.2);
    --rgba-primary-3: rgba(76,217,100,0.3);
    --rgba-primary-4: rgba(76,217,100,0.4);
    --rgba-primary-5: rgba(76,217,100,0.5);
    --rgba-primary-6: rgba(76,217,100,0.6);
    --rgba-primary-7: rgba(76,217,100,0.7);
    --rgba-primary-8: rgba(76,217,100,0.8);
    --rgba-primary-9: rgba(76,217,100,0.9);
}

[data-theme-color="color-blue"] {
    --primary: #2196f3;
    --primary-hover: #0c7cd5;
    --primary-dark: #064475;
    --gradient: linear-gradient(73.08deg, #2196f3 15.14%, #48a9f8 92.25%);
    --rgba-primary-1: rgba(33,150,243,0.1);
    --rgba-primary-2: rgba(33,150,243,0.2);
    --rgba-primary-3: rgba(33,150,243,0.3);
    --rgba-primary-4: rgba(33,150,243,0.4);
    --rgba-primary-5: rgba(33,150,243,0.5);
    --rgba-primary-6: rgba(33,150,243,0.6);
    --rgba-primary-7: rgba(33,150,243,0.7);
    --rgba-primary-8: rgba(33,150,243,0.8);
    --rgba-primary-9: rgba(33,150,243,0.9);
}

[data-theme-color="color-pink"] {
    --primary: #ff9eb1;
    --primary-hover: #ff6b88;
    --primary-dark: #ff0536;
    --gradient: linear-gradient(73.08deg, #ff9eb1 15.14%, #ffb9c6 92.25%);
    --rgba-primary-1: rgba(255,158,177,0.1);
    --rgba-primary-2: rgba(255,158,177,0.2);
    --rgba-primary-3: rgba(255,158,177,0.3);
    --rgba-primary-4: rgba(255,158,177,0.4);
    --rgba-primary-5: rgba(255,158,177,0.5);
    --rgba-primary-6: rgba(255,158,177,0.6);
    --rgba-primary-7: rgba(255,158,177,0.7);
    --rgba-primary-8: rgba(255,158,177,0.8);
    --rgba-primary-9: rgba(255,158,177,0.9);
}

[data-theme-color="color-yellow"] {
    --primary: #e3b706;
    --primary-hover: #cca300;
    --primary-dark: #665200;
    --gradient: linear-gradient(73.08deg, #e3b706 15.14%, #ffcc00 92.25%);
    --rgba-primary-1: rgba(255,204,0,0.1);
    --rgba-primary-2: rgba(255,204,0,0.2);
    --rgba-primary-3: rgba(255,204,0,0.3);
    --rgba-primary-4: rgba(255,204,0,0.4);
    --rgba-primary-5: rgba(255,204,0,0.5);
    --rgba-primary-6: rgba(255,204,0,0.6);
    --rgba-primary-7: rgba(255,204,0,0.7);
    --rgba-primary-8: rgba(255,204,0,0.8);
    --rgba-primary-9: rgba(255,204,0,0.9);
}

[data-theme-color="color-orange"] {
    --primary: #ff9500;
    --primary-hover: #cc7700;
    --primary-dark: #663c00;
    --gradient: linear-gradient(73.08deg, #ff5e00 15.14%, #ff9500 92.25%);
    --rgba-primary-1: rgba(255,149,0,0.1);
    --rgba-primary-2: rgba(255,149,0,0.2);
    --rgba-primary-3: rgba(255,149,0,0.3);
    --rgba-primary-4: rgba(255,149,0,0.4);
    --rgba-primary-5: rgba(255,149,0,0.5);
    --rgba-primary-6: rgba(255,149,0,0.6);
    --rgba-primary-7: rgba(255,149,0,0.7);
    --rgba-primary-8: rgba(255,149,0,0.8);
    --rgba-primary-9: rgba(255,149,0,0.9);
}

[data-theme-color="color-purple"] {
    --primary: #9237e3;
    --primary-hover: #791ccb;
    --primary-dark: #431071;
    --gradient: linear-gradient(73.08deg, #9237e3 15.14%, #c482ff 92.25%);
    --rgba-primary-1: rgba(146,55,227,0.1);
    --rgba-primary-2: rgba(146,55,227,0.2);
    --rgba-primary-3: rgba(146,55,227,0.3);
    --rgba-primary-4: rgba(146,55,227,0.4);
    --rgba-primary-5: rgba(146,55,227,0.5);
    --rgba-primary-6: rgba(146,55,227,0.6);
    --rgba-primary-7: rgba(146,55,227,0.7);
    --rgba-primary-8: rgba(146,55,227,0.8);
    --rgba-primary-9: rgba(146,55,227,0.9);
}

[data-theme-color="color-red"] {
    --primary: #ff3b30;
    --primary-hover: #ff7b73;
    --gradient: linear-gradient(73.08deg, #ff3b30 15.14%, #ff5d54 92.25%);
    --primary-dark: #960800;
    --rgba-primary-1: rgba(255,59,48,0.1);
    --rgba-primary-2: rgba(255,59,48,0.2);
    --rgba-primary-3: rgba(255,59,48,0.3);
    --rgba-primary-4: rgba(255,59,48,0.4);
    --rgba-primary-5: rgba(255,59,48,0.5);
    --rgba-primary-6: rgba(255,59,48,0.6);
    --rgba-primary-7: rgba(255,59,48,0.7);
    --rgba-primary-8: rgba(255,59,48,0.8);
    --rgba-primary-9: rgba(255,59,48,0.9);
}

[data-theme-color="color-lightblue"] {
    --primary: #5ac8fa;
    --primary-hover: #29b8f9;
    --primary-dark: #067fb6;
    --gradient: linear-gradient(73.08deg, #00afff 15.14%, #72d3ff 92.25%);
    --rgba-primary-1: rgba(90,200,250,0.1);
    --rgba-primary-2: rgba(90,200,250,0.2);
    --rgba-primary-3: rgba(90,200,250,0.3);
    --rgba-primary-4: rgba(90,200,250,0.4);
    --rgba-primary-5: rgba(90,200,250,0.5);
    --rgba-primary-6: rgba(90,200,250,0.6);
    --rgba-primary-7: rgba(90,200,250,0.7);
    --rgba-primary-8: rgba(90,200,250,0.8);
    --rgba-primary-9: rgba(90,200,250,0.9);
}

[data-theme-color="color-teal"] {
    --primary: #009688;
    --primary-hover: #00635a;
    --primary-dark: #000;
    --gradient: linear-gradient(73.08deg, #009688 15.14%, #10c9b8 92.25%);
    --rgba-primary-1: rgba(0,150,136,0.1);
    --rgba-primary-2: rgba(0,150,136,0.2);
    --rgba-primary-3: rgba(0,150,136,0.3);
    --rgba-primary-4: rgba(0,150,136,0.4);
    --rgba-primary-5: rgba(0,150,136,0.5);
    --rgba-primary-6: rgba(0,150,136,0.6);
    --rgba-primary-7: rgba(0,150,136,0.7);
    --rgba-primary-8: rgba(0,150,136,0.8);
    --rgba-primary-9: rgba(0,150,136,0.9);
}

[data-theme-color="color-lime"] {
    --primary: #cddc39;
    --primary-hover: #b2c022;
    --primary-dark: #616913;
    --gradient: linear-gradient(73.08deg, #cddc39 15.14%, #cddc39 92.25%);
    --rgba-primary-1: rgba(205,220,57,0.1);
    --rgba-primary-2: rgba(205,220,57,0.2);
    --rgba-primary-3: rgba(205,220,57,0.3);
    --rgba-primary-4: rgba(205,220,57,0.4);
    --rgba-primary-5: rgba(205,220,57,0.5);
    --rgba-primary-6: rgba(205,220,57,0.6);
    --rgba-primary-7: rgba(205,220,57,0.7);
    --rgba-primary-8: rgba(205,220,57,0.8);
    --rgba-primary-9: rgba(205,220,57,0.9);
}

[data-theme-color="color-deeporange"] {
    --primary: #ff6b22;
    --primary-hover: #ee4f00;
    --primary-dark: #882d00;
    --gradient: linear-gradient(73.08deg, #ff6b22 15.14%, #ff9f70 92.25%);
    --rgba-primary-1: rgba(255,107,34,0.1);
    --rgba-primary-2: rgba(255,107,34,0.2);
    --rgba-primary-3: rgba(255,107,34,0.3);
    --rgba-primary-4: rgba(255,107,34,0.4);
    --rgba-primary-5: rgba(255,107,34,0.5);
    --rgba-primary-6: rgba(255,107,34,0.6);
    --rgba-primary-7: rgba(255,107,34,0.7);
    --rgba-primary-8: rgba(255,107,34,0.8);
    --rgba-primary-9: rgba(255,107,34,0.9);
}

.theme-color-settings {
    padding: 15px 10px 10px;
    margin: 10px 0 0;
    display: flex;
    flex-wrap: wrap;
}

    .theme-color-settings li {
        display: inline-block;
        width: 33.33%;
        text-align: center;
        margin-bottom: 20px;
    }

        .theme-color-settings li input {
            display: none;
        }

        .theme-color-settings li label {
            background-color: #000;
            width: 40px;
            border-radius: var(--border-radius-base);
            height: 40px;
            margin: 0 auto 5px;
            position: relative;
            display: block;
        }

            .theme-color-settings li label:after {
                content: "\f00c";
                position: absolute;
                top: 50%;
                right: 50%;
                display: none;
                transform: translate(50%, -50%);
                font-family: 'Font Awesome 6 Free';
                font-weight: 900;
                font-size: 16px;
                color: #fff;
            }

        .theme-color-settings li input:checked + label:after {
            display: block;
        }

        .theme-color-settings li input[value="color-primary"] + label {
            background-color: #673ab7;
        }

        .theme-color-settings li input[value="color-green"] + label {
            background-color: #4cd964;
        }

        .theme-color-settings li input[value="color-blue"] + label {
            background-color: #2196f3;
        }

        .theme-color-settings li input[value="color-pink"] + label {
            background-color: #ff9eb1;
        }

        .theme-color-settings li input[value="color-yellow"] + label {
            background-color: #ffcc00;
        }

        .theme-color-settings li input[value="color-orange"] + label {
            background-color: #ff9500;
        }

        .theme-color-settings li input[value="color-purple"] + label {
            background-color: #9237e3;
        }

        .theme-color-settings li input[value="color-red"] + label {
            background-color: #ff3b30;
        }

        .theme-color-settings li input[value="color-lightblue"] + label {
            background-color: #5ac8fa;
        }

        .theme-color-settings li input[value="color-teal"] + label {
            background-color: #009688;
        }

        .theme-color-settings li input[value="color-lime"] + label {
            background-color: #cddc39;
        }

        .theme-color-settings li input[value="color-deeporange"] + label {
            background-color: #ff6b22;
        }

/*==== 5. Components ====*/
.imageuploadify.well {
    width: 100%;
    background: #fff;
    border-radius: 25px !important;
    color: #848484;
    font-size: 14px;
    font-weight: 500;
    text-align: right;
    position: relative;
    padding: 0 !important;
    min-height: 48px;
    overflow: hidden;
}

    .imageuploadify.well .imageuploadify-images-list i,
    .imageuploadify.well .imageuploadify-images-list .imageuploadify-message {
        display: none;
    }

    .imageuploadify.well .imageuploadify-images-list .imageuploadify-message {
        border: 0;
        padding: 0;
        font-size: 14px;
    }

    .imageuploadify.well .imageuploadify-images-list .btn-default {
        color: #7e7e7e !important;
        border-radius: 50px;
        margin: 0;
        background-color: #fff !important;
        max-width: 100%;
        border: 0;
    }

    .imageuploadify.well .imageuploadify-images-list .imageuploadify-container {
        border-radius: 5px;
        box-shadow: unset;
        margin-right: 15px !important;
        border: 1px solid #ddd;
    }

        .imageuploadify.well .imageuploadify-images-list .imageuploadify-container .imageuploadify-details {
            display: none;
        }

        .imageuploadify.well .imageuploadify-images-list .imageuploadify-container button.btn-danger {
            padding: 0;
            font-weight: 900;
        }

:root {
    --primary: #673ab7;
    --secondary: #48A9F8;
    --gradient: linear-gradient(73.08deg, #673ab7 15.14%, #9a70e5 92.25%);
    --primary-hover: #512e90;
    --primary-dark: #261543;
    --rgba-primary-1: rgba(103, 58, 183, 0.1);
    --rgba-primary-2: rgba(103, 58, 183, 0.2);
    --rgba-primary-3: rgba(103, 58, 183, 0.3);
    --rgba-primary-4: rgba(103, 58, 183, 0.4);
    --rgba-primary-5: rgba(103, 58, 183, 0.5);
    --rgba-primary-6: rgba(103, 58, 183, 0.6);
    --rgba-primary-7: rgba(103, 58, 183, 0.7);
    --rgba-primary-8: rgba(103, 58, 183, 0.8);
    --rgba-primary-9: rgba(103, 58, 183, 0.9);
    --font-family-base: 'Almarai', sans-serif;
    --font-family-title: 'Almarai', sans-serif;
    --border-radius-base: 8px;
    --border-color: #DDDDDD;
    --bg-white: #FFF;
    --title: #212529;
}

.noUi-target {
    border: 0px;
    border-radius: var(--border-radius-base);
}

.noUi-connect {
    background-color: var(--primary);
}

.noUi-connects {
    background-color: #eee;
}

.noUi-connect.c-1-color {
    background-color: #56c760;
}

.noUi-connect.c-2-color {
    background-color: #58bad7;
}

.noUi-connect.c-3-color {
    background-color: var(--primary);
}

.noUi-connect.c-4-color {
    background-color: #f0a901;
}

.noUi-vertical {
    width: 0.375rem;
}

.noUi-horizontal {
    height: 0.475rem;
    margin-bottom: 10px;
}

    .noUi-horizontal .noUi-handle, .noUi-vertical .noUi-handle {
        height: 17px;
        width: 17px;
        border-radius: 50px;
        box-shadow: none;
        border: none;
        background-color: var(--primary);
    }

        .noUi-horizontal .noUi-handle::after, .noUi-horizontal .noUi-handle::before, .noUi-vertical .noUi-handle::after, .noUi-vertical .noUi-handle::before {
            display: none;
        }

.noUi-vertical .noUi-handle {
    right: -4px;
    top: -6px;
}

.noUi-horizontal .noUi-handle {
    top: -5px;
}

html:not([dir=rtl]) .noUi-horizontal .noUi-handle {
    left: -6px;
}

#slider-toggle {
    height: 50px;
}

    #slider-toggle.off .noUi-handle {
        border-color: var(--primary);
    }

label input {
    width: 20px;
    height: 20px;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #7e7e7e;
    margin-bottom: 10px;
    background: transparent;
    border-color: #E1E1F0;
}

.input-icon + .form-control {
    padding: 0 40px 0 10px;
}

.basic-form .form-input {
    position: relative;
}

    .basic-form .form-input .input-icon {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 15px;
    }

.basic-form.style-1 .form-control {
    border-radius: 0;
    border-width: 0 0 1px 0;
}

.basic-form.style-1 .btn-link {
    font-size: 12px;
}

.basic-form.style-1 select {
    border-bottom: 1px solid #ddd !important;
    border: 0;
    border-radius: 0;
    appearance: none;
}

.form-control {
    height: 48px;
    border: 1px solid #ddd;
    padding: 10px 25px;
    font-size: 14px;
    font-weight: 400;
    color: #7e7e7e;
    transition: all 0.3s ease-in-out;
    background: #fff;
    border-radius: 45px;
}

    .form-control .select {
        padding: 12px 0;
    }

    .form-control.form-control-lg {
        height: 4rem;
        font-size: 1rem;
    }

    .form-control.form-control-sm {
        height: 2.813rem;
        font-size: 0.875rem;
    }

    .form-control span {
        margin-top: 0;
    }

    .form-control::-webkit-input-placeholder {
        color: #7e7e7e;
    }

    .form-control:-ms-input-placeholder {
        color: #7e7e7e;
    }

    .form-control::placeholder {
        color: #7e7e7e;
    }

    .form-control:focus, .form-control:active, .form-control.active {
        border-color: var(--primary);
        background: #fff;
    }

    .form-control.style-1 {
        border: 1px solid #F0F0F0;
    }

textarea.form-control {
    min-height: unset;
    height: auto;
}

textarea {
    height: 120px;
    resize: none;
}

.input-group {
    margin-bottom: 15px;
}

    .input-group .input-group-text {
        background: #fff;
        color: var(--primary);
        transition: all 0.3s ease-in-out;
        border-radius: 50px;
    }

    .input-group.search-input .btn-close {
        width: 24px;
        position: absolute;
        line-height: 26px;
        height: 24px;
        padding: 0 !important;
        font-size: 0.875rem;
        left: 10px;
        border-radius: 50% !important;
        z-index: 999;
        text-align: center;
        background: #B9B9B9;
        top: 50%;
        display: none;
        transform: translateY(-50%);
    }

    .input-group.search-input .form-control {
        border-radius: 45px !important;
    }

.bt-0 {
    border-top: 0 !important;
}

.bb-0 {
    border-bottom: 0 !important;
}

.be-0 {
    border-left: 0 !important;
}

.bs-0 {
    border-right: 0 !important;
}

.input-group:focus-within .input-group-text,
.input-group:focus-within .form-control {
    border-color: var(--primary);
}

.input-group > :not(:first-child) {
    padding: 10px 18px;
}

.show-pass {
    cursor: pointer;
}

    .show-pass .fa-eye {
        display: none;
    }

    .show-pass.active .fa-eye-slash {
        display: none;
    }

    .show-pass.active .fa-eye {
        display: inline-block;
    }

select {
    width: 100%;
    height: 48px;
    color: #7e7e7e;
    border: 1px solid #ddd;
    border-radius: 45px;
}

/* == Icon Checkbox == */
.check-box {
    margin-right: -30px;
    margin-left: 10px;
    margin-bottom: 5px;
    cursor: pointer;
    position: relative;
    width: auto;
    display: block;
}

    .check-box input {
        position: absolute !important;
        transform: translateX(10000px);
    }

        .check-box input:checked ~ .check-1 {
            opacity: 0 !important;
            display: none !important;
        }

        .check-box input:checked ~ .check-2 {
            display: block;
            color: var(--primary);
        }

    .check-box .fa-check-circle {
        display: none;
    }

    .check-box i {
        width: 20px;
        text-align: center;
        pointer-events: none;
        position: absolute;
        right: 30px;
        font-size: 1.125rem;
        top: 1px;
        height: 24px;
        line-height: 24px;
    }

    .check-box label {
        cursor: pointer;
        font-size: 13px;
        font-weight: 500;
        padding: 0 35px 0 15px;
    }

    .check-box .check-2 {
        display: none;
    }

.accordion-primary .accordion-header {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 0.9375rem 1.25rem 0 var(--rgba-primary-1);
}

    .accordion-primary .accordion-header.collapsed {
        background: var(--rgba-primary-1);
        border-color: var(--rgba-primary-1);
        color: var(--primary);
        box-shadow: none;
    }

.accordion-primary-solid .accordion-header {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 -0.625rem 1.25rem 0 var(--rgba-primary-1);
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

    .accordion-primary-solid .accordion-header.collapsed {
        background: var(--rgba-primary-1);
        border-color: var(--rgba-primary-1);
        color: var(--primary);
        box-shadow: none;
        border-bottom-right-radius: var(--border-radius-base);
        border-bottom-left-radius: var(--border-radius-base);
    }

.accordion-primary-solid .accordion__body {
    border: 0.125rem solid var(--primary);
    border-top: none;
    box-shadow: 0 0.9375rem 1.25rem 0 var(--rgba-primary-1);
    border-bottom-right-radius: var(--border-radius-base);
    border-bottom-left-radius: var(--border-radius-base);
}

.accordion-danger .accordion-header.collapsed {
    background: #f75a5b;
    border-color: #f75a5b;
    color: #fff;
    box-shadow: 0 0.9375rem 1.25rem 0 rgba(247, 90, 91, 0.15);
    background: #feecec;
    border-color: #feecec;
    color: #211c37;
    box-shadow: none;
}

.accordion-danger-solid .accordion-header {
    background: #f75a5b;
    border-color: #f75a5b;
    color: #fff;
    box-shadow: 0 -0.625rem 1.25rem 0 rgba(247, 90, 91, 0.15);
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

    .accordion-danger-solid .accordion-header.collapsed {
        background: #feecec;
        border-color: #feecec;
        color: #ff4242;
        box-shadow: none;
        border-bottom-right-radius: var(--border-radius-base);
        border-bottom-left-radius: var(--border-radius-base);
    }

.accordion-danger-solid .accordion__body {
    border: 0.125rem solid #f75a5b;
    border-top: none;
    box-shadow: 0 0.9375rem 1.25rem 0 rgba(247, 90, 91, 0.15);
    border-bottom-right-radius: var(--border-radius-base);
    border-bottom-left-radius: var(--border-radius-base);
}

.accordion-item {
    margin-bottom: 0.25rem;
    background: none;
    border: none;
}

.accordion-header {
    padding: 0.6rem 0.95rem;
    border: 0.0625rem solid var(--border-color);
    cursor: pointer;
    position: relative;
    color: #211c37;
    font-weight: 400;
    border-radius: var(--border-radius-base);
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    /*  &:not(.collapsed) {
            .accordion-header-indicator {
                &::before {
                    content: "\e622";
                    
                }

                //icon style
                &.style_two {
                    &::before {
                        content: "\e648";
                    }
                }
            }
        } */
}

.accordion-header-indicator {
    font-family: 'themify';
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
}

    .accordion-header-indicator.indicator_bordered {
        display: inline-block;
        width: 1.5625rem;
        text-align: center;
        height: 1.5625rem;
        border: 0.0625rem solid #DDDDDD;
        border-radius: 50%;
        line-height: 1.5625rem;
    }

    .accordion-header-indicator::before {
        content: "\e61a";
        transition: all 0.2s ease-in-out;
        display: block;
        transform: rotate(-180deg);
    }

@media (prefers-reduced-motion: reduce) {
    .accordion-header-indicator::before {
        transition: none;
    }
}

.accordion-header-indicator.style_two::before {
    content: "\e64b";
    transform: rotate(0);
}

.accordion-header.collapsed .accordion-header-indicator::before {
    transform: rotate(0);
}

.accordion-header.collapsed .accordion-header-indicator.style_two::before {
    transform: rotate(90deg);
}

.accordion-body-text {
    padding: 0.875rem 1.25rem;
}

.accordion-bordered .accordion__body {
    border: 0.0625rem solid #DDDDDD;
    border-top: none;
    border-bottom-right-radius: var(--border-radius-base);
    border-bottom-left-radius: var(--border-radius-base);
}

.accordion-bordered .accordion-header.collapsed {
    border-radius: var(--border-radius-base);
}

.accordion-bordered .accordion-header {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.accordion-no-gutter .accordion-item .accordion-header.collapsed {
    border-bottom: none;
}

.accordion-no-gutter .accordion-item:last-child .accordion-header {
    border-bottom: 0.0625rem solid #DDDDDD;
}

.accordion-no-gutter.accordion__bordered .accordion-item:not(:last-child) .accordion__body {
    border-bottom: none;
}

.accordion-left-indicator .accordion-header-text {
    padding-right: 2.5rem;
}

.accordion-left-indicator .accordion-header-indicator {
    left: auto;
    right: 1.5625rem;
}

.accordion-with-icon .accordion-header-text {
    padding-right: 2.5rem;
}

.accordion-with-icon .accordion-header-icon {
    position: absolute;
    left: auto;
    right: 1.5625rem;
    font-family: 'themify';
}

    .accordion-with-icon .accordion-header-icon::before {
        content: "\e645";
    }

.accordion-header-bg .accordion-header {
    background-color: #dbeefe;
    color: #2d9fff;
}

.accordion-header-bg .accordion-header-primary {
    background-color: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.accordion-header-bg .accordion-header-info {
    background-color: #58bad7;
    color: #fff;
    border-color: #58bad7;
}

.accordion-header-bg .accordion-header-success {
    background-color: #56c760;
    color: #fff;
    border-color: #56c760;
}

.accordion-header-bg.accordion-no-gutter .accordion-header {
    border-color: transparent;
    border-radius: 0;
}

.accordion-header-bg.accordion-no-gutter .accordion-item:first-child .accordion-header {
    border-top-right-radius: var(--border-radius-base);
    border-top-left-radius: var(--border-radius-base);
}

.accordion-header-bg.accordion-no-gutter .accordion-item:last-child .accordion-header {
    border-bottom-right-radius: var(--border-radius-base);
    border-bottom-left-radius: var(--border-radius-base);
}

.accordion.accordion-no-gutter .accordion-header {
    border-radius: 0;
}

    .accordion.accordion-no-gutter .accordion-header.collapsed {
        border-radius: 0;
    }

.accordion.accordion-no-gutter .accordion__body {
    border-radius: 0;
}

.accordion.accordion-no-gutter .accordion-item:first-child .accordion-header {
    border-top-right-radius: var(--border-radius-base);
    border-top-left-radius: var(--border-radius-base);
}

.accordion.accordion-no-gutter .accordion-item:last-child .accordion-header.collapsed {
    border-bottom-right-radius: var(--border-radius-base);
    border-bottom-left-radius: var(--border-radius-base);
}

.accordion.accordion-no-gutter .accordion-item:last-child .accordion__body {
    border-bottom-right-radius: var(--border-radius-base);
    border-bottom-left-radius: var(--border-radius-base);
}

.accordion-solid-bg .accordion-header {
    border-color: transparent;
    background-color: var(--rgba-primary-1);
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

    .accordion-solid-bg .accordion-header.collapsed {
        border-radius: var(--border-radius-base);
    }

.accordion-solid-bg .accordion__body {
    border-color: transparent;
    background-color: var(--rgba-primary-1);
    border-bottom-right-radius: var(--border-radius-base);
    border-bottom-left-radius: var(--border-radius-base);
}

.accordion-active-header .accordion-header:not(.collapsed) {
    background-color: #58bad7;
    border-color: #58bad7;
    color: #fff;
}

.accordion-header-shadow .accordion-header {
    border: none;
    box-shadow: 0 0 0.9375rem -0.1875rem rgba(0, 0, 0, 0.3);
}

.accordion-rounded-stylish .accordion-header {
    border-top-right-radius: 0.375rem;
    border-top-left-radius: 0.375rem;
}

.accordion-rounded-stylish .accordion__body {
    border-bottom-right-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
}

.accordion-rounded .accordion-header {
    border-radius: 0.3125rem;
}

.accordion-gradient .accordion-header {
    color: #fff;
    background-image: linear-gradient(to left, rgba(186, 1, 181, 0.85) 0%, rgba(103, 25, 255, 0.85) 100%);
    border-color: transparent;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

    .accordion-gradient .accordion-header.collapsed {
        border-bottom-right-radius: 0.375rem;
        border-bottom-left-radius: 0.375rem;
    }

.accordion-gradient .accordion__body {
    color: #fff;
    background-image: linear-gradient(to left, rgba(186, 1, 181, 0.85) 0%, rgba(103, 25, 255, 0.85) 100%);
    border-color: transparent;
}

.accordion-full .accordion-header {
    border-radius: 0;
    border-width: 1px 0 0 0;
    padding: 0.6rem 1.25rem;
}

.accordion-full .accordion-item {
    margin-bottom: -1px;
}

.alert {
    border-radius: var(--border-radius-base);
    padding: 0.5rem 0.6rem 0.5rem 1.4rem;
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
}

    .alert.alert-lg {
        padding: 1rem 0.6rem 1rem 1.4rem;
        display: flex;
    }

        .alert.alert-lg .btn-close {
            padding: 16px 8px;
        }

    .alert.alert-md {
        display: flex;
        align-items: center;
        padding: 0.7rem 0.6rem 0.7rem 1.4rem;
    }

        .alert.alert-md .btn-close {
            padding: 12px 8px;
        }

    .alert.alert-sm {
        display: flex;
        padding: 0.3rem 0.6rem 0.3rem 1.4rem;
    }

        .alert.alert-sm .btn-close {
            padding: 6px 8px;
        }

    .alert p {
        line-height: 1.5;
    }

.alert-square {
    border-radius: 0;
}

.alert-rounded {
    border-radius: 1.875rem;
}

.alert-primary {
    background: var(--rgba-primary-1);
    border-color: var(--rgba-primary-1);
    color: var(--primary);
}

.alert-secondary {
    background: #dbeefe;
    border-color: #dbeefe;
    color: #48A9F8;
}

.alert-success {
    background: #c9edcc;
    border-color: #c9edcc;
    color: #56c760;
}

.alert-warning {
    background: #fff8e7;
    border-color: #fff8e7;
    color: #f0a901;
}

.alert-danger {
    background: #feecec;
    border-color: #feecec;
    color: #f75a5b;
}

.alert-info {
    background: #e8f6f9;
    border-color: #e8f6f9;
    color: #58bad7;
}

.alert-dark {
    background: gray;
    border-color: gray;
    color: #000;
}

.alert-light {
    background: #f4f4f4;
    border-color: #f4f4f4;
    color: #000;
}

.alert-alt.alert-primary {
    border-right: 0.25rem solid var(--primary);
}

.alert-alt.alert-secondary {
    border-right: 0.25rem solid #48A9F8;
}

.alert-alt.alert-success {
    border-right: 0.25rem solid #56c760;
}

.alert-alt.alert-warning {
    border-right: 0.25rem solid #f0a901;
}

.alert-alt.alert-danger {
    border-right: 0.25rem solid #f75a5b;
}

.alert-alt.alert-info {
    border-right: 0.25rem solid #58bad7;
}

.alert-alt.alert-dark {
    border-right: 0.25rem solid #000;
}

.alert-alt.alert-light {
    border-right: 0.25rem solid #cecece;
}

.alert-alt.alert-primary.solid {
    border-right: 0.25rem solid var(--primary-dark) !important;
}

.alert-alt.alert-secondary.solid {
    border-right: 0.25rem solid #0769b9 !important;
}

.alert-alt.alert-success.solid {
    border-right: 0.25rem solid #27762e !important;
}

.alert-alt.alert-warning.solid {
    border-right: 0.25rem solid #715000 !important;
}

.alert-alt.alert-danger.solid {
    border-right: 0.25rem solid #c80a0b !important;
}

.alert-alt.alert-info.solid {
    border-right: 0.25rem solid #22758e !important;
}

.alert-alt.alert-dark.solid {
    border-right: 0.25rem solid black !important;
}

.alert-alt.alert-light.solid {
    border-right: 0.25rem solid #b4b4b4 !important;
}

.alert.alert-primary.light .btn-close,
.alert.alert-secondary.light .btn-close,
.alert.alert-success.light .btn-close,
.alert.alert-warning.light .btn-close,
.alert.alert-danger.light .btn-close,
.alert.alert-info.light .btn-close,
.alert.alert-dark.light .btn-close {
    color: #000 !important;
}

.alert-dismissible .btn-close {
    padding: 8px 6px;
    background: transparent;
    opacity: 1;
    color: #fff;
}

.alert-dismissible.solid .close:hover {
    color: #fff;
    opacity: 1;
}

.alert-light.alert-dismissible .btn-close {
    color: #6e6e6e;
}

.alert.alert-primary.solid {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.alert.alert-secondary.solid {
    background: #48A9F8;
    color: #fff;
    border-color: #48A9F8;
}

.alert.alert-success.solid {
    background: #56c760;
    color: #fff;
    border-color: #56c760;
}

.alert.alert-warning.solid {
    background: #f0a901;
    color: #fff;
    border-color: #f0a901;
}

.alert.alert-danger.solid {
    background: #f75a5b;
    color: #fff;
    border-color: #f75a5b;
}

.alert.alert-info.solid {
    background: #58bad7;
    color: #fff;
    border-color: #58bad7;
}

.alert.alert-dark.solid {
    background: #000;
    color: #fff;
    border-color: #000;
}

.alert.alert-light.solid {
    background: #f4f4f4;
    color: #000;
    border-color: #f4f4f4;
}

.alert-right-icon > span i {
    font-size: 1.125rem;
    margin-left: 0.3125rem;
}

.alert-left-icon .close i {
    font-size: 1rem;
}

.alert.alert-outline-primary {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.alert.alert-outline-secondary {
    background: transparent;
    color: #7e7e7e;
    border-color: #48A9F8;
}

.alert.alert-outline-success {
    background: transparent;
    color: #56c760;
    border-color: #56c760;
}

.alert.alert-outline-info {
    background: transparent;
    color: #58bad7;
    border-color: #58bad7;
}

.alert.alert-outline-warning {
    background: transparent;
    color: #f0a901;
    border-color: #f0a901;
}

.alert.alert-outline-danger {
    background: transparent;
    color: #f75a5b;
    border-color: #f75a5b;
}

.alert.alert-outline-dark {
    background: transparent;
    color: #7e7e7e;
    border-color: #000;
}

.alert.alert-outline-light {
    background: transparent;
    color: #000;
    border-color: #f4f4f4;
}

.alert-social {
    color: #fff;
}

    .alert-social .alert-social-icon {
        align-self: center;
        margin-left: 0.9375rem;
    }

        .alert-social .alert-social-icon i {
            font-size: 2.625rem;
        }

    .alert-social.facebook {
        background-color: #3b5998;
    }

    .alert-social.twitter {
        background-color: #1da1f2;
    }

    .alert-social.linkedin {
        background-color: #007bb6;
    }

    .alert-social.google-plus {
        background-color: #db4439;
    }

    .alert-social .close:hover {
        opacity: 1 !important;
        color: #fff !important;
    }

.left-icon-big .alert-left-icon-big {
    align-self: center;
    margin-left: 0.9375rem;
}

.right-icon-big .alert-right-icon-big i {
    font-size: 2.1875rem;
    line-height: 1;
}

.badge {
    line-height: 1;
    border-radius: var(--border-radius-base);
    padding: 6px 8px;
    border: 1px solid transparent;
    font-size: 11px;
    font-weight: 500;
}

    .badge.notification {
        padding: 1.5rem 1.5rem;
    }

    .badge.counter {
        position: absolute;
        z-index: 2;
        left: -8px;
        top: -10px;
        font-weight: 600;
        width: 19px;
        height: 19px;
        border-radius: 50%;
        padding: 3px 4px;
        font-size: 12px;
    }

    .badge.badge-light {
        margin: -10px 0;
    }

a.badge:hover {
    color: #fff;
}

a.badge.badge-light:hover {
    color: #000;
}

a[class*="badge-outline-"]:hover {
    color: #000;
}

.badge-rounded {
    border-radius: 1.25rem;
}

.badge-circle {
    border-radius: 50%;
    padding: 0;
    min-width: 1.5rem;
    min-height: 1.5rem;
    line-height: 1.4rem;
}

    .badge-circle.badge-lg {
        min-width: 2.75rem;
        min-height: 2.75rem;
        padding: 0.75rem 0.625rem;
    }

    .badge-circle.badge-sm {
        min-width: 1.5rem;
        min-height: 1.5rem;
        border-radius: 50%;
        padding: 0.25rem 0.3125rem;
        font-size: 0.75rem;
    }

.badge-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
}

.badge-outline-secondary {
    border-color: #48A9F8;
    color: #48A9F8;
}

.badge-outline-success {
    border-color: #56c760;
    color: #56c760;
}

.badge-outline-info {
    border-color: #58bad7;
    color: #58bad7;
}

.badge-outline-warning {
    border-color: #f0a901;
    color: #f0a901;
}

.badge-outline-danger {
    border-color: #f75a5b;
    color: #f75a5b;
}

.badge-outline-light {
    border-color: #eaeaea;
    color: #000;
}

.badge-outline-dark {
    border-color: #000;
    color: #000;
}

.badge-sm {
    font-size: 10px;
    padding: 6px 8px;
    border-radius: var(--border-radius-base);
}

.badge-lg {
    padding: 10px 12px;
    font-size: 12px;
}

.badge-default {
    background: #ADB6C7;
}

.badge-success {
    background-color: #56c760;
}

.badge-secondary {
    background-color: #48A9F8;
}

.badge-info {
    background-color: #58bad7;
}

.badge-primary {
    background-color: var(--primary);
}

.badge-warning {
    background-color: #f0a901;
}

.badge-danger {
    background-color: #f75a5b;
}

.badge-dark {
    background-color: #000;
}

.badge-light {
    background-color: #eaeaea;
    color: #000;
}

.light.badge-default {
    background: #ADB6C7;
}

.light.badge-primary {
    background-color: #daceef;
    color: #673ab7;
}

.light.badge-success {
    background-color: #c9edcc;
    color: #56c760;
}

.light.badge-info {
    background-color: #d3edf5;
    color: #58bad7;
}

.light.badge-secondary {
    background-color: #dbeefe;
    color: #48A9F8;
}

.light.badge-warning {
    background-color: #fff8e7;
    color: #f0a901;
}

.light.badge-danger {
    background-color: #feecec;
    color: #f75a5b;
}

.light.badge-dark {
    background-color: gray;
    color: #000;
}

.light.badge-light {
    background-color: #f7f7f7;
    color: #000;
}

.bootstrap-label .label {
    display: inline-block;
    margin-left: 1rem;
}

    .bootstrap-label .label:last-child {
        margin-left: 0;
    }

.badge-demo .badge {
    margin-left: 0.3125rem;
    margin-bottom: 0.3125rem;
}

    .badge-demo .badge:last-child {
        margin-left: 0;
    }

.bootstrap-badge-buttons button {
    margin-left: .2rem;
    margin-bottom: 1rem;
}

    .bootstrap-badge-buttons button:last-child {
        margin-left: 0;
    }

.shadow-primary {
    box-shadow: 0px 8px 14px -4px var(--rgba-primary-5);
    transition: all 0.5s !important;
}

    .shadow-primary:hover {
        box-shadow: none;
    }

.shadow-info {
    box-shadow: 0px 8px 14px -4px rgba(88, 186, 215, 0.5);
    transition: all 0.5s !important;
}

    .shadow-info:hover {
        box-shadow: none;
    }

.shadow-secondary {
    box-shadow: 0px 8px 14px -4px rgba(72, 169, 248, 0.5);
    transition: all 0.5s !important;
}

    .shadow-secondary:hover {
        box-shadow: none;
    }

.shadow-dark {
    box-shadow: 0px 8px 14px -4px rgba(0, 0, 0, 0.5);
    transition: all 0.5s !important;
}

    .shadow-dark:hover {
        box-shadow: none;
    }

.btn {
    font-size: 14px;
    font-weight: 500;
    padding: 15px 25px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    border-radius: var(--border-radius-base);
    border-width: 2px;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
}

    .btn.btn-success, .btn.btn-secondary, .btn.btn-warning, .btn.btn-primary, .btn.btn-danger, .btn.btn-info {
        color: #fff;
    }

    .btn.btn-lg, .btn-group-lg > .btn {
        padding: 18px 15px;
        font-size: 18px;
        line-height: 1.1;
        border-radius: var(--border-radius-base);
    }

    .btn.btn-sm, .btn-group-sm > .btn {
        padding: 10px 10px;
        line-height: 1.1;
        font-size: 12px;
        border-radius: var(--border-radius-base);
    }

    .btn.btn-sharp {
        border-radius: 0;
    }

    .btn:hover, .btn:focus, .btn:active {
        outline: 0 !important;
        box-shadow: none;
    }

.btn-link {
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

button {
    cursor: pointer;
}

    button:focus {
        outline: 0;
        box-shadow: none;
    }

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

    .btn-primary:active, .btn-primary:focus, .btn-primary:hover {
        border-color: var(--primary);
        background-color: var(--primary-hover);
        box-shadow: none;
    }

    .btn-primary:focus {
        box-shadow: none;
    }

    .btn-primary:disabled, .btn-primary.disabled {
        background-color: var(--primary);
        border-color: var(--primary);
    }

.btn-link {
    color: var(--primary);
    text-decoration: none;
}

    .btn-link:hover {
        color: var(--primary-hover);
    }

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

    .btn-outline-primary:hover {
        border-color: var(--primary-hover);
        background-color: var(--primary-hover);
    }

    .btn-outline-primary:focus {
        box-shadow: none;
    }

.sharp {
    min-width: 2.5rem;
    padding: 0.4375rem;
    height: 2.5rem;
    min-height: 2.5rem;
}

    .sharp.btn-xs {
        padding: 0.1875rem;
        width: 1.625rem;
        height: 1.625rem;
        min-width: 1.625rem;
        min-height: 1.625rem;
    }

.btn-block {
    display: block;
    width: 100%;
}

.light {
    border-color: transparent;
}

    .light.tp-btn {
        background-color: transparent;
    }

    .light.btn-default {
        background: #ADB6C7;
    }

    .light.btn-success {
        background-color: #c9edcc;
        border-color: #c9edcc;
        color: #56c760;
    }

        .light.btn-success g [fill] {
            fill: #56c760;
        }

        .light.btn-success:hover {
            background-color: #56c760;
            border-color: #56c760;
            color: #fff;
        }

            .light.btn-success:hover g [fill] {
                fill: #fff;
            }

    .light.btn-info {
        background-color: #d3edf5;
        border-color: #d3edf5;
        color: #58bad7;
    }

        .light.btn-info g [fill] {
            fill: #58bad7;
        }

        .light.btn-info:hover {
            background-color: #58bad7;
            border-color: #58bad7;
            color: #fff;
        }

            .light.btn-info:hover g [fill] {
                fill: #fff;
            }

    .light.btn-primary {
        background-color: var(--rgba-primary-1);
        color: var(--primary);
    }

        .light.btn-primary g [fill] {
            fill: var(--primary);
        }

        .light.btn-primary:hover {
            background-color: var(--primary);
            color: #fff !important;
        }

            .light.btn-primary:hover g [fill] {
                fill: #fff;
            }

    .light.btn-secondary {
        background-color: #dbeefe;
        color: #48A9F8;
    }

        .light.btn-secondary g [fill] {
            fill: #48A9F8;
        }

        .light.btn-secondary:hover {
            background-color: #48A9F8;
            color: #fff;
        }

            .light.btn-secondary:hover g [fill] {
                fill: #fff;
            }

    .light.btn-warning {
        background-color: #fff8e7;
        color: #f0a901;
    }

        .light.btn-warning g [fill] {
            fill: #f0a901;
        }

        .light.btn-warning:hover {
            background-color: #f0a901;
            color: #fff;
        }

            .light.btn-warning:hover g [fill] {
                fill: #fff;
            }

    .light.btn-danger {
        background-color: #feecec;
        color: #f75a5b;
    }

        .light.btn-danger g [fill] {
            fill: #f75a5b;
        }

        .light.btn-danger:hover {
            background-color: #f75a5b;
            color: #fff;
        }

            .light.btn-danger:hover g [fill] {
                fill: #fff;
            }

    .light.btn-dark {
        background-color: gray;
        border-color: gray;
        color: #000;
    }

        .light.btn-dark g [fill] {
            fill: #000;
        }

[data-theme-version="dark"] .light.btn-dark {
    background-color: rgba(0, 0, 0, 0.35);
    color: #fff;
}

.light.btn-dark:hover {
    background-color: #000;
    color: #fff;
}

    .light.btn-dark:hover g [fill] {
        fill: #fff;
    }

.btn.tp-btn {
    background-color: transparent;
    border-color: transparent;
}

    .btn.tp-btn.btn-default {
        background: #ADB6C7;
    }

    .btn.tp-btn.btn-success {
        color: #56c760;
    }

        .btn.tp-btn.btn-success g [fill] {
            fill: #56c760;
        }

        .btn.tp-btn.btn-success:hover {
            background-color: #56c760;
            border-color: #56c760;
            color: #fff;
        }

            .btn.tp-btn.btn-success:hover g [fill] {
                fill: #fff;
            }

    .btn.tp-btn.btn-info {
        color: #58bad7;
    }

        .btn.tp-btn.btn-info g [fill] {
            fill: #58bad7;
        }

        .btn.tp-btn.btn-info:hover {
            background-color: #58bad7;
            border-color: #58bad7;
            color: #fff;
        }

            .btn.tp-btn.btn-info:hover g [fill] {
                fill: #fff;
            }

    .btn.tp-btn.btn-primary {
        color: var(--primary);
    }

        .btn.tp-btn.btn-primary g [fill] {
            fill: var(--primary);
        }

        .btn.tp-btn.btn-primary:hover {
            background-color: var(--primary);
            border-color: var(--primary);
            color: #fff;
        }

            .btn.tp-btn.btn-primary:hover g [fill] {
                fill: #fff;
            }

    .btn.tp-btn.btn-secondary {
        color: #48A9F8;
    }

        .btn.tp-btn.btn-secondary g [fill] {
            fill: #48A9F8;
        }

        .btn.tp-btn.btn-secondary:hover {
            background-color: #48A9F8;
            border-color: #48A9F8;
            color: #fff;
        }

            .btn.tp-btn.btn-secondary:hover g [fill] {
                fill: #fff;
            }

    .btn.tp-btn.btn-warning {
        color: #f0a901;
    }

        .btn.tp-btn.btn-warning g [fill] {
            fill: #f0a901;
        }

        .btn.tp-btn.btn-warning:hover {
            background-color: #f0a901;
            border-color: #f0a901;
            color: #fff;
        }

            .btn.tp-btn.btn-warning:hover g [fill] {
                fill: #fff;
            }

    .btn.tp-btn.btn-danger {
        color: #f75a5b;
    }

        .btn.tp-btn.btn-danger g [fill] {
            fill: #f75a5b;
        }

        .btn.tp-btn.btn-danger:hover {
            background-color: #f75a5b;
            border-color: #f75a5b;
            color: #fff;
        }

            .btn.tp-btn.btn-danger:hover g [fill] {
                fill: #fff;
            }

    .btn.tp-btn.btn-light {
        color: #000;
    }

        .btn.tp-btn.btn-light g [fill] {
            fill: #000;
        }

        .btn.tp-btn.btn-light:hover {
            background-color: #f4f4f4;
            border-color: #f4f4f4;
            color: #000;
        }

            .btn.tp-btn.btn-light:hover g [fill] {
                fill: #fff;
            }

    .btn.tp-btn.btn-dark {
        color: #000;
    }

        .btn.tp-btn.btn-dark g [fill] {
            fill: #000;
        }

        .btn.tp-btn.btn-dark:hover {
            background-color: #000;
            border-color: #000;
            color: #fff;
        }

            .btn.tp-btn.btn-dark:hover g [fill] {
                fill: #fff;
            }

.btn.tp-btn-light {
    background-color: transparent;
    border-color: transparent;
}

    .btn.tp-btn-light.btn-success {
        color: #56c760;
    }

        .btn.tp-btn-light.btn-success g [fill] {
            fill: #56c760;
        }

        .btn.tp-btn-light.btn-success:hover {
            background-color: #c9edcc;
            border-color: #c9edcc;
            color: #56c760;
        }

            .btn.tp-btn-light.btn-success:hover g [fill] {
                fill: #56c760;
            }

    .btn.tp-btn-light.btn-info {
        color: #58bad7;
    }

        .btn.tp-btn-light.btn-info g [fill] {
            fill: #58bad7;
        }

        .btn.tp-btn-light.btn-info:hover {
            background-color: #d3edf5;
            border-color: #d3edf5;
            color: #58bad7;
        }

            .btn.tp-btn-light.btn-info:hover g [fill] {
                fill: #58bad7;
            }

    .btn.tp-btn-light.btn-primary {
        color: var(--primary);
    }

        .btn.tp-btn-light.btn-primary g [fill] {
            fill: var(--primary);
        }

        .btn.tp-btn-light.btn-primary:hover {
            background-color: var(--rgba-primary-1);
            border-color: var(--rgba-primary-1);
            color: var(--primary);
        }

            .btn.tp-btn-light.btn-primary:hover g [fill] {
                fill: var(--primary);
            }

    .btn.tp-btn-light.btn-secondary {
        color: #48A9F8;
    }

        .btn.tp-btn-light.btn-secondary g [fill] {
            fill: #48A9F8;
        }

        .btn.tp-btn-light.btn-secondary:hover {
            background-color: #dbeefe;
            border-color: #dbeefe;
            color: #48A9F8;
        }

            .btn.tp-btn-light.btn-secondary:hover g [fill] {
                fill: #48A9F8;
            }

    .btn.tp-btn-light.btn-warning {
        color: #f0a901;
    }

        .btn.tp-btn-light.btn-warning g [fill] {
            fill: #f0a901;
        }

        .btn.tp-btn-light.btn-warning:hover {
            background-color: #fff8e7;
            border-color: #fff8e7;
            color: #f0a901;
        }

            .btn.tp-btn-light.btn-warning:hover g [fill] {
                fill: #f0a901;
            }

    .btn.tp-btn-light.btn-danger {
        color: #f75a5b;
    }

        .btn.tp-btn-light.btn-danger g [fill] {
            fill: #f75a5b;
        }

        .btn.tp-btn-light.btn-danger:hover {
            background-color: #feecec;
            border-color: #feecec;
            color: #f75a5b;
        }

            .btn.tp-btn-light.btn-danger:hover g [fill] {
                fill: #fff;
            }

    .btn.tp-btn-light.btn-dark {
        color: #000;
    }

        .btn.tp-btn-light.btn-dark g [fill] {
            fill: #000;
        }

        .btn.tp-btn-light.btn-dark:hover {
            background-color: gray;
            border-color: gray;
            color: #000;
        }

            .btn.tp-btn-light.btn-dark:hover g [fill] {
                fill: #fff;
            }

.shadow.btn-primary {
    -webkit-box-shadow: 0 0.3125rem 0.9375rem 0 var(--rgba-primary-2) !important;
    box-shadow: 0 0.3125rem 0.9375rem 0 var(--rgba-primary-2) !important;
}

.shadow.btn-secondary {
    -webkit-box-shadow: 0 0.3125rem 0.9375rem 0 rgba(72, 169, 248, 0.2) !important;
    box-shadow: 0 0.3125rem 0.9375rem 0 rgba(72, 169, 248, 0.2) !important;
}

.shadow.btn-warning {
    -webkit-box-shadow: 0 0.3125rem 0.9375rem 0 rgba(240, 169, 1, 0.2) !important;
    box-shadow: 0 0.3125rem 0.9375rem 0 rgba(240, 169, 1, 0.2) !important;
}

.shadow.btn-danger {
    -webkit-box-shadow: 0 0.3125rem 0.9375rem 0 rgba(247, 90, 91, 0.2) !important;
    box-shadow: 0 0.3125rem 0.9375rem 0 rgba(247, 90, 91, 0.2) !important;
}

.shadow.btn-info {
    -webkit-box-shadow: 0 0.3125rem 0.9375rem 0 rgba(88, 186, 215, 0.2) !important;
    box-shadow: 0 0.3125rem 0.9375rem 0 rgba(88, 186, 215, 0.2) !important;
}

.shadow.btn-success {
    -webkit-box-shadow: 0 0.3125rem 0.9375rem 0 rgba(86, 199, 96, 0.2) !important;
    box-shadow: 0 0.3125rem 0.9375rem 0 rgba(86, 199, 96, 0.2) !important;
}

.btn-light {
    background: #f4f4f4;
    border-color: #f4f4f4;
    color: #959595;
}

    .btn-light:active, .btn-light:focus, .btn-light:hover {
        background: white;
        color: #000;
        border-color: white;
    }

.btn-outline-primary:hover {
    color: #fff;
}

.btn-outline-warning:hover {
    color: #fff;
}

.btn-outline-light {
    color: #000;
}

.btn-dark {
    background: #000;
    border-color: #000;
    color: #fff;
}

    .btn-dark:active, .btn-dark:hover {
        background: #1a1a1a;
        color: #fff;
        border-color: black;
    }

    .btn-dark:focus {
        background: #4d4d4d;
    }

.btn-group.btn-rounded .btn:first-child {
    border-top-right-radius: 1.875rem;
    border-bottom-right-radius: 1.875rem;
}

.btn-group.btn-rounded .btn:last-child {
    border-top-left-radius: 1.875rem;
    border-bottom-left-radius: 1.875rem;
}

.btn-rounded {
    border-radius: 2.75rem;
}

.btn-facebook {
    background: #3b5998;
    border-color: #3b5998;
    color: #fff;
}

    .btn-facebook:active, .btn-facebook:focus, .btn-facebook:hover {
        background: #2d4373;
        color: #fff;
        border-color: #2d4373;
    }

.btn-twitter {
    background: #1da1f2;
    border-color: #1da1f2;
    color: #fff;
}

    .btn-twitter:active, .btn-twitter:focus, .btn-twitter:hover {
        background: #0c85d0;
        color: #fff;
        border-color: #0c85d0;
    }

.btn-pinterest {
    background: #bd081c;
    border-color: #bd081c;
    color: #fff;
}

    .btn-pinterest:active, .btn-pinterest:focus, .btn-pinterest:hover {
        background: #8c0615;
        color: #fff;
        border-color: #8c0615;
    }

.btn-linkedin {
    background: #007bb6;
    border-color: #007bb6;
    color: #fff;
}

    .btn-linkedin:active, .btn-linkedin:focus, .btn-linkedin:hover {
        background: #005983;
        color: #fff;
        border-color: #005983;
    }

.btn-google {
    background: #4285f4;
    border-color: #4285f4;
    color: #fff;
}

    .btn-google:active, .btn-google:focus, .btn-google:hover {
        background: #1266f1;
        color: #fff;
        border-color: #1266f1;
    }

.btn-snapchat {
    background: #fffc00;
    border-color: #fffc00;
    color: #000;
}

    .btn-snapchat:active, .btn-snapchat:focus, .btn-snapchat:hover {
        background: #ccca00;
        color: #000;
        border-color: #ccca00;
    }

.btn-whatsapp {
    background: #25d366;
    border-color: #25d366;
    color: #fff;
}

    .btn-whatsapp:active, .btn-whatsapp:focus, .btn-whatsapp:hover {
        background: #1da851;
        color: #fff;
        border-color: #1da851;
    }

.btn-phone {
    background: #ff4500;
    border-color: #ff4500;
    color: #fff;
}

    .btn-phone:active, .btn-phone:focus, .btn-phone:hover {
        background: #cc3700;
        color: #fff;
        border-color: #cc3700;
    }

.btn-skype {
    background: #00aff0;
    border-color: #00aff0;
    color: #fff;
}

    .btn-skype:active, .btn-skype:focus, .btn-skype:hover {
        background: #008abd;
        color: #fff;
        border-color: #008abd;
    }

.btn-email {
    background: #1ab7ea;
    border-color: #1ab7ea;
    color: #fff;
}

    .btn-email:active, .btn-email:focus, .btn-email:hover {
        background: #1295bf;
        color: #fff;
        border-color: #1295bf;
    }

.btn-icon-text {
    overflow: hidden;
    position: relative;
    border: 0;
    font-size: 12px;
    justify-content: right;
    padding-right: 50px;
}

    .btn-icon-text i {
        background-color: rgba(0, 0, 0, 0.1);
        width: 42px;
        height: 100%;
        position: absolute;
        right: 0;
        top: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
    }

        .btn-icon-text i.rounded-xl {
            border-radius: 2.75rem;
        }

.btn-icon {
    width: 40px;
    height: 40px;
    padding: 0;
    font-size: 14px;
}

    .btn-icon.btn-lg, .btn-group-lg > .btn-icon.btn {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }

    .btn-icon.btn-sm, .btn-group-sm > .btn-icon.btn {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }

.btn-square {
    border-radius: 0;
}

.card {
    margin-bottom: 1.25rem;
    background-color: var(--bg-white);
    transition: all .5s ease-in-out;
    position: relative;
    border: 0px solid transparent;
    border-radius: var(--border-radius-base);
    box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.03);
    height: calc(100% - 1.25rem);
}

.card-body {
    padding: 1.25rem;
}

.card-title {
    text-transform: capitalize;
}

.card-title--large {
    font-size: 1.5rem;
}

.card-title--medium {
    font-size: 1rem;
}

.card-title--small {
    font-size: 0.875rem;
}

.card-header {
    border-color: var(--border-color);
    position: relative;
    background: transparent;
    padding: 1rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .card-header .card-title {
        margin-bottom: 0px;
    }

    .card-header .subtitle {
        padding-top: 5px;
        font-size: 14px;
        line-height: 1.5;
    }

.card-footer {
    border-color: #DDDDDD;
    background: transparent;
    padding: 1rem 1.25rem;
}

.card.card-full {
    border-radius: 0;
    margin-right: -15px;
    margin-left: -15px;
}

.card[class*="bg-"] .card-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.card[class*="bg-"] .card-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.transparent-card.card {
    background: transparent;
    border: 1px solid transparent;
    box-shadow: none;
}

.dropdown .dropdown-toggle:after {
    content: none;
}

.dropdown .dropdown-menu {
    min-width: 10rem;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: #313131;
    text-align: right;
    list-style: none;
    background-color: var(--bg-white);
    border-radius: 0.25rem;
    border: 0;
    box-shadow: 0 8px 15px 0 rgba(0, 0, 0, 0.04);
}

.dropdown-toggle:focus {
    box-shadow: none !important;
}

.dropdown-outline {
    border: 0.1rem solid var(--primary);
}

.dropdown-menu {
    font-size: inherit;
    border: 0;
    z-index: 2;
    overflow: hidden;
    background-color: var(--bg-white);
    border-radius: -sm var(--border-radius-base);
    box-shadow: 0 0 3.125rem 0 rgba(82, 63, 105, 0.15);
    margin-top: 0;
}

    .dropdown-menu .dropdown-item {
        font-size: 1rem;
        color: #7e7e7e;
        padding: 0.5rem 1.75rem;
        -webkit-transition: all 0.5s;
        -ms-transition: all 0.5s;
        transition: all 0.5s;
    }

@media only screen and (max-width: 87.5rem) {
    .dropdown-menu .dropdown-item {
        padding: 0.375rem 1rem;
        font-size: 0.875rem;
    }
}

.dropdown-menu .dropdown-item:hover, .dropdown-menu .dropdown-item:focus, .dropdown-menu .dropdown-item:active, .dropdown-menu .dropdown-item.active {
    color: #514e5f;
}

.dropdown-menu .dropdown-item.active, .dropdown-menu .dropdown-item:active {
    color: var(--primary);
    background: var(--rgba-primary-1);
}

.dropdown-menu.show {
    left: 0;
}

.dropdown-toggle-split {
    padding: 0 0.625rem;
    opacity: 0.85;
}

    .dropdown-toggle-split:after {
        margin-right: 0 !important;
    }

    .dropdown-toggle-split:active, .dropdown-toggle-split:focus, .dropdown-toggle-split:hover {
        opacity: 1;
    }

.dropright .dropdown-toggle::after {
    content: none;
}

.custom-dropdown {
    display: inline-block;
    margin-bottom: 1rem;
}

    .custom-dropdown .dropdown-menu {
        border: 0rem;
        min-width: 10rem;
    }

.card-action .custom-dropdown {
    margin: 0rem;
    background: var(--rgba-primary-1);
}

    .card-action .custom-dropdown.show, .card-action .custom-dropdown:focus, .card-action .custom-dropdown:hover {
        background: var(--primary);
        color: #fff;
    }

    .card-action .custom-dropdown i {
        display: inline-block;
        padding-top: 0.5625rem;
    }

.dropdown .dropdown-dots {
    position: relative;
    height: 0.3125rem;
    width: 0.3125rem;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 0.3125rem;
    display: block;
}

    .dropdown .dropdown-dots:after, .dropdown .dropdown-dots:before {
        content: "";
        height: 0.3125rem;
        width: 0.3125rem;
        background: rgba(0, 0, 0, 0.4);
        position: absolute;
        border-radius: 0.3125rem;
    }

    .dropdown .dropdown-dots:after {
        left: -0.5rem;
    }

    .dropdown .dropdown-dots:before {
        right: -0.5rem;
    }

    .dropdown .dropdown-dots.text-white {
        background: rgba(255, 255, 255, 0.7);
    }

        .dropdown .dropdown-dots.text-white:after, .dropdown .dropdown-dots.text-white:before {
            background: rgba(255, 255, 255, 0.7);
        }

.list-group-item {
    background-color: rgba(255, 255, 255, 0);
    border: 0.0625rem solid #DDDDDD;
    padding: 0.75rem 0.625rem;
    color: #7e7e7e;
}

    .list-group-item.active {
        background-color: var(--primary);
        border-color: var(--primary);
    }

    .list-group-item:first-child {
        border-top-right-radius: var(--border-radius-base);
        border-top-left-radius: var(--border-radius-base);
    }

    .list-group-item:last-child {
        border-bottom-right-radius: var(--border-radius-base);
        border-bottom-left-radius: var(--border-radius-base);
    }

    .list-group-item.disabled, .list-group-item:disabled {
        color: #fff;
        background-color: #48A9F8;
        border-color: #48A9F8;
    }

[class*="bg-"] .list-group-item {
    border-color: rgba(255, 255, 255, 0.05);
}

.bg-warning .list-group-item {
    border-color: rgba(0, 0, 0, 0.05);
}

.card.text-white .list-group .list-group-item {
    color: #fff;
}

.list-group-item-primary {
    color: var(--primary);
}

.list-group-item-secondary {
    color: #48A9F8;
}

.list-group-item-success {
    color: #56c760;
}

.list-group-item-danger {
    color: #f75a5b;
}

.list-group-item-warning {
    color: #f0a901;
}

.list-group-item-info {
    color: #58bad7;
}

.list-group-item-light {
    color: #f4f4f4;
}

.list-group-item-dark {
    color: #000;
}

.dz-list > ul > li {
    border-bottom: 1px solid #F2ECF6;
}

    .dz-list > ul > li:last-child {
        border-bottom: 0;
    }

    .dz-list > ul > li .dz-media {
        margin-left: 15px;
        min-width: 15px;
    }

    .dz-list > ul > li .item-content {
        padding: 12px 0;
        display: flex;
        align-items: center;
        position: relative;
    }

        .dz-list > ul > li .item-content .dz-title {
            color: var(--title);
            font-size: 0.875rem;
            font-weight: 600;
        }

    .dz-list > ul > li .item-link:after {
        content: "\f105";
        font-family: "Font Awesome 6 Free";
        left: 0;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        opacity: 0.3;
    }

    .dz-list > ul > li a {
        font-size: 0.875rem;
        font-weight: 600;
        color: var(--title);
    }

.dz-list.list-space > ul > li a {
    padding-right: 20px;
    padding-left: 20px;
}

    .dz-list.list-space > ul > li a.item-link:after {
        left: 20px;
    }

.media-0 {
    width: 0px;
    min-width: 0px;
    height: 0px;
}

.media-5 {
    width: 5px;
    min-width: 5px;
    height: 5px;
}

.media-10 {
    width: 10px;
    min-width: 10px;
    height: 10px;
}

.media-15 {
    width: 15px;
    min-width: 15px;
    height: 15px;
}

.media-20 {
    width: 20px;
    min-width: 20px;
    height: 20px;
}

.media-25 {
    width: 25px;
    min-width: 25px;
    height: 25px;
}

.media-30 {
    width: 30px;
    min-width: 30px;
    height: 30px;
}

.media-35 {
    width: 35px;
    min-width: 35px;
    height: 35px;
}

.media-40 {
    width: 40px;
    min-width: 40px;
    height: 40px;
}

.media-45 {
    width: 45px;
    min-width: 45px;
    height: 45px;
}

.media-50 {
    width: 50px;
    min-width: 50px;
    height: 50px;
}

.media-55 {
    width: 55px;
    min-width: 55px;
    height: 55px;
}

.media-60 {
    width: 60px;
    min-width: 60px;
    height: 60px;
}

.media-65 {
    width: 65px;
    min-width: 65px;
    height: 65px;
}

.media-70 {
    width: 70px;
    min-width: 70px;
    height: 70px;
}

.media-75 {
    width: 75px;
    min-width: 75px;
    height: 75px;
}

.media-80 {
    width: 80px;
    min-width: 80px;
    height: 80px;
}

.media-85 {
    width: 85px;
    min-width: 85px;
    height: 85px;
}

.media-90 {
    width: 90px;
    min-width: 90px;
    height: 90px;
}

.media-95 {
    width: 95px;
    min-width: 95px;
    height: 95px;
}

.media-100 {
    width: 100px;
    min-width: 100px;
    height: 100px;
}

.media {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.media-primary {
    background: var(--rgba-primary-1);
    color: var(--primary);
}

.media-info {
    background: #d3edf5;
    color: #58bad7;
}

.media-warning {
    background: #fff8e7;
    color: #f0a901;
}

.media-danger {
    background: #feecec;
    color: #f75a5b;
}

.media-success {
    background: #c9edcc;
    color: #56c760;
}

.media.rounded-circle img {
    border-radius: 50%;
}

.modal-header {
    padding: 1rem 1.875rem;
}

    .modal-header .btn-close {
        background: none;
        padding: 0;
        margin: 0;
        font-size: 18px;
        opacity: 0.3;
        line-height: 1;
    }

    .modal-header .close {
        padding: 0.875rem 1.815rem;
        margin: 0;
        position: absolute;
        left: 0;
        float: none;
        top: 0;
        font-size: 1.875rem;
        font-weight: 100;
    }

@media only screen and (max-width: 35.9375rem) {
    .modal-header {
        padding: 1rem 1rem 1rem;
    }
}

.modal-body {
    padding: 1.875rem;
}

@media only screen and (max-width: 35.9375rem) {
    .modal-body {
        padding: 1rem;
    }
}

.modal-footer {
    padding: 10px 10px;
    border-top: var(--bg-white);
}

@media only screen and (max-width: 35.9375rem) {
    .modal-footer {
        padding: 1rem;
    }
}

.modal-content {
    border-radius: 1.25rem;
    background: var(--bg-white);
}

.table > :not(:first-child) {
    border-top: 0px solid currentColor;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
    --bs-table-accent-bg: var(--rgba-primary-1);
}

.table th {
    font-size: 14px;
    font-weight: 600;
}

.form-switch .form-check-input {
    width: 2.25rem;
    height: 1.125rem;
    margin-left: 14px;
}

    .form-switch .form-check-input.form-check-primary:checked {
        background-color: var(--primary);
        border-color: var(--primary);
    }

    .form-switch .form-check-input.form-check-warning:checked {
        background-color: #f0a901;
        border-color: #f0a901;
    }

    .form-switch .form-check-input.form-check-success:checked {
        background-color: #56c760;
        border-color: #56c760;
    }

    .form-switch .form-check-input.form-check-danger:checked {
        background-color: #f75a5b;
        border-color: #f75a5b;
    }

    .form-switch .form-check-input.form-check-info:checked {
        background-color: #58bad7;
        border-color: #58bad7;
    }

    .form-switch .form-check-input.form-check-dark:checked {
        background-color: #000;
        border-color: #000;
    }

.custom-switch {
    position: relative;
    line-height: 1;
}

    .custom-switch input {
        display: none;
    }

    .custom-switch label {
        cursor: pointer;
    }

        .custom-switch label:before {
            content: "";
            display: block !important;
            background-color: #e8e9ea;
            pointer-events: all;
            width: 55px !important;
            height: 27px !important;
            border: solid 1px rgba(152, 152, 152, 0.4);
            border-radius: 50px !important;
            box-shadow: inset 0 0 6px 0 #a6aeb5;
            transition: all 250ms ease;
        }

        .custom-switch label:after {
            content: "";
            display: block !important;
            z-index: 6;
            position: absolute;
            top: 1px;
            right: 1px;
            width: 25px !important;
            height: 25px !important;
            transition: all 250ms ease;
            border-radius: 50px !important;
            background-color: #fff;
            border: solid 1px rgba(152, 152, 152, 0.4);
            transition: all 250ms ease;
        }

    .custom-switch .switch-input:checked ~ .custom-switch-label:after {
        -webkit-transform: translateX(-28px) !important;
    }

    .custom-switch .switch-input:checked ~ .custom-switch-label:before {
        background-color: var(--secondary) !important;
    }

.mode {
    display: flex;
    align-items: center;
}

    .mode .custom-switch {
        margin-right: auto;
    }

    .mode span + span {
        color: #000;
    }

.popover {
    background-color: var(--secondary);
}

    .popover .popover-header {
        background-color: var(--secondary);
        border-color: #DDDDDD;
        color: #fff;
    }

    .popover .popover-body {
        color: #fff;
    }

    .popover.bs-popover-end .popover-arrow:after, .popover.bs-popover-auto[data-popper-placement^="right"] .popover-arrow:after {
        border-left-color: var(--secondary);
    }

    .popover.bs-popover-top .popover-arrow:after, .popover.bs-popover-auto[data-popper-placement^="top"] .popover-arrow:after {
        border-top-color: var(--secondary);
    }

.progress-bar {
    background-color: var(--primary);
    border-width: 0.125rem;
    border-color: transparent;
}

    .progress-bar.primary {
        background-color: var(--primary);
    }

    .progress-bar.success {
        background-color: #56c760;
        border-color: #56c760;
    }

    .progress-bar.info {
        background-color: #58bad7;
        border-color: #58bad7;
    }

    .progress-bar.danger {
        background-color: #f75a5b;
        border-color: #f75a5b;
    }

    .progress-bar.warning {
        background-color: #f0a901;
        border-color: #f0a901;
    }

    .progress-bar.pink {
        background-color: #d63384;
        border-color: #d63384;
    }

.progress {
    height: 0.875rem;
    background-color: #F0F0F1;
    overflow: hidden;
    border-radius: 1.25rem;
}

.progress-bar {
    border-radius: 1.25rem;
}

.progress-bar-striped {
    background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.4) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.4) 75%, transparent 75%, transparent);
}

.progress-vertical {
    display: inline-block;
    margin-bottom: 0;
    margin-left: 2rem;
    min-height: 17rem;
    position: relative;
}

.progress-vertical-bottom {
    display: inline-block;
    margin-bottom: 0;
    margin-left: 2rem;
    min-height: 17rem;
    position: relative;
    transform: rotate(-180deg);
}

.progress-animated {
    animation-duration: 5s;
    animation-name: myanimation;
    transition: all 5s ease 0s;
}

@keyframes myanimation {
    0% {
        width: 0;
    }
}

@keyframes myanimation {
    0% {
        width: 0;
    }
}

.dz-tab .nav.nav-tabs {
    border: 0;
}

    .dz-tab .nav.nav-tabs .nav-item {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        justify-content: center;
        display: flex;
    }

        .dz-tab .nav.nav-tabs .nav-item .nav-link {
            background-color: transparent;
            color: #000;
            border: 0;
            font-size: 0.875rem;
            font-weight: 500;
            padding: 5px 0;
            width: 100%;
            border-radius: var(--border-radius-base);
        }

.dz-tab .tab-content {
    border-radius: var(--border-radius-base);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.13) !important;
    padding: 16px;
}

.dz-tab .tab-slide-effect {
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.075) !important;
    border-radius: var(--border-radius-base);
    margin-bottom: 10px;
    padding: 5px;
}

    .dz-tab .tab-slide-effect .nav-tabs {
        padding: 0;
        margin: 0;
        position: relative;
        z-index: 1;
        box-shadow: none !important;
    }

        .dz-tab .tab-slide-effect .nav-tabs .nav-item.active .nav-link {
            color: #fff !important;
        }

    .dz-tab .tab-slide-effect .tab-active-indicator {
        position: absolute;
        height: 100%;
        z-index: -1;
        background-color: var(--primary) !important;
        border-radius: var(--border-radius-base);
        -webkit-transition: all 0.5s;
        -ms-transition: all 0.5s;
        transition: all 0.5s;
    }

.dz-tab.tab-color .tab-slide-effect {
    border-radius: 5rem;
    border: 0;
    background-color: rgba(255, 255, 255, 0.125);
}

    .dz-tab.tab-color .tab-slide-effect .tab-active-indicator {
        background-color: rgba(255, 255, 255, 0.25) !important;
        border-radius: 20rem;
    }

.dz-tab.tab-color .nav-tabs .nav-link {
    background-color: transparent !important;
    color: rgba(255, 255, 255, 0.5) !important;
    width: 100%;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
}

.dz-tab.tab-color .nav-tabs .nav-item.active .nav-link {
    color: #fff !important;
}

.default-tab .nav-tabs {
    border-color: var(--border-color);
}

    .default-tab .nav-tabs .nav-item .nav-link.active {
        background-color: var(--bg-white);
        border-color: var(--border-color) var(--border-color) var(--bg-white);
    }

.chip * {
    font-size: 12px;
}

.chip {
    display: inline-block;
    margin: 0px 0px 10px 5px;
    border-radius: 30px;
    padding-left: 15px;
}

    .chip i {
        width: 30px;
        line-height: 30px;
        border-radius: 30px;
        display: inline-block;
        text-align: center;
        margin-left: 5px;
    }

    .chip img {
        display: inline;
        margin-left: 9px;
        border-radius: 30px;
        width: 31px;
        line-height: 31px;
    }

.radio .radio-label {
    display: block;
    position: relative;
    padding-right: 30px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .radio .radio-label input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

        .radio .radio-label input:checked ~ .checkmark {
            background-color: var(--primary);
            border: 1px solid var(--primary);
        }

            .radio .radio-label input:checked ~ .checkmark:after {
                display: block;
            }

    .radio .radio-label .checkmark:after {
        top: 2px;
        right: 2px;
        width: 14px;
        height: 14px;
        border-radius: 50%;
        border: 2px solid var(--bg-white);
        background: var(--primary);
    }

.radio .checkmark {
    position: absolute;
    top: 0;
    right: 0;
    height: 20px;
    width: 20px;
    background-color: transparent;
    border-radius: 50%;
    border: 1px solid var(--primary);
}

    .radio .checkmark:after {
        content: "";
        position: absolute;
        display: none;
    }

.radio.square-radio .radio-label .checkmark {
    border-radius: 4px;
}

    .radio.square-radio .radio-label .checkmark:after {
        border-radius: 4px;
        width: 18px;
        height: 18px;
        top: 0;
        right: 0;
    }

.radio.circle-radio .radio-label .checkmark {
    border-radius: 50%;
}

    .radio.circle-radio .radio-label .checkmark:after {
        border-radius: 50%;
        width: 18px;
        height: 18px;
        top: 0;
        right: 0;
    }

.radio.circle-radio.style-1 .checkmark:after {
    border: 0;
}

.lanuage-area {
    display: flex;
    flex-wrap: wrap;
}

    .lanuage-area li {
        width: 50%;
    }

        .lanuage-area li .radio-label {
            font-weight: 500;
        }

.dz-tree .jstree-themeicon {
    background-image: none;
    font-style: unset;
}

    .dz-tree .jstree-themeicon:after {
        content: "\f07b";
        font-weight: 700;
        color: #f0a901;
        font-family: "Font Awesome 6 Free";
    }

.dz-tree .jstree-clicked:hover,
.dz-tree .jstree-clicked {
    background: rgba(103, 58, 183, 0.1);
}

.dz-tree .jstree-close > a .jstree-themeicon:after {
    content: "\f07b";
}

.dz-tree .jstree-open > a .jstree-themeicon:after {
    content: "\f07c";
}

.dz-tree.style-1 .jstree-wholerow.jstree-wholerow-clicked {
    background: rgba(103, 58, 183, 0.1);
}

.dz-stepper small, .dz-stepper .small {
    text-align: center;
    display: block;
    color: #000;
    font-weight: 500;
    margin-bottom: 5px;
}

.dz-stepper .bootstrap-touchspin {
    border: 2px solid var(--primary);
    border-radius: var(--border-radius-base);
    display: flex;
    align-items: center;
    height: 35px;
}

    .dz-stepper .bootstrap-touchspin .input-group-btn {
        width: 35px;
        height: 100%;
    }

        .dz-stepper .bootstrap-touchspin .input-group-btn .btn {
            border-radius: 0;
            width: 100%;
            height: 100%;
            padding: 0;
            text-align: center;
            border: 0;
            font-size: 1.5rem;
            color: var(--primary);
            background-color: transparent;
        }

        .dz-stepper .bootstrap-touchspin .input-group-btn:not(:first-child) {
            padding: 0;
        }

    .dz-stepper .bootstrap-touchspin .form-control {
        padding: 0 10px;
        height: 100%;
        font-size: 1rem;
        font-weight: 500;
        color: var(--primary);
        border-right: 2px solid var(--primary);
        border-left: 2px solid var(--primary);
        border-top: 0;
        border-bottom: 0;
        z-index: 3;
        text-align: center;
    }

.dz-stepper.border-1 .bootstrap-touchspin {
    border: 1px solid var(--primary);
    overflow: hidden;
}

    .dz-stepper.border-1 .bootstrap-touchspin .form-control {
        border-right: 1px solid var(--primary);
        border-left: 1px solid var(--primary);
    }

.dz-stepper.stepper-fill .bootstrap-touchspin .input-group-btn .btn {
    background-color: var(--primary);
    color: #fff;
}

.dz-stepper.small-stepper .bootstrap-touchspin {
    height: 30px;
}

.dz-stepper.large .bootstrap-touchspin {
    height: 45px;
}

.dz-stepper.rounded-stepper .bootstrap-touchspin {
    border-radius: 50px;
    overflow: hidden;
}

.dz-stepper.danger .bootstrap-touchspin {
    border-color: #f75a5b;
}

    .dz-stepper.danger .bootstrap-touchspin .input-group-btn .btn {
        border-radius: 0;
        color: #fff;
        background-color: #f75a5b;
    }

    .dz-stepper.danger .bootstrap-touchspin .form-control {
        border-color: #f75a5b;
        color: #f75a5b;
    }

.dz-stepper.secondary .bootstrap-touchspin {
    border-color: var(--secondary);
}

    .dz-stepper.secondary .bootstrap-touchspin .input-group-btn .btn {
        border-radius: 0;
        color: #fff;
        background-color: var(--secondary);
    }

    .dz-stepper.secondary .bootstrap-touchspin .form-control {
        border-color: var(--secondary);
        color: var(--secondary);
    }

.dz-stepper.warning .bootstrap-touchspin {
    border-color: #f0a901;
}

    .dz-stepper.warning .bootstrap-touchspin .input-group-btn .btn {
        border-radius: 0;
        color: #fff;
        background-color: #f0a901;
    }

    .dz-stepper.warning .bootstrap-touchspin .form-control {
        border-color: #f0a901;
        color: #f0a901;
    }

.dz-stepper.success .bootstrap-touchspin {
    border-color: #56c760;
}

    .dz-stepper.success .bootstrap-touchspin .input-group-btn .btn {
        border-radius: 0;
        color: #fff;
        background-color: #56c760;
    }

    .dz-stepper.success .bootstrap-touchspin .form-control {
        border-color: #56c760;
        color: #56c760;
    }

.dz-stepper.info .bootstrap-touchspin {
    border-color: #58bad7;
}

    .dz-stepper.info .bootstrap-touchspin .input-group-btn .btn {
        border-radius: 0;
        color: #fff;
        background-color: #58bad7;
    }

    .dz-stepper.info .bootstrap-touchspin .form-control {
        border-color: #58bad7;
        color: #58bad7;
    }

.dz-stepper.yellow .bootstrap-touchspin {
    border-color: #ffcc00;
}

    .dz-stepper.yellow .bootstrap-touchspin .input-group-btn .btn {
        border-radius: 0;
        color: #fff;
        background-color: #ffcc00;
    }

    .dz-stepper.yellow .bootstrap-touchspin .form-control {
        border-color: #ffcc00;
        color: #ffcc00;
    }

.dz-stepper.green .bootstrap-touchspin {
    border-color: #4cd964;
}

    .dz-stepper.green .bootstrap-touchspin .input-group-btn .btn {
        border-radius: 0;
        color: #fff;
        background-color: #4cd964;
    }

    .dz-stepper.green .bootstrap-touchspin .form-control {
        border-color: #4cd964;
        color: #4cd964;
    }

.dz-stepper.dark .bootstrap-touchspin {
    border-color: #000;
}

    .dz-stepper.dark .bootstrap-touchspin .input-group-btn .btn {
        border-radius: 0;
        color: #fff;
        background-color: #000;
    }

    .dz-stepper.dark .bootstrap-touchspin .form-control {
        border-color: #000;
        color: #000;
    }

.dz-timeline {
    border-right: 2px solid var(--border-color);
    position: relative;
    padding-right: 20px;
    margin: 20px 10px;
}

    .dz-timeline .timeline-item {
        position: relative;
        padding-bottom: 30px;
    }

        .dz-timeline .timeline-item:after {
            content: "";
            top: 0;
            right: -28px;
            position: absolute;
            background-color: #fff;
            border-radius: 50%;
            background-color: var(--primary);
            height: 14px;
            width: 14px;
        }

        .dz-timeline .timeline-item .timeline-tilte {
            margin: 8px 0;
        }

        .dz-timeline .timeline-item .timeline-date {
            margin: 0;
            font-weight: 500;
            color: var(--primary);
            display: block;
        }

        .dz-timeline .timeline-item .timeline-content {
            margin: 0;
        }

        .dz-timeline .timeline-item.light {
            background-color: var(--bg-white) !important;
            color: #000;
        }

            .dz-timeline .timeline-item.light .timeline-content {
                color: #000;
            }

            .dz-timeline .timeline-item.light:before, .dz-timeline .timeline-item.light:after {
                background-color: var(--bg-white) !important;
            }

        .dz-timeline .timeline-item.primary {
            background-color: var(--primary) !important;
            color: #fff;
        }

            .dz-timeline .timeline-item.primary .timeline-date,
            .dz-timeline .timeline-item.primary .timeline-tilte,
            .dz-timeline .timeline-item.primary .timeline-content {
                color: #fff;
            }

            .dz-timeline .timeline-item.primary:before {
                background-color: var(--primary) !important;
            }

            .dz-timeline .timeline-item.primary:after {
                border-color: var(--primary) !important;
            }

        .dz-timeline .timeline-item.secondary {
            background-color: var(--secondary) !important;
            color: #fff;
        }

            .dz-timeline .timeline-item.secondary .timeline-date,
            .dz-timeline .timeline-item.secondary .timeline-tilte,
            .dz-timeline .timeline-item.secondary .timeline-content {
                color: #fff;
            }

            .dz-timeline .timeline-item.secondary:before, .dz-timeline .timeline-item.secondary:after {
                background-color: var(--secondary) !important;
            }

        .dz-timeline .timeline-item.success {
            background-color: #56c760 !important;
            color: #fff;
        }

            .dz-timeline .timeline-item.success .timeline-date,
            .dz-timeline .timeline-item.success .timeline-tilte,
            .dz-timeline .timeline-item.success .timeline-content {
                color: #fff;
            }

            .dz-timeline .timeline-item.success:before, .dz-timeline .timeline-item.success:after {
                background-color: #56c760 !important;
            }

        .dz-timeline .timeline-item.info {
            background-color: #58bad7 !important;
            color: #fff;
        }

            .dz-timeline .timeline-item.info .timeline-date,
            .dz-timeline .timeline-item.info .timeline-tilte,
            .dz-timeline .timeline-item.info .timeline-content {
                color: #fff;
            }

            .dz-timeline .timeline-item.info:before, .dz-timeline .timeline-item.info:after {
                background-color: #58bad7 !important;
            }

        .dz-timeline .timeline-item.warning {
            background-color: #f0a901 !important;
            color: #fff;
        }

            .dz-timeline .timeline-item.warning .timeline-date,
            .dz-timeline .timeline-item.warning .timeline-tilte,
            .dz-timeline .timeline-item.warning .timeline-content {
                color: #fff;
            }

            .dz-timeline .timeline-item.warning:before, .dz-timeline .timeline-item.warning:after {
                background-color: #f0a901 !important;
            }

        .dz-timeline .timeline-item.danger {
            background-color: #f75a5b !important;
            color: #fff;
        }

            .dz-timeline .timeline-item.danger .timeline-date,
            .dz-timeline .timeline-item.danger .timeline-tilte,
            .dz-timeline .timeline-item.danger .timeline-content {
                color: #fff;
            }

            .dz-timeline .timeline-item.danger:before, .dz-timeline .timeline-item.danger:after {
                background-color: #f75a5b !important;
            }

    .dz-timeline.timeline-panel {
        padding-right: 30px;
    }

        .dz-timeline.timeline-panel .timeline-item {
            margin-bottom: 30px;
            background-color: #fff;
            box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.03);
            border-radius: var(--border-radius-base);
            padding: 12px 20px;
            position: relative;
        }

            .dz-timeline.timeline-panel .timeline-item:before {
                content: "";
                position: absolute;
                top: 15px;
                right: -8px;
                background-color: #fff;
                box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.03);
                width: 20px;
                height: 20px;
                transform: rotate(-45deg);
                z-index: -1;
            }

            .dz-timeline.timeline-panel .timeline-item:after {
                top: 17px;
                right: -38px;
            }

    .dz-timeline.timeline-number {
        border-right: 3px solid var(--primary);
        padding-right: 35px;
    }

        .dz-timeline.timeline-number .timeline-item {
            padding: 0;
            margin-bottom: 30px;
        }

            .dz-timeline.timeline-number .timeline-item:after {
                right: -35px;
                top: 50%;
                width: 25px;
                transform: translateY(-50%);
                height: 3px;
                border-radius: 0;
                border: 0;
                background: var(--primary);
            }

            .dz-timeline.timeline-number .timeline-item .line-content-box {
                background: #fff;
                border-radius: var(--border-radius-base);
                box-shadow: 0px 0px 15px 0 rgba(0, 0, 0, 0.08);
                padding: 15px 20px 15px 15px;
                text-align: right;
            }

                .dz-timeline.timeline-number .timeline-item .line-content-box.media img {
                    border-radius: var(--border-radius-base);
                }

                .dz-timeline.timeline-number .timeline-item .line-content-box p {
                    margin-bottom: 0;
                }

            .dz-timeline.timeline-number .timeline-item .line-num {
                border-radius: 40px;
                box-shadow: -2px 2px 8px 0 rgba(0, 0, 0, 0.3);
                color: #ffffff;
                font-size: 16px;
                font-weight: 700;
                height: 35px;
                line-height: 35px;
                text-align: center;
                position: absolute;
                width: 35px;
                top: 50%;
                right: -25px;
                background: var(--primary);
                transform: translateY(-50%);
                z-index: 9;
            }

.toast {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    background-color: var(--bg-white);
    overflow: hidden;
    border-radius: var(--border-radius-base);
}

    .toast .toast-header {
        background-color: rgba(255, 255, 255, 0.85);
        border-bottom: 1px solid var(--border-color);
    }

    .toast.style-1 {
        position: relative;
        z-index: 1;
    }

        .toast.style-1 .toast-body {
            display: flex;
            align-items: center;
            padding: 16px;
        }

            .toast.style-1 .toast-body svg {
                flex: 0 0 35px;
                width: 35px;
                height: 35px;
                max-width: 35px;
            }

            .toast.style-1 .toast-body .toast-content strong {
                color: var(--primary);
                font-weight: 500;
            }

            .toast.style-1 .toast-body .btn-close {
                top: 12px;
                left: 12px;
                z-index: 10;
            }

        .toast.style-1.toast-primary {
            background-color: var(--primary);
            color: #fff;
        }

            .toast.style-1.toast-primary .text-primary svg path {
                fill: #fff !important;
            }

            .toast.style-1.toast-primary .toast-content strong {
                color: #fff;
                font-weight: 500;
            }

            .toast.style-1.toast-primary .btn-close {
                filter: invert(1) grayscale(100%) brightness(200%);
            }

        .toast.style-1.toast-secondary {
            background-color: var(--secondary);
            color: #fff;
        }

            .toast.style-1.toast-secondary .text-primary svg path {
                fill: #fff !important;
            }

            .toast.style-1.toast-secondary .toast-content strong {
                color: #fff;
                font-weight: 500;
            }

            .toast.style-1.toast-secondary .btn-close {
                filter: invert(1) grayscale(100%) brightness(200%);
            }

        .toast.style-1.toast-success {
            background-color: #56c760;
            color: #fff;
        }

            .toast.style-1.toast-success .text-primary svg path {
                fill: #fff !important;
            }

            .toast.style-1.toast-success .toast-content strong {
                color: #fff;
                font-weight: 500;
            }

            .toast.style-1.toast-success .btn-close {
                filter: invert(1) grayscale(100%) brightness(200%);
            }

        .toast.style-1.toast-warning {
            background-color: #f0a901;
            color: #fff;
        }

            .toast.style-1.toast-warning .text-primary svg path {
                fill: #fff !important;
            }

            .toast.style-1.toast-warning .toast-content strong {
                color: #fff;
                font-weight: 500;
            }

            .toast.style-1.toast-warning .btn-close {
                filter: invert(1) grayscale(100%) brightness(200%);
            }

        .toast.style-1.toast-danger {
            background-color: #f75a5b;
            color: #fff;
        }

            .toast.style-1.toast-danger .text-primary svg path {
                fill: #fff !important;
            }

            .toast.style-1.toast-danger .toast-content strong {
                color: #fff;
                font-weight: 500;
            }

            .toast.style-1.toast-danger .btn-close {
                filter: invert(1) grayscale(100%) brightness(200%);
            }

        .toast.style-1.toast-info {
            background-color: #58bad7;
            color: #fff;
        }

            .toast.style-1.toast-info .text-primary svg path {
                fill: #fff !important;
            }

            .toast.style-1.toast-info .toast-content strong {
                color: #fff;
                font-weight: 500;
            }

            .toast.style-1.toast-info .btn-close {
                filter: invert(1) grayscale(100%) brightness(200%);
            }

        .toast.style-1.toast-dark {
            background-color: #000;
            color: #fff;
        }

            .toast.style-1.toast-dark .text-primary svg path {
                fill: #fff !important;
            }

            .toast.style-1.toast-dark .toast-content strong {
                color: #fff;
                font-weight: 500;
            }

            .toast.style-1.toast-dark .btn-close {
                filter: invert(1) grayscale(100%) brightness(200%);
            }
/*
.dz-swiper {
    margin-right: -15px !important;
    margin-left: -15px !important;
}

    .dz-swiper .swiper-slide {
        width: 300px;
    }

        .dz-swiper .swiper-slide:first-child {
            margin-right: 15px;
        }

.swiper-center {
    margin-right: -15px !important;
    margin-left: -15px !important;
}

    .swiper-center .swiper-slide {
        width: 300px;
    }

        .swiper-center .swiper-slide:first-child {
            margin-right: 15px;
        }

.swiper-slider-full {
    margin-left: -15px !important;
    margin-right: -15px !important;
}

    .swiper-slider-full .swiper-slide {
        width: 100%;
    }

.dz-swiper-gallery-wrapper {
    overflow: hidden;
    position: relative;
}

    .dz-swiper-gallery-wrapper .swiper-gallery-next,
    .dz-swiper-gallery-wrapper .swiper-gallery-prev {
        border: 0;
        background-color: rgba(0, 0, 0, 0.43) !important;
        color: rgba(255, 255, 255, 0.68);
        width: 40px;
        height: 40px;
        border-radius: var(--border-radius-base);
        line-height: 40px;
        transform: translateY(-50%);
    }

        .dz-swiper-gallery-wrapper .swiper-gallery-next:after,
        .dz-swiper-gallery-wrapper .swiper-gallery-prev:after {
            font-size: 1.5rem;
            font-family: 'FontAwesome';
        }

        .dz-swiper-gallery-wrapper .swiper-gallery-next:hover,
        .dz-swiper-gallery-wrapper .swiper-gallery-prev:hover {
            color: rgba(255, 255, 255, 0.43);
        }

        .dz-swiper-gallery-wrapper .swiper-gallery-next:after {
            content: '\f105';
        }

        .dz-swiper-gallery-wrapper .swiper-gallery-prev:after {
            content: '\f104';
        }

    .dz-swiper-gallery-wrapper .dz-swiper-gallery-thumb {
        margin-top: 10px;
    }

.pagination-dots.style-1 {
    bottom: 0 !important;
    opacity: 1;
    position: unset;
    padding: 10px 0;
    z-index: 1;
}

    .pagination-dots.style-1 .swiper-pagination-bullet {
        margin: 0 4px;
        width: 16px;
        border-radius: 5px;
        height: 6px;
        background: #d2d2d2;
        opacity: 1;
        -webkit-transition: all 0.5s;
        -ms-transition: all 0.5s;
        transition: all 0.5s;
        -webkit-transition: all 0.5s;
        -ms-transition: all 0.5s;
        transition: all 0.5s;
    }

    .pagination-dots.style-1 .swiper-pagination-bullet-active {
        background: var(--primary);
        width: 27px;
    }

.swiper-slide .job-post {
    margin-bottom: 8px;
}*/

.dz-spinner.box-spinner {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    margin-right: auto;
    text-align: center;
    margin-left: auto;
    line-height: 80px;
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-base);
}

.dz-spinner .spinner-lg {
    width: 3rem;
    height: 3rem;
}

.dz-spinner .spinner-md {
    width: 2.5rem;
    height: 2.5rem;
}

.dz-spinner .spinner-sm {
    width: 1.5rem;
    height: 1.5rem;
}

/* .dz-lightgallery{
    .gallery{
        img{
            margin: 10px 0;
        }
    }    
} */
.divider {
    position: relative;
    width: 100%;
    clear: both;
    border-color: var(--primary);
    border-width: 2px 0 0 0;
    margin: 15px 0;
    border-style: solid;
    z-index: 1;
}

    .divider.divider-dotted {
        border-style: dotted;
    }

    .divider.divider-dashed {
        border-style: dashed;
    }

    .divider.border-light {
        border-color: #efefef !important;
    }

    .divider.inner-divider {
        padding: 10px 0;
    }

        .divider.inner-divider > i,
        .divider.inner-divider > span {
            color: #fff;
            position: absolute;
            text-align: center;
            background-color: var(--primary);
            right: 50%;
            transform: translateX(50%);
        }

        .divider.inner-divider > i {
            width: 35px;
            height: 35px;
            line-height: 35px;
            border-radius: 50%;
            top: -18px;
        }

        .divider.inner-divider > span {
            padding: 8px 12px;
            font-size: 13px;
            font-weight: 500;
            line-height: 13px;
            top: -15px;
            border-radius: 2px;
        }

        .divider.inner-divider.left i,
        .divider.inner-divider.left span {
            right: 0;
            transform: unset;
        }

        .divider.inner-divider.right i,
        .divider.inner-divider.right span {
            right: auto;
            left: 0;
            transform: unset;
        }

        .divider.inner-divider.border-primary i,
        .divider.inner-divider.border-primary span {
            background-color: var(--primary);
        }

        .divider.inner-divider.border-primary.transparent span {
            color: var(--primary);
        }

        .divider.inner-divider.border-secondary i,
        .divider.inner-divider.border-secondary span {
            background-color: var(--secondary);
        }

        .divider.inner-divider.border-secondary.transparent span {
            color: var(--secondary);
        }

        .divider.inner-divider.border-success i,
        .divider.inner-divider.border-success span {
            background-color: #56c760;
        }

        .divider.inner-divider.border-success.transparent span {
            color: #56c760;
        }

        .divider.inner-divider.border-danger i,
        .divider.inner-divider.border-danger span {
            background-color: #f75a5b;
        }

        .divider.inner-divider.border-danger.transparent span {
            color: #f75a5b;
        }

        .divider.inner-divider.border-info i,
        .divider.inner-divider.border-info span {
            background-color: #58bad7;
        }

        .divider.inner-divider.border-info.transparent span {
            color: #58bad7;
        }

        .divider.inner-divider.border-warning i,
        .divider.inner-divider.border-warning span {
            background-color: #f0a901;
        }

        .divider.inner-divider.border-warning.transparent span {
            color: #f0a901;
        }

        .divider.inner-divider.border-light i,
        .divider.inner-divider.border-light span {
            background-color: #efefef;
            color: #000;
        }

        .divider.inner-divider.border-dark i,
        .divider.inner-divider.border-dark span {
            background-color: #000;
        }

        .divider.inner-divider.border-dark.transparent span {
            color: #000;
        }

        .divider.inner-divider.transparent {
            border-width: 1px 0 0 0;
        }

            .divider.inner-divider.transparent span {
                background-color: var(--bg-white);
                color: #7e7e7e;
            }

.dz-breadcrumb {
    box-shadow: 0 0px 12px 0px rgba(112, 112, 112, 0.12);
    background-color: #fff;
    position: relative;
    z-index: 1;
}

    .dz-breadcrumb .breadcrumb .breadcrumb-item {
        font-size: 0.875rem;
        font-weight: 500;
        color: #1f0757;
    }

        .dz-breadcrumb .breadcrumb .breadcrumb-item i {
            margin-left: 0.5rem;
        }

    .dz-breadcrumb.default {
        background-color: transparent;
        box-shadow: unset;
    }

        .dz-breadcrumb.default .breadcrumb {
            box-shadow: 0 0px 12px 0px rgba(112, 112, 112, 0.12);
            background-color: #fff;
            border-radius: var(border-radius-base);
        }

    .dz-breadcrumb.style-3 {
        background-size: cover;
        background-repeat: no-repeat;
        z-index: 1;
        background-position: center center;
    }

        .dz-breadcrumb.style-3:after {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            z-index: -1;
            width: 100%;
            height: 100%;
            background-color: #061238;
            opacity: 0.75;
        }

        .dz-breadcrumb.style-3 .breadcrumb .breadcrumb-item,
        .dz-breadcrumb.style-3 .breadcrumb a {
            color: #fff;
        }

            .dz-breadcrumb.style-3 .breadcrumb .breadcrumb-item + .breadcrumb-item:before {
                color: #fff;
            }

    .dz-breadcrumb.bg-primary .breadcrumb .breadcrumb-item,
    .dz-breadcrumb.bg-primary .breadcrumb a, .dz-breadcrumb.bg-secondary .breadcrumb .breadcrumb-item,
    .dz-breadcrumb.bg-secondary .breadcrumb a, .dz-breadcrumb.bg-success .breadcrumb .breadcrumb-item,
    .dz-breadcrumb.bg-success .breadcrumb a, .dz-breadcrumb.bg-danger .breadcrumb .breadcrumb-item,
    .dz-breadcrumb.bg-danger .breadcrumb a, .dz-breadcrumb.bg-info .breadcrumb .breadcrumb-item,
    .dz-breadcrumb.bg-info .breadcrumb a, .dz-breadcrumb.bg-warning .breadcrumb .breadcrumb-item,
    .dz-breadcrumb.bg-warning .breadcrumb a, .dz-breadcrumb.bg-dark .breadcrumb .breadcrumb-item,
    .dz-breadcrumb.bg-dark .breadcrumb a {
        color: #fff;
    }

        .dz-breadcrumb.bg-primary .breadcrumb .breadcrumb-item + .breadcrumb-item:before, .dz-breadcrumb.bg-secondary .breadcrumb .breadcrumb-item + .breadcrumb-item:before, .dz-breadcrumb.bg-success .breadcrumb .breadcrumb-item + .breadcrumb-item:before, .dz-breadcrumb.bg-danger .breadcrumb .breadcrumb-item + .breadcrumb-item:before, .dz-breadcrumb.bg-info .breadcrumb .breadcrumb-item + .breadcrumb-item:before, .dz-breadcrumb.bg-warning .breadcrumb .breadcrumb-item + .breadcrumb-item:before, .dz-breadcrumb.bg-dark .breadcrumb .breadcrumb-item + .breadcrumb-item:before {
            color: #fff;
        }

.offcanvas.offcanvas-bottom {
    border-radius: 0.625rem 0.625rem 0 0;
    height: unset;
    border-top: 0;
}

.offcanvas.offcanvas-top {
    border-radius: 0 0 10px 10px;
    height: unset;
    border-bottom: 0;
    bottom: auto;
}

.offcanvas .offcanvas-header {
    padding: 1rem 0;
    margin: 0 0.875rem !important;
    border-bottom: 1px solid var(--border-color);
    margin: 0;
}

    .offcanvas .offcanvas-header .offcanvas-title {
        line-height: 1.2;
    }

    .offcanvas .offcanvas-header .btn-close {
        background: none;
        padding: 0;
        margin: 0;
        font-size: 18px;
        opacity: 0.3;
        line-height: 1;
    }

.offcanvas .offcanvas-backdrop.show {
    opacity: 0.3 !important;
}

.highlight-text {
    color: var(--primary);
    margin-bottom: 0;
    font-size: 0.875rem;
    font-weight: 600;
}

.scale-box {
    position: relative;
    animation: scale-box 2s infinite;
}

@keyframes scale-box {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.7);
    }

    100% {
        transform: scale(1);
    }
}

.modal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
    transform: translate(0, 50px);
}

.modal.fade.show .modal-dialog {
    transform: none;
}

.modal.fade.show.modal-static .modal-dialog {
    transform: scale(1.02);
}

.modal .modal-dialog .modal-content {
    border-radius: 0.625rem;
}

    .modal .modal-dialog .modal-content .modal-header {
        padding: 1rem;
        border-bottom: 1px solid var(--border-color);
        margin: 0;
    }

        .modal .modal-dialog .modal-content .modal-header .modal-title {
            line-height: 1.2;
        }

.btn-close {
    /* background: #dc3545;
    padding: 3px;
    opacity: 1;
    margin: 0; */
}

.top-right {
    position: absolute;
    top: 15px;
    left: 15px;
}

/*==== 6. Pages ====*/
.title-bar {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    justify-content: space-between;
}

    .title-bar .dz-title {
        font-weight: 500;
        margin-bottom: 0;
    }

.head-title {
    font-size: 1.125rem;
    font-weight: 500;
}

.dashboard-area .features-box .card {
    overflow: hidden;
}

    .dashboard-area .features-box .card img {
        position: absolute;
        bottom: -20px;
        left: -10px;
        opacity: 0.5;
        z-index: -1;
    }

    .dashboard-area .features-box .card.card-bx {
        box-shadow: 0 8px 0.75rem 0 rgba(0, 0, 0, 0.03);
        border-radius: var(--border-radius-base);
        height: 169px;
        z-index: -1;
    }

    .dashboard-area .features-box .card.card-content {
        color: #fff;
    }

        .dashboard-area .features-box .card.card-content .title {
            color: #fff;
            font-size: 2.125rem;
            position: relative;
            font-weight: 700;
        }

            .dashboard-area .features-box .card.card-content .title:after {
                content: "";
                position: absolute;
                top: 0px;
                background-repeat: no-repeat;
                width: 30px;
                height: 30px;
                z-index: -1;
                right: 23px;
                background-image: url(../images/vector.png);
            }

        .dashboard-area .features-box .card.card-content .card-info {
            position: absolute;
            bottom: 0;
        }

.dashboard-area .categorie-section {
    margin: 10px 0 30px;
}

    .dashboard-area .categorie-section ul {
        flex-wrap: wrap;
        margin: 0 -6px;
    }

        .dashboard-area .categorie-section ul li {
            padding: 6px;
        }

@media only screen and (max-width: 35.9375rem) {
    .dashboard-area .categorie-section ul li {
        width: 25%;
    }
}

.dashboard-area .categorie-section ul li .btn {
    width: 70px;
    padding: 0;
    line-height: 70px;
    height: 70px;
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-base);
}

    .dashboard-area .categorie-section ul li .btn:hover {
        background-color: #E4E0EC;
    }

    .dashboard-area .categorie-section ul li .btn svg path {
        fill: var(--primary);
    }

.dashboard-area .rm-jobs .card .card-body .price-item {
    font-weight: 600;
    color: var(--primary);
}

.job-post {
    box-shadow: none;
    border: 1px solid var(--border-color);
}

    .job-post .card-body {
        display: flex;
        align-items: center;
    }

        .job-post .card-body .media {
            margin-left: 20px;
        }

        .job-post .card-body .location {
            margin-bottom: 10px;
            display: block;
        }

        .job-post .card-body .card-info {
            width: 100%;
        }

.item-list .item-content {
    display: flex;
}

.recent-jobs-list ul:before {
    content: none;
}

.recent-jobs-list ul:after {
    content: none;
}

.recent-jobs-list ul li {
    border: 1px solid var(--border-color);
    background: var(--bg-white);
    margin: 10px 0;
    border-radius: var(--border-radius-base);
}

    .recent-jobs-list ul li .item-content {
        padding-right: 15px;
    }

        .recent-jobs-list ul li .item-content .item-media {
            padding: 20px 0;
        }

        .recent-jobs-list ul li .item-content .item-inner {
            padding-right: 20px;
            padding-top: 20px;
            padding-bottom: 20px;
            padding-left: 20px;
        }

            .recent-jobs-list ul li .item-content .item-inner:after {
                content: none;
            }

            .recent-jobs-list ul li .item-content .item-inner .item-title-row {
                margin-bottom: 10px;
            }

                .recent-jobs-list ul li .item-content .item-inner .item-title-row .item-title {
                    margin: 0;
                    font-size: 16px;
                    font-weight: 600;
                }

                .recent-jobs-list ul li .item-content .item-inner .item-title-row .bookmark-btn {
                    width: 0.75rem;
                    height: 0.75rem;
                    color: #000;
                    font-size: 18px;
                }

                    .recent-jobs-list ul li .item-content .item-inner .item-title-row .bookmark-btn i {
                        position: absolute;
                    }

                    .recent-jobs-list ul li .item-content .item-inner .item-title-row .bookmark-btn .fas {
                        display: none;
                    }

                    .recent-jobs-list ul li .item-content .item-inner .item-title-row .bookmark-btn .far {
                        color: #000;
                    }

                    .recent-jobs-list ul li .item-content .item-inner .item-title-row .bookmark-btn.active .fa-bookmark {
                        color: #ff9838;
                        display: block;
                    }

                    .recent-jobs-list ul li .item-content .item-inner .item-title-row .bookmark-btn.active .fa-bookmark-o {
                        display: none;
                    }

            .recent-jobs-list ul li .item-content .item-inner .item-subtitle {
                font-size: 0.75rem;
                font-weight: 500;
                margin-bottom: 5px;
            }

            .recent-jobs-list ul li .item-content .item-inner .item-price {
                font-weight: 500;
                font-size: 0.875rem;
                margin-right: 10px;
            }

.filter-area {
    display: flex;
    margin: 20px 0;
    align-items: center;
    justify-content: space-between;
}

.btn.tag-btn {
    height: 30px;
    line-height: 30px;
    border-radius: 50px;
    padding: 0 33px 0px 15px;
    font-size: 12px;
    position: relative;
    margin: 0 0 10px 5px;
    background: var(--rgba-primary-1);
    border: 0;
    font-weight: 500;
    color: var(--primary);
}

    .btn.tag-btn .cross {
        position: absolute;
        right: 5px;
        font-size: 12px;
        top: 15px;
        transform: translateY(-50%);
        background-color: var(--primary);
        color: #fff;
        border-radius: 50%;
        width: 20px;
        height: 20px;
        line-height: 21px;
    }

.fixed-content {
    border-radius: 20px 20px 0 0;
    position: relative;
    z-index: 1;
    background-color: #fff;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.head-details {
    background-color: #21085B;
    padding-top: 20px;
    padding-bottom: 50px;
    margin-bottom: -30px;
}

    .head-details .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .head-details .dz-info {
        padding-left: 20px;
    }

    .head-details .title {
        color: #fff;
    }

    .head-details .location {
        color: #fff;
        margin-bottom: 5px;
    }

.banner-wrapper {
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
    background: var(--gradient);
    margin-bottom: -40px;
    padding: 10px 0 40px;
    overflow: hidden;
}

    .banner-wrapper.shape-1 {
        position: relative;
        z-index: -1;
    }

        .banner-wrapper.shape-1:after {
            content: "";
            position: absolute;
            top: 30px;
            left: -80px;
            width: 200px;
            height: 200px;
            border: 40px solid #fff;
            z-index: -1;
            border-radius: 50%;
            opacity: 0.10;
        }

    .banner-wrapper .inner-wrapper span,
    .banner-wrapper .inner-wrapper p {
        color: rgba(255, 255, 255, 0.7);
    }

    .banner-wrapper .inner-wrapper h1, .banner-wrapper .inner-wrapper .h1, .banner-wrapper .inner-wrapper h2, .banner-wrapper .inner-wrapper .h2, .banner-wrapper .inner-wrapper h3, .banner-wrapper .inner-wrapper .h3, .banner-wrapper .inner-wrapper h4, .banner-wrapper .inner-wrapper .h4, .banner-wrapper .inner-wrapper h5, .banner-wrapper .inner-wrapper .h5, .banner-wrapper .inner-wrapper h6, .banner-wrapper .inner-wrapper .h6 {
        color: #fff;
    }

.author-notification .inner-wrapper {
    display: flex;
    justify-content: space-between;
}

.detail {
    color: var(--primary);
}

.filter-btn {
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    background: var(--secondary);
    border-radius: var(--border-radius-base);
}

.pwa-offcanvas {
    text-align: center;
}

    .pwa-offcanvas .title {
        margin-bottom: 10px;
    }

    .pwa-offcanvas .logo {
        width: 80px;
        margin: 0 auto 20px;
        display: block;
    }

    .pwa-offcanvas p {
        margin-bottom: 25px;
    }

    .pwa-offcanvas.show {
        visibility: visible;
    }

.pwa-backdrop {
    visibility: hidden;
}

    .pwa-backdrop.show {
        visibility: visible;
        transition: opacity 0.15s linear;
    }

.error-page {
    display: block;
    text-align: center;
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    width: 100%;
}

    .error-page .icon-bx {
        margin: 0 0 10px;
    }

svg.text-primary path,
svg.text-primary rect {
    fill: var(--primary);
}

svg.text-primary g path {
    fill: #fff;
}

.text-justify {
    text-align: justify;
}

.list-style {
    padding-right: 2rem;
}

    .list-style li {
        list-style: unset;
    }

.fb {
    padding-bottom: 80px;
}

.title {
    font-weight: 600;
    margin-bottom: 0;
}

.tag-group .tag-btn {
    padding: 8px 15px;
    border: 1px solid #E1D3FF;
    display: inline-block;
    border-radius: 40px;
    text-align: center;
    font-size: 13px;
    line-height: 1.3;
}

    .tag-group .tag-btn:nth-child(2) {
        margin: 0 10px;
    }

.light-text {
    color: #6F6F6F;
    font-weight: 400;
}

.para-title {
    font-size: 14px;
    font-weight: 400;
}

.icon-box {
    width: 55px;
    height: 55px;
    line-height: 50px;
    text-align: center;
    background-color: var(--rgba-primary-1);
    border: 1px solid var(--rgba-primary-2);
    border-radius: 50%;
}

.icon-box-2 {
    width: 50px;
    height: 50px;
    line-height: 40px;
    text-align: center;
    border: 2px solid #e1d3ff;
    border-radius: var(--border-radius-base);
    box-shadow: inset 0 0 10px 0 #4e23b48f;
}

    .icon-box-2.style-1 {
        box-shadow: inset 0 0 10px 0 #48a9f8;
    }

ul.list-check {
    line-height: 1.7;
}

    ul.list-check li {
        color: #313131;
        font-size: 14px;
        margin-right: 30px;
        position: relative;
    }

        ul.list-check li:after {
            content: "\f125";
            font-family: Flaticon;
            width: 5px;
            height: 5px;
            top: 10px;
            color: var(--primary);
            right: -30px;
            border-radius: 30px;
            line-height: 5px;
            position: absolute;
        }

.flex-1 {
    flex: 1;
}

.team-swiper-4 .swiper-slide {
    width: auto;
}

.dz-banner-heading .overlay-black-light {
    position: relative;
    z-index: -1;
}

    .dz-banner-heading .overlay-black-light .bnr-img {
        width: 100%;
        height: 240px;
        object-fit: cover;
    }

    .dz-banner-heading .overlay-black-light:after {
        position: absolute;
        top: 0;
        right: 0;
        content: "";
        background: linear-gradient(-160deg, rgba(0, 0, 0, 0.47), rgba(0, 0, 0, 0));
        width: 100%;
        height: 100%;
    }

.company-detail {
    margin-top: -45px;
}

    .company-detail .detail-content {
        margin: 20px 0;
        display: flex;
        border-bottom: 1px solid #F1F1F1;
        align-items: center;
    }

    .company-detail .contact-box {
        margin: 20px 0;
    }

        .company-detail .contact-box li .contact-icon {
            width: 56px;
            height: 56px;
            border: 1px solid var(--rgba-primary-2);
            text-align: center;
            line-height: 55px;
            border-radius: 50px;
        }

        .company-detail .contact-box li:hover .contact-icon {
            background: var(--primary);
        }

            .company-detail .contact-box li:hover .contact-icon svg path {
                fill: #fff;
            }

    .company-detail .about-company {
        margin-top: 30px;
    }

.message-list {
    padding-top: 10px;
    padding-bottom: 60px;
}

    .message-list li {
        margin: 0 0 15px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        padding-bottom: 15px;
    }

        .message-list li a {
            display: flex;
            align-items: center;
        }

        .message-list li .media {
            position: relative;
        }

            .message-list li .media:after {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                width: 15px;
                height: 15px;
                background-color: #54D969;
                border: 3px solid #fff;
                border-radius: 50px;
            }

        .message-list li .media-content {
            display: flex;
            margin-right: 10px;
            width: 100%;
        }

            .message-list li .media-content .name {
                margin-bottom: 0;
            }

            .message-list li .media-content p {
                color: #7e7e7e;
                font-size: 13px;
            }

                .message-list li .media-content p i {
                    font-size: 0.875rem;
                }

            .message-list li .media-content .time {
                margin-right: auto;
                color: #898A8D;
            }

.chat-btn {
    font-weight: 500;
    position: fixed;
    right: 50%;
    bottom: 100px;
    transform: translateX(50%);
    display: none;
    margin: 0;
    z-index: 999;
}

.message-content {
    background-color: var(--rgba-primary-1);
    min-height: 100vh;
}

    .message-content .chat-content {
        display: flex;
        align-items: flex-end;
        justify-content: flex-start;
        margin-left: 60px;
    }

        .message-content .chat-content.user {
            justify-content: flex-end;
            margin-left: 0;
            margin-right: 60px;
        }

            .message-content .chat-content.user .message-item {
                margin-bottom: 10px;
            }

                .message-content .chat-content.user .message-item .bubble {
                    background: var(--primary);
                    color: #FFF;
                    border-radius: 12px 12px 12px 0;
                }

                    .message-content .chat-content.user .message-item .bubble .emoji-icon {
                        display: inline-flex;
                        width: 30px;
                        height: 30px;
                        margin: 0 3px;
                    }

                .message-content .chat-content.user .message-item .message-time {
                    text-align: left;
                }

        .message-content .chat-content .message-item .bubble {
            padding: 8px 15px;
            background: #fff;
            border-radius: 12px 12px 0 12px;
            color: #141515;
            display: inline-flex;
            margin-top: 4px;
            font-size: 0.875rem;
            line-height: 1.4em;
            align-items: center;
        }

        .message-content .chat-content .message-item .message-time {
            font-size: 0.75rem;
            padding: 8px 0;
            text-align: right;
            line-height: 1em;
            margin-top: 5px;
            color: #969696;
            height: 14px;
        }

.notification-content .notification {
    padding: 18px 20px;
    margin: 20px 0;
    border-radius: 0.625rem;
    transition: all 0.5s;
    border: 1px solid #DDDDDD;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
}

    .notification-content .notification p {
        color: #7e7e7e;
        -webkit-transition: all 0.5s;
        -ms-transition: all 0.5s;
        transition: all 0.5s;
        font-size: 13px;
    }

    .notification-content .notification .notification-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        -webkit-transition: all 0.5s;
        -ms-transition: all 0.5s;
        transition: all 0.5s;
    }

        .notification-content .notification .notification-footer span {
            color: #787878;
            -webkit-transition: all 0.5s;
            -ms-transition: all 0.5s;
            transition: all 0.5s;
        }

    .notification-content .notification:hover, .notification-content .notification:active, .notification-content .notification:focus {
        color: #fff;
        background: var(--primary);
    }

        .notification-content .notification:hover h6, .notification-content .notification:hover .h6, .notification-content .notification:active h6, .notification-content .notification:active .h6, .notification-content .notification:focus h6, .notification-content .notification:focus .h6 {
            color: #fff;
        }

        .notification-content .notification:hover span, .notification-content .notification:active span, .notification-content .notification:focus span {
            color: #fff;
        }

            .notification-content .notification:hover span svg path, .notification-content .notification:active span svg path, .notification-content .notification:focus span svg path {
                stroke: var(--secondary);
            }

        .notification-content .notification:hover p, .notification-content .notification:active p, .notification-content .notification:focus p {
            color: #fff;
        }

.profile-area {
    margin-top: -60px;
    margin-bottom: 30px;
}

    .profile-area .profile {
        text-align: center;
    }

        .profile-area .profile .media {
            margin: 0 auto 15px;
        }

            .profile-area .profile .media img {
                border-radius: 12px;
                border: 5px solid #fff;
            }

    .profile-area .contact-profile {
        display: flex;
        justify-content: center;
        margin: 30px 0;
    }

        .profile-area .contact-profile .contact-icon {
            width: 60px;
            height: 60px;
            border: 1px solid var(--rgba-primary-2);
            text-align: center;
            line-height: 58px;
            border-radius: 50px;
        }

            .profile-area .contact-profile .contact-icon:hover {
                background: var(--primary);
            }

                .profile-area .contact-profile .contact-icon:hover svg path {
                    fill: #fff;
                }

    .profile-area .pdf-bx {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: var(--primary);
        padding: 20px 20px;
        width: 319px;
        height: 89px;
        border-radius: var(--border-radius-base);
        margin: 30px auto;
        color: #fff;
    }

.skill-bar {
    text-align: center;
    background-color: var(--rgba-primary-1);
    padding: 15px 5px;
    border-radius: var(--border-radius-base);
}

    .skill-bar .donut-chart-sale {
        position: relative;
        width: 64px;
        margin: 0 auto 15px;
    }

        .skill-bar .donut-chart-sale svg {
            z-index: 1;
            position: relative;
        }

        .skill-bar .donut-chart-sale small, .skill-bar .donut-chart-sale .small {
            position: absolute;
            top: 5px;
            right: 5px;
            height: calc(100% - 10px);
            width: calc(100% - 10px);
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #fff;
            border-radius: 50%;
            font-size: 15px;
            font-weight: 600;
        }

.account-area {
    min-height: calc(100vh - 190px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

    .account-area form {
        display: flex;
        flex-direction: column;
    }

        .account-area form .saprate {
            display: flex;
            flex: 1;
            align-items: center;
            justify-content: center;
        }

        .account-area form .btn-link {
            margin: 20px 0;
        }

.social-btn-group {
    margin-top: 10px;
    margin-bottom: auto;
    white-space: nowrap;
}

    .social-btn-group .social-btn {
        width: 149px;
        min-width: 149px;
        height: 48px;
        background-color: #fff;
        text-align: center;
        border: 1px solid var(--border-color);
        line-height: 44px;
        border-radius: 50px;
        display: inline-block;
    }

        .social-btn-group .social-btn img {
            width: 28px;
            height: 28px;
        }

.saprate {
    position: relative;
    display: inline-block;
    color: var(--primary);
    font-size: 0.875rem;
    padding: 0 70px;
}

    .saprate:after {
        content: "";
        position: absolute;
        width: 50px;
        height: 1px;
        background-color: rgba(0, 0, 0, 0.4);
        top: 50%;
        right: 0;
        transform: translateY(-50%);
    }

    .saprate:before {
        content: "";
        position: absolute;
        width: 50px;
        height: 1px;
        background-color: rgba(0, 0, 0, 0.4);
        top: 50%;
        left: 0;
        transform: translateY(-50%);
    }

.digit-group {
    display: flex;
    flex-direction: initial;
}

    .digit-group input {
        margin: 0 4px;
        border-radius: 15px;
        text-align: center;
        font-size: 24px;
        padding-right: 5px;
        padding-left: 5px;
        color: var(--bg-dark);
    }

.welcome-area {
    flex-direction: column;
    display: flex;
    height: 100%;
}

    .welcome-area .welcome-logo {
        margin: 30px auto auto;
        text-align: center;
    }

        .welcome-area .welcome-logo img {
            width: 100px;
        }

        .welcome-area .welcome-logo .get-started {
            text-align: center;
            margin-bottom: 20px;
            font-weight: 500;
            margin-top: 20px;
        }

            .welcome-area .welcome-logo .get-started .dz-title {
                margin-bottom: 0;
                font-size: 2.375rem;
                font-weight: 400;
                font-family: 'Racing Sans One', cursive;
            }

    .welcome-area .join-area {
        padding: 0 0 15px;
        margin: auto 0 0;
    }

        .welcome-area .join-area .started {
            margin-bottom: 30px;
        }

        .welcome-area .join-area .card {
            box-shadow: none;
            padding: 20px;
            border-radius: var(--border-radius-base);
            border: 1px solid var(--border-color);
            margin: 0 0 20px 0;
            color: #000;
            display: block;
            position: relative;
        }

            .welcome-area .join-area .card:last-child {
                margin-bottom: 0;
            }

            .welcome-area .join-area .card h5, .welcome-area .join-area .card .h5 {
                font-size: 16px;
                margin-top: 0;
                margin-bottom: 8px;
                color: var(--primary);
            }

            .welcome-area .join-area .card p {
                margin-bottom: 0;
                color: #7e7e7e;
            }

            .welcome-area .join-area .card:hover {
                border: 1px solid var(--primary);
            }

.main-screen {
    position: absolute;
    width: 100%;
    z-index: -1;
    height: 100%;
    background-color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    animation: color 9s infinite linear;
}

@keyframes color {
    0% {
        background: var(--primary);
    }

    20% {
        background: #911ed1;
    }

    40% {
        background: #447293;
    }

    60% {
        background: #911ed1;
    }

    80% {
        background: #40189D;
    }

    100% {
        background: #40189D;
    }
}

.loader-screen {
    z-index: 9999999;
    position: absolute;
    display: block;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.logo-icon {
    width: 120px;
    height: 120px;
    overflow: hidden;
    background: #fff;
    border-radius: 50%;
    text-align: center;
    z-index: 1;
    position: absolute;
    top: 50%;
    right: 50%;
    box-shadow: inset 0 0px 16px 0 var(--primary);
    margin-top: -60px;
    margin-right: -60px;
    animation: popup 9s infinite;
}

@keyframes popup {
    0% {
        transform: scale(0.5);
    }

    25% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.9);
    }

    75% {
        transform: scale(1);
    }

    100% {
        transform: scale(0.9);
    }
}

/* Get Started */ /*
.get-started {
    text-align: center;
    flex: 1;
    width: 100%;
}

    .get-started .swiper-wrapper {
        margin-bottom: 0;
    }

    .get-started .dz-title {
        margin-bottom: 12px;
        font-size: 24px;
    }

    .get-started p {
        margin-bottom: 0;
        margin-top: 0;
    }

.swiper-btn {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
}

.swiper-button-prev i {
    transform: rotateY(-180deg);
}

.swiper-button-prev,
.swiper-button-next {
    position: unset;
    height: 3rem;
    opacity: 1;
    width: 3rem;
    margin: 0;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3rem;
    backgroun: transparent;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    color: #767676;
    border: 1px solid #CBCBCB;
}

    .swiper-button-prev i,
    .swiper-button-next i {
        line-height: .5;
    }

    .swiper-button-prev:after,
    .swiper-button-next:after {
        content: none;
    }

    .swiper-button-prev:hover,
    .swiper-button-next:hover {
        background: var(--primary);
        color: #fff;
    }

.started-swiper-box {
    max-width: 1024px;
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    display: flex;
    padding: 0;
    flex-direction: column;
    height: 100vh;
}

    .started-swiper-box .swiper-slide {
        height: 100%;
        position: relative;
    }

    .started-swiper-box .dz-media {
        margin: auto auto 0px;
    }

        .started-swiper-box .dz-media img {
            max-width: 180px;
        }

    .started-swiper-box .slide-info {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        box-sizing: border-box;
        padding-bottom: 10px;
        background-repeat: no-repeat;
        background-position: top right;
        background-size: 100%;
        z-index: 1;
        position: relative;
    }

    .started-swiper-box .view-logo {
        margin: auto;
    }

        .started-swiper-box .view-logo + .slide-content {
            margin-top: 0;
        }

    .started-swiper-box .slide-content {
        z-index: 1;
        position: relative;
        padding: 0 15px;
        max-width: 320px;
        margin: auto auto 0;
    }

    .started-swiper-box .bg-icon {
        position: absolute;
        right: 0;
        top: 50%;
        opacity: 0.1;
        transform: translateY(-50%);
    }

.page-onboading .swiper-btn {
    margin-top: 0;
    margin-bottom: 70px;
    justify-content: center;
}
*/
/* .page-onboading + .footer{
    background-color: var(--bg-white);
} */
.main-content {
    display: flex;
    height: 100%;
    align-items: center;
}

    .main-content .right-content {
        width: 30px;
        height: 100%;
        display: flex;
        align-items: center;
    }

    .main-content .mid-content {
        flex: 1;
    }

/*==== 7. PreLoader ====*/
/* Editable */
#preloader {
    background-color: #fff;
    padding: 0;
    margin: 0;
    height: 100%;
    position: fixed;
    z-index: 9999999;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    #preloader .spinner {
        width: 3rem;
        height: 3rem;
        border: 5px solid #e1ded9;
        background: transparent;
        border-top-color: #8e8e8f;
        border-radius: 50%;
        animation: loading 1s linear infinite;
    }

@keyframes loading {
    0% {
        transform: rotate(0deg);
    }

    0% {
        transform: rotate(-360deg);
    }
}
/********************/
.copyright-logo .logo-center {
    width: 50px;
    display: inline-block;
}

.num p {
    color: var(--title);
}

    .num p span {
        display: inline-block
    }

@media (max-width: 575px) {
    .copyright-logo svg {
        width: 150px;
    }
}
/******slider********/

.centerx, .header__basic--black .header__img, .section__crazy__color .wrapper__color .wrapper__panel .color .color__el h3, .section__handsketch__color .wrapper__audrio .color .color__el h3, .section__handsketch__color .wrapper__audrio img, .section__woy__color .wrapper__audrio .color .color__el h3, .section__woy__color .wrapper__audrio img {
    position: absolute;
    right: 50%;
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
}

.centery, .header__basic--studio .header__img, .section__404 .title__block, .section__jobs .jobs__ul .jobs__ul__li .jobs__ul__li__a i, .section__site .site__template .site__template__bar .template__button {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.centerxy, .flux__el--twitter p, .job__title .close--profil i, .job__title .title__block, .loading .loading__elements #display, .loading .loading__elements #progress, .navigation__project .navigation__project__block .content__text, .navigation__project .navigation__project__block:nth-child(2) .link, .other__team .profil__team .profil__team__li a img, .section__404 .overlay__404, .section__about .background__about .play i, .section__customer .customers .customers__li img, .section__projets .awards .awards__li a img, .section__projets .swiper-projets .swiper-slide .swiper-slide-block-content .text__content, .section__team .swiper-slide .slide__img .overlay, nav .center__navigation {
    position: absolute;
    top: 50%;
    right: 50%;
    -webkit-transform: translateY(-50%) translateX(50%);
    -ms-transform: translateY(-50%) translateX(50%);
    transform: translateY(-50%) translateX(50%);
}

[type=reset], [type=submit], button, html [type=button] {
    -webkit-appearance: button;
}

    [type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
        border-style: none;
        padding: 0;
    }

    [type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring, button:-moz-focusring {
        outline: 1px dotted ButtonText;
    }

.main__title {
    color: #f2f3f3;
    text-transform: uppercase;
    font-family: 'Almarai', sans-serif;
    font-weight: 900;
    font-size: 2.6em;
    letter-spacing: 1px;
    margin: 0;
}

    .main__title span {
        color: #ff2d71;
    }

.main__subtitle {
    margin: 2px 0;
    font-weight: 700;
    font-family: 'Almarai', sans-serif;
    font-size: .9em;
    color: #f2f3f3;
}

@media (min-width:768px) {
    .main__subtitle {
        font-size: 1.1em;
    }
}

.main__subtitle span {
    color: #00a8af;
    font-style: italic;
}


.link {
    display: inline-block;
    width: auto;
    position: relative;
    text-decoration: none;
    color: #21272b;
    font-family: 'Almarai', sans-serif;
    font-size: .7em;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #00a8af !important;
    transition: all .3s ease-in-out;
}

    .link:hover {
        letter-spacing: 2px;
    }

.link__apply {
    display: block;
    width: 150px;
    padding: 16px 12px;
    background-color: #00a8af;
    border: 2px solid #00a8af;
    border-radius: 1px;
    color: #f2f3f3;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
    font-family: 'Almarai', sans-serif;
    font-size: .813em;
    letter-spacing: 1px;
    transition: all .3s ease-in-out;
}

    .link__apply:hover {
        background-color: transparent;
        letter-spacing: 3px;
        border-radius: 1px;
    }

    .link__apply:active {
        background-color: transparent;
        letter-spacing: 3px;
        border-radius: 1px;
    }

    .link__apply:focus {
        background-color: transparent;
        letter-spacing: 3px;
        border-radius: 1px;
    }

.swiper-container {
    width: 100%;
    height: auto;
    margin-right: auto;
    margin-left: auto;
    position: relative;
    cursor: -webkit-grab;
    cursor: grab;
}

@media (min-width:1200px) {
    .swiper-container {
        height: 470px;
    }
}

.swiper-button-next, .swiper-button-prev, .swiper-container-rtl .swiper-button-next, .swiper-container-rtl .swiper-button-prev {
    width: 50px;
    height: 50px;
    background-image: none;
    background-color: #00caca;
    z-index: 2;
    cursor: pointer;
}

    .swiper-button-next i, .swiper-button-prev i {
        position: relative;
        right: 50%;
        top: 50%;
        font-size: 20px;
        color: #ffffff;
        -webkit-transform: translate(50%,-50%);
        -ms-transform: translate(50%,-50%);
        transform: translate(50%,-50%);
        transition: all .3s ease-in-out;
    }

@keyframes arrowRight {
    0% {
        -webkit-transform: translate(0,-50%);
        transform: translate(0,-50%);
    }

    50% {
        -webkit-transform: translate(10px,-50%);
        transform: translate(10px,-50%);
    }

    100% {
        -webkit-transform: translate(0,-50%);
        transform: translate(0,-50%);
    }
}

.swiper-button-next:hover i, .swiper-button-prev:hover i {
    -webkit-animation: arrowRight 1s infinite;
    animation: arrowRight 1s infinite;
}

.swiper-button-next {
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 0;
}

@media (min-width:1200px) {
    .swiper-button-next {
        left: 300px;
        background-color: #f2f3f3;
    }
}

.swiper-container-rtl .swiper-button-prev,
.swiper-button-prev {
    position: absolute;
    top: auto;
    bottom: 0;
    right: 0;
}

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    left: 0;
    top: unset;
    bottom: 0;
    border-radius: 8px;
}

@media (min-width:1200px) {
    .swiper-container-rtl .swiper-button-prev, .swiper-button-prev {
        bottom: 0px;
        background-color: #00caca;
    }
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    width: 100%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.swiper-slide__block {
    width: 100%;
    margin: 0 auto;
    height: 100%;
    text-align: right;
}

    .swiper-slide__block .swiper-slide__block__img {
        width: 100%;
        height: auto;
        overflow: hidden;
        /* padding-bottom: 20px; */
    }

        .swiper-slide__block .swiper-slide__block__img a {
            display: block;
            width: 100%;
            height: 100%;
        }

@media (min-width:1200px) {
    .swiper-slide__block .swiper-slide__block__img {
        width: 65%;
        max-height: 476px;
        height: 476px;
        max-width: 735px;
        overflow: hidden;
        position: relative;
    }
}

.swiper-slide__block .swiper-slide__block__img img {
    width: 100%;
    height: auto;
    transition: all .3s ease-in-out;
}

@media (min-width:1200px) {
    .swiper-slide__block .swiper-slide__block__img img {
        position: absolute;
        top: 0;
        right: 0;
        width: auto;
        height: 100%;
        padding: 40px;
    }
}

.swiper-slide__block .swiper-slide__block__img:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.swiper-slide__block .swiper-slide__block__text {
    width: 85%;
    height: auto;
    margin: 0 auto;
    margin-top: 50px;
    position: relative;
    z-index: -1
}

@media (min-width:768px) {
    .swiper-slide__block .swiper-slide__block__text {
        margin-top: 100px;
    }
}

@media (min-width:1200px) {
    .swiper-slide__block .swiper-slide__block__text {
        width: 40%;
        height: 100%;
        max-height: 476px;
        max-width: 400px;
        position: absolute;
        background-color: transparent;
        top: 0;
        left: 0;
        margin-top: 0;
        padding: 0;
    }

        .swiper-slide__block .swiper-slide__block__text:before {
            content: "";
            display: block;
            width: 200px;
            max-width: 408px;
            height: 100%;
            background-color: #f7f7f7;
            position: absolute;
            right: -100px;
        }
}

.swiper-slide__block .main__title {
    color: #f2f3f3;
    text-transform: uppercase;
    font-family: 'Almarai', sans-serif;
    font-weight: 900;
    font-size: 2em;
    letter-spacing: -1px;
    margin: 0;
    z-index: 1;
    position: relative;
}

    .swiper-slide__block .main__title span {
        color: #ff2d71;
    }

@media (min-width:768px) {
    .swiper-slide__block .main__title {
        font-size: 3em;
    }
}

@media (min-width:1200px) {
    .swiper-slide__block .main__title {
        margin-top: 100px;
    }
}

.swiper-slide__block .main__subtitle {
    margin: 2px 0;
    font-weight: 700;
    font-family: 'Almarai', sans-serif;
    font-size: .9em;
    color: #f2f3f3;
}

@media (min-width:768px) {
    .swiper-slide__block .main__subtitle {
        font-size: .9em;
    }
}

.swiper-slide__block .main__subtitle span {
    font-family: "Patua One",cursive;
    font-style: normal;
    color: #00a8af;
    letter-spacing: 1px;
}

.swiper-slide__block .main__subtitle, .swiper-slide__block .paragraphe {
    color: #21272b;
    z-index: 2;
    position: relative;
}

.swiper-slide__block .main__title {
    color: #002e53;
}

.swiper-slide__block .paragraphe {
    max-width: 413px;
    text-shadow: -7px 7px 16px #d2d2d2;
    margin-top: 24px;
    padding-left: 35px;
}

.swiper-slide__block .number {
    font-family: 'Almarai', sans-serif;
    font-size: 12em;
    font-weight: 900;
    width: 100%;
    display: block;
    color: rgba(16,47,65,.04);
    position: relative;
    bottom: 100px;
    z-index: 1;
    text-align: left;
    margin: 0;
    line-height: 120px;
}

@media (min-width:1200px) {
    .swiper-slide__block .number {
        margin-top: 100px;
        font-size: 15em;
    }
}


.loading {
    width: 100%;
    height: 100vh;
    background-color: #f8f8f8;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9999;
    -webkit-transform-origin: right top;
    -ms-transform-origin: right top;
    transform-origin: right top;
    overflow: hidden;
}

    .loading .loading__elements {
        width: 100%;
        height: 50%;
    }

        .loading .loading__elements #progress {
            display: block;
            width: 300px;
            height: 30px;
            z-index: 1;
            font-family: 'Almarai', sans-serif;
            background-color: #000;
            transition: all .3s ease-in-out;
        }

            .loading .loading__elements #progress::-webkit-progress-bar {
                display: block;
                width: 100%;
                transition: all .3s;
            }

            .loading .loading__elements #progress::-webkit-progress-value {
                background-color: rgba(131,201,207,.8);
                background: -webkit-linear-gradient(#00a8af,#83c9cf);
            }

        .loading .loading__elements progress[value]::-webkit-progress-bar {
            background-color: #f8f8f8;
            border-radius: 2px;
            box-shadow: none;
        }

        .loading .loading__elements #display {
            display: block;
            font-size: 5em;
            z-index: 2;
            font-family: 'Almarai', sans-serif;
            font-weight: 900;
            text-align: center;
            margin-bottom: 50px;
            color: #21272b;
        }


.section__slider {
    width: 100%;
    height: auto;
    background-color: #ffffff;
}

    .section__slider .container__center {
        width: 100%;
        position: relative;
        margin-right: auto;
        margin-left: auto;
    }

.swiper-slide__block .number {
    line-height: 24px;
}

.form-group .select-box {
    position: relative;
    /* padding-left: 130px; */
}

.select-box.input-donat-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .form-group .select-box.input-donat-box .input-donat {
        float: unset;
        color: #666666;
        padding-top: 0;
        padding-bottom: 0;
        height: 50px;
        -webkit-tap-highlight-color: transparent;
        background-color: #fff;
        border-radius: 12px;
        box-shadow: 0px 0px 17px rgb(0 0 0 / 4%);
        border: 0;
        box-sizing: border-box;
        clear: both;
        cursor: pointer;
        display: block;
        font-size: 14px;
        font-weight: normal;
        line-height: 40px;
        outline: none;
        padding-right: 18px;
        position: relative;
        text-align: right !important;
        -webkit-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        white-space: nowrap;
        width: 100%;
        padding-left: 110px;
    }

    /* .form-group .select-box .them-btn.btn-light {
        position: absolute;
        left: 0;
        top: 0px;
        padding: 15px 20px;
    } */

.them-btn.btn-light {
    background: #002e53;
    border-color: #002e53;
    color: #ffffff;
    border-radius: 12px;
    transition: .4s;
    min-width: 95px;
    text-align: center;
    font-size: 16px
}

    .them-btn.btn-light:hover {
        background: #00caca;
        border-color: #00caca;
        min-width: 105px;
    }

.footer-btn-box {
    padding: 0 20px 20px;
    text-align: center;
}

.btn-light.them-btn-3 {
    background: #1d1d1d;
    border-color: #1d1d1d;
    color: #f7f7f7;
    border-radius: 12px;
    text-align: center;
    font-size: 16px;
    transition: .4s;
    display: inline-block
}

.footer-btn-box .btn-light.them-btn-3 {
    margin-left: 5px;
}

.btn-light.them-btn-3:hover {
    background: #00caca;
    border-color: #00caca;
    padding-left: 28px;
    padding-right: 28px;
}

.btn-light.them-btn-2 {
    background: #00caca;
    border-color: #00caca;
    color: #f7f7f7;
    border-radius: 12px;
    text-align: center;
    font-size: 16px;
    transition: .4s;
    display: inline-block
}

    .btn-light.them-btn-2:hover {
        background: #002e53;
        border-color: #002e53;
        padding-left: 28px;
        padding-right: 28px;
    }


.floating-btn {
    padding: 20px 30px;
    max-width: 140px;
}

.donat-block {
    position: relative;
    padding: 20px 15px;
    background-color: #f7f7f7;
}

.box-donat-phone {
    text-align: left;
    direction: ltr;
}

    .box-donat-phone .box-list-text {
        position: fixed;
        top: 110px;
        z-index: 2;
        background-color: #002e53;
        border-radius: 0 10px 10px 0;
        background: linear-gradient(to bottom,#002e53 20%,#00caca 100%);
        text-align: center;
    }

        .box-donat-phone .box-list-text .item-text {
            border-bottom: 1px solid rgb(255 255 255 / 30%);
        }

            .box-donat-phone .box-list-text .item-text img {
                width: 22px;
                padding: 6px 2px;
                display: inline-block;
                margin: 0px;
            }

            .box-donat-phone .box-list-text .item-text:last-of-type {
                border-bottom: 0;
            }

            .box-donat-phone .box-list-text .item-text a {
                cursor: pointer;
                color: #ffffff;
                font-size: 17px;
                font-weight: 600;
                display: block;
                padding: 13px 4px;
                direction: rtl;
            }

                .box-donat-phone .box-list-text .item-text a span {
                    font-size: 10px;
                    vertical-align: middle;
                }

            .box-donat-phone .box-list-text .item-text img.sms {
                width: 20px;
                padding: 0;
            }

.genaral-donat-modal .title-tab {
    font-size: 24px;
    margin-bottom: 6px;
    text-align: center;
    color: #002e53;
}

.title-tab .don-val {
    padding: 0 10px;
}

.genaral-donat-modal .title-tab .social-media {
    color: #002e53;
    font-family: 'Almarai', sans-serif;
}

    .genaral-donat-modal .title-tab span {
        display: block;
        margin-top: 10px;
        color: #00caca;
        font-family: 'Almarai', sans-serif;
    }
.en-font {
    font-family: 'Inter', sans-serif;
}
.genaral-donat-modal .box-list {
    list-style: none;
    padding-right: 0;
    margin: 0;
}

    .genaral-donat-modal .box-list .list-item {
        background: #fff;
        padding: 15px;
        text-align: center;
        margin-bottom: 25px;
        border-radius: 18px;
        padding-bottom: 0;
        font-size: 18px;
    }

        .genaral-donat-modal .box-list .list-item .btn-message {
            padding: 8px;
            display: block;
            background: #43ac50;
            color: #fff;
            border-radius: 0 0 20px 20px;
            margin: 0 -18px;
            margin-top: 14px;
            transition: .4s;
            font-size: 16px;
        }

            .genaral-donat-modal .box-list .list-item .btn-message:hover {
                background: #333333;
            }

        .genaral-donat-modal .box-list .list-item img {
            display: inline-block
        }

        .genaral-donat-modal .box-list .list-item .title-list {
            color: #333333 !important;
            margin-bottom: 2px;
            font-size: 16px;
        }

        .genaral-donat-modal .box-list .list-item .bottom-msg {
            margin: 3px 0;
        }

            .genaral-donat-modal .box-list .list-item .bottom-msg span {
                font-size: 22px;
                font-weight: 500;
                color: #8b7053;
            }

        .genaral-donat-modal .box-list .list-item .title-list span {
            color: #8b7053;
            display: inline-block;
            font-size: 20px;
            vertical-align: middle;
        }

.genaral-donat-modal .bank-name-en,
.genaral-donat-modal .bank-name {
    font-size: 18px;
    margin-bottom: 4px;
    color: #5f5f5f !important;
}

.genaral-donat-modal .header-box {
    margin-bottom: 25px;
    text-align: center;
}

.genaral-donat-modal .bank-name-en {
    font-family: 'Inter', sans-serif;
    margin-bottom: 0;
}

.genaral-donat-modal .account-box .num-account {
    display: inline-block;
    margin-left: 0;
    color: #333;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
    vertical-align: middle;
}

.genaral-donat-modal .account-box .num-copy {
    font-size: 20px;
    color: #002e53 !important;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    vertical-align: middle;
    margin-bottom: 12px;
    padding: 8px 18px;
    background-color: #e8e8e8;
    border-radius: 15px;
}

    .genaral-donat-modal .account-box .num-copy .copyIcon {
        background-color: #00caca;
        border-color: #00caca;
        width: 44px;
        height: 44px;
        text-align: center;
        border-radius: 10px;
        vertical-align: middle;
        padding: 4px;
        transition: .4s;
    }

        .genaral-donat-modal .account-box .num-copy .copyIcon:hover {
            background-color: #002e53;
            border-color: #002e53
        }

.num-copy .copyIcon svg {
    width: 25px;
    vertical-align: middle;
    fill: hsl(204deg 3% 67%);
    display: inline-block;
    cursor: pointer;
}

    .num-copy .copyIcon svg g {
        fill: hsl(31deg 25% 44%);
    }

.input-minus .minus {
    width: 60px;
    position: absolute;
    background-color: #1d1d1d;
    height: 100%;
    color: #fff;
    top: 0;
    border-radius: 10px;
    padding: 0;
    border: 0;
    display: inline-flex;
    line-height: 0;
    justify-content: center;
    font-size: 40px;
    padding-bottom: 6px;
    align-items: center;
    vertical-align: middle;
    text-align: center;
    left: 0;
    cursor: pointer;
    transition: .4s
}

.input-minus .plus {
    width: 60px;
    position: absolute;
    background-color: #1d1d1d;
    height: 100%;
    color: #fff;
    right: 0;
    top: 0;
    border-radius: 10px;
    padding: 0;
    border: 0;
    display: inline-flex;
    line-height: 0;
    justify-content: center;
    font-size: 40px;
    padding-bottom: 6px;
    align-items: center;
    vertical-align: middle;
    text-align: center;
    cursor: pointer;
    transition: .4s
}

    .input-minus .plus:hover,
    .input-minus .minus:hover {
        background-color: #00caca;
    }

.input-minus input {
    height: 50px;
    width: 100%;
    text-align: center;
    font-size: 26px;
    border: 0;
    box-shadow: 0px 0px 13px rgb(0 0 0 / 5%);
    border-radius: 15px;
    display: inline-block;
    vertical-align: middle;
    color: #002e53;
}

.form-group .select-box .number {
    position: relative;
}

.label-title {
    display: block;
    margin-bottom: 12px;
    text-align: center;
    font-size: 18px;
    color: #002e53;
    font-weight: 700;
}

.box-img-logo {
    display: flex;
    justify-content: start;
    margin-left: 5px;
}

    .box-img-logo p span {
        display: block;
        margin-top: 13px;
        color: #002e53
    }

    .box-img-logo:last-of-type {
        margin-left: 0px;
    }

    .box-img-logo p {
        margin-left: 6px;
    }

    .box-img-logo .logo-center {
        width: 35px;
        margin-top: 3px;
    }

        .box-img-logo .logo-center p {
            color: #313131;
            font-size: 14px;
        }

@media (min-width:992px) {
    .section__slider .container__center {
        max-width: 1200px;
        width: 85%;
    }
}

@media (min-width:992px) {
    .section__slider .container__center {
        max-width: 1070px;
        width: 100%;
    }
}

.header-logo {
    display: flex;
    justify-content: space-between;
    direction: rtl;
    align-items: center;
    padding: 10px 30px;
    background-color: #ffffff;
    /* border-bottom: 3px solid #002e53; */
}

    .header-logo .img-logo, .header-logo .logo-img {
        width: 250px;
    }

.genaral-donat-modal {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background-color: rgb(81 81 81 / 54%);
    left: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: end;
    transition: .4s;
    bottom: -1000px;
    backdrop-filter: blur(3px);
}

    .genaral-donat-modal.show {
        width: 100%;
        height: 100%;
        bottom: 0px
    }

    .genaral-donat-modal .body-donat {
        padding: 40px;
        background-color: #fff;
        border-radius: 18px;
        position: relative;
        width: auto;
        min-width: 500px;
        margin: 30px;
    }

        .genaral-donat-modal .body-donat .close-menu {
            position: absolute;
            left: 8px;
            top: 12px;
            width: 35px;
            display: flex;
            height: 35px;
            justify-content: center;
            align-items: center;
            font-size: 24px;
            color: #fff;
            background-color: #00caca;
            border-radius: 10px;
            transition: .4s;
        }

            .genaral-donat-modal .body-donat .close-menu:hover {
                background-color: #ae3a3a;
            }

.tap-social {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
}

    .tap-social a {
        width: 40px;
        height: 40px;
        background: #002e53;
        background-image: linear-gradient(to bottom,#002e53 20%,#00caca 100%);
        display: inline-flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        margin-left: 8px;
        font-size: 24px;
        color: #ffffff;
        transition: .4s;
    }

        .tap-social a:hover {
            background: #00caca;
            background-image: linear-gradient(to top,#002e53 20%,#00caca 100%);
            transform: translateY(-5px);
        }

        .tap-social a:last-of-type {
            margin-left: 0;
        }
.header-popup {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    margin-top: 15px;
}
.genaral-donat-modal .header-popup .title-tab {
    margin-bottom: 0;
    margin-inline-end: 20px;
}
.genaral-donat-modal .header-popup .par-num {
    display: flex;
    align-items: end;
    margin-inline-start: 20px;
}
.genaral-donat-modal .header-popup .par-num .val {
    font-size: 40px;
    margin: 0 2px;
    color: #454545;
    font-weight: 600;
    line-height: initial;
}
.genaral-donat-modal .header-popup .par-num .currency {
    font-size: 12px;
    color: #454545;
    font-weight: 600;
}
.donat-now-modal .form-check {
    display: flex;
    align-items: center;
}
    .donat-now-modal .form-check .form-check-label {
        font-weight: 800;
        color: #000;
        margin-right: 10px;
        cursor: pointer;
        font-size: 15px;
    }
        .donat-now-modal .form-check .form-check-label.samsung {
            color: #fff;
            background-color: #000;
            padding: 8px 18px;
            border-radius: 8px;
        }
        .donat-now-modal .form-check img {
            width: 46px;
            vertical-align: middle;
            margin-left: 8px;
        }
.donat-now-modal  .form-group {
    margin-bottom: 20px;
}
 
.donat-now-modal .form-check.card-bank img {
    width: 34px
}
.donat-now-modal .col-5{
    padding-right:0;

}
.img-popup{
    display:block;
    margin:auto
} 
@media (max-width:1199px) {
    .swiper-slide__block .swiper-slide__block__img img {
        padding: 35px 35px 0; 
    }

    .container {
        padding: 0;
    }

    .swiper-slide__block .swiper-slide__block__text {
        width: 94%;
        margin-top: 12px;
        text-align: center;
    }

    .swiper-slide__block .paragraphe {
        max-width: 100%;
        text-shadow: none;
        margin-top: 10px;
        text-align: center;
        padding: 0 56px;
        /* padding-bottom: 12px; */
        line-height: 23px;
        margin-bottom: 0px;
    }

    .swiper-slide__block .main__title {
        padding: 0 56px;
    }

    .swiper-slide__block .swiper-slide__block__img img {
        width: 500px;
        display: block;
        margin: auto;
    }



    .swiper-container {
        /* padding-bottom: 6px; */
    }

    .swiper-button-prev, .swiper-container-rtl .swiper-button-next {
        left: unset;
        right: 68px;
        bottom: unset;
        top: 4px;
    }

    .swiper-container-rtl .swiper-button-prev, .swiper-button-prev {
        left: unset;
        bottom: unset;
        top: 26px;
        right: 15px;
    }
}

@media (max-width:575px) {
    .swiper-slide__block .paragraphe {
        font-size: 14px;
        margin-bottom: 20px;
        height: 120px;
    }

    .swiper-slide__block .main__title {
        font-size: 20px;
        margin-top: 0;
    }

    .swiper-slide__block .swiper-slide__block__img img {
        width: 300px;
    }

    .menubar-area {
        font-size: 11px;
    }

    .menubar-area {
        padding: 10px 8px;
    }

    .header-logo {
        padding: 6px 12px;
    }

        .header-logo .img-logo, .header-logo .logo-img {
            width: 138px;
        }

    .section__slider {
        padding-bottom: 0px;
    }


    .copyright-logo .logo-center {
        width: 40px;
    }

    .swiper-button-next, .swiper-button-prev, .swiper-container-rtl .swiper-button-next, .swiper-container-rtl .swiper-button-prev {
        width: 46px;
        height: 40px;
    }

    .swiper-slide__block .number {
        line-height: 14px;
    }

    .genaral-donat-modal .body-donat {
        width: 98%;
    }

    .genaral-donat-modal .title-tab {
        font-size: 18px;
    }

    .box-donat-phone .box-list-text {
        top: 80px;
    }

    .genaral-donat-modal .body-donat {
        min-width: 300px;
    }

    .num-copy .copyIcon svg {
        width: 17px;
    }

    .genaral-donat-modal .account-box .num-copy {
        flex-wrap: wrap;
        padding: 7px 15px;
    }

    .genaral-donat-modal .body-donat {
        padding: 40px 15px 10px;
        margin: 14px;
        margin-bottom: 25px;
    }

    .genaral-donat-modal .account-box .num-copy {
        font-size: 16px;
    }

    .genaral-donat-modal .header-box {
        margin-bottom: 20px;
    }

    .genaral-donat-modal .account-box .num-account {
        font-size: 16px;
        margin-bottom: 7px;
    }

    .genaral-donat-modal .bank-name-en, .genaral-donat-modal .bank-name {
        font-size: 14px;
    }

    .genaral-donat-modal .account-box .num-copy .copyIcon {
        width: 35px;
        height: 35px;
    }

    .genaral-donat-modal .body-donat .close-menu {
        width: 32px;
        height: 32px;
    }

    .btn-light.them-btn-2, .footer-btn-box .btn-light.them-btn-3 {
        font-size: 15px;
        padding: 10px 16px;
    }

    .genaral-donat-modal.social-donat-modal .body-donat {
        padding-bottom: 30px;
    }

    .menubar-area {
        position: relative;
        box-shadow: none;
    }

    .content-inner {
        padding-bottom: 0px;
    }

    .form-group .select-box .number {
        width: calc(100% - 125px);
    }
}

@media (max-width:470px) {

    .form-group .select-box {
        padding: 0;
    }

    .input-minus .plus,
    .input-minus .minus {
        width: 38px;
        font-size: 26px;
    }

    .input-minus input {
        height: 39px;
        text-align: center;
        font-size: 20px;
    }

    .form-group .select-box .them-btn.btn-light {
        text-align: center;
        font-size: 15px;
        padding: 10px 16px;
    }

    .box-img-logo p {
        font-size: 11px;
    } 
    .donat-now-modal .form-check img {
        width: 34px;
        margin-left: 3px;
    }

    .donat-now-modal .form-check .form-check-label.samsung {
        padding: 6px 14px;
        font-size: 12px;
    }
    .donat-now-modal .form-group {
        margin-bottom: 16px;
    }
    .genaral-donat-modal .header-popup .par-num {
        font-size: 20px;
    }
    .donat-now-modal .form-check.card-bank img {
        width: 28px
    }
    .donat-now-modal .form-check .form-check-label {
        margin-right: 5px;
        font-size: 14px;
        border-radius: 10px;
    }
    }




.pagination-dots.style-1 {
    bottom: 0 !important;
    opacity: 1;
    padding: 0;
    position: absolute;
    z-index: 1;
    bottom: 20px !important;
    left: 0;
    border-radius: 0 !important;
    background-color: transparent;
    text-align: center;
}

    .pagination-dots.style-1 .swiper-pagination-bullet {
        margin: 0 5px;
        width: 18px;
        border-radius: 5px;
        height: 9px;
        background: #d2d2d2;
        position: relative;
        z-index: 3;
        opacity: 1;
        background: #d2d2d2;
        opacity: 1;
        -webkit-transition: all 0.5s;
        -ms-transition: all 0.5s;
        transition: all 0.5s;
        -webkit-transition: all 0.5s;
        -ms-transition: all 0.5s;
        transition: all 0.5s;
    }

    .pagination-dots.style-1 .swiper-pagination-bullet-active {
        background: #00caca;
        width: 27px;
    }

    label.form-check-label.debit2 {
        padding: 0 8px;
    }

    label.form-check-label.en-font.debit {
        padding: 8px;
    }
    .box-donat-phone .box-list-text .item-text a {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        padding: 5px;
        line-height: initial;
    }
    .box-donat-phone .box-list-text .item-text a span {
        align-self: flex-end;
    }

    .lang-btn {
        position: fixed;
        top: 85px;
        right: 5px;
        z-index: 9;
        min-width: 38px!important;
        width: 38px!important;
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px!important;
        font-weight: 600;
        padding: 0!important;
        cursor: pointer;
    }

    #loading {
        position: absolute;
        z-index: 99999999;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    #loadingOverlay {
        position: absolute;
        z-index: 9999999;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
        background: #80808066;
    }

    .share-btn {
        position: fixed;
        top: 130px;
        right: 5px;
        z-index: 99;
        min-width: 38px!important;
        width: 38px!important;
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px!important;
        font-weight: 600;
        padding: 0!important;
    }

    .share-list {
        position: fixed;
        top: 172px;
        right: 8px;
        background: #00babe;
        border-radius: 50px;
        z-index: 99;
        padding: 5px;
    }

    .share-list-overlay {
        background: transparent;
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9;
    }

    .share-list div:nth-child(2) {
        border-top: 1px solid #fff;
        border-bottom: 1px solid #fff;
        padding: 3px 0;
    }

    .share-list div {
        padding: 3px 0;
        cursor: pointer;
    }

    .share-list svg {
        width: 24px;
        height: 24px;
    }

    .share-list path {
        fill: #fff;
    }

    .share-icon svg {
        width: 24px;
        height: 24px;
    }

    .share-icon path {
        fill: #fff;
    }