﻿@charset "UTF-8";
*,
*::before,
*::after {
    box-sizing: border-box;
}
@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: smooth;
    }
}
*:-webkit-full-screen {
    width: 100%;
    height: 100%;
    overflow: scroll;
    background-color: var(--White-Ghost);
}
*:-moz-full-screen {
    width: 100%;
    height: 100%;
    overflow: scroll;
    background-color: var(--White-Ghost);
}
*:-ms-fullscreen {
    width: 100%;
    height: 100%;
    overflow: scroll;
    background-color: var(--White-Ghost);
}
*:fullscreen {
    width: 100%;
    height: 100%;
    overflow: scroll;
    background-color: var(--White-Ghost);
}
body::-webkit-scrollbar,
*::-webkit-scrollbar {
    width: 0.4em;
    border-radius: 0.4em;
}
body::-webkit-scrollbar-track,
*::-webkit-scrollbar-track {
    box-shadow: inset 0 0 4px rgba(var(--Dark_RGBA), 0.1);
}
body::-webkit-scrollbar-thumb,
*::-webkit-scrollbar-thumb {
    background-color: var(--Dark-Ghost);
    opacity: 0.5;
}
*::-webkit-input-placeholder,
*::-moz-placeholder {
    color: var(--Default-Strong);
    opacity: 1;
}
*::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button;
}
*::-webkit-search-decoration {
    -webkit-appearance: none;
}
*::-webkit-color-swatch-wrapper {
    padding: 0;
}
*::-moz-focus-inner {
    padding: 0;
    border-style: none;
}
*::file-selector-button {
    font: inherit;
}
div[data-validation^="success"],
input[data-validation^="success"],
select[data-validation^="success"] {
    border: 1px solid var(--Success-Ghost);
    -webkit-box-shadow: 0 0.125rem 0.25rem 0 rgba(var(--Success-Soft_RGBA), 0.1),0 0.225rem 0.25rem 0 rgba(var(--Success-Soft_RGBA), 0.53) !important;
    box-shadow: 0 0.125rem 0.25rem 0 rgba(var(--Success-Soft_RGBA), 0.1),0 0.225rem 0.25rem 0 rgba(var(--Success-Soft_RGBA), 0.3) !important;
}
div[data-validation^="failed"],
input[data-validation^="failed"],
select[data-validation^="failed"] {
    border: 1px solid var(--Failed-Ghost);
    -webkit-box-shadow: 0 0.125rem 0.25rem 0 rgba(var(--Failed-Soft_RGBA), 0.1),0 0.225rem 0.25rem 0 rgba(var(--Failed-Soft_RGBA), 0.53) !important;
    box-shadow: 0 0.125rem 0.25rem 0 rgba(var(--Failed-Soft_RGBA), 0.1),0 0.225rem 0.25rem 0 rgba(var(--Failed-Soft_RGBA), 0.3) !important;
}
input[type="checkbox"][data-validation^="success"] ~ label > span {
    color: var(--Success-Dark) !important;
}
input[type="checkbox"][data-validation^="failed"] ~ label > span {
    color: var(--Failed-Dark) !important;
}
[type=search] {
    outline-offset: -2px;
    -webkit-appearance: textfield;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}
html {
    font-family: sans-serif;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(var(--Dark_RGBA), 0);
}
html,
body {
    margin: 0;
    padding: 0px;
    background-color: var(--White-Ghost);
    color: var(--Dark);
    line-height: 1.5;
    font-family: "cdfont-verdana", Helvetica, "sans-serif";
    font-size: 0.9rem;
    font-weight: 400;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(var(--Dark_RGBA), 0);
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    word-wrap: break-word;
    overflow-x: hidden; /* ERROR ON STICKY*/
}
body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
    display: block;
}
.isolate {
    isolation: isolate;
}
hr {
    margin: 1rem 0;
    color: inherit;
    background-color: var(--White-Strong);
    border: 0;
    opacity: 0.25;
}
hr:not([size]) {
    height: 1px;
}
fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0;
}
legend {
    float: left;
    width: 100%;
    padding: 0;
    margin-bottom: 0.5rem;
    font-size: calc(1.275rem + 0.3vw);
    line-height: inherit;
}
legend + * {
    clear: left;
}
output {
    display: inline-block;
}
iframe {
    border: 0;
}
summary {
    display: list-item;
    cursor: pointer;
}
progress {
    vertical-align: baseline;
}
[hidden] {
    display: none !important;
}
.lead {
    font-size: 1.25rem;
    font-weight: 300;
}
h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 700;
    line-height: 1.2;
}
abbr[title],
abbr[data-bs-original-title] {
    cursor: help;
    text-decoration: underline dotted;
    -webkit-text-decoration: underline dotted;
}
ol,
ul {
    padding-left: 2rem;
}
ol ol,
ul ul,
ol ul,
ul ol {
    margin-bottom: 0;
}
ol,
ul,
dl {
    margin-top: 0;
    margin-bottom: 1rem;
}
dt {
    font-weight: 700;
}
dd {
    margin-bottom: 0.5rem;
    margin-left: 0;
}
img,
svg {
    vertical-align: middle;
}
svg {
    overflow: hidden;
    margin-bottom: -8px;
    vertical-align: baseline;
}
.svg-container {
    width: 10em;
}
table {
    caption-side: bottom;
    border-collapse: collapse;
}
caption {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    color: var(--Dark-Light);
    text-align: left;
}
th {
    text-align: inherit;
    text-align: match-parent;
}
thead,
tbody,
tfoot,
tr,
td,
th {
    border-color: inherit;
    border-style: solid;
    border-width: 0;
}
input,
button,
select,
optgroup,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}
input,
input:hover,
input:focus,
input:active,
input:focus,
textarea:focus,
select:focus {
    outline: none;
}
input:disabled {
    background-color: var(--Default-Light);
    border-color: var(--Default-Strong);
}
i {
    font-size: 1em;
}
a,
button {
    outline: 0 !important;
    text-decoration: none;
    border: inherit;
    background-color: transparent;
    font-family: inherit;
    padding: 0;
    color: inherit;
    cursor: pointer;
}
a {
    -webkit-transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, -webkit-box-shadow 0.15s ease;
    transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, -webkit-box-shadow 0.15s ease;
    transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
    transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, -webkit-box-shadow 0.15s ease;
}
a:hover {
    -webkit-transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, -webkit-box-shadow 0.15s ease;
    transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, -webkit-box-shadow 0.15s ease;
    transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
    transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, -webkit-box-shadow 0.15s ease;
}
a:hover,
a:active,
a:focus {
    text-decoration: none !important;
}
:focus,
a:focus,
button:focus, button:focus:not(:focus-visible) {
    outline: 0;
}
a:disabled,
a.disabled,
button:disabled,
button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
    text-decoration: none;
}
a:hover {
    color: Var(--Dark-Ghost);
}
a:not([href]):not([class]), a:not([href]):not([class]):hover {
    color: inherit;
    text-decoration: none;
}
[role=button],
button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
    cursor: pointer;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}
button {
    border-radius: 0;
}
button,
select {
    text-transform: none;
}
select {
    word-wrap: normal;
}
select:disabled {
    opacity: 1;
}
input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
    -webkit-appearance: none;
    -moz-appearance: none;
}
label {
    display: inline-block;
}
address {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: inherit;
}
p {
    margin-top: 0;
    margin-bottom: 1rem;
}
blockquote {
    margin: 0 0 1rem;
}
b,
strong {
    font-weight: bolder;
}
mark, .mark {
    padding: 0.2em;
    background-color: Var(--Dark-Ghost);
}
sub,
sup {
    position: relative;
    font-size: 0.75em;
    line-height: 0;
    vertical-align: baseline;
}
sub {
    bottom: -0.25em;
}
sup {
    top: -0.5em;
    right: -.5rem
}
textarea {
    resize: vertical;
}
pre,
code,
kbd,
samp {
    font-family: "cdfont-roboto";
    font-size: 1em;
    direction: ltr /* rtl:ignore */;
    unicode-bidi: bidi-override;
}
pre {
    display: block;
    margin-top: 0;
    margin-bottom: 1rem;
    overflow: auto;
    font-size: 0.875em;
    -ms-overflow-style: scrollbar
}
pre code {
    font-size: inherit;
    color: inherit;
    word-break: normal;
}
code {
    font-size: 0.95em;
    word-wrap: break-word;
}
a > code {
    color: inherit;
}
kbd {
    padding: 0.2rem 0.4rem;
    font-size: 0.875em;
    color: var(--White);
    background-color: var(--Primary-Dark);
    border-radius: 0.2rem;
}
kbd kbd {
    padding: 0;
    font-size: 1em;
    font-weight: 700;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal;
}
figure {
    margin: 0 0 1rem;
    margin-bottom: 0;
    display: inline-block;
}
.figure-caption {
    font-size: 0.875em;
    color: var(--Primary-Soft);
}
.figure-img {
    margin-bottom: 0.5rem;
    line-height: 1;
}
.img-fluid {
    max-width: 100%;
    height: auto;
}
.img-thumbnail {
    padding: 0.25rem;
    background-color: var(--White);
    border: 1px solid var(--Primary-Ghost);
    border-radius: 0.25rem;
    max-width: 100%;
    height: auto;
}
.miterlimit {
    stroke-miterlimit: 10;
}
.isolate {
    isolation: isolate;
}
.screen-mode {
    mix-blend-mode: screen;
}
.multiply-mode {
    mix-blend-mode: multiply;
}
/***********************************CONTAINERS***********************************/
.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
    width: 100%;
    padding-right: var(--cd-gutter-x, 0.75rem);
    padding-left: var(--cd-gutter-x, 0.75rem);
    margin-right: auto;
    margin-left: auto;
}
.row {
    --cd-gutter-x: 1.5rem;
    --cd-gutter-y: 0;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(var(--cd-gutter-y) * -1);
    margin-right: calc(var(--cd-gutter-x) / -2);
    margin-left: calc(var(--cd-gutter-x) / -2);
}
.row > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--cd-gutter-x) / 2);
    padding-left: calc(var(--cd-gutter-x) / 2);
    margin-top: var(--cd-gutter-y);
}
.col {
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
}
.row-cols-auto > * {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
}
.row-cols-1 > * {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
}
.row-cols-2 > * {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
}
.row-cols-3 > * {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.3333333333%;
}
.row-cols-4 > * {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
}
.row-cols-5 > * {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
}
.row-cols-6 > * {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.6666666667%;
}
.col-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
}
.col-1 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333%
}
.col-m-1 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 6%;
    margin: 0.5%;
}
.col-2 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66667%
}
.col-m-2 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 14%;
    margin: 0.5%;
}
.col-3 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%
}
.col-m-3 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 23%;
    margin: 0.5%;
}
.col-4 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333%
}
.col-m-4 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 31%;
    margin: 0.5%;
}
.col-5 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66667%
}
.col-m-5 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 39%;
    margin: 0.5%;
}
.col-6 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%
}
.col-m-6 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 48%;
    margin: 0.5%;
}
.col-7 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333%
}
.col-m-7 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 56%;
    margin: 0.5%;
}
.col-8 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66667%
}
.col-m-8 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 64%;
    margin: 0.5%;
}
.col-9 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%
}
.col-m-9 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 73%;
    margin: 0.5%;
}
.col-10 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333%
}
.col-m-10 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 81%;
    margin: 0.5%;
}
.col-11 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66667%
}
.col-m-11 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 89%;
    margin: 0.5%;
}
.col-12 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%
}
.col-m-12 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 98%;
    margin: 0.5%;
}
.order-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
}
.order-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
}
.order-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
}
.order-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
}
.order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
}
.order-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
}
.order-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
}
.order-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
}
.order-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
}
.order-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
}
.order-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
}
.order-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
}
.order-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
}
.order-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
}
.order-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
}
.offset-1 {
    margin-left: 8.3333333333%;
}
.offset-2 {
    margin-left: 16.6666666667%;
}
.offset-3 {
    margin-left: 25%;
}
.offset-4 {
    margin-left: 33.3333333333%;
}
.offset-5 {
    margin-left: 41.6666666667%;
}
.offset-6 {
    margin-left: 50%;
}
.offset-7 {
    margin-left: 58.3333333333%;
}
.offset-8 {
    margin-left: 66.6666666667%;
}
.offset-9 {
    margin-left: 75%;
}
.offset-10 {
    margin-left: 83.3333333333%;
}
.offset-11 {
    margin-left: 91.6666666667%;
}
.g-0,
.gx-0 {
    --cd-gutter-x: 0;
}
.g-0,
.gy-0 {
    --cd-gutter-y: 0;
}
.g-1,
.gx-1 {
    --cd-gutter-x: 0.25rem;
}
.g-1,
.gy-1 {
    --cd-gutter-y: 0.25rem;
}
.g-2,
.gx-2 {
    --cd-gutter-x: 0.5rem;
}
.g-2,
.gy-2 {
    --cd-gutter-y: 0.5rem;
}
.g-3,
.gx-3 {
    --cd-gutter-x: 1rem;
}
.g-3,
.gy-3 {
    --cd-gutter-y: 1rem;
}
.g-4,
.gx-4 {
    --cd-gutter-x: 1.5rem;
}
.g-4,
.gy-4 {
    --cd-gutter-y: 1.5rem;
}
.g-5,
.gx-5 {
    --cd-gutter-x: 2rem;
}
.g-5,
.gy-5 {
    --cd-gutter-y: 2rem;
}
.g-6,
.gx-6 {
    --cd-gutter-x: 2.5rem
}
.g-6,
.gy-6 {
    --cd-gutter-y: 2.5rem
}
.g-7,
.gx-7 {
    --cd-gutter-x: 3rem
}
.g-7,
.gy-7 {
    --cd-gutter-y: 3rem
}
.g-8,
.gx-8 {
    --cd-gutter-x: 3.5rem
}
.g-8,
.gy-8 {
    --cd-gutter-y: 3.5rem
}
.g-9,
.gx-9 {
    --cd-gutter-x: 4rem
}
.g-9,
.gy-9 {
    --cd-gutter-y: 4rem
}
.g-10,
.gx-10 {
    --cd-gutter-x: 4.5rem
}
.g-10,
.gy-10 {
    --cd-gutter-y: 4.5rem
}
.clearfix::after {
    display: block;
    clear: both;
    content: "";
}
.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;
}
.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-wrap {
    flex-wrap: wrap !important;
}
.flex-nowrap {
    flex-wrap: nowrap !important;
}
.flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
}
.flex-grow-0 {
    -webkit-box-flex: 0 !important;
    flex-grow: 0 !important;
}
.flex-grow-1 {
    -webkit-box-flex: 1 !important;
    flex-grow: 1 !important;
}
.flex-shrink-0 {
    flex-shrink: 0 !important;
}
.flex-shrink-1 {
    flex-shrink: 1 !important;
}
.flex-root {
    -webkit-box-flex: 1;
    flex: 1;
    -ms-flex: 1 0 0px;
}
.flex-column-auto {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
}
.flex-column-fluid {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
}
.flex-row-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}
.flex-row-fluid {
    -webkit-box-flex: 1;
    flex: 1 auto;
    -ms-flex: 1 0 0px;
    min-width: 0;
}
.flex-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.flex-between-center {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}
.flex-end-center {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}
.flex-between-end {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}
.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;
}
.position-static {
    position: static !important;
}
.position-relative {
    position: relative !important;
}
.position-absolute {
    position: absolute !important;
}
.position-fixed {
    position: fixed !important;
}
.position-sticky {
    position: -webkit-sticky !important;
    position: sticky !important;
}
.position-overlay {
    position: fixed;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(var(--Dark_RGBA),0.5);
    z-index: 2;
    cursor: pointer;
}
.float-start {
    float: left !important;
}
.float-end {
    float: right !important;
}
.float-none {
    float: none !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-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;
}
.align-text-start {
    text-align: left !important;
}
.align-text-end {
    text-align: right !important;
}
.align-text-center {
    text-align: center !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;
}
.overflow-auto {
    overflow: auto !important;
}
.overflow-hidden {
    overflow: hidden !important;
}
.overflow-visible {
    overflow: visible !important;
}
.overflow-scroll {
    overflow: scroll !important;
}
.top-auto {
    top: auto
}
.bottom-auto {
    bottom: auto
}
.end-auto {
    right: auto
}
.start-auto {
    left: auto
}
.top-0 {
    top: 0 !important;
}
.top-50 {
    top: 50% !important;
}
.top-100 {
    top: 100% !important;
}
.bottom-0 {
    bottom: 0 !important;
}
.bottom-50 {
    bottom: 50% !important;
}
.bottom-100 {
    bottom: 100% !important;
}
.start-0 {
    left: 0 !important;
}
.start-50 {
    left: 50% !important;
}
.start-100 {
    left: 100% !important;
}
.end-0 {
    right: 0 !important;
}
.end-50 {
    right: 50% !important;
}
.end-100 {
    right: 100% !important;
}
.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}
.fixed-bottom {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1030;
}
.sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
}
.content-centered-y {
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%)
}
.m-0 {
    margin: 0 !important
}
.mt-0,
.my-0 {
    margin-top: 0 !important
}
.me-0,
.mx-0 {
    margin-right: 0 !important
}
.mb-0,
.my-0 {
    margin-bottom: 0 !important
}
.ms-0,
.mx-0 {
    margin-left: 0 !important
}
.m-1 {
    margin: .25rem !important
}
.mt-1,
.my-1 {
    margin-top: .25rem !important
}
.me-1,
.mx-1 {
    margin-right: .25rem !important
}
.mb-1,
.my-1 {
    margin-bottom: .25rem !important
}
.ms-1,
.mx-1 {
    margin-left: .25rem !important
}
.m-2 {
    margin: .5rem !important
}
.mt-2,
.my-2 {
    margin-top: .5rem !important
}
.me-2,
.mx-2 {
    margin-right: .5rem !important
}
.mb-2,
.my-2 {
    margin-bottom: .5rem !important
}
.ms-2,
.mx-2 {
    margin-left: .5rem !important
}
.m-3 {
    margin: 1rem !important
}
.mt-3,
.my-3 {
    margin-top: 1rem !important
}
.me-3,
.mx-3 {
    margin-right: 1rem !important
}
.mb-3,
.my-3 {
    margin-bottom: 1rem !important
}
.ms-3,
.mx-3 {
    margin-left: 1rem !important
}
.m-4 {
    margin: 1.5rem !important
}
.mt-4,
.my-4 {
    margin-top: 1.5rem !important
}
.me-4,
.mx-4 {
    margin-right: 1.5rem !important
}
.mb-4,
.my-4 {
    margin-bottom: 1.5rem !important
}
.ms-4,
.mx-4 {
    margin-left: 1.5rem !important
}
.m-5 {
    margin: 2rem !important
}
.mt-5,
.my-5 {
    margin-top: 2rem !important
}
.me-5,
.mx-5 {
    margin-right: 2rem !important
}
.mb-5,
.my-5 {
    margin-bottom: 2rem !important
}
.ms-5,
.mx-5 {
    margin-left: 2rem !important
}
.m-6 {
    margin: 2.5rem !important
}
.mt-6,
.my-6 {
    margin-top: 2.5rem !important
}
.me-6,
.mx-6 {
    margin-right: 2.5rem !important
}
.mb-6,
.my-6 {
    margin-bottom: 2.5rem !important
}
.ms-6,
.mx-6 {
    margin-left: 2.5rem !important
}
.m-7 {
    margin: 3rem !important
}
.mt-7,
.my-7 {
    margin-top: 3rem !important
}
.me-7,
.mx-7 {
    margin-right: 3rem !important
}
.mb-7,
.my-7 {
    margin-bottom: 3rem !important
}
.ms-7,
.mx-7 {
    margin-left: 3rem !important
}
.m-8 {
    margin: 3.5rem !important
}
.mt-8,
.my-8 {
    margin-top: 3.5rem !important
}
.me-8,
.mx-8 {
    margin-right: 3.5rem !important
}
.mb-8,
.my-8 {
    margin-bottom: 3.5rem !important
}
.ms-8,
.mx-8 {
    margin-left: 3.5rem !important
}
.m-9 {
    margin: 4rem !important
}
.mt-9,
.my-9 {
    margin-top: 4rem !important
}
.me-9,
.mx-9 {
    margin-right: 4rem !important
}
.mb-9,
.my-9 {
    margin-bottom: 4rem !important
}
.ms-9,
.mx-9 {
    margin-left: 4rem !important
}
.m-10 {
    margin: 4.5rem !important
}
.mt-10,
.my-10 {
    margin-top: 4.5rem !important
}
.me-10,
.mx-10 {
    margin-right: 4.5rem !important
}
.mb-10,
.my-10 {
    margin-bottom: 4.5rem !important
}
.ms-10,
.mx-10 {
    margin-left: 4.5rem !important
}
.m-11 {
    margin: 5rem !important
}
.mt-11,
.my-11 {
    margin-top: 5rem !important
}
.me-11,
.mx-11 {
    margin-right: 5rem !important
}
.mb-11,
.my-11 {
    margin-bottom: 5rem !important
}
.ms-11,
.mx-11 {
    margin-left: 5rem !important
}
.p-0 {
    padding: 0 !important
}
.pt-0,
.py-0 {
    padding-top: 0 !important
}
.pe-0,
.px-0 {
    padding-right: 0 !important
}
.pb-0,
.py-0 {
    padding-bottom: 0 !important
}
.ps-0,
.px-0 {
    padding-left: 0 !important
}
.p-1 {
    padding: .25rem !important
}
.pt-1,
.py-1 {
    padding-top: .25rem !important
}
.pe-1,
.px-1 {
    padding-right: .25rem !important
}
.pb-1,
.py-1 {
    padding-bottom: .25rem !important
}
.ps-1,
.px-1 {
    padding-left: .25rem !important
}
.p-1-half {
    padding: .35rem !important
}
.pt-1-half,
.py-1-half {
    padding-top: .35rem !important
}
.pe-1-half,
.px-1-half {
    padding-right: .35rem !important
}
.pb-1-half,
.py-1-half {
    padding-bottom: .35rem !important
}
.ps-1-half,
.px-1-half {
    padding-left: .35rem !important
}
.p-2 {
    padding: .5rem !important
}
.pt-2,
.py-2 {
    padding-top: .5rem !important
}
.pe-2,
.px-2 {
    padding-right: .5rem !important
}
.pb-2,
.py-2 {
    padding-bottom: .5rem !important
}
.ps-2,
.px-2 {
    padding-left: .5rem !important
}
.p-2-half {
    padding: .75rem !important
}
.pt-2-half,
.py-2-half {
    padding-top: .75rem !important
}
.pe-2-half,
.px-2-half {
    padding-right: .75rem !important
}
.pb-2-half,
.py-2-half {
    padding-bottom: .75rem !important
}
.ps-2-half,
.px-2-half {
    padding-left: .75rem !important
}
.p-3 {
    padding: 1rem !important
}
.pt-3,
.py-3 {
    padding-top: 1rem !important
}
.pe-3,
.px-3 {
    padding-right: 1rem !important
}
.pb-3,
.py-3 {
    padding-bottom: 1rem !important
}
.ps-3,
.px-3 {
    padding-left: 1rem !important
}
.p-3-half {
    padding: 1.25rem !important
}
.pt-3-half,
.py-3-half {
    padding-top: 1.25rem !important
}
.pe-3-half,
.px-3-half {
    padding-right: 1.25rem !important
}
.pb-3-half,
.py-3-half {
    padding-bottom: 1.25rem !important
}
.ps-3-half,
.px-3-half {
    padding-left: 1.25rem !important
}
.p-4 {
    padding: 1.5rem !important
}
.pt-4,
.py-4 {
    padding-top: 1.5rem !important
}
.pe-4,
.px-4 {
    padding-right: 1.5rem !important
}
.pb-4,
.py-4 {
    padding-bottom: 1.5rem !important
}
.ps-4,
.px-4 {
    padding-left: 1.5rem !important
}
.p-4-half {
    padding: 1.75rem !important
}
.pt-4-half,
.py-4-half {
    padding-top: 1.75rem !important
}
.pe-4-half,
.px-4-half {
    padding-right: 1.75rem !important
}
.pb-4-half,
.py-4-half {
    padding-bottom: 1.75rem !important
}
.ps-4-half,
.px-4-half {
    padding-left: 1.75rem !important
}
.p-5 {
    padding: 2rem !important
}
.pt-5,
.py-5 {
    padding-top: 2rem !important
}
.pe-5,
.px-5 {
    padding-right: 2rem !important
}
.pb-5,
.py-5 {
    padding-bottom: 2rem !important
}
.ps-5,
.px-5 {
    padding-left: 2rem !important
}
.p-5-half {
    padding: 2.25rem !important
}
.pt-5-half,
.py-5-half {
    padding-top: 2.25rem !important
}
.pe-5-half,
.px-5-half {
    padding-right: 2.25rem !important
}
.pb-5-half,
.py-5-half {
    padding-bottom: 2.25rem !important
}
.ps-5-half,
.px-5-half {
    padding-left: 2.25rem !important
}
.p-6 {
    padding: 2.5rem !important
}
.pt-6,
.py-6 {
    padding-top: 2.5rem !important
}
.pe-6,
.px-6 {
    padding-right: 2.5rem !important
}
.pb-6,
.py-6 {
    padding-bottom: 2.5rem !important
}
.ps-6,
.px-6 {
    padding-left: 2.5rem !important
}
.p-6-half {
    padding: 2.75rem !important
}
.pt-6-half,
.py-6-half {
    padding-top: 2.75rem !important
}
.pe-6-half,
.px-6-half {
    padding-right: 2.75rem !important
}
.pb-6-half,
.py-6-half {
    padding-bottom: 2.75rem !important
}
.ps-6-half,
.px-6-half {
    padding-left: 2.75rem !important
}
.p-7 {
    padding: 3rem !important
}
.pt-7,
.py-7 {
    padding-top: 3rem !important
}
.pe-7,
.px-7 {
    padding-right: 3rem !important
}
.pb-7,
.py-7 {
    padding-bottom: 3rem !important
}
.ps-7,
.px-7 {
    padding-left: 3rem !important
}
.p-7-half {
    padding: 3.25rem !important
}
.pt-7-half,
.py-7-half {
    padding-top: 3.25rem !important
}
.pe-7-half,
.px-7-half {
    padding-right: 3.25rem !important
}
.pb-7-half,
.py-7-half {
    padding-bottom: 3.25rem !important
}
.ps-7-half,
.px-7-half {
    padding-left: 3.25rem !important
}
.p-8 {
    padding: 3.5rem !important
}
.pt-8,
.py-8 {
    padding-top: 3.5rem !important
}
.pe-8,
.px-8 {
    padding-right: 3.5rem !important
}
.pb-8,
.py-8 {
    padding-bottom: 3.5rem !important
}
.ps-8,
.px-8 {
    padding-left: 3.5rem !important
}
.p-8-half {
    padding: 3.75rem !important
}
.pt-8-half,
.py-8-half {
    padding-top: 3.75rem !important
}
.pe-8-half,
.px-8-half {
    padding-right: 3.75rem !important
}
.pb-8-half,
.py-8-half {
    padding-bottom: 3.75rem !important
}
.ps-8-half,
.px-8-half {
    padding-left: 3.75rem !important
}
.p-9 {
    padding: 4rem !important
}
.pt-9,
.py-9 {
    padding-top: 4rem !important
}
.pe-9,
.px-9 {
    padding-right: 4rem !important
}
.pb-9,
.py-9 {
    padding-bottom: 4rem !important
}
.ps-9,
.px-9 {
    padding-left: 4rem !important
}
.p-9-half {
    padding: 4.25rem !important
}
.pt-9-half,
.py-9-half {
    padding-top: 4.25rem !important
}
.pe-9-half,
.px-9-half {
    padding-right: 4.25rem !important
}
.pb-9-half,
.py-9-half {
    padding-bottom: 4.25rem !important
}
.ps-9-half,
.px-9-half {
    padding-left: 4.25rem !important
}
.p-10 {
    padding: 4.5rem !important
}
.pt-10,
.py-10 {
    padding-top: 4.5rem !important
}
.pe-10,
.px-10 {
    padding-right: 4.5rem !important
}
.pb-10,
.py-10 {
    padding-bottom: 4.5rem !important
}
.ps-10,
.px-10 {
    padding-left: 4.5rem !important
}
.p-10-half {
    padding: 4.75rem !important
}
.pt-10-half,
.py-10-half {
    padding-top: 4.75rem !important
}
.pe-10-half,
.px-10-half {
    padding-right: 4.75rem !important
}
.pb-10-half,
.py-10-half {
    padding-bottom: 4.75rem !important
}
.ps-10-half,
.px-10-half {
    padding-left: 4.75rem !important
}
.p-11 {
    padding: 5rem !important
}
.pt-11,
.py-11 {
    padding-top: 5rem !important
}
.pe-11,
.px-11 {
    padding-right: 5rem !important
}
.pb-11,
.py-11 {
    padding-bottom: 5rem !important
}
.ps-11,
.px-11 {
    padding-left: 5rem !important
}
.p-11-half {
    padding: 5.25rem !important
}
.pt-11-half,
.py-11-half {
    padding-top: 5.25rem !important
}
.pe-11-half,
.px-11-half {
    padding-right: 5.25rem !important
}
.pb-11-half,
.py-11-half {
    padding-bottom: 5.25rem !important
}
.ps-11-half,
.px-11-half {
    padding-left: 5.25rem !important
}
.m-n1 {
    margin: -.25rem !important
}
.mt-n1,
.my-n1 {
    margin-top: -.25rem !important
}
.me-n1,
.mx-n1 {
    margin-right: -.25rem !important
}
.mb-n1,
.my-n1 {
    margin-bottom: -.25rem !important
}
.ms-n1,
.mx-n1 {
    margin-left: -.25rem !important
}
.m-n2 {
    margin: -.5rem !important
}
.mt-n2,
.my-n2 {
    margin-top: -.5rem !important
}
.me-n2,
.mx-n2 {
    margin-right: -.5rem !important
}
.mb-n2,
.my-n2 {
    margin-bottom: -.5rem !important
}
.ms-n2,
.mx-n2 {
    margin-left: -.5rem !important
}
.m-n3 {
    margin: -1rem !important
}
.mt-n3,
.my-n3 {
    margin-top: -1rem !important
}
.me-n3,
.mx-n3 {
    margin-right: -1rem !important
}
.mb-n3,
.my-n3 {
    margin-bottom: -1rem !important
}
.ms-n3,
.mx-n3 {
    margin-left: -1rem !important
}
.m-n4 {
    margin: -1.5rem !important
}
.mt-n4,
.my-n4 {
    margin-top: -1.5rem !important
}
.me-n4,
.mx-n4 {
    margin-right: -1.5rem !important
}
.mb-n4,
.my-n4 {
    margin-bottom: -1.5rem !important
}
.ms-n4,
.mx-n4 {
    margin-left: -1.5rem !important
}
.m-n5 {
    margin: -2rem !important
}
.mt-n5,
.my-n5 {
    margin-top: -2rem !important
}
.me-n5,
.mx-n5 {
    margin-right: -2rem !important
}
.mb-n5,
.my-n5 {
    margin-bottom: -2rem !important
}
.ms-n5,
.mx-n5 {
    margin-left: -2rem !important
}
.m-n6 {
    margin: -2.5rem !important
}
.mt-n6,
.my-n6 {
    margin-top: -2.5rem !important
}
.me-n6,
.mx-n6 {
    margin-right: -2.5rem !important
}
.mb-n6,
.my-n6 {
    margin-bottom: -2.5rem !important
}
.ms-n6,
.mx-n6 {
    margin-left: -2.5rem !important
}
.m-n7 {
    margin: -3rem !important
}
.mt-n7,
.my-n7 {
    margin-top: -3rem !important
}
.me-n7,
.mx-n7 {
    margin-right: -3rem !important
}
.mb-n7,
.my-n7 {
    margin-bottom: -3rem !important
}
.ms-n7,
.mx-n7 {
    margin-left: -3rem !important
}
.m-n8 {
    margin: -3.5rem !important
}
.mt-n8,
.my-n8 {
    margin-top: -3.5rem !important
}
.me-n8,
.mx-n8 {
    margin-right: -3.5rem !important
}
.mb-n8,
.my-n8 {
    margin-bottom: -3.5rem !important
}
.ms-n8,
.mx-n8 {
    margin-left: -3.5rem !important
}
.m-n9 {
    margin: -4rem !important
}
.mt-n9,
.my-n9 {
    margin-top: -4rem !important
}
.me-n9,
.mx-n9 {
    margin-right: -4rem !important
}
.mb-n9,
.my-n9 {
    margin-bottom: -4rem !important
}
.ms-n9,
.mx-n9 {
    margin-left: -4rem !important
}
.m-n10 {
    margin: -4.5rem !important
}
.mt-n10,
.my-n10 {
    margin-top: -4.5rem !important
}
.me-n10,
.mx-n10 {
    margin-right: -4.5rem !important
}
.mb-n10,
.my-n10 {
    margin-bottom: -4.5rem !important
}
.ms-n10,
.mx-n10 {
    margin-left: -4.5rem !important
}
.m-n11 {
    margin: -5rem !important
}
.mt-n11,
.my-n11 {
    margin-top: -5rem !important
}
.me-n11,
.mx-n11 {
    margin-right: -5rem !important
}
.mb-n11,
.my-n11 {
    margin-bottom: -5rem !important
}
.ms-n11,
.mx-n11 {
    margin-left: -5rem !important
}
.m-auto {
    margin: auto !important
}
.mt-auto,
.my-auto {
    margin-top: auto !important
}
.me-auto,
.mx-auto {
    margin-right: auto !important
}
.mb-auto,
.my-auto {
    margin-bottom: auto !important
}
.ms-auto,
.mx-auto {
    margin-left: auto !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.5 !important;
}
.lh-lg {
    line-height: 2 !important;
}
.text-inherit {
    color: inherit
}
.text-cap {
    display: block;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: .03125rem
}
.text-lh-sm {
    line-height: 1.2
}
.text-lh-lg {
    line-height: 1.8
}
.text-decoration-none {
    text-decoration: none !important;
}
.text-decoration-underline {
    text-decoration: underline !important;
}
.text-decoration-line-through {
    text-decoration: line-through !important;
}
.text-lowercase {
    text-transform: lowercase !important;
}
.text-uppercase {
    text-transform: uppercase !important;
}
.text-capitalize {
    text-transform: capitalize !important;
}
.text-wrap {
    white-space: normal !important;
}
.text-nowrap {
    white-space: nowrap !important;
}
/* rtl:begin:remove */
.text-break {
    word-wrap: break-word !important;
    word-break: break-word !important;
}
/* rtl:end:remove */
.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    content: "";
}
.user-select-all {
    -webkit-user-select: all !important;
    -moz-user-select: all !important;
    user-select: all !important;
}
.user-select-auto {
    -webkit-user-select: auto !important;
    -moz-user-select: auto !important;
    user-select: auto !important;
}
.user-select-none {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    user-select: none !important;
}
.list-unstyled, .list-inline {
    padding-left: 0;
    list-style: none;
}
.list-inline-item {
    display: inline-block;
}
.list-inline-item:not(:last-child) {
    margin-right: 0.5rem;
}
.initialism {
    font-size: 0.875em;
    text-transform: uppercase;
}
.blockquote {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}
.blockquote > :last-child {
    margin-bottom: 0;
}
.blockquote-footer {
    margin-top: -1rem;
    margin-bottom: 1rem;
    font-size: 0.875em;
    color: var(--Primary-Soft);
}
.blockquote-footer::before {
    content: "��";
}
.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden
}
.embed-responsive::before {
    display: block;
    content: "";
}
.embed-responsive .embed-responsive-item,
.embed-responsive embed,
.embed-responsive iframe,
.embed-responsive object,
.embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.embed-responsive-21by9::before {
    padding-top: 42.85714%
}
.embed-responsive-16by9::before {
    padding-top: 56.25%
}
.embed-responsive-4by3::before {
    padding-top: 75%
}
.embed-responsive-1by1::before {
    padding-top: 100%
}
.validation-message {
    color: Var(--Failed);
    font-size: 0.8em;
    font-family: 'cdfont-opensans';
}
.validation-message::before {
    color: Var(--Failed-Light);
    content: "! ";
}
.validation-errors .validation-message::marker {
    content: "";
}
.validation-errors .validation-message::before,
.validation-errors .validation-message {
    color: Var(--Failed-Dark);
    content: "** ";
    margin-top: 0.50rem;
}
.scrollbar {
    overflow: hidden;
    overflow-y: auto
}
.scrollbar::-webkit-scrollbar {
    width: .5rem;
}
.scrollbar::-webkit-scrollbar-thumb {
    background-color: rgba(var(--Default-Strong), .6);
    visibility: hidden;
}
.scrollbar:hover::-webkit-scrollbar-thumb {
    visibility: visible;
}
.scrollbar-horizontal {
    display: -ms-flexbox;
    display: flex;
    max-width: 100%;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}
.scrollbar-horizontal::-webkit-scrollbar {
    height: .25rem;
}
.scrollbar-horizontal::-webkit-scrollbar-thumb {
    background-color: rgba(var(--Default-Light), .6);
    visibility: hidden;
}
.scrollbar-horizontal:hover::-webkit-scrollbar-thumb {
    visibility: visible;
}
.shadow-none, .shadow-none-hover {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}
.shadow-xs, .shadow-xs-hover {
    -webkit-box-shadow: 0 0.125rem 0.25rem 0 !important;
    box-shadow: 0 0.125rem 0.25rem 0 !important;
}
.shadow-sm, .shadow-sm-hover {
    -webkit-box-shadow: 0 0.25rem 0.5rem 0 !important;
    box-shadow: 0 0.25rem 0.5rem 0 !important;
}
.shadow, .shadow-hover {
    -webkit-box-shadow: 0 0.5rem 0.75rem 0 !important;
    box-shadow: 0 0.5rem 0.75rem 0 !important;
}
.shadow-md, .shadow-md-hover {
    -webkit-box-shadow: 0 0.75rem 1rem 0 !important;
    box-shadow: 0 0.75rem 1rem 0 !important;
}
.shadow-lg, .shadow-lg-hover {
    -webkit-box-shadow: 0 1rem 1.25rem 0 !important;
    box-shadow: 0 1rem 1.25rem 0 !important;
}
.shadow-xl, .shadow-xl-hover {
    -webkit-box-shadow: 1.25rem 1.5rem 0 !important;
    box-shadow: 0 1.25rem 1.5rem 0 !important;
}
.shadow-full, .shadow-full-hover {
    -webkit-box-shadow: 1.25rem 1.5rem 0 !important;
    box-shadow: 1.25rem 1.5rem 0 !important;
}

/***** ***** ***** ***** ***** ***** ***** Fonts ********** ***** ***** ***** ***** ***** ***** ***** *****/
h1,
.h1 {
    font-size: calc(1.375rem + 1.5vw) !important;
}
h2,
.h2 {
    font-size: calc(1.325rem + 0.9vw) !important;
}
h3,
.h3 {
    font-size: calc(1.3rem + 0.6vw) !important;
}
h4,
.h4 {
    font-size: calc(1.275rem + 0.3vw);
}
h5,
.h5 {
    font-size: 1.25rem;
}
h6,
.h6 {
    font-size: 1rem;
}
.fs-xs {
    font-size: 0.756rem !important;
}
small,
.small,
.fs-sm {
    font-size: 0.975em !important;
}
.fs-nm {
    font-size: 1.1rem !important;
}
.fs-md {
    font-size: 1.175rem !important;
}
.fs-lg {
    font-size: 1.3rem !important;
}
.fs-xl {
    font-size: 1.375rem !important;
}
.fs-xxl {
    font-size: 1.575rem !important;
}
.lead {
    font-size: calc(1.25625rem + .075vw);
    font-weight: 400
}
.display-1 {
    font-size: calc(1.625rem + 4.5vw);
    font-weight: 600;
    line-height: 1.2
}
.display-2 {
    font-size: calc(1.575rem + 3.9vw);
    font-weight: 600;
    line-height: 1.2
}
.display-3 {
    font-size: calc(1.525rem + 3.3vw);
    font-weight: 600;
    line-height: 1.2
}
.display-4 {
    font-size: calc(1.475rem + 2.7vw);
    font-weight: 600;
    line-height: 1.2
}
.display-5 {
    font-size: calc(1.425rem + 2.1vw);
    font-weight: 600;
    line-height: 1.2
}
.display-6 {
    font-size: calc(1.375rem + 1.5vw);
    font-weight: 600;
    line-height: 1.2
}
.icon {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 1rem;
    width: 3.125rem;
    height: 3.125rem;
    border-radius: .3125rem;
}
.icon.icon-xs {
    width: 1.625rem;
    height: 1.625rem;
    padding-left: 0.25rem;
    padding-bottom: 0.15rem;
}
.icon.icon-sm {
    width: 1.825rem;
    height: 1.825rem;
    padding-left: 0.25rem;
    padding-bottom: 0.05rem;
}
.icon.icon-nm {
    width: 2.25rem;
    height: 2.25rem;
    padding-left: 0.25rem;
    padding-bottom: 0.05rem;
}
.icon.icon-md {
    width: 3.25rem;
    height: 3.25rem;
    padding-left: 0.35rem;
    padding-bottom: 0.05rem;
}
.icon.icon-lg {
    width: 3.75rem;
    height: 3.75rem;
    padding-left: 0.45rem;
    padding-bottom: 0.05rem;
}
.icon.icon-xl {
    width: 4.25rem;
    height: 4.25rem;
    padding-left: 0.55rem;
    padding-bottom: 0.05rem;
}
.icon.icon-xxl {
    width: 5.25rem;
    height: 5.25rem;
    padding-left: 0.65rem;
    padding-bottom: 0.05rem;
}
.icon-ss {
    font-size: 0.5rem !important;
    width: 1.00rem;
    height: 1.00rem;
}
.icon-xs {
    font-size: 0.65rem !important;
    width: 1.25rem;
    height: 1.25rem;
}
.icon-sm {
    font-size: 0.75rem !important;
    width: 1.75rem;
    height: 1.75rem;
}
.icon-nm {
    font-size: 0.9rem !important;
    width: 1.95rem;
    height: 1.95rem;
}
.icon-ms {
    font-size: 1.15rem !important;
    width: 2.25rem;
    height: 2.25rem;
}
.icon-md {
    font-size: 1.25rem !important;
    width: 2.45rem;
    height: 2.45rem;
}
.icon-lg {
    font-size: 1.5rem !important;
    width: 3.25rem;
    height: 3.25rem;
}
.icon-xl {
    font-size: 1.75rem !important;
    width: 4.75rem;
    height: 4.75rem;
}
.icon-xxl {
    font-size: 2.25rem !important;
    width: 6.75rem;
    height: 6.75rem;
}
.icon-1x {
    font-size: 1rem !important;
}
.icon-2x {
    font-size: 2rem !important;
}
.icon-3x {
    font-size: 3rem !important;
}
.icon-4x {
    font-size: 4rem !important;
}
.icon-5x {
    font-size: 5rem !important;
}
.icon-6x {
    font-size: 6rem !important;
}
.icon-7x {
    font-size: 7rem !important;
}
.icon-8x {
    font-size: 8rem !important;
}
.icon-9x {
    font-size: 9rem !important;
}
.icon-10x {
    font-size: 10rem !important;
}
/*********************************************** Buttons & Badge ***************************************************/
.badge {
    display: inline-block;
    padding: .35em .65em;
    font-size: .75em;
    font-weight: 700;
    line-height: normal;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .3125rem;
    color: var(--White);
}
.badge:empty {
    display: none;
}
.btn {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: .6125rem 1rem;
    font-size: 1rem;
    border-radius: .3125rem;
    transition: all .2s ease-in-out;
}
.btn-check:focus + .btn,
.btn:focus {
    outline: 0;
    box-shadow: 0 0 1rem 0 rgba(var(--Primary-Ghost_RGBA), .25);
}
.btn-check {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none;
    opacity: .65;
}
.btn-check:disabled + .btn,
.btn-check[disabled] + .btn {
    pointer-events: none;
    -webkit-filter: none;
    filter: none;
    opacity: .65;
}
.btn-check + .btn {
    opacity: .55;
}
.btn-check:active + .btn,
.btn-check:checked + .btn {
    opacity: 1;
}
.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
    pointer-events: none;
    opacity: .65;
}
.btn-link {
    font-weight: 400;
    text-decoration: none;
    border: none;
    border-radius: 0;
    color: var(--Primary-Soft);
}
.btn-link:hover {
    color: rgba(var(--Primary-Soft_RGBA), .5);
}
.btn-link:focus {
    box-shadow: none;
}
.btn-link.disabled,
.btn-link:disabled {
    color: var(--Default-Soft);
}
.btn-close {
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: .25em .25em;
    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 no-repeat;
    border: 0;
    border-radius: .5rem;
    opacity: .5;
    color: var(--Dark-Soft);
}
.btn-close:hover {
    text-decoration: none;
    opacity: .75;
    color:rgba(var(--Dark-Soft_RGBA), .5);
}
.btn-close:focus {
    outline: 0;
    box-shadow: 0 0 1rem 0 rgba(var(--Default-Soft), .25);
    opacity: 1;
}
.btn-close.disabled,
.btn-close:disabled {
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    opacity: .25;
}
.btn-close-white {
    -webkit-filter: invert(1) grayscale(100%) brightness(200%);
    filter: invert(1) grayscale(100%) brightness(200%);
}
.btn-close:focus {
    box-shadow: none;
}
.btn-close-light {
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%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;
}
.btn-icon {
    position: relative;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 600;
}
.btn-icon > svg {
    width: 1rem;
    height: auto;
}
.btn-icon > i {
    align-items: center;
    justify-content: center;
}
.btn.btn-icon {
    font-size: 1.3rem;
    width: 3.2rem;
    height: 3.2rem;
}
.btn.btn-icon i {
    padding-left: 0.4rem;
    padding-bottom: 0.3rem;
}
.btn-wide {
    width: 100%;
}
.btn .badge {
    position: relative;
    top: -1px;
}
.btn-xxl {
    font-size: 1.4rem !important;
    padding: 1.1rem 1rem !important;
}
.btn-xxl.btn-icon {
    width: 3.9rem !important;
    height: 3.5rem !important;
}
.btn-xxl.btn-icon i {
    padding-left: 0.5rem !important;
    padding-top: 0.15rem !important;
}
.btn-xl {
    padding: .625rem 0.9rem !important;
    font-size: 1.3rem !important;
}
.btn-xl.btn-icon {
    width: 3.5rem !important;
    height: 3.2rem !important;
}
.btn-xl.btn-icon i {
    padding-left: 0.5rem !important;
    padding-top: 0.15rem !important;
}
.btn-lg {
    padding: .625rem 0.9rem !important;
    font-size: 1.1rem !important;
}
.btn-lg.btn-icon {
    width: 3rem !important;
    height: 3rem !important;
}
.btn-lg.btn-icon i {
    padding-left: 0.5rem !important;
    padding-top: 0.15rem !important;
}
.btn-md {
    padding: .525rem 0.8rem !important;
    font-size: 0.9rem !important;
}
.btn-md.btn-icon {
    width: 2.5rem !important;
    height: 2.5rem !important;
}
.btn-md.btn-icon i {
    padding-left: 0.3rem !important;
    padding-top: 0.15rem !important;
}
.btn-sm {
    padding: .425rem 0.7rem !important;
    font-size: 0.8rem !important;
}
.btn-sm.btn-icon {
    width: 2rem !important;
    height: 2rem !important;
}
.btn-sm.btn-icon i {
    padding-left: 0.3rem !important;
    padding-top: 0.25rem !important;
}
.btn-xs {
    padding: .325rem 0.6rem !important;
    font-size: 0.7rem !important;
}
.btn-xs.btn-icon {
    width: 1.6rem !important;
    height: 1.6rem !important;
}
.btn-xs.btn-icon i {
    padding-left: 0.225rem !important;
    padding-top: 0.1rem !important;
}
/********************************************** Borders ***************************************************/
.border {
    border: 1px solid transparent;
}
.border-none {
    border: 0 !important;
}
.border-top {
    border-top: 1px solid transparent !important;
}
.border-end {
    border-right: 1px solid transparent !important;
}
.border-bottom {
    border-bottom: 1px solid transparent !important;
}
.border-start {
    border-left: 1px solid transparent !important;
}
.border-gradient {
    border: 10px solid;
    border-image-slice: 1;
    border-width: 5px;
}
.border-x {
    border-left: 1px solid !important;
    border-right: 1px solid !important
}
.border-y {
    border-top: 1px solid !important;
    border-bottom: 1px solid !important
}
.border-dashed {
    border: 1px dashed !important
}
.border-dashed-top {
    border-top: 1px dashed !important
}
.border-dashed-end {
    border-right: 1px dashed !important
}
.border-dashed-start {
    border-left: 1px dashed !important
}
.border-dashed-bottom {
    border-bottom: 1px dashed !important
}
.border-dashed-x {
    border-left: 1px dashed !important;
    border-right: 1px dashed !important
}
.border-dashed-y {
    border-top: 1px dashed !important;
    border-bottom: 1px dashed !important
}
.border-xs,
.border-xs-before::before,
.border-xs-after::after {
    border-width: 0.015rem !important;
}
.border-sm,
.border-sm-before::before,
.border-sm-after::after {
    border-width: 0.1rem !important;
}
.border-md,
.border-md-before::before,
.border-md-after::after {
    border-width: 0.2rem !important;
}
.border-lg,
.border-lg-before::before,
.border-lg-after::after {
    border-width: 0.4rem !important;
}
.border-xl,
.border-xl-before::before,
.border-xl-after::after {
    border-width: 0.7rem !important;
}
.border-xxl,
.border-xxl-before::before,
.border-xxl-after::after {
    border-width: 1rem !important;
}
.border-top-0 {
    border-top: 0 !important;
}
.border-end-0 {
    border-right: 0 !important;
}
.border-bottom-0 {
    border-bottom: 0 !important;
}
.border-start-0 {
    border-left: 0 !important;
}
.border-x-0 {
    border-left: 0 !important;
    border-right: 0 !important
}
.border-y-0 {
    border-top: 0 !important;
    border-bottom: 0 !important
}
/*********************************************** Spaces **********************************************************/
.space-0,
.space-top-0 {
    padding-top: 0 !important
}
.space-0,
.space-bottom-0 {
    padding-bottom: 0 !important
}
.space-1,
.space-top-1 {
    padding-top: 2rem !important
}
.space-1,
.space-bottom-1 {
    padding-bottom: 2rem !important
}
.space-2,
.space-top-2 {
    padding-top: 4rem !important
}
.space-2,
.space-bottom-2 {
    padding-bottom: 4rem !important
}
.space-3,
.space-top-3 {
    padding-top: 8rem !important
}
.space-3,
.space-bottom-3 {
    padding-bottom: 8rem !important
}
.space-4,
.space-top-4 {
    padding-top: 12.5rem !important
}
.space-4,
.space-bottom-4 {
    padding-bottom: 12.5rem !important
}
.space-5,
.space-top-5 {
    padding-top: 15rem !important
}
.space-5,
.space-bottom-5 {
    padding-bottom: 15rem !important
}
.space-6,
.space-top-6 {
    padding-top: 17.5rem !important
}
.space-6,
.space-bottom-6 {
    padding-bottom: 17.5rem !important
}
/******************************************* Width & Height **********************************************/
.w-5 {
    width: 5% !important
}
.w-10 {
    width: 10% !important
}
.w-15 {
    width: 15% !important
}
.w-20 {
    width: 20% !important
}
.w-25 {
    width: 25% !important;
}
.w-30 {
    width: 30% !important
}
.w-35 {
    width: 35% !important
}
.w-40 {
    width: 40% !important
}
.w-50 {
    width: 50% !important;
}
.w-55 {
    width: 55% !important;
}
.w-60 {
    width: 60% !important
}
.w-65 {
    width: 65% !important
}
.w-75 {
    width: 75% !important;
}
.w-80 {
    width: 80% !important
}
.w-85 {
    width: 85% !important
}
.w-90 {
    width: 90% !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-15 {
    height: 15% !important
}
.h-20 {
    height: 20% !important
}
.h-25 {
    height: 25% !important
}
.h-30 {
    height: 30% !important
}
.h-35 {
    height: 35% !important
}
.h-40 {
    height: 40% !important
}
.h-50 {
    height: 50% !important
}
.h-60 {
    height: 60% !important
}
.h-65 {
    height: 65% !important
}
.h-75 {
    height: 75% !important
}
.h-80 {
    height: 80% !important
}
.h-85 {
    height: 85% !important
}
.h-90 {
    height: 90% !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;
}
.min-w-3rem {
    min-width: 1rem
}
.min-w-4rem {
    min-width: 1.5rem;
}
.min-w-8rem {
    min-width: 3.5rem
}
.min-w-21rem {
    min-width: 10rem
}
.max-w-3rem {
    max-width: 1rem
}
.max-w-4rem {
    max-width: 1.5rem
}
.max-w-5rem {
    max-width: 2rem
}
.max-w-6rem {
    max-width: 2.5rem
}
.max-w-7rem {
    max-width: 3rem
}
.max-w-8rem {
    max-width: 3.5rem
}
.max-w-9rem {
    max-width: 4rem
}
.max-w-10rem {
    max-width: 4.5rem
}
.max-w-11rem {
    max-width: 5rem
}
.max-w-13rem {
    max-width: 6rem
}
.max-w-15rem {
    max-width: 7rem
}
.max-w-19rem {
    max-width: 9rem
}
.max-w-23rem {
    max-width: 11rem
}
.max-w-27rem {
    max-width: 13rem
}
.max-w-33rem {
    max-width: 16rem
}
.max-w-35rem {
    max-width: 17rem
}
.max-w-40rem {
    max-width: 19.5rem
}
.max-w-50rem {
    max-width: 24.5rem
}
.h-4rem {
    height: .25rem
}
.h-250rem {
    height: 15.625rem
}
.h-380rem {
    height: 23.75rem
}
.min-h-270rem {
    min-height: 16.875rem
}
.min-h-300rem {
    min-height: 18.75rem
}
.min-h-380rem {
    min-height: 23.75rem
}
.min-h-450rem {
    min-height: 28.125rem
}
.min-h-500rem {
    min-height: 31.25rem
}
.min-h-620rem {
    min-height: 38.75rem
}
/***************************************** Accordion *****************************************/
.accordion-lg .accordion-header i {
    font-size: 1.2rem;
}
.accordion-md .accordion-header i {
    font-size: 1.0rem;
}
.accordion-sm .accordion-header i {
    font-size: 0.75rem;
}
.accordion-header {
    margin-bottom: 0;
    width: 100%;
}
.accordion-header i {
    font-size: 0.9rem;
}
.accordion-item {
    border: .0625rem solid;
    background-color: var(--White);
    border-color: rgba(var(--Primary-Soft_RGBA), .1);
}
.accordion-item:first-of-type {
    border-top-left-radius: .5rem;
    border-top-right-radius: .5rem;
}
.accordion-item:not(:first-of-type) {
    border-top: 0;
}
.accordion-item:last-of-type {
    border-bottom-right-radius: .5rem;
    border-bottom-left-radius: .5rem;
}
.accordion-item:last-of-type .accordion-collapse {
    border-bottom-right-radius: .5rem;
    border-bottom-left-radius: .5rem;
}
.accordion-body {
    padding: .75rem 1.25rem;
    padding-top: 0;
}
.shape-floating .accordion-collapse {
    border-width: 0;
}
.shape-floating.accordion-item {
    border-right: 0;
    border-left: 0;
    border-radius: 0;
}
.shape-floating.accordion-item:first-child {
    border-top: 0;
}
.shape-floating.accordion-item:last-child {
    border-bottom: 0;
}
.shape-floating .accordion-body {
    padding-left: 0;
    padding-right: 0;
}
/***************************************** Avatar *****************************************/
.avatar {
    position: relative;
    display: inline-block;
    width: 3.125rem;
    height: 3.125rem;
    border-radius: .5rem;
}
.avatar-img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: .5rem;
}
.avatar:not(img) {
    background-color: var(--White);
}
.avatar-initials {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: 1rem;
    font-weight: 600;
    pointer-events: none;
    text-transform: uppercase;
    border-radius: .5rem;
}
.avatar .avatar-emoji {
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.avatar .avatar-emoji > span, .avatar .avatar-emoji > i {
    -webkit-transform: translateY(2%);
    -ms-transform: translateY(2%);
    transform: translateY(2%);
    display: inline-block;
}
.shape-bubble .avatar,
/*.shape-bubble .avatar-img,*/
.shape-bubble .avatar-initials {
    border-radius: 30%;
}
.shape-pill .avatar,
/*.shape-pill .avatar-img,
*/.shape-pill .avatar-initials {
    border-radius: 20%;
}
.shape-circle .avatar,
/*.shape-circle .avatar-img,*/
.shape-circle .avatar-initials {
    border-radius: 50%;
}
.avatar-centered {
    display: -ms-flexbox;
    display: flex;
    margin-right: auto;
    margin-left: auto;
}
.avatar-group {
    display: -ms-flexbox;
    display: flex;
}
.avatar-group .avatar:hover {
    z-index: 2;
}
.avatar-group .avatar .avatar-img,
.avatar-group .avatar .avatar-initials {
    border: 2px solid;
}
.avatar-group .avatar + .avatar {
    margin-left: -1rem;
}
.avatar-group .avatar {
    width: 3.125rem;
    height: 3.125rem;
}
.avatar-group .avatar .avatar-initials,
.avatar-group .avatar .avatar-emoji {
    font-size: 1rem; 
}
.avatar-group .avatar + .avatar {
    margin-left: -1rem;
}
.avatar.shape-circle .avatar-status {
    bottom: -.21875rem;
    right: -.21875rem;
}
.avatar-status {
    position: absolute;
    bottom: -.525rem;
    right: -.525rem;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    white-space: nowrap;
    text-align: center;
    vertical-align: baseline;
    border: .125rem solid;
    width: 1.3125rem;
    height: 1.3125rem;
    line-height: 1;
    font-size: .625rem;
    border-radius: 50%;
}
.avatar.avatar-4x3 {
    width: 4.16667rem;
    height: auto;
    border-radius: 0;
}
.avatar.avatar-4x3 .avatar-img {
    height: inherit;
}
.avatar-group .avatar-xs .avatar-img,
.avatar-group .avatar-xs .avatar-initials,
.avatar-group .avatar-lg .avatar-img,
.avatar-group .avatar-lg .avatar-initials,
.avatar-group .avatar-xl .avatar-img,
.avatar-group .avatar-xl .avatar-initials,
.avatar-status {
    border-color: var(--White);
}
.avatar-group .avatar-sm .avatar-img,
.avatar-group .avatar-sm .avatar-initials,
.avatar-group .avatar-xs .avatar-img,
.avatar-group .avatar-xs .avatar-initials {
    border: 2px solid;
}
.avatar-group .avatar-lg .avatar-img,
.avatar-group .avatar-lg .avatar-initials {
    border: 5px solid;
}
.avatar-group .avatar-xl .avatar-img,
.avatar-group .avatar-xl .avatar-initials {
    border: 7px solid;
}
.avatar-group .avatar-xs + .avatar-xs {
    margin-left: -.6125rem;
}
.avatar-group .avatar-sm + .avatar-sm {
    margin-left: -.875rem
}
.avatar-group .avatar-lg + .avatar-lg {
    margin-left: -1.5rem
}
.avatar-group .avatar-xl + .avatar-xl {
    margin-left: -2rem
}
.avatar-group-xs .avatar {
    width: 1.75rem;
    height: 1.75rem;
}
.avatar-group-xs .avatar .avatar-initials,
.avatar-group-xs .avatar .avatar-emoji {
    font-size: .75rem;
}
.avatar-group-xs .avatar + .avatar {
    margin-left: -.6125rem;
}
.avatar-group-sm .avatar {
    width: 2.5rem;
    height: 2.5rem;
}
.avatar-group-sm .avatar .avatar-initials,
.avatar-group-sm .avatar .avatar-emoji {
    font-size: .8125rem;
}
.avatar-group-sm .avatar + .avatar {
    margin-left: -.875rem;
}
.avatar-group-lg .avatar {
    width: 4.25rem;
    height: 4.25rem;
}
.avatar-group-lg .avatar .avatar-initials,
.avatar-group-lg .avatar .avatar-emoji {
    font-size: 1.25rem;
}    
.avatar-group-lg .avatar + .avatar {
    margin-left: -1.5rem;
}
.avatar-group-xl .avatar {
    width: 5.625rem;
    height: 5.625rem;
}
.avatar-group-xl .avatar .avatar-initials,
.avatar-group-xl .avatar .avatar-emoji {
    font-size: 2rem;
}
.avatar-group-xl .avatar + .avatar {
    margin-left: -1.5rem;
}
.avatar-group-xxl .avatar {
    width: 7rem;
    height: 7rem;
}
.avatar-group-xxl .avatar .avatar-initials
.avatar-group-xxl .avatar .avatar-emoji {
    font-size: 3rem;
}
.avatar-group-xxl .avatar + .avatar {
    margin-left: -2rem;
}
.avatar.shape-circle .avatar-sm-status {
    bottom: 0;
    right: 0;
}
.avatar.shape-circle .avatar-lg-status {
    bottom: -.325rem;
    right: -.325rem;
}
.avatar-xs {
    width: 1.75rem;
    height: 1.75rem;
}
.avatar-xs .avatar-initials,
.avatar-xs .avatar-emoji {
    font-size: .75rem;
}
.avatar-xs.shape-circle .avatar-status {
    bottom: -.21875rem;
    right: -.21875rem;
}
.avatar-xs.shape-circle .avatar-sm-status {
    bottom: -.11719rem;
    right: -.11719rem;
}
.avatar-xs.shape-circle .avatar-lg-status {
    bottom: -.325rem;
    right: -.325rem;
}
.avatar-xs {
    width: 1.75rem;
    height: 1.75rem;
}
.avatar-sm {
    width: 2.5rem;
    height: 2.5rem
}
.avatar-sm.shape-circle .avatar-status {
    bottom: -.21875rem;
    right: -.21875rem;
}
.avatar-sm.shape-circle .avatar-sm-status {
    bottom: -.09375rem;
    right: -.09375rem;
}
.avatar-sm.shape-circle .avatar-lg-status {
    bottom: -.40625rem;
    right: -.40625rem;
}
.avatar-lg {
    width: 4.25rem;
    height: 4.25rem;
}
.avatar-lg .avatar-initials {
    font-size: 1.25rem;
}
.avatar-lg.shape-circle .avatar-status {
    bottom: -.13125rem;
    right: -.13125rem;
}
.avatar-lg.shape-circle .avatar-sm-status {
    bottom: .09375rem;
    right: .09375rem;
}
.avatar-lg.shape-circle .avatar-lg-status {
    bottom: -.20312rem;
    right: -.20312rem;
}
.avatar-xl {
    width: 5.625rem;
    height: 5.625rem;
}
.avatar-xl .avatar-initials {
    font-size: 2rem;
}
.avatar-xl.shape-circle .avatar-status {
    bottom: .16406rem;
    right: .16406rem;
}
.avatar-xl.shape-circle .avatar-sm-status {
    bottom: .23438rem;
    right: .23438rem;
}
.avatar-xl.shape-circle .avatar-lg-status {
    bottom: .13542rem;
    right: .13542rem;
}
.avatar-xxl {
    width: 7rem;
    height: 7rem;
}
.avatar-xxl .avatar-initials {
    font-size: 3rem;
}
.avatar-xxl.shape-circle .avatar-status {
    bottom: .75rem;
    right: .75rem;
}
.avatar-xxl.shape-circle .avatar-sm-status {
    bottom: .875rem;
    right: .875rem;
}
.avatar-xxl.shape-circle .avatar-lg-status {
    bottom: .27083rem;
    right: .27083rem;
}
.avatar-sm-status {
    bottom: -.2625rem;
    right: -.2625rem;
    width: .9375rem;
    height: .9375rem;
    font-size: .5rem;
}
.avatar-lg-status {
    width: 1.625rem;
    height: 1.625rem;
    font-size: .75rem;
}
.avatar-xs.avatar-4x3 {
    width: 2.33333rem;
    height: auto;
    border-radius: 0;
}
.avatar-xs.avatar-4x3 .avatar-img {
    height: inherit;
}
.avatar-sm.avatar-4x3 {
    width: 3.33333rem;
    height: auto;
    border-radius: 0;
}
.avatar-sm.avatar-4x3 .avatar-img {
    height: inherit;
}
.avatar-lg.avatar-4x3 {
    width: 5.66667rem;
    height: auto;
    border-radius: 0;
}
.avatar-lg.avatar-4x3 .avatar-img {
    height: inherit;
}
.avatar-xl.avatar-4x3 {
    width: 7.5rem;
    height: auto;
    border-radius: 0;
}
.avatar-xl.avatar-4x3 .avatar-img {
    height: inherit;
}
.avatar-xxl.avatar-4x3 {
    width: 9.33333rem;
    height: auto;
    border-radius: 0;
}
.avatar-xxl.avatar-4x3 .avatar-img {
    height: inherit;
}
/*********************************** List & Groups ***************************************/
.list-comment {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
}
.list-comment:first-child {
    margin-top: -2.5rem;
}
.list-comment-item {
    margin-top: 2.5rem;
}
.list-comment-item .list-comment .list-comment-item {
    padding-left: 1rem;
    border-left: .1875rem solid rgba(var(--Primary_RGBA), .1);
}
.list-comment-divider .list-comment-item:not(:last-child) {
    border-bottom: .0625rem solid rgba(var(--Primary_RGBA), .1);
    padding-bottom: 2.5rem;
}
.list-py-1 > li {
    padding-top: .25rem;
    padding-bottom: .25rem;
}
.list-py-2 > li {
    padding-top: .5rem;
    padding-bottom: .5rem;
}
.list-py-3 > li {
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.list-separator {
    margin-bottom: 0;
}
.list-separator .list-inline-item {
    position: relative;
    margin-left: 0;
    margin-right: -.25rem;
}
.list-separator .list-inline-item:not(:last-child) {
    padding-right: 2rem;
}
.list-separator .list-inline-item:not(:last-child)::after {
    position: absolute;
    top: 50%;
    right: .8rem;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    content: "/";
    opacity: .4;
}
.list-separator .list-separator-link {
    color: var(--Primary-Soft);
}
.list-separator .list-separator-link:hover {
    color: rgba(var(--Primary-Soft_RGBA), .5);
}
.list-checked {
    padding-left: 0;
    list-style: none;
}
.list-checked-item {
    position: relative;
    display: block;
    color: var(--Primary-Soft);
    padding-left: 1.75rem;
    margin: .5rem;
}
.list-checked-item::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 1rem;
    height: 1rem;
    background: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 110 110' fill='%2371869d' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M98.1,16.2c-2.5-2.3-6.4-2.2-8.7,0.2L36.7,70.1l-13-15.5c-2.9-3.5-7.9-4.1-11.1-1.4c-2.9,2.4-3.5,6.6-1.4,10.1l16.5,28c3.2,5.4,10.8,5.8,14.5,0.8l56.5-67.3C100.7,22.1,100.4,18.5,98.1,16.2z'/%3E%3C/svg%3E%0A") no-repeat right center/1rem 1rem;
    content: "";
    margin-top: .125rem;
}
.list-checked-item[hover]:hover {
    color: var(--Primary);
}
[class*=list-checked-bg-] .list-checked-item::before,
[class*=list-checked-soft-bg-] .list-checked-item::before {
    margin-top: .25rem;
}
.list-checked-sm .list-checked-item {
    padding-left: 1.25rem;
}
.list-checked-sm .list-checked-item::before {
    width: .75rem;
    height: .75rem;
    background-size: .75rem .75rem;
    margin-top: .3125rem;
}
.list-checked-sm[class*=list-checked-bg-] .list-checked-item::before,
.list-checked-sm[class*=list-checked-soft-bg-] .list-checked-item::before {
    margin-top: .375rem;
}
.list-checked-lg .list-checked-item {
    padding-left: 2.25rem;
}
.list-checked-lg .list-checked-item::before {
    width: 1.25rem;
    height: 1.25rem;
    background-size: 1.25rem 1.25rem;
    margin-top: 0;
}
.list-checked-lg[class*=list-checked-bg-] .list-checked-item::before,
.list-checked-lg[class*=list-checked-soft-bg-] .list-checked-item::before {
    margin-top: .125rem;
}
.list-group {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    border-radius: .5rem;
}
.list-group-item {
    position: relative;
    display: block;
    padding: 1rem 1rem;
    border: .0625rem solid;
    color: var(--Primary-Soft);
    background-color: var(--White);
    border-color: var(--Primary-Light);
}
.list-group-item a {
    border: none;
}
.list-group-item:first-child {
    border-top-left-radius: .5rem;
    border-top-right-radius: .5rem;
}
.list-group-item:last-child {
    border-bottom-right-radius: .5rem;
    border-bottom-left-radius: .5rem;
}
.list-group-item.disabled,
.list-group-item:disabled {
    pointer-events: none;
    color: var(--Default-Soft);
    background-color: var(--White);
}
.list-group-item + .list-group-item {
    border-top-width: 0;
}
.list-group-icon {
    display: inline-block;
    width: 2rem;
    text-align: center;
    margin-right: .5rem;
}
.list-group-icon,
.list-group-item-action {
    color: var(--Primary-Ghost);
}
.list-group-item-action {
    width: 100%;
    text-align: inherit;
}
.list-group-item-action:focus,
.list-group-item-action:hover {
    z-index: 1;
    text-decoration: none;
    color: var(--Primary-Light);
    background-color: var(--White-Ghost);
}
.list-group-item-action:active {
    color: var(--Primary-Dark);
    background-color: var(--White-Ghost);
}
.list-group-item.active {
    z-index: 2;
    color: var(--White);
    background-color: var(--Primary);
    border-color: var(--Primary);
}
.list-group-item.active .list-group-icon {
    color: var(--White);
}
.list-group-item + .list-group-item.active {
    margin-top: -.0625rem;
    border-top-width: .0625rem;
}
.list-group-striped > li:nth-of-type(odd) {
    background-color: rgba(var(--Primary-Soft_RGBA), .1)
}
.list-group-no-gutters .list-group-item {
    padding-right: 0;
    padding-left: 0;
}
.list-group-numbered {
    list-style-type: none;
    counter-reset: section;
}
.list-group-numbered > li::before {
    content: counters(section, ".") ". ";
    counter-increment: section;
}
.list-group-horizontal {
    -ms-flex-direction: row;
    flex-direction: row;
}
.list-group-horizontal > .list-group-item:first-child {
    border-bottom-left-radius: .5rem;
    border-top-right-radius: 0;
}
.list-group-horizontal > .list-group-item:last-child {
    border-top-right-radius: .5rem;
    border-bottom-left-radius: 0;
}
.list-group-horizontal > .list-group-item.active {
    margin-top: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item {
    border-top-width: .0625rem;
    border-left-width: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item.active {
    margin-left: -.0625rem;
    border-left-width: .0625rem;
}
.list-group-flush {
    border-radius: 0;
}
.list-group-flush > .list-group-item {
    border-width: 0 0 .0625rem;
}
.list-group-flush > .list-group-item:last-child {
    border-bottom-width: 0;
}
.list-group-sm .list-group-item {
    font-size: .875rem;
    padding: .5rem .5rem;
}
.list-group-lg .list-group-item {
    padding: 1.5rem 1.5rem;
}
.list-group-lg .list-group-icon {
    font-size: 1.5rem;
    width: 2.5rem;
}
/****************************************** Fallouts ****************************************/
.fallout {
    z-index: 101;
    display: block;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
}
.fallout-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--White-Soft_RGBA), 0.8);
}
.fallout-dialog {
    position: relative;
    width: auto;
    margin: .5rem;
    pointer-events: none;
    background: rgba(var(--White_RGBA), 0.8);
}
.fallout.fade .fallout-dialog {
    transition: -webkit-transform .3s ease-out;
    transition: transform .3s ease-out;
    transition: transform .3s ease-out, -webkit-transform .3s ease-out;
    -webkit-transform: translate(0, -50px);
    transform: translate(0, -50px);
}
.fallout.show .fallout-dialog {
    -webkit-transform: none;
    transform: none;
}
.fallout-content {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: transparent;
    background-clip: padding-box;
    border: .0625rem solid transparent;
    border-radius: .75rem;
    outline: 0;
}
.fallout-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem 2rem;
    border-bottom: 0 solid rgba(var(--Primary_RGBA), .1);
}
.fallout-header .btn-close {
    padding: .5rem 1rem;
    margin: -.5rem -1rem -.5rem auto;
}
.fallout-title {
    margin-bottom: 0;
    line-height: 1.5;
}
.fallout-body {
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 2rem;
}
.fallout-footer {
    padding: 1.0rem;
    border-top: .0625rem solid rgba(var(--Primary_RGBA), .1);
}
.fallout-footer > * {
    margin: .25rem;
}
.fallout-scroll-h {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    height: calc(100% - 1rem);
    min-height: calc(100% - 1rem);
}
.fallout-scroll-h .fallout-content {
    max-height: 100%;
    overflow: hidden;
}
.fallout-scroll-h .fallout-body {
    overflow-y: auto;
}
.fallout-scroll-v {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    width: calc(100% - 1rem);
    min-width: calc(100% - 1rem);
}
.fallout-scroll-v .fallout-content {
    max-width: 100%;
    overflow: hidden;
}
.fallout-scroll-v .fallout-body {
    overflow-x: auto;
}
.fallout-fullscreen {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
}
.fallout-fullscreen .fallout-content {
    height: 100%;
    border: 0;
    border-radius: 0;
}
.fallout-fullscreen .fallout-header,
.fallout-fullscreen .fallout-footer {
    border-radius: 0;
}
.fallout-fullscreen .fallout-body {
    overflow-y: auto;
}
.fallout-notify {
    width: 350px;
    max-width: 100%;
    font-size: .875rem;
    pointer-events: auto;
    background-color: rgba(var(--White_RGBA), .85);
    background-clip: padding-box;
    border: 1px solid rgba(var(--Primary_RGBA), .1);
    box-shadow: 0 .1875rem .375rem rgba(var(--Primary-Ghost_RGBA), .25);
    border-radius: .5rem;
}
.fallout-notify-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 1rem 1rem;
    background-clip: padding-box;
    color: var(--Primary-Ghost);
    background-color: rgba(var(--White_RGBA), .85);
    border-bottom-color: rgba(var(--Dark_RGBA), .05);
    border-bottom: 1px solid;
    border-top-left-radius: calc(.5rem - 1px);
    border-top-right-radius: calc(.5rem - 1px);
}
.fallout-notify-body {
    padding: 1rem;
    word-wrap: break-word;
}
.fallout-xxl {
    width: 95%;
}
.fallout-xl {
    width: 80%;
}
.fallout-lg {
    width: 70%;
}
.fallout-md {
    width: 60%;
}
.fallout-sm {
    width: 50%;
}
.fallout-xs {
    width: 40%;
}
/**************************************** Pages ***********************************************/
.pagination {
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
    list-style: none;
}
.page-link {
    position: relative;
    display: block;
    border: 0 solid;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    color: var(--Primary);
    background-color: var(--White);
    border-color: var(--Default-Soft);
    padding: .375rem .75rem;
}
.page-link:hover {
    z-index: 2;
    color: var(--Primary-Light);
    background-color: var(--White-Strong);
    border-color: var(--Default-Soft)
}
.page-link:focus {
    z-index: 3;
    outline: 0;
    box-shadow: 0 0 1rem 0;
    color: var(--Primary-Light);
    background-color: var(--White-Strong);
    box-shadow: rgba(var(--Primary-Ghost_RGBA), .25);
}
.page-item:not(:first-child) .page-link {
    margin-left: 0;
}
.page-item.active .page-link {
    z-index: 3;
    color: var(--White);
    background-color: var(--Primary);
    border-color: var(--Primary)
}
.page-item.disabled .page-link {
    pointer-events: none;
    color: var(--Primary-Ghost);
    background-color: var(--White);
    border-color: var(--Default-Soft)
}
.page-item:first-child .page-link {
    border-top-left-radius: .3125rem;
    border-bottom-left-radius: .3125rem;
}
.page-item:last-child .page-link {
    border-top-right-radius: .3125rem;
    border-bottom-right-radius: .3125rem;
}
.pagination-lg .page-link {
    padding: .75rem 1.25rem;
    font-size: 1.25rem;
}
.pagination-lg .page-item:first-child .page-link {
    border-top-left-radius: .75rem;
    border-bottom-left-radius: .75rem;
}
.pagination-lg .page-item:last-child .page-link {
    border-top-right-radius: .75rem;
    border-bottom-right-radius: .75rem;
}
.pagination-sm .page-link {
    padding: .25rem .5rem;
    font-size: .875rem;
}
.pagination-sm .page-item:first-child .page-link {
    border-top-left-radius: .3125rem;
    border-bottom-left-radius: .3125rem;
}
.pagination-sm .page-item:last-child .page-link {
    border-top-right-radius: .3125rem;
    border-bottom-right-radius: .3125rem;
}
/*********************************************** Forms & Inputs ****************************/
.form-label, 
.form-label > .form-label-required {
    margin-bottom: .5rem;
    font-size: .875rem;
    color: var(--Dark-Light);
}
.col-form-label,
.col-form-label > .form-label-required {
    padding-top: .675rem;
    padding-bottom: .675rem;
    margin-bottom: 0;
    font-size: inherit;
    line-height: 1.5;
    color: var(--Dark-Light);
}
.form-label-required::after {
    content: " * ";
    color: var(--Failed-Soft);
}
.form-text {
    margin-top: 1rem;
    font-size: .875em;
    color: var(--Primary-Ghost);
}
.form-control {
    display: block;
    width: 100%;
    padding: .6125rem 1rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    background-clip: padding-box;
    border: .0625rem solid;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .3125rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    color: var(--Dark-Soft);
    background-color: var(--White);
    border-color: rgba(var(--Primary_RGBA), .1);
}
.form-control-rtl {
    direction: rtl;
}
.form-control[type=file] {
    overflow: hidden;
}
.form-control[type=file]:not(:disabled):not([readonly]) {
    cursor: pointer;
}
.form-control:focus {
    outline: 0;
    box-shadow: 0 0 1rem 0 rgba(var(--Primary-Ghost_RGBA), .25);
    color: var(--Dark-Soft);
    background-color: var(--White);
    border-color: rgba(var(--Primary-Ghost_RGBA), .25);
}
.form-control::placeholder,
.form-control::-webkit-input-placeholder,
.form-control::-moz-placeholder,
.form-control:-ms-input-placeholder {
    opacity: 1;
    color: var(--Primary-Ghost);
}
.form-control:disabled:not(.datepicker),
.form-control[readonly]:not(.datepicker) {
    opacity: 0.5 !important;
    background-color: var(--White-Strong);
}
.form-control::file-selector-button {
    padding: .6125rem 1rem;
    margin: -.6125rem -1rem;
    margin-inline-end: 1rem;
    pointer-events: none;
    border-color: inherit;
    border-style: solid;
    border-width: 0;
    border-inline-end-width: .0625rem;
    border-radius: 0;
    transition: all .2s ease-in-out;
    color: var(--Dark-Soft);
    background-color: var(--White);
}
.form-control:hover:not(:disabled):not([readonly])::file-selector-button,
.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
    background-color: var(--Default-Light);
}
.form-control::-webkit-file-upload-button {
    padding: .6125rem 1rem;
    margin: -.6125rem -1rem;
    margin-inline-end: 1rem;
    pointer-events: none;
    border-color: inherit;
    border-style: solid;
    border-width: 0;
    border-inline-end-width: .0625rem;
    border-radius: 0;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    color: var(--Dark-Soft);
    background-color: var(--White);
}
.form-control-plaintext {
    display: block;
    width: 100%;
    padding: .6125rem 0;
    margin-bottom: 0;
    line-height: 1.5;
    background-color: transparent;
    border: solid transparent;
    border-width: .0625rem 0;
    color: var(--Primary-Soft);
}
.form-control-color {
    width: 3rem;
    height: auto;
    padding: .6125rem;
}
.form-control-color:not(:disabled):not([readonly]) {
    cursor: pointer;
}
.form-control-color::-webkit-color-swatch {
    height: 1.5em;
    border-radius: .3125rem;
}
textarea.form-control {
    min-height: calc(1.5em + 1.35rem)
}
.form-select {
    display: block;
    width: 100%;
    padding: .6125rem 3rem .6125rem 1rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    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='%2371869d' 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: right 1rem center;
    background-size: 16px 12px;
    background-color: var(--White);
    border: .0625rem solid rgba(var(--Primary_RGBA), .1);
    border-radius: .3125rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: var(--Dark-Soft);
}
.form-select-sm {
    padding-top: .5rem;
    padding-bottom: .5rem;
    padding-left: 1rem;
    font-size: .875rem;
}

.form-select-lg {
    padding-top: .75rem;
    padding-bottom: .75rem;
    padding-left: 1rem;
    font-size: 1rem;
}
.form-select:focus {
    border-color: rgba(var(--Primary-Ghost_RGBA), .25);
    outline: 0;
    box-shadow: 0 0 1rem 0 rgba(var(--Primary-Ghost_RGBA), .25);
}
.form-select:disabled {
    background-color: var(--White-Strong);
}
.form-select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 var(--Dark-Soft);
}
.form-select[multiple],
.form-select[size]:not([size="1"]) {
    padding-right: 1rem;
    background-image: none;
}
.form-floating {
    position: relative;
}
.form-floating > .form-control,
.form-floating > .form-select {
    height: 3.625rem;
    line-height: 1.25;
}
.form-floating > label {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    padding: 1rem 1rem;
    pointer-events: none;
    border: .0625rem solid transparent;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    transition: opacity .1s ease-in-out, -webkit-transform .1s ease-in-out;
    transition: opacity .1s ease-in-out, transform .1s ease-in-out;
    transition: opacity .1s ease-in-out, transform .1s ease-in-out, -webkit-transform .1s ease-in-out;
}
.form-floating > .form-control {
    padding: 1rem 1rem;
}
.form-floating > .form-control::-webkit-input-placeholder,
.form-floating > .form-control::-moz-placeholder,
.form-floating > .form-control:-ms-input-placeholder,
.form-floating > .form-control::placeholder {
    color: transparent;
}
.form-floating > .form-select,
.form-floating > .form-control:not(:-ms-input-placeholder),
.form-floating > .form-control:focus,
.form-floating > .form-control:not(:placeholder-shown),
.form-floating > .form-control:-webkit-autofill {
    padding-top: 1.625rem;
    padding-bottom: .625rem;
}
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:-ms-input-placeholder) ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-control:-webkit-autofill ~ label, 
.form-floating > .form-select ~ label {
    opacity: .65;
    -webkit-transform: scale(.85) translateY(-.5rem) translateX(.15rem);
    transform: scale(.85) translateY(-.5rem) translateX(.15rem);
}
.form-surface > .form-control,
.form-floating .form-surface > .form-control {
    border: 0 !important;
    border-radius: 0 !important;
    background: none;
    outline: none;
}
.form-surface,
.form-floating.form-surface {
    border-bottom: 1px solid Var(--Default-Strong);
}
.form-surface .form-select {
    background-color: transparent;
}
.form-check {
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5em;
    margin-bottom: .125rem;
}
.form-check .form-check-input {
    float: left;
    margin-left: -1.5em;
}
.form-check-input,
.form-check-label,
label.form-control {
    cursor: pointer;
}
.form-check-input {
    width: 1em;
    height: 1em;
    margin-top: .25em;
    vertical-align: top;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-color: var(--White);
    border: 1px solid rgba(var(--Primary_RGBA), .1);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-print-color-adjust: exact;
}
.form-check-input:checked {
    background-color: var(--Primary);
    border-color: var(--Primary);
}
.form-check-input[type=checkbox] {
    border-radius: .25em;
}
.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[type=radio] {
    border-radius: 50%;
}
.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:active {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}
.form-check-input:focus {
    border-color: rgba(var(--Primary-Ghost_RGBA), .25);
    outline: 0;
    box-shadow: 0 0 1rem 0 rgba(var(--Primary-Ghost_RGBA), .25);
}
.form-check-input:disabled {
    pointer-events: none;
    -webkit-filter: none;
    filter: none;
    opacity: .5;
}
.form-check-input:disabled ~ .form-check-label,
.form-check-input[disabled] ~ .form-check-label,
.form-check-card-input:disabled ~ .form-check-card-label {
    opacity: .5;
}
.form-check-input[type=checkbox]:indeterminate {
    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");
    background-color: var(--Primary);
    border-color: var(--Primary);
}
.form-check-label {
    font-size: .875rem;
    margin-top: .125rem;
    color: Var(--Default-Dark);
}
.form-check .form-check-label {
    margin-top: 0;
}
.form-check-inline {
    display: inline-block;
    margin-right: 1rem;
}
.form-check-bookmark .form-check-input {
    width: 0;
    height: 0;
    margin: 0;
    border: none;
}
.form-check-bookmark-label {
    font-size: 0.9rem;
}
.form-switch {
    padding-left: 2.5em;
    position: relative;
}
.form-switch .form-check-input {
    width: 2em;
    margin-left: -2.5em;
    background-color: var(--Default-Soft);
    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");
    background-position: left center;
    width: 2.8125em;
    height: 1.8125em;
    border-width: 0;
    border-radius: 2em;
    margin-top: -.25em;
    margin-right: .75rem;
    opacity: 0.5;
    transition: background-position .15s ease-in-out;
}
.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='rgba%28140, 152, 164, 0.25%29'/%3e%3c/svg%3e");
}
.form-switch .form-check-input:checked {
    background-position: right center;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
    opacity: 1;
}
.form-switch .form-check-input:active {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}
.form-check-card {
    position: relative;
    height: 100%;
    padding-left: 0;
    margin-right: 0;
}
.form-check-card.card {
    border-width: 0;
}
.form-check-card-input {
    position: absolute;
    left: 0;
    z-index: -1;
    opacity: 0;
}
.form-check-card-label {
    width: 100%;
    height: 100%;
    z-index: 1;
    border: .0625rem solid var(--Default-Soft);
    border-radius: .3125rem;
    cursor: pointer;
    margin-bottom: 0;
}
.form-check-card-label::after {
    position: absolute;
    top: .5rem;
    right: .5rem;
    width: 1rem;
    height: 1rem;
    z-index: 1;
    content: "";
}
.form-check-card-img {
    max-width: 100%;
    height: auto;
    border-radius: .3125rem;
}
.form-check-card-text {
    display: block;
    padding: .3125rem 0;
}
.form-check-card-input:checked ~ .form-check-card-label::after {
    background: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 110 110' fill='%23377dff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M55,110L55,110C24.6,110,0,85.4,0,55v0C0,24.6,24.6,0,55,0h0c30.4,0,55,24.6,55,55v0C110,85.4,85.4,110,55,110zM81.6,31c-1.5-1.4-3.9-1.4-5.4,0.1L43.7,64.3l-8-9.6c-1.8-2.2-4.9-2.6-6.9-0.9c-1.8,1.5-2.1,4.1-0.9,6.2l10.2,17.3c2,3.3,6.7,3.6,9,0.5L82,36.2C83.3,34.7,83.1,32.4,81.6,31z'/%3E%3C/svg%3E") no-repeat right center/1rem 1rem;
}
.form-check-card.disabled .form-check-card-btn {
    cursor: default;
    opacity: .5;
}
.form-check-card.checked .form-check-card-btn {
    color: var(--White);
    background-color: var(--Primary);
    border-color: var(--Primary);
}
.numeric-floating {
    padding: .5rem 1rem;
    border: .0625rem solid rgba(var(--Primary_RGBA), .1);
    border-radius: .3125rem;
    background-color: white;
}
.form-control-numeric {
    border-width: 0;
    height: auto;
    padding: 0;
}
.form-control-numeric:focus {
    box-shadow: none;
}
.col-form-label-lg {
    padding-top: .8125rem;
    padding-bottom: .8125rem;
    font-size: 1rem;
}
.col-form-label-nm {
    padding-top: .5625rem;
    padding-bottom: .5625rem;
    font-size: .875rem;
}
.col-form-label-sm {
    padding-top: .5625rem;
    padding-bottom: .5625rem;
    font-size: .875rem;
}
.form-control-sm {
    min-height: calc(1.5em + 1.125rem);
    padding: .5rem 1rem;
    font-size: .875rem;
    border-radius: .3125rem;
}
.form-control-lg {
    min-height: calc(1.5em + 1.625rem);
    padding: .75rem 1rem;
    font-size: 1rem;
    border-radius: .3125rem;
}
.form-control-sm::file-selector-button {
    padding: .5rem 1rem;
    margin: -.5rem -1rem;
    margin-inline-end: 1rem;
}
.form-control-sm::-webkit-file-upload-button {
    padding: .5rem 1rem;
    margin: -.5rem -1rem;
    margin-inline-end: 1rem;
}
.form-control-lg::file-selector-button {
    padding: .75rem 1rem;
    margin: -.75rem -1rem;
    margin-inline-end: 1rem;
}
.form-control-lg::-webkit-file-upload-button {
    padding: .75rem 1rem;
    margin: -.75rem -1rem;
    margin-inline-end: 1rem;
}
.form-control-plaintext.form-control-lg,
.form-control-plaintext.form-control-sm {
    padding-right: 0;
    padding-left: 0;
}
textarea.form-control-sm {
    min-height: calc(1.5em + 1.125rem);
}
textarea.form-control-lg {
    min-height: calc(1.5em + 1.625rem);
}
.form-uploader {
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}
.form-uploader-label {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    min-height: 100%;
    min-width: 100%;
    cursor: inherit;
    opacity: 0;
}
.form-list-layout {
    position: relative;
}
.form-lists-input input {
    border: 0;
    outline: none;
    width: 100%;
    box-shadow: none !important;
}
.form-lists-input-controls {
    position: relative;
    cursor: text;
    display: flex;
}
.form-lists-input-multi-wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
    flex-wrap: wrap;
    padding: 0px;
}
.form-lists-input-multi-value {
    display: flex;
    align-items: center;
    min-width: 0px;
    box-sizing: border-box;
    border-radius: 2px;
    margin-right: .4rem;
    margin-bottom: .3rem;
    background-color: var(--White-Light);
}
.form-lists-input-multi-value-label {
    color: var(--Default-Ghost);
    font-size: 80%;
    text-overflow: ellipsis;
    white-space: nowrap;
    box-sizing: border-box;
    border-radius: 2px;
    overflow: hidden;
    padding: 3px 3px 3px 6px;
}
.form-lists-input-multi-value-Clear {
    -webkit-box-align: center;
    align-items: center;
    display: flex;
    padding-left: 0.25rem;
    padding-right: 0.35rem;
    padding-top: 0.45rem;
    box-sizing: border-box;
    border-radius: 2px;
    background-color: transparent;
    border: 0;
    outline: none;
    color:var(--Default);
}
.form-lists-input-multi-value-Clear:focus {
    outline: none;
}
.form-lists-input-multi-value-Clear:hover {
    background-color: rgb(var(--Default_RGBA), 0.9);
    color: rgb(var(--Failed-Ghost_RGBA), 0.8);
}
.form-lists-input-tb, .form-lists-input-tb-multi {
    flex: 1;
    width: 100%;
    border: none;
}
.form-lists-input-tb:focus,
.form-lists-input-mask:focus {
    outline: none;
}
.form-lists-input-tb-multi:focus {
    outline: none;
    box-shadow: none;
}
.form-lists-input-mask-wrapper {
    display: flex;
    width: 100%;
}
.form-lists-input-mask {
    display: flex;
    align-items: center;
    flex: 1;
}
.form-lists-input-clear {
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.form-lists-input-loader {
    width: 24px;
    height: 24px;
    background-color: var(--Dark-Ghost);
    border-radius: 100%;
    -webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
    animation: sk-scaleout 1.0s infinite ease-in-out;
}
.form-lists {
    position: absolute;
    z-index: 10;
    min-height: 2rem;
    max-height: 30rem;
    overflow-y: auto;
    width: 100%;
    box-shadow: 0 5px 10px rgba(var(--Dark_RGBA),.2);
    border: 1px solid rgba(var(--Primary_RGBA), .5);
    margin: 0px;
    padding: 0.5rem 2.5rem 0.5rem 0;
    color: var(--Dark-Soft);
    background: var(--White-Light);
}
.form-lists-header,
.form-lists-not-found,
.form-lists-footer {
    padding: .3rem;
    border-top: 1px solid var(--Default-Light);
    border-bottom: 1px solid var(--Default-Light);
    text-align: center;
    font-weight: 700;
}
.form-lists-item {
    padding-top: 0.3rem;
    padding-left: 0.3rem;
    background-color: var(--White-Light);
}
.form-lists-item-active,
.form-lists-item:hover,
.form-lists-item:focus {
    border-top: 1px solid var(--Default-Soft);
    border-bottom: 1px solid var(--Default-Soft);
    cursor: pointer;
    background-color: var(--Primary-Ghost);
    color: var(--White);
}
.input-group {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
}
.input-group > .form-control,
.input-group > .form-select {
    position: relative;
    -ms-flex: 1 1 auto;
    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: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: .6125rem 1rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    white-space: nowrap;
    border: .0625rem solid rgba(var(--Primary_RGBA), .1);
    border-radius: .3125rem;
    color: var(--Primary-Ghost);
    background-color: var(--White);
}
.input-group-merge {
    position: relative;
    /*overflow: hidden;*/
    border: .0625rem solid rgba(var(--Primary_RGBA), .1);
    border-radius: .3125rem;
}
.input-group-merge.form-surface {
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid Var(--Default-Strong);
}
.input-group-merge .input-group-append,
.input-group-merge .input-group-prepend {
    position: absolute;
    top: 1px;
    bottom: 1px;
    z-index: 4;
    background-color: transparent;
}
.input-group-merge.input-group-auto .input-group-append,
.input-group-merge.input-group-auto .input-group-prepend {
    position: relative;
}
.input-group-merge .input-group-append.input-group-text,
.input-group-merge .input-group-prepend.input-group-text {
    border-width: 0;
}
.input-group-merge .input-group-prepend {
    left: 1px;
}
.input-group-merge .input-group-append {
    right: 1px;
}
.input-group-merge .form-control:not([data-validation]),
.input-group-merge .form-select:not([data-validation]) {
    border-width: 0;
}
.input-group-merge .form-control:not(:first-child),
.input-group-merge .form-select:not(:first-child) {
    padding-left: 3.375rem;
    border-top-left-radius: .3125rem;
    border-bottom-left-radius: .3125rem;
}
.input-group-merge.input-group-auto .form-control:not(:first-child),
.input-group-merge.input-group-auto .form-select:not(:first-child) {
    padding-left: 0.575rem;
    border-top-left-radius: .3125rem;
    border-bottom-left-radius: .3125rem;
}
/*.input-group-merge.input-group-auto .form-control:not(:first-child),
.input-group-merge.input-group-long .form-select:not(:first-child) {
    padding-left: 6.375rem;
}*/
.input-group .form-control:first-child,
.input-group .form-select:first-child {
    border-top-right-radius: 0rem;
    border-bottom-right-radius: 0rem;
}
.input-group .form-control:not(:first-child),
.input-group .form-select:not(:first-child) {
    border-top-left-radius: 0rem;
    border-bottom-left-radius: 0rem;
    border-left: 0;
}
.input-group-merge .form-control:not(:last-child),
.input-group-merge .form-select:not(:last-child) {
    padding-right: 3.375rem;
    border-top-right-radius: .3125rem;
    border-bottom-right-radius: .3125rem;
}
.input-group-merge .form-control.icon-end {
    padding-left: 0.5rem;
    padding-right: 3.375rem;
}
.input-group-merge .input-group-append,
.input-group-merge .input-group-prepend {
    display: -ms-flexbox;
    display: flex;
}
.input-group > .input-group-append > .btn,
.input-group > .input-group-append > .input-group-text,
.input-group > .input-group-prepend:first-child > .btn:not(:first-child),
.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child),
.input-group > .input-group-prepend:not(:first-child) > .btn,
.input-group > .input-group-prepend:not(:first-child) > .input-group-text {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.input-group > .input-group-append:last-child > .btn:not(:last-child),
.input-group > .input-group-append:last-child > .input-group-text:not(:last-child),
.input-group > .input-group-append:not(:last-child) > .btn,
.input-group > .input-group-append:not(:last-child) > .input-group-text,
.input-group > .input-group-prepend > .btn,
.input-group > .input-group-prepend > .input-group-text {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.input-group-lg > .btn,
.input-group-lg > .form-control,
.input-group-lg > .form-select,
.input-group-lg > .input-group-text {
    padding: .75rem 1rem;
    font-size: 1rem;
    border-radius: .3125rem;
}
.input-group-sm > .btn,
.input-group-sm > .form-control,
.input-group-sm > .form-select,
.input-group-sm > .input-group-text {
    padding: .5rem 1rem;
    font-size: .875rem;
    border-radius: .3125rem;
}
.input-group-lg > .form-select,
.input-group-sm > .form-select {
    padding-right: 4rem;
}
.input-group-merge .form-control-sm,
.input-group-merge .form-select-sm {
    min-height: calc(1.5em + .875rem);
}
.input-group-merge .form-control-sm:not(:first-child),
.input-group-merge .form-select-sm:not(:first-child) {
    padding-left: 2.375rem;
}
.input-group-merge .form-control-sm:not(:last-child),
.input-group-merge .form-select-sm:not(:last-child) {
    padding-right: 3.375rem;
}
.input-group-merge .form-control-lg,
.input-group-merge .form-select-lg {
    min-height: calc(1.5em + 1.375rem);
}
.cd-typewrite > .wrap {
    border-right: 0.1em solid var(--Default-Light);
}
/************************************ Navigation & Tabs ******************************/
.nav {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
.nav-link {
    display: block;
    color: var(--Primary-Strong);
    padding: .5rem 1rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}
.nav-link:focus,
.nav-link:hover {
    color: var(--Primary-Light);
}
.nav-link.active {
    color: var(--Primary);
}
.nav-link.disabled {
    pointer-events: none;
    cursor: default;
    color: var(--Primary-Ghost);
}
.nav-tabs {
    border-bottom: .1875rem solid rgba(var(--Primary_RGBA), .1);
}
.nav-tabs .nav-link {
    margin-bottom: -.1875rem;
    background: 0 0;
    border: .1875rem solid transparent;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-top-width: 0;
    border-left-width: 0;
    border-right-width: 0;
}
.nav-tabs .nav-link.active {
    font-weight: 600;
}
.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
    border-color: rgba(var(--Primary_RGBA), .1);
    isolation: isolate;
}
.nav-tabs .nav-link.disabled {
    color: var(--Primary-Ghost);
    background-color: transparent;
    border-color: transparent;
}
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: var(--Primary);
    background-color: transparent;
    border-color: var(--Primary);
}
.nav-tabs .dropdown-menu {
    margin-top: -.1875rem;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.nav-pills .nav-link {
    background: 0 0;
    border: 0;
    border-radius: .5rem;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    color: initial;
    background-color: rgba(var(--Primary-Ghost_RGBA), .2);
}
.nav-fill .nav-item,
.nav-fill > .nav-link {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    text-align: center;
}
.nav-justified .nav-item,
.nav-justified > .nav-link {
    flex-basis: 0;
    flex-grow: 1;
    text-align: center;
}
.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
    width: 100%;
}
.nav-subtitle {
    display: block;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .03125rem;
    color: var(--Primary-Ghost);
}
.nav-link.dropdown-toggle {
    -ms-flex-align: center;
    align-items: center;
}
.nav-text:last-child,
.nav-title:last-child {
    margin-bottom: 0;
}
.nav-icon {
    opacity: .7;
    -ms-flex: 0 0 1.9375rem;
    flex: 0 0 1.9375rem;
}
.nav-tabs .nav-item.show .nav-link
.nav-tabs:not(.nav-vertical) .nav-link {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}
.nav-box .nav-link {
    border-radius: .3125rem;
    color: var(--Dark-Soft);
}
.nav-box .nav-link.active {
    box-shadow: 0 12px 15px rgba(var(--Primary-Ghost_RGBA), .1);
    color: var(--Primary);
    background-color: var(--White);
}
.nav-vertical.nav {
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.nav-vertical.nav .nav-item:not(:last-child) {
    margin-right: 0;
}
.nav-vertical.nav .nav-link {
    display: -ms-flexbox;
    display: flex;
    white-space: nowrap;
}
.nav-vertical .nav-subtitle {
    padding-left: 1rem;
}
.nav-vertical.nav-tabs {
    border-bottom-width: 0;
}
.nav-vertical.nav-tabs .nav-link {
    border-top-width: 0;
    border-right-width: 0;
    border-bottom-width: 0;
    border-left: .1875rem solid transparent;
    margin-bottom: 0;
    font-size: .85rem;
}
.nav-vertical.nav-tabs .nav-link.active {
    border-color: var(--Primary);
}
.nav-vertical.nav-tabs .nav-subtitle {
    border-left: .1875rem solid rgba(var(--Primary_RGBA), .1);
}
.nav-vertical.nav.nav-tabs .nav-collapse .nav-link {
    padding-left: 3rem;
}
.nav-vertical.nav.nav-tabs .nav-collapse .nav-collapse .nav-link {
    padding-left: 4.5rem;
}
.nav-vertical.nav-pills .nav-link {
    font-size: .875rem;
    padding: .5rem 1rem;
    margin-bottom: .25rem;
}
.nav-vertical.nav-pills .nav-link.active {
    background-color: rgba(var(--Primary-Ghost_RGBA), .2);
}
.nav-vertical.nav-pills .nav-link.active,
.nav-vertical.nav-pills .nav-link:focus,
.nav-vertical.nav-pills .nav-link:hover {
    color: var(--Primary-Strong);
}
.nav-vertical.nav-pills .nav-collapse {
    position: relative;
    padding-left: 1.9375rem;
}
.nav-vertical.nav-pills .nav-collapse::before {
    position: absolute;
    top: 0;
    left: 1.3125rem;
    width: .125rem;
    height: calc(100% - .25rem);
    content: '';
    background-color: rgba(var(--Primary_RGBA), .1);
}
.nav-vertical.nav-pills .nav-link.dropdown-toggle {
    display: -ms-flexbox;
    display: flex;
    width: 100%;
}
.nav-pills .nav-item {
    margin: .25rem .25rem;
}
.nav-pills .nav-link {
    padding: 1rem 1rem;
}
.nav-pills .nav-link:hover {
    color: var(--White);
}
.nav-pills .nav-link.active:hover,
.nav-pills .show > .nav-link:hover {
    border-color: transparent;
}
.nav-pills-shadow .nav-link.active {
    box-shadow: 0 .1875rem .375rem rgba(var(--Primary-Ghost_RGBA), .25);
}
.nav-segment {
    position: relative;
    padding: .25rem .25rem;
    border-radius: .5rem;
    background-color: var(--White-Strong);
}
.nav-segment:not(.nav-fill) {
    display: -ms-inline-flexbox;
    display: inline-flex;
}
.nav-segment .nav-link {
    font-size: .875rem;
    padding: .5rem 1rem;
    border-radius: .5rem;
    color: var(--Primary-Soft);
}
.nav-segment .nav-link:hover {
    color: var(--Primary);
}
.nav-segment .nav-link.active {
    color: var(--Dark-Soft);
    background-color: var(--White);
    box-shadow: 0 .1875rem .375rem 0 rgba(var(--Primary-Ghost_RGBA), .25);
}
.nav-segment.nav-pills {
    border-radius: 50rem;
}
.nav-segment.nav-pills .nav-link {
    border-radius: 50rem;
}
.nav-link-badge {
    margin-left: auto;
}
.tab-wrapper {
    border: 1px solid var(--Default-Soft);
    box-shadow: 0 0 15px rgba(var(--Primary-Ghost_RGBA), .125);
    border-radius: .5rem;
}
.tab-content > .tab-pane {
    display: none;
}
.tab-content > .active {
    display: block;
}
.card-nav-tab-content-height .tab-pane {
    max-height: 40rem;
    overflow-y: auto;
}
.tab-lg .nav-tabs {
    font-size: larger;
}
.nav-sm .nav-link {
    font-size: .9375rem;
    padding-right: .25rem;
    padding-left: .25rem;
}
.nav-sm.nav-pills .nav-link {
    padding: .75rem .75rem;
}
.nav-lg .nav-link {
    font-size: 1rem;
}
.nav-lg.nav-pills .nav-link {
    padding: 1.5rem 1.5rem;
}
/********************************* Ranges *****************************************/
input[type=range] {
    -webkit-appearance: none;
    background: transparent;
    cursor: pointer;
    width: 100%;
}
input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    border: 1px solid var(--Default-Light);
    height: 14px;
    width: 14px;
    border-radius: 50%;
    /*background: var(--Primary);*/
    /*box-shadow: 1px 1px 1px var(--Default-Light), 0px 0px 1px var(--Dark-Light);*/
    margin-top: 0.2rem;
}
input[type=range]:-moz-range-thumb {
    border: 1px solid var(--Default-Light);
    height: 14px;
    width: 14px;
    border-radius: 50%;
    /*  background: var(--Primary);
        box-shadow: 1px 1px 1px var(--Dark-Light), 0px 0px 1px var(--Dark-Light);*/
    margin-top: 0.2rem;
}
input[type=range]::-ms-thumb {
    border: 1px solid var(--Default-Light);
    height: 14px;
    width: 14px;
    border-radius: 50%;
    /* background: var(--Primary);
        box-shadow: 1px 1px 1px var(--Dark-Light), 0px 0px 1px var(--Dark-Light);*/
    margin-top: 0.2rem;
}
input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 14px;
    cursor: pointer;
    /*background: var(--Default-Light);*/
    border-radius: 0.5rem;
    border: none;
}
input[type=range]:-moz-range-track {        
    width: 100%;
    height: 14px;
    cursor: pointer;
    /*background: var(--Default-Light);*/
    border-radius: 0.5rem;
    border: none;
}
input[type=range]::-ms-track {
    width: 100%;
    height: 14px;
    cursor: pointer;
    /*background: var(--Default-Light);*/
    border-radius: 0.5rem;
    border: none;
}
.range-wrapper-multiple,
.range-wrapper {
    position: relative;
    width: 100%;
}
.range-wrapper-multiple > input[type='range'] {
    padding: 0;
    margin: 0;
    display: inline-block;
    vertical-align: top;
}
.range-wrapper-multiple > input[type='range'][data-range^="LowRange"]::-webkit-slider-thumb {
    position: relative;
    z-index: 2;
}
.range-wrapper-multiple > input[type='range'][data-range^="HighRange"]::-webkit-slider-thumb {
    transform: scale(1);
    z-index: 1;
}
.range-wrapper-multiple > input[type='range'][data-range^="LowRange"] {
    position: absolute;
}
.range-wrapper-multiple > input[type='range'][data-range^="HighRange"] {
    position: relative;
}
.range-value {
    position: absolute;
    top: -180%;
}
.range-value span {
    width: auto;
    min-width: 30px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    background: var(--Secondary-Ghost);
    color: var(--White);
    font-size: 12px;
    display: block;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    border-radius: 6px;
    padding-left: 5px;
    padding-right: 5px;
}
.range-value span:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-top: 10px solid var(--Secondary-Ghost);
    border-left: 5px solid transparent;          
    border-right: 5px solid transparent;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    margin-top: -1px;
}
.range-thumb-xs > input[type=range]::-webkit-slider-thumb,
.range-thumb-xs > input[type=range]:-moz-range-thumb,
.range-thumb-xs > input[type=range]::-ms-thumb {
    height: 12px;
    width: 12px;
}
.range-xs > input[type=range]::-webkit-slider-runnable-track,
.range-xs > input[type=range]:-moz-range-track,
.range-xs > input[type=range]::-ms-track {
    height: 12px;
}
.range-thumb-sm > input[type=range]::-webkit-slider-thumb,
.range-thumb-sm > input[type=range]:-moz-range-thumb,
.range-thumb-sm > input[type=range]::-ms-thumb {
    height: 14px;
    width: 14px;
}
.range-sm > input[type=range]::-webkit-slider-runnable-track,
.range-sm > input[type=range]:-moz-range-track,
.range-sm > input[type=range]::-ms-track {
    height: 14px;
}
.range-thumb-md > input[type=range]::-webkit-slider-thumb,
.range-thumb-md > input[type=range]:-moz-range-thumb,
.range-thumb-md > input[type=range]::-ms-thumb {
    height: 16px;
    width: 16px;
}
.range-md > input[type=range]::-webkit-slider-runnable-track,
.range-md > input[type=range]:-moz-range-track,
.range-md > input[type=range]::-ms-track {
    height: 16px;
}
.range-thumb-lg > input[type=range]::-webkit-slider-thumb,
.range-thumb-lg > input[type=range]:-moz-range-thumb,
.range-thumb-lg > input[type=range]::-ms-thumb {
    height: 24px;
    width: 24px;
}
.range-lg > input[type=range]::-webkit-slider-runnable-track,
.range-lg > input[type=range]:-moz-range-track,
.range-lg > input[type=range]::-ms-track {
    height: 24px;
}
.range-thumb-xl > input[type=range]::-webkit-slider-thumb,
.range-thumb-xl > input[type=range]:-moz-range-thumb,
.range-thumb-xl > input[type=range]::-ms-thumb {
    height: 28px;
    width: 28px;
}
.range-xl > input[type=range]::-webkit-slider-runnable-track,
.range-xl > input[type=range]:-moz-range-track,
.range-xl > input[type=range]::-ms-track {
    height: 28px;
}
.range-thumb-xxl > input[type=range]::-webkit-slider-thumb,
.range-thumb-xxl > input[type=range]:-moz-range-thumb,
.range-thumb-xxl > input[type=range]::-ms-thumb {
    height: 32px;
    width: 32px;
}
.range-xxl > input[type=range]::-webkit-slider-runnable-track,
.range-xxl > input[type=range]:-moz-range-track,
.range-xxl > input[type=range]::-ms-track {
    height: 32px;
}
/*************************************** Tooltip *********************************************/
[data-tooltip] {
    position: relative;
    width: auto;
}
[data-tooltip]::before,
[data-tooltip]::after {
    text-transform: none;
    font-size: .9em;
    line-height: 1;
    user-select: none;
    pointer-events: none;
    position: absolute;
    display: none;
    opacity: 0;
}
[data-tooltip]::after {
    box-shadow: rgba(var(--Dark_RGBA), 0.35);
    color: var(--White);
    background: var(--Default-Dark);
}
[data-tooltip]::before {
    content: '';
    border: 5px solid transparent;
    z-index: 1036;
}
[data-tooltip]::after {
    content: attr(data-tooltip);
    font-family: Helvetica, sans-serif;
    text-align: center;
    min-width: 3em;       
    max-width: 21em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 1ch 1.5ch;
    border-radius: .3ch;
    box-shadow: 0 1em 2em -.5em;
    z-index: 1000;
} 
[data-tooltip]:hover::before,
[data-tooltip]:hover::after {
    display: block;
    width: auto;
}
[data-tooltip='']::before,
[data-tooltip='']::after {
    display: none !important;
}
[data-tooltip]:not([data-direction])::before,
[data-tooltip][data-direction^="up"]::before {
    bottom: 100%;
    border-bottom-width: 0;
    border-top-color: var(--Default-Dark);
}
[data-tooltip]:not([data-direction])::after,
[data-tooltip][data-direction^="up"]::after {
    bottom: calc(100% + 5px);
}
[data-tooltip]:not([data-direction])::before,
[data-tooltip]:not([data-direction])::after,
[data-tooltip][data-direction^="up"]::before,
[data-tooltip][data-direction^="up"]::after {
    left: 50%;
    transform: translate(-50%, -.5em);
}
[data-tooltip][data-direction^="down"]::before {
    top: 100%;
    border-top-width: 0;
    border-bottom-color: var(--Default-Dark);
}
[data-tooltip][data-direction^="down"]::after {
    top: calc(100% + 5px);
}
[data-tooltip][data-direction^="down"]::before,
[data-tooltip][data-direction^="down"]::after {
    left: 50%;
    transform: translate(-50%, .5em);
}
[data-tooltip][data-direction^="left"]::before {
    top: 50%;
    border-right-width: 0;
    left: calc(0em - 5px);
    transform: translate(-.5em, -50%);
    border-left-color: var(--Default-Dark);
}
[data-tooltip][data-direction^="left"]::after {
    top: 50%;
    right: calc(100% + 5px);
    transform: translate(-0.5em, -50%);
}
[data-tooltip][data-direction^="right"]::before {
    top: 50%;
    border-left-width: 0;
    right: calc(0em - 5px);
    transform: translate(0.5em, -50%);
    border-right-color: var(--Default-Dark);
}
[data-tooltip][data-direction^="right"]::after {
    top: 50%;
    left: calc(100% + 5px);
    transform: translate(.5em, -50%);
}
[data-tooltip]:not([data-direction]):hover::before,
[data-tooltip]:not([data-direction]):hover::after,
[data-tooltip][data-direction^="up"]:hover::before,
[data-tooltip][data-direction^="up"]:hover::after,
[data-tooltip][data-direction^="down"]:hover::before,
[data-tooltip][data-direction^="down"]:hover::after {
    animation: Forward-Vertical 300ms ease-out forwards;
}
[data-tooltip][data-direction^="left"]:hover::before,
[data-tooltip][data-direction^="left"]:hover::after,
[data-tooltip][data-direction^="right"]:hover::before,
[data-tooltip][data-direction^="right"]:hover::after {
    animation: Forward-Horizontal 300ms ease-out forwards;
}
/*********************************** Vectors *****************************************/
.bg-vector-up,
.bg-vector-bottom {
    display: none;
}
.bg-vector-up {
    position: absolute;
    right: -8.75rem;
    top: -5.125rem;
}
.bg-vector-bottom {
    position: absolute;
    left: -6.25rem;
    bottom: -2.4375rem;
}
.bg-card-shape {
    background-position: 0 100%;
}
/*********************************** Bread Crumbs *****************************************/
.breadcrumb {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0 0;
    margin-bottom: 1rem;
    list-style: none;
    background-color: transparent;
    font-size: 0.9rem;
}
.breadcrumb-item + .breadcrumb-item {
    padding-left: .5rem;
}
.breadcrumb-item + .breadcrumb-item::before {
    float: left;
    padding-right: .5rem;
    content: "/";
}
.breadcrumb-item .breadcrumb-link {
    color: rgba(var(--Primary_RGBA), .8);
}
.breadcrumb-item.active {
    color: rgba(var(--Primary_RGBA), .4);
}
/*********************************** Cards *****************************************/
.card {
    border-width: 0;
    box-shadow: 0 .375rem 1.5rem 0 rgba(var(--Default-Soft), .125);
}
.card-header {
    border-bottom-width: 0;
    border-width: 1px;
}
.card .card .card-header {
    border-width: 0;
}
.card-body-height {
    height: 21.25rem;
    overflow: hidden;
    overflow-y: auto;
}
.card-footer {
    border-top-width: 0;
}
.card-subtitle {
    display: block;
    text-transform: uppercase;
    font-size: .8125rem;
    margin-top: .35rem;
    margin-bottom: .45rem;
}
.card-title {
    margin-bottom: 0;
}
.card-title:not(:last-child) {
    margin-bottom: .5rem;
}
.card-header-title {
    margin-bottom: 0;
}
.card-header-title + .card-text {
    margin-top: .25rem;
}
.card-link {
    font-weight: 600;
    white-space: nowrap;
}
.card-ghost {
    background-color: transparent;
    box-shadow: none;
}
.card-centered .card-body {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-direction: column;
    flex-direction: column;
}
.card-info-link {
    display: inline-block;
    text-align: center;
    border-width: .0625rem;
    box-shadow: none;
    border-radius: 50rem;
}
.card-info-link .card-body {
    padding: .8125rem 1.25rem;
}
.card-pinned {
    position: relative;
    display: block;
}
.card-pinned-top-start {
    position: absolute;
    top: 1rem;
    left: 1rem;
}
.card-pinned-top-end {
    position: absolute;
    top: 1rem;
    right: 1rem;
}
.card-pinned-bottom-start {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
}
.card-pinned-bottom-end {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
}
.card-flush {
    box-shadow: none;
}
.card-flush .card-body,
.card-flush .card-footer,
.card-flush .card-header,
.card-flush .collapse .card-body {
    padding-right: 0;
    padding-left: 0;
}
.card-flush > .card-img-top {
    border-bottom-right-radius: .5rem;
    border-bottom-left-radius: .5rem;
}
.card-flush.card-stretched-vertical .card-body .card-footer {
    padding-bottom: 0;
}
.card-stretched-vertical .card-body {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
}
.card-stretched-vertical .card-body .card-footer {
    padding: 0;
    margin-top: auto;
}
/******* Dividers & Lines *******/
.divider-none,
.divider-start,
.divider-end,
.divider-center {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}
.divider-none::after,
.divider-none::before,
.divider-start::after,
.divider-end::before,
.divider-center::after,
.divider-center::before {
    -ms-flex: 1 1 0%;
    flex: 1 1 0%;
    border-top: .0625rem solid;
    border-top-color: var(--Default-Soft);
    margin-top: .0625rem;
    content: "";
}
.divider-start::after,
.divider-center::after {
    margin-left: 1.5rem;
}
.divider-end::before,
.divider-center::before {
    margin-right: 1.5rem;
}
.col-divider > :not(:first-child) {
    position: relative;
}
.col-divider > :not(:first-child)::before {
    position: absolute;
    top: 0;
    left: 50%;
    width: calc(100% - 1.5rem);
    height: .0625rem;
    background-color: rgba(var(--Default-Light), .1);
    content: '';
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.col-divider > * {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}
.col-divider > :first-child {
    padding-top: 0;
}
.col-divider > :last-child {
    padding-bottom: 0;
}
/************************************** Drop Down **************************************/
.dropdown-menu {
    z-index: 1000;
    min-width: 10rem;
    padding: .5rem .5rem;
    margin: 0;
    margin-top: .3125rem;
    font-size: 1rem;
    text-align: left;
    list-style: none;
    background-clip: padding-box;
    border: 0 solid rgba(var(--Dark_RGBA), .15);
    border-radius: .5rem;
    box-shadow: 0 .75rem 1rem rgba(var(--White-Soft_RGBA), .3);
    color: var(--Primary);
    background-color: var(--White);
}
.dropdown-toggle {
    white-space: nowrap;
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}
.dropdown-toggle::after {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    background-image: url("data:image/svg+xml,%3csvg width='24' height='24' viewBox='0 0 24 24' fill='%23677788' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.72,15.78a.75.75,0,0,1-.53.22h-.38a.77.77,0,0,1-.53-.22L6.15,10.64a.5.5,0,0,1,0-.71l.71-.71a.49.49,0,0,1,.7,0L12,13.67l4.44-4.45a.5.5,0,0,1,.71,0l.7.71a.5.5,0,0,1,0,.71Z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 1rem 1rem;
    margin-left: auto;
    padding-left: 1.25rem;
    content: '';
}
.dropdown-menu .dropdown-item.dropdown-toggle::after {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}
.dropdown-toggle[aria-collapsed=true]::after {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
}
.dropdown-toggle .dropdown-item-icon {
    width: 1.75rem;
}
.dropdown-item {
    display: block;
    width: 100%;
    padding: .5rem 1rem;
    clear: both;
    font-weight: 400;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    color: var(--Primary-Soft);
    border: 0;
    font-size: .875rem;
    border-radius: .3125rem;
}
.dropdown-item:not(:last-child) {
    margin-bottom: .25rem;
}
.dropdown-item.active,
.dropdown-item:active,
.dropdown-item.active:active:focus,
.dropdown-item.active:not(:focus):not(:active) {
    text-decoration: none;
    color: var(--Dark-Soft);
    background-color: rgba(var(--Primary-Ghost_RGBA), .2);
}
.dropdown-item:focus,
.dropdown-item:hover {
    color: var(--Secondary-Dark);
    background-color: rgba(var(--Primary-Ghost_RGBA), .2);
}
.dropdown-item.disabled,
.dropdown-item:disabled {
    pointer-events: none;
    color: var(--Secondary-Soft);
    background-color: transparent;
}
.dropdown-item-icon {
    display: inline-block;
    opacity: .7;
    width: 1.5rem;
    color: var(--Primary-Soft)
}
.dropdown-divider {
    height: 0;
    margin: .5rem 0;
    overflow: hidden;
    border-top: 1px solid;
    border-top-color: var(--Default-Soft);
}
/*************************************** Popover ***************************************/
.cd-popover-layout {
    position: relative;
    width: auto;
}
.cd-popover {
    background-clip: padding-box;
    border: 1px solid rgba(var(--Dark_RGBA), 0.2);
    border-radius: 0.3rem;
    font-size: 0.875rem;
    z-index: 1070;
    display: block;
    width: 276px;
    position: absolute;
    background-color: white;
}
.cd-popover-header {
    padding: 0.5rem 1rem;
    margin-bottom: 0;
    font-size: 0.9rem;
    border-bottom: 1px solid;
    border-top-left-radius: calc(0.3rem - 1px);
    border-top-right-radius: calc(0.3rem - 1px);
    background-color: var(--White-Soft);
    border-bottom-color: var(--Default-Soft);
}
.cd-popover-header:empty {
    display: none;
}
.cd-popover-body {
    padding: 1rem 1rem;
    color: var(--Dark-Soft);
}
.cd-popover .arrow {
    position: absolute;
    display: block;
    width: 1rem;
    height: 0.5rem;
}
.cd-popover .arrow::before, .cd-popover .arrow::after {
    position: absolute;
    display: block;
    content: "";
    border-color: transparent;
    border-style: solid;
}
.cd-popover[data-direction^="bottom"] {
    top: 100%;
    margin-top: 8px;
}
.cd-popover[data-direction^="bottom"] .arrow {
    top: calc(-0.5rem - 1px);
    margin-left: 19px;
}
.cd-popover[data-direction^="bottom"] .arrow::before {
    top: 0;
    border-width: 0 0.5rem 0.5rem 0.5rem;
    border-bottom-color: rgba(var(--Dark_RGBA), 0.25);
}
.cd-popover[data-direction^="bottom"] .arrow::after {
    top: 1px;
    border-width: 0 0.5rem 0.5rem 0.5rem;
    border-bottom-color: var(--White);
}
.cd-popover[data-direction^="top"] {
    bottom: 100%;
    margin-bottom: 8px;
}
.cd-popover[data-direction^="top"] .arrow {
    bottom: -0.51rem;
    margin-left: 19px;
}
.cd-popover[data-direction^="top"] .arrow::before {
    bottom: 0;
    border-width: 0.5rem 0.5rem 0;
    border-top-color: rgba(var(--Dark_RGBA), 0.25);
}
.cd-popover[data-direction^="top"] .arrow::after {
    bottom: 1px;
    border-width: 0.5rem 0.5rem 0;
    border-top-color: var(--White);
}
.cd-popover[data-direction^="start"] {
    right: 100%;
    top: -40px;
    margin-right: 8px;
}
.cd-popover[data-direction^="start"] .arrow {
    right: calc(-0.5rem - 1px);
    width: 0.5rem;
    top: 50px;
    height: 1rem;
}
.cd-popover[data-direction^="start"] .arrow::before {
    right: 0;
    border-width: 0.5rem 0 0.5rem 0.5rem;
    border-left-color: rgba(var(--Dark_RGBA), 0.25);
}
.cd-popover[data-direction^="start"] .arrow::after {
    right: 1px;
    border-width: 0.5rem 0 0.5rem 0.5rem;
    border-left-color: var(--White);
}
.cd-popover[data-direction^="end"] {
    /*left: calc(6rem - 1px);*/
    top: -40px;
    transform: translateX(35%);
}
.cd-popover[data-direction^="end"] .arrow {
    left: calc(-0.5rem - 1px);
    width: 0.5rem;
    top: 50px;
    height: 1rem;
}
.cd-popover[data-direction^="end"] .arrow::before {
    left: 0;
    border-width: 0.5rem 0.5rem 0.5rem 0;
    border-right-color: rgba(var(--Dark_RGBA), 0.25);
}
.cd-popover[data-direction^="end"] .arrow::after {
    left: 1px;
    border-width: 0.5rem 0.5rem 0.5rem 0;
    border-right-color: var(--White);
}
/******************************************** Tag Box ********************************************/
.tagbox {
    position: relative;
}
.tagbox-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}   
.tagbox-box > input {
    flex: 1 1 auto;
    border: none;
    outline: none;
    width: 1px;
}
.tagbox-box > span > span {
    cursor: pointer;
}
.tagbox-dropdown {
    position: absolute;
    top: 100%;
    left: -1px;
    right: -1px;
    display: none;
}
.tagbox-dropdown:hover .tagbox-item-selected {
    background-color: initial;
}
.tagbox-dropdown > div {
    cursor: pointer;
}
.tagbox-open > .tagbox-dropdown {
    display: block;
}
.tagbox.default {
    border: 1px solid var(--Default);
}
.tagbox-box > span.default {
    background-color: var(--Default);
    padding: 2px 4px;
    margin: 0 5px;
}
.tagbox-dropdown.default {
    border: 1px solid var(--Default);
    background-color: var(--White);
}
.tagbox-dropdown > div.default:hover {
    background-color: var(--Default) !important;
}
div.default.tagbox-item-selected {
    background-color: var(--Default);
}
.tagbox.form-control {
    padding: 0.3rem;
}
.tagbox-box > span.badge {
    font-size: 0.9rem;
    margin-right: 0.3rem;
    font-weight: normal;
}
/******************************************** Grid *************************************************/
.grid {
    margin-bottom: 1rem;
    vertical-align: top;
    table-layout: fixed;
    /*display: block;*/
    width: 100%;
}
.grid-full {
    height: auto;
    min-height: 60vh;
}
.grid > :not(caption) > * > * {
    padding: .75rem .75rem;
    box-shadow: inset 0 0 0 9999px;
}
.grid-bordered > :not(caption) > * > * {
    border-bottom-width: .0625rem;
    /*border-width: .0625rem;*/
}
.grid > tbody {
    vertical-align: inherit;
    font-size: 0.9rem;
}
.grid > thead {
    vertical-align: bottom;
}
.grid > thead th {
    border-bottom: .125rem solid;
}
.grid > thead th i {
    font-size: 0.8rem;
}
.grid > thead.grid-merge-header th:not(:empty) {
    border-left: .0625rem solid;
    border-right: .0625rem solid;
}
.grid > thead.subheader th {
}
.grid > thead.subheader {
    /*border: .0625rem solid;*/
}
.grid > :not(:last-child) > :last-child > * {
    border-bottom-color: currentColor;
}
.grid-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.grid > tbody > tr.subitem > td:not(.option) {
    /*padding-left: 3.5em;*/
    font-size: 0.9em;
}
.grid > tbody > tr.subitem > td.option {
    border-bottom-width: 0 !important;
}
/*.grid > tbody > tr > td.option {
    border-bottom-width: 0 !important;
}*/
/***************************************** Drag Drop *************************************/
.drag-draggable {
    cursor: move;
    cursor: -webkit-grabbing;
    cursor: -moz-grabbing;
    cursor: grabbing;
}
.drag-spacing {
    padding: 0.35rem;
    background-color: var(--White-Light);
}
.drag-spacing:focus {
    padding: 6px;
    background-color: var(--Dark-Soft);
}
.drag-spacing-dragged-over {
    padding: 20px;
    background-color: var(--White-Soft);
}
.drag-in-transit no-pointer-events {
    background-color: var(--Primary-Ghost);
}
.drag-inprogess {
    opacity: 0.8;
}
.drag-dragged-over {
    opacity: 0.9;
    background-color: var(--White-Ghost);
    animation: Blinker 1s linear infinite;
}
/******************************************** DatePicker ********************************************/
.daterangepicker {
    position: absolute;
    color: inherit;
    border-radius: 4px;
    border: 1px solid var(--Default-Ghost);
    background-color: var(--White-Light);
    width: 278px;
    max-width: none;
    padding: 0;
    margin-top: 7px;
    /*top: 100px;*/
    left: 20px;
    z-index: 3001;
    font-family: arial;
    font-size: 15px;
    line-height: 1em;
}
.daterangepicker:before, .daterangepicker:after {
    position: absolute;
    display: inline-block;
    border-bottom-color: rgba(var(--Dark_RGBA), 0.2);
    content: '';
}
.daterangepicker:before {
    top: -7px;
    border-right: 7px solid transparent;
    border-left: 7px solid transparent;
    border-bottom: 7px solid var(--Default);
}
.daterangepicker:after {
    top: -6px;
    border-right: 6px solid transparent;
    border-bottom: 6px solid var(--White);
    border-left: 6px solid transparent;
}
.daterangepicker.opensleft:before {
    right: 9px;
}
.daterangepicker.opensleft:after {
    right: 10px;
}
.daterangepicker.openscenter:before,
.daterangepicker.openscenter:after {
    left: 0;
    right: 0;
    width: 0;
    margin-left: auto;
    margin-right: auto;
}
.daterangepicker.opensright:before {
    left: 9px;
}
.daterangepicker.opensright:after {
    left: 10px;
}
.daterangepicker.drop-up {
    margin-top: -7px;
}
.daterangepicker.drop-up:before {
    top: initial;
    bottom: -7px;
    border-bottom: initial;
    border-top: 7px solid var(--Default);
}
.daterangepicker.drop-up:after {
    top: initial;
    bottom: -6px;
    border-bottom: initial;
    border-top: 6px solid var(--White);
}
.daterangepicker.single .daterangepicker .ranges, .daterangepicker.single .drp-calendar {
    float: none;
}
.daterangepicker.single .drp-selected,
.daterangepicker.auto-apply .drp-buttons {
    display: none;
}
.daterangepicker.show-calendar .drp-calendar,
.daterangepicker.show-calendar .drp-buttons {
    display: block;
}
.daterangepicker .drp-calendar {
    display: none;
    max-width: 270px;
}
.daterangepicker .drp-calendar.left {
    padding: 8px 0 8px 8px;
}
.daterangepicker .drp-calendar.right {
    padding: 8px;
}
.daterangepicker .drp-calendar.single .calendar-table {
    border: none;
}
.daterangepicker .calendar-table .next span, .daterangepicker .calendar-table .prev span {
    border: solid black;
    border-width: 0 2px 2px 0;
    border-radius: 0;
    color: var(--White);
    display: inline-block;
    padding: 3px;
}
.daterangepicker .calendar-table .next span {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}
.daterangepicker .calendar-table .prev span {
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
}
.daterangepicker .calendar-table th,
.daterangepicker .calendar-table td {
    white-space: nowrap;
    text-align: center;
    vertical-align: middle;
    min-width: 32px;
    width: 32px;
    height: 24px;
    line-height: 24px;
    font-size: 12px;
    border-radius: 4px;
    border: 1px solid transparent;
    white-space: nowrap;
    cursor: pointer;    
}
.daterangepicker .calendar-table {
    border: 1px solid var(--White);
    background-color: var(--White);
    border-radius: 4px;
}
.daterangepicker .calendar-table table {
    width: 100%;
    margin: 0;
    border-spacing: 0;
    border-collapse: collapse;
}
.daterangepicker td.available:hover,
.daterangepicker th.available:hover {
    color: inherit;
    background-color: var(--Default-Light);
    border-color: transparent;
}
.daterangepicker td.week,
.daterangepicker th.week {
    font-size: 80%;
    color: var(--Default);
}
.daterangepicker td.active,
.daterangepicker td.active:hover {
    background-color: var(--Primary);
    border-color: transparent;
    color: var(--White);
}
.daterangepicker td.off,
.daterangepicker td.off.in-range,
.daterangepicker td.off.start-date,
.daterangepicker td.off.end-date {
    background-color: var(--White);
    border-color: transparent;
    color: var(--Dark-Strong);
}
.daterangepicker td.in-range {
    border-radius: 0;
    background-color: var(--Primary-Light);
    border-color: transparent;
    color: var(--White-Dark);
}
.daterangepicker td.start-date {
    border-radius: 4px 0 0 4px;
}
.daterangepicker td.end-date {
    border-radius: 0 4px 4px 0;
}
.daterangepicker td.start-date.end-date {
    border-radius: 4px;
}
.daterangepicker th.month {
    width: auto;
}
.daterangepicker td.disabled, 
.daterangepicker option.disabled {
    cursor: not-allowed;
    text-decoration: line-through;
    color: var(--Dark-Strong);
}
.daterangepicker select.monthselect,
.daterangepicker select.yearselect {
    font-size: 12px;
    padding: 1px;
    height: auto;
    margin: 0;
    cursor: default;
}
.daterangepicker select.monthselect {
    margin-right: 2%;
    width: 56%;
}
.daterangepicker select.yearselect {
    width: 40%;
}
.daterangepicker select.hourselect,
.daterangepicker select.minuteselect,
.daterangepicker select.secondselect,
.daterangepicker select.ampmselect {
    width: 50px;
    margin: 0 auto;
    border: 1px solid var(--Default-Light);
    background: var(--Default-Light);
    padding: 2px;
    outline: 0;
    font-size: 12px;
}
.daterangepicker .calendar-time {
    text-align: center;
    margin: 4px auto 0 auto;
    line-height: 30px;
    position: relative;
}
.daterangepicker .calendar-time select.disabled {
    cursor: not-allowed;
    color: var(--Default);
}
.daterangepicker .drp-buttons {
    clear: both;
    text-align: right;
    padding: 8px;
    border-top: 1px solid var(--Default-Ghost);
    display: none;
    line-height: 12px;
    vertical-align: middle;
}
.daterangepicker .drp-selected {
    display: inline-block;
    font-size: 12px;
    padding-right: 8px;
}
.daterangepicker .drp-buttons .btn {
    margin-left: 8px;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 8px;
}
.daterangepicker.show-ranges.single.rtl .drp-calendar.left,
.daterangepicker.show-ranges.rtl .drp-calendar.right {
    border-right: 1px solid var(--Default-Ghost);
}
.daterangepicker.show-ranges.single.ltr .drp-calendar.left,
.daterangepicker.show-ranges.ltr .drp-calendar.left {
    border-left: 1px solid var(--Default-Ghost);
}
.daterangepicker .ranges {
    float: none;
    text-align: left;
    margin: 0;
}
.daterangepicker.show-calendar .ranges {
    margin-top: 8px;
}
.daterangepicker .ranges ul {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    width: 100%;
}
.daterangepicker .ranges li {
    font-size: 12px;
    padding: 8px 12px;
    cursor: pointer;
}
.daterangepicker .ranges li:hover {
    background-color: var(--Default-Light);
}
.daterangepicker .ranges li.active {
    background-color: var(--Primary);
    color: var(--White);
}
/********* ******* ******* ******* ******* Slider ************ ******* ******* ******* ******* ****/
.slider-container {
    padding: 0;
    width: 90%;
    display: block;
    margin: 0 auto;
    position: relative;
}
.slider-container * {
    user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}
.slider-inner {
    width: 100%;
    height: 100%;
}
.slider-inner-multiple {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
}
.slider-inner-multiple .slider-item {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
}
.slider-item {
    /*top: 0;*/
    /*width: 100%;
    height: 100%;*/
    /*display: block;*/
}
.slider-indicators-container {
    width: 100%;
    bottom: 9px;
    height: 11px;
    display: block;
    position: absolute;
    text-align: center;
}
.slider-indicators-container ol li {
    top: -5px;
    width: 11px;
    height: 11px;
    margin: 0 4px;
    position: relative;
    border-radius: 100%;
    display: inline-block;
    background-color: rgba(var(--Dark_RGBA), 0.6);
}
.slider-indicators-container ol li:hover {
    cursor: pointer;
    background-color: rgba(var(--Dark_RGBA), 0.8);
}
.slider-arrow-container {
    display: block;
}
.slider-control-prev,
.slider-control-next {
    top: 50%;
    position: absolute;
}
.slider-control-prev {
    left: 10px;
}
.slider-control-next {
    right: 10px;
}
/************************************************* Plates & Steps *************************************************/
.plate {
    overflow: hidden;
}
.plate-container {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    height: 100%;
    transition: all ease-in-out 200ms;
}
.plate-page {
    transition: all ease-in-out 200ms;
    overflow: hidden;
    flex-grow: 0;
    flex-shrink: 0;
}
.step {
    position: relative;
    list-style: none;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 0;
    margin-right: calc(1.5rem / -2);
    margin-left: calc(1.5rem / -2);
}
.step.step-dashed .step-icon::after {
    border-left-style: dashed;
}
.step-icon-border {
    border: .125rem solid rgba(var(--Primary_RGBA), .1);
}
.step-title {
    display: block;
    color: var(--Dark-Soft);
    font-weight: 600;
}
.step-text:last-child {
    color: var(--Primary-Soft);
    margin-bottom: 0;
}
.step-border-last-0 .step-item:last-child .step-icon::after {
    display: none;
}
.step .step-item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    flex-basis: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: .75rem;
    padding-left: .75rem;
    margin-bottom: 2.25rem;
}
.step-item-between .step-item:last-child {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
}
.step .step-content-wrapper {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
}
.step .step-content {
    -ms-flex: 1;
    flex: 1;
}
.step-item.collapse:not(.show),
.step-item .step-title-description {
    display: none;
}
.step-item.focus .step-title-description {
    display: block;
}
.step .step-avatar {
    font-size: 1rem;
    font-weight: 600;
    width: 3.125rem;
    height: 3.125rem;
    border-radius: 50%;
    margin-right: 1rem;
}
.step .step-avatar-img {
    max-width: 100%;
    height: auto;
    border-radius: 50%;
}
.step .step-avatar::after {
    position: absolute;
    top: 3.875rem;
    left: 1.5625rem;
    height: calc(100% - 2.375rem);
    border-left: .125rem solid rgba(var(--Primary_RGBA), .1);
    content: "";
}
.step-avatar-xs .step-avatar,
.step-avatar-xs.step-avatar {
    font-size: .75rem;
    width: 1.75rem;
    height: 1.75rem;
}
.step-avatar-xs .step-avatar::after,
.step-avatar-xs.step-avatar::after {
    top: 2.5rem;
    left: .8125rem;
    width: 1.625rem;
    height: calc(100% - 1rem);
}
.step-avatar-xs .step-divider::after {
    left: .875rem;
}
.step-avatar-sm .step-avatar,
.step-avatar-sm.step-avatar {
    font-size: .8125rem;
    width: 2.5rem;
    height: 2.5rem;
}
.step-avatar-sm .step-avatar::after,
.step-avatar-sm.step-avatar::after {
    top: 3.25rem;
    left: 1.1875rem;
    width: 1.625rem;
    height: calc(100% - 1.75rem);
}
.step-avatar-sm .step-divider::after {
    left: 1.25rem;
}
.step-avatar-lg .step-avatar,
.step-avatar-lg.step-avatar {
    font-size: 1.25rem;
    width: 5.5rem;
    height: 5.5rem;
}
.step-avatar-lg .step-avatar::after,
.step-avatar-lg.step-avatar::after {
    top: 6.25rem;
    left: 2.6875rem;
    width: 1.625rem;
    height: calc(100% - 4.75rem);
}
.step-avatar-lg .step-divider::after {
    left: 2.75rem;
}
.step-divider {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    text-transform: uppercase;
    height: 1rem;
    font-size: .8125rem;
    font-weight: 600;
}
.step-divider::after {
    position: absolute;
    top: 1.75rem;
    left: 1.5625rem;
    height: calc(100% - .25rem);
    border-left: .125rem solid rgba(var(--Primary_RGBA), .1);
    content: "";
}
.step .step-icon {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    width: 3.125rem;
    height: 3.125rem;
    border-radius: 50%;
    margin-right: 1rem
}
.step .step-icon::after {
    position: absolute;
    top: 3.875rem;
    left: 1.5625rem;
    height: calc(100% - 2.375rem);
    border-left: .125rem solid rgba(var(--Primary_RGBA), .1);
    content: "";
}
.step .step-icon-pseudo::before {
    display: block;
    width: .25rem;
    height: .25rem;
    background-color: var(--Secondary-Soft);
    border-radius: 50%;
    content: "";
}
.step-icon-xs .step-icon,
.step-icon-xs.step-icon {
    font-size: .75rem;
    width: 1.75rem;
    height: 1.75rem;
}
.step-icon-xs .step-icon::after,
.step-icon-xs.step-icon::after {
    top: 2.5rem;
    left: .8125rem;
    width: 1.625rem;
    height: calc(100% - 1rem);
}
.step-icon-xs .step-divider::after {
    left: .875rem;
}
.step-icon-sm .step-icon,
.step-icon-sm.step-icon {
    font-size: .8125rem;
    width: 2.5rem;
    height: 2.5rem;
}
.step-icon-sm .step-icon::after,
.step-icon-sm.step-icon::after {
    top: 3.25rem;
    left: 1.1875rem;
    width: 1.625rem;
    height: calc(100% - 1.75rem);
}
.step-icon-sm .step-divider::after {
    left: 1.25rem;
}
.step-icon-lg .step-icon,
.step-icon-lg.step-icon {
    font-size: 1.25rem;
    width: 5.5rem;
    height: 5.5rem;
}
.step-icon-lg .step-icon::after,
.step-icon-lg.step-icon::after {
    top: 6.25rem;
    left: 2.6875rem;
    width: 1.625rem;
    height: calc(100% - 4.75rem);
}
.step-icon-lg .step-divider::after {
    left: 2.75rem;
}
.step-inline .step-content-wrapper {
    -ms-flex-align: center;
    align-items: center;
}
.step-inline .step-item:last-child .step-title::after {
    display: none;
}
.step-inline .step-title {
    display: inline-block;
}
/********************************************* Nested Tree *********************************************/
.nested-tree .nested-tree {
    margin-left: 1.25rem;
}
.nested-tree-hidden {
    display: none;
}
.nested-tree-icon {
    float: left;
}
.nested-tree-title {
    margin-left: 1.25rem;
}
.nested-tree-cursor-pointer {
    cursor: pointer;
}
/************************************************* Codes ***************************************/
:not(pre) > code[class*="language-"],
pre[class*="language-"] {
    padding: 1.5rem;
    margin-bottom: 1rem;
    background-color: var(--Dark-Soft);
    color: var(--White-Dark);
}
.tab-content :not(pre) > code[class*="language-"],
.tab-content pre[class*="language-"] {
    border-top-right-radius: 0 !important;
    border-top-left-radius: 0 !important;
    border-bottom-right-radius: .3125rem;
    border-bottom-left-radius: .3125rem;
}
code[class*="language-"],
pre[class*="language-"] {
    color: white;
    background: none;
    text-shadow: 0 -.1em .2em black;
    font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
    font-size: 1em;
    text-align: left;
    white-space: pre;
    word-spacing: normal;
    word-break: normal;
    word-wrap: normal;
    line-height: 1.5;
    -o-tab-size: 4;
    tab-size: 4;
    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
}
pre[class*="language-"] {
    padding: 1em;
    margin: .5em 0;
    overflow: auto;
}
div.code-toolbar {
    position: relative;
    padding: 1.5rem;
    background-color: var(--Dark-Soft);
    color: var(--White-Dark);
}
div.code-toolbar > .toolbar {
    position: absolute;
    top: .3em;
    right: .2em;
    transition: opacity .3s ease-in-out;
    opacity: 0;
    z-index: 10;
}
div.code-toolbar:hover > .toolbar,
div.code-toolbar:focus-within > .toolbar {
    opacity: 1;
}
div.code-toolbar > .toolbar .toolbar-item {
    display: inline-block;
}
div.code-toolbar > .toolbar a {
    padding: .3rem .7rem !important;
    background-color: rgba(var(--White_RGBA), .3);
    box-shadow: none;
    transition: all .2s ease-in-out;
}
div.code-toolbar > .toolbar button {
    background: 0 0;
    border: 0;
    color: inherit;
    font: inherit;
    line-height: normal;
    overflow: visible;
    padding: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}
div.code-toolbar > .toolbar a,    
div.code-toolbar > .toolbar button,
div.code-toolbar > .toolbar span {
    font-size: .8em;
    padding: 0 .5em;
    color: var(--Default);
    background: rgba(224, 224, 224, .2);
    box-shadow: 0 2px 0 0 rgba(var(--Dark_RGBA), .2);
    border-radius: .5em;
}
div.code-toolbar > .toolbar a:hover {
    background-color: var(--Primary-Light);
    color: var(--White) !important;
}
div.code-toolbar > .toolbar > .toolbar-item > a,
div.code-toolbar > .toolbar > .toolbar-item > button,
div.code-toolbar > .toolbar > .toolbar-item > span {
    color: var(--Default);
    font-size: .8em;
    padding: 0 .5em;
    background: var(--Default-Ghost);
    background: rgba(224, 224, 224, 0.2);
    box-shadow: 0 2px 0 0 rgba(var(--Dark_RGBA),0.2);
    border-radius: .5em;
}
div.code-toolbar > .toolbar a:focus,
div.code-toolbar > .toolbar a:hover,
div.code-toolbar > .toolbar button:focus,
div.code-toolbar > .toolbar button:hover,
div.code-toolbar > .toolbar span:focus,
div.code-toolbar > .toolbar span:hover,
div.code-toolbar > .toolbar > .toolbar-item > a:hover,
div.code-toolbar > .toolbar > .toolbar-item > a:focus,
div.code-toolbar > .toolbar > .toolbar-item > button:hover,
div.code-toolbar > .toolbar > .toolbar-item > button:focus,
div.code-toolbar > .toolbar > .toolbar-item > span:hover,
div.code-toolbar > .toolbar > .toolbar-item > span:focus {
    color: inherit;
    text-decoration: none;
}
div.code-toolbar > .toolbar > .toolbar-item {
    display: inline-block;
}
div.code-toolbar > .toolbar > .toolbar-item > a {
    cursor: pointer;
}
div.code-toolbar > .toolbar > .toolbar-item > button {
    background: none;
    border: 0;
    color: inherit;
    font: inherit;
    line-height: normal;
    overflow: visible;
    padding: 0;
    -webkit-user-select: none; /* for button */
    -moz-user-select: none;
    -ms-user-select: none;
}
.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string {
    color: var(--Info-Strong);
    background: transparent;
}
.token.punctuation,
.token.property,
.token.tag,
.token.constant,
.token.symbol,
.token.deleted {
    color: var(--Secondary-Light);
}
.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
    color: var(--Warning-Soft);
}
.token.atrule,
.token.attr-value,
.token.function {
    color: var(--Dark-Ghost);
}
.token.regex,
.token.important {
    color: var(--Dark-Light);
}
.token.deleted {
    color: var(--Failed-Light);
}
.token.comment {
    color: var(--Success-Ghost);
}
.token.punctuation,
.token.namespace {
    opacity: .7;
}
.token.important,
.token.bold {
    font-weight: bold;
}
.token.italic {
    font-style: italic;
}
.token.entity {
    cursor: help;
}
pre[data-line] {
    position: relative;
    padding: 1em 0 1em 3em;
}
.line-highlight {
    position: absolute;
    left: 0;
    right: 0;
    padding: inherit 0;
    margin-top: 1em;
    background: hsla(24, 20%, 50%,.08);
    background: linear-gradient(to right, hsla(24, 20%, 50%,.1) 70%, hsla(24, 20%, 50%,0));
    pointer-events: none;
    line-height: inherit;
    white-space: pre;
}
.line-highlight:before,
.line-highlight[data-end]:after {
    content: attr(data-start);
    position: absolute;
    top: .4em;
    left: .6em;
    min-width: 1em;
    padding: 0 .5em;
    background-color: hsla(24, 20%, 50%,.4);
    color: hsl(24, 20%, 95%);
    font: bold 65%/1.5 sans-serif;
    text-align: center;
    vertical-align: .3em;
    border-radius: 999px;
    text-shadow: none;
    box-shadow: 0 1px white;
}
.line-highlight[data-end]:after {
    content: attr(data-end);
    top: auto;
    bottom: .4em;
}
.line-numbers .line-highlight:before,
.line-numbers .line-highlight:after {
    content: none;
}
pre[id].linkable-line-numbers span.line-numbers-rows {
    pointer-events: all;
}
pre[id].linkable-line-numbers span.line-numbers-rows > span:before {
    cursor: pointer;
}
pre[id].linkable-line-numbers span.line-numbers-rows > span:hover:before {
    background-color: rgba(var(--Dark-Ghost_RGBA), .2);
}
pre[class*="language-"].line-numbers {
    position: relative;
    padding-left: 3.8em;
    counter-reset: linenumber;
}
pre[class*="language-"].line-numbers > code {
    position: relative;
    white-space: inherit;
}
.line-numbers .line-numbers-rows {
    position: absolute;
    pointer-events: none;
    top: 0;
    font-size: 100%;
    left: -3.8em;
    width: 3em; /* works for line-numbers below 1000 lines */
    letter-spacing: -1px;
    border-right: 1px solid var(--Dark-Strong);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.line-numbers-rows > span {
    display: block;
    counter-increment: linenumber;
}
.line-numbers-rows > span:before {
    content: counter(linenumber);
    color: var(--Dark-Strong);
    display: block;
    padding-right: 0.8em;
    text-align: right;
}
span.inline-color-wrapper {
    background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyIDIiPjxwYXRoIGZpbGw9ImdyYXkiIGQ9Ik0wIDBoMnYySDB6Ii8+PHBhdGggZmlsbD0id2hpdGUiIGQ9Ik0wIDBoMXYxSDB6TTEgMWgxdjFIMXoiLz48L3N2Zz4=");
    /* This is to prevent visual glitches where one pixel from the repeating pattern could be seen. */
    background-position: center;
    background-size: 110%;
    display: inline-block;
    height: 1.333ch;
    width: 1.333ch;
    margin: 0 .333ch;
    box-sizing: border-box;
    border: 1px solid white;
    outline: 1px solid rgba(var(--Dark_RGBA),.5);
    overflow: hidden;
}
span.inline-color {
    display: block;
    /* To prevent visual glitches again */
    height: 120%;
    width: 120%;
}
/*********************************** Devices **************************************/
.devices {
    max-width: 1140px;
    position: relative;
    overflow: hidden;
    padding: 0 .75rem 7rem;
    margin-right: -.75rem;
    margin-left: -.75rem;
}
.devices .device-mobile {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    margin-left: 5rem;
    margin-bottom: 5rem;
}
.devices .device-browser {
    margin-left: auto;
    margin-right: 5rem;
}
.devices-shadow-none .device-browser-frame,
.devices-shadow-none .device-mobile-frame {
    box-shadow: none;
}
.devices-wrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: end;
    align-items: flex-end;
    grid-gap: 1rem;
}
.devices-rotated {
    -webkit-transform: rotate(-22deg);
    transform: rotate(-22deg);
}
.devices-rotated .devices-rotated-body {
    -webkit-transform: translate3d(15%, 0, 0);
    transform: translate3d(15%, 0, 0);
}
.devices-top-start-50 {
    position: absolute;
    top: 0;
    left: 50%;
}
.device-mobile {
    position: relative;
    z-index: 1;
    display: block;
    max-width: 100%;
    width: 11rem;
    height: auto;
    max-height: 23rem;
}
.device-mobile-frame {
    background: var(--White-Strong);
    box-shadow: 0 2.75rem 5.5rem -3.5rem rgba(var(--Primary-Ghost_RGBA), .5), 0 2rem 4rem -2rem rgba(var(--Primary_RGBA), .3), inset 0 -.1875rem .3125rem 0 rgba(151, 164, 175, .5);
    border-radius: 2rem;
    /*padding: .3125rem*/
}
.device-mobile-img {
    max-width: 100%;
    height: auto;
    border-radius: 1.6rem;
}
.device-tablet {
    position: relative;
    z-index: 1;
    display: block;
    max-width: 100%;
    width: 50rem;
    height: auto;
}
.device-tablet-frame {
    background: var(--White-Strong);
    box-shadow: 0 2.75rem 5.5rem -3.5rem rgba(var(--Primary-Ghost_RGBA), .5), 0 2rem 4rem -2rem rgba(var(--Primary_RGBA), .3), inset 0 -.1875rem .3125rem 0 rgba(151, 164, 175, .5);
    border-radius: 1rem;
    padding: .3125rem;
}
.device-tablet-img {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
}
.device-tablet-header {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    max-width: 50rem;
    background: var(--White);
    border-bottom: .0625rem solid var(--Default-Ghost);
    border-top-left-radius: .5rem;
    border-top-right-radius: .5rem;
    padding: .5rem 6.5rem;
    top: 1.8rem;
}
.device-tablet-header-btn-list {
    display: -ms-flexbox;
    display: flex;
    grid-gap: .25rem;
    position: absolute;
    top: calc(50% - .25rem);
    left: 1rem;
}
.device-tablet-header-btn-list-btn {
    width: .5rem;
    height: .5rem;
    background-color: var(--Default-Soft);
    border-radius: 50%;
}
.device-tablet-header-browser-bar {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
    color: var(--Primary-Soft);
    background-color: var(--Default-Soft);
    font-size: .5rem;
    border-radius: .125rem;
}
.device-vertical-tablet {
    position: relative;
    z-index: 1;
    max-width: 100%;
    width: 30rem;
    height: auto;
}
.device-vertical-tablet-frame {
    background: var(--White-Strong);
    box-shadow: 0 2.75rem 5.5rem -3.5rem rgba(var(--Primary-Ghost_RGBA), .5), 0 2rem 4rem -2rem rgba(var(--Primary_RGBA), .3), inset 0 -.1875rem .3125rem 0 rgba(151, 164, 175, .5);
    border-radius: 1rem;
    padding: .3125rem;
}
.device-vertical-tablet-img {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
}
.device-browser {
    position: relative;
    z-index: 1;
    display: block;
    max-width: 100%;
    width: 50rem;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}
.device-browser-frame {
    background: var(--White);
    box-shadow: 0 2.75rem 5.5rem -3.5rem rgba(var(--Primary-Ghost_RGBA), .5), 0 2rem 4rem -2rem rgba(var(--Primary_RGBA), .3);
    border-bottom-right-radius: .5rem;
    border-bottom-left-radius: .5rem;
}
.device-browser-img {
    max-width: 100%;
    height: auto;
    border-bottom-right-radius: .5rem;
    border-bottom-left-radius: .5rem;
}
.device-browser-header {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    max-width: 50rem;
    background: var(--White);
    border-bottom: .0625rem solid var(--Default-Ghost);
    border-top-left-radius: .5rem;
    border-top-right-radius: .5rem;
    padding: .5rem 6.5rem;
}
.device-browser-header-btn-list {
    display: -ms-flexbox;
    display: flex;
    grid-gap: .25rem;
    position: absolute;
    top: calc(50% - .25rem);
    left: 1rem;
}
.device-browser-header-btn-list-btn {
    width: .5rem;
    height: .5rem;
    background-color: var(--Default-Soft);
    border-radius: 50%;
}
.device-browser-header-browser-bar {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
    color: var(--Primary-Soft);
    background-color: var(--Default-Soft);
    font-size: .5rem;
    border-radius: .125rem;
}
.device-browser-lg {
    width: 60rem;
}
.device-browser-lg .device-browser-header {
    max-width: 60rem;
}