

//
// Tabs
//

.nav-tabs {
  // scss-docs-start nav-tabs-css-vars
  --#{$prefix}nav-tabs-border-width: #{$nav-tabs-border-width};
  --#{$prefix}nav-tabs-border-color: #{$nav-tabs-border-color};
  --#{$prefix}nav-tabs-border-radius: #{$nav-tabs-border-radius};
  --#{$prefix}nav-tabs-link-hover-border-color: #{$nav-tabs-link-hover-border-color};
  --#{$prefix}nav-tabs-link-active-color: #{$nav-tabs-link-active-color};
  --#{$prefix}nav-tabs-link-active-bg: #{$nav-tabs-link-active-bg};
  --#{$prefix}nav-tabs-link-active-border-color: #{$nav-tabs-link-active-border-color};
  // scss-docs-end nav-tabs-css-vars

  border-bottom: var(--#{$prefix}nav-tabs-border-width) solid var(--#{$prefix}nav-tabs-border-color);

  .nav-link {
    margin-bottom: calc(-1 * var(--#{$prefix}nav-tabs-border-width)); // stylelint-disable-line function-disallowed-list
    border: var(--#{$prefix}nav-tabs-border-width) solid transparent;
    @include border-top-radius(var(--#{$prefix}nav-tabs-border-radius));

    &:hover,
    &:focus {
      // Prevents active .nav-link tab overlapping focus outline of previous/next .nav-link
      isolation: isolate;
      border-color: var(--#{$prefix}nav-tabs-link-hover-border-color);
    }

    &.disabled,
    &:disabled {
      color: var(--#{$prefix}nav-link-disabled-color);
      background-color: transparent;
      border-color: transparent;
    }
  }

  .nav-link.active,
  .nav-item.show .nav-link {
    color: var(--#{$prefix}nav-tabs-link-active-color);
    background-color: var(--#{$prefix}nav-tabs-link-active-bg);
    border-color: var(--#{$prefix}nav-tabs-link-active-border-color);
  }

  .dropdown-menu {
    // Make dropdown border overlap tab border
    margin-top: calc(-1 * var(--#{$prefix}nav-tabs-border-width)); // stylelint-disable-line function-disallowed-list
    // Remove the top rounded corners here since there is a hard edge above the menu
    @include border-top-radius(0);
  }
}


//
// Pills
//

.nav-pills {
  // scss-docs-start nav-pills-css-vars
  --#{$prefix}nav-pills-border-radius: #{$nav-pills-border-radius};
  --#{$prefix}nav-pills-link-active-color: #{$nav-pills-link-active-color};
  --#{$prefix}nav-pills-link-active-bg: #{$nav-pills-link-active-bg};
  // scss-docs-end nav-pills-css-vars

  .nav-link {
    @include border-radius(var(--#{$prefix}nav-pills-border-radius));

    &:disabled {
      color: var(--#{$prefix}nav-link-disabled-color);
      background-color: transparent;
      border-color: transparent;
    }
  }

  .nav-link.active,
  .show > .nav-link {
    color: var(--#{$prefix}nav-pills-link-active-color);
    @include gradient-bg(var(--#{$prefix}nav-pills-link-active-bg));
  }
}


//
// Underline
//

.nav-underline {
  // scss-docs-start nav-underline-css-vars
  --#{$prefix}nav-underline-gap: #{$nav-underline-gap};
  --#{$prefix}nav-underline-border-width: #{$nav-underline-border-width};
  --#{$prefix}nav-underline-link-active-color: #{$nav-underline-link-active-color};
  // scss-docs-end nav-underline-css-vars

  gap: var(--#{$prefix}nav-underline-gap);

  .nav-link {
    padding-right: 0;
    padding-left: 0;
    border-bottom: var(--#{$prefix}nav-underline-border-width) solid transparent;

    &:hover,
    &:focus {
      border-bottom-color: currentcolor;
    }
  }

  .nav-link.active,
  .show > .nav-link {
    font-weight: $font-weight-bold;
    color: var(--#{$prefix}nav-underline-link-active-color);
    border-bottom-color: currentcolor;
  }
}


//
// Justified variants
//

.nav-fill {
  > .nav-link,
  .nav-item {
    flex: 1 1 auto;
    text-align: center;
  }
}

.nav-justified {
  > .nav-link,
  .nav-item {
    flex-basis: 0;
    flex-grow: 1;
    text-align: center;
  }
}

.nav-fill,
.nav-justified {
  .nav-item .nav-link {
    width: 100%; // Make sure button will grow
  }
}


// Tabbable tabs
//
// Hide tabbable panes to start, show them when `.active`

.tab-content {
  > .tab-pane {
    display: none;
  }
  > .active {
    display: block;
  }
}


.navbar-expand .offcanvas,
.visible {
    visibility: visible !important;
}
.mem-download {
    min-width: 200px;
}
.dropdown-toggle::after,
.status-bar .marketStatus .mktStatus .name .arrow::after,
.status-bar .statusBox ul li .priceBox .arrow::after {
    font-family: "Font Awesome 5 Free";
    vertical-align: middle;
    font-size: 0.85rem;
}

body {
    margin: 0;
    font-family: var(--bs-body-font-family);
    font-size: var(--bs-body-font-size);
    font-weight: var(--bs-body-font-weight);
    line-height: var(--bs-body-line-height);
    color: var(--bs-body-color);
    text-align: var(--bs-body-text-align);
    background-color: var(--bs-body-bg);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}
hr {
    margin: 1rem 0;
    color: inherit;
    background-color: currentColor;
    border: 0;
}
.card > hr,
.dropdown-toggle:empty::after,
.dropend .dropdown-toggle:empty::after,
.dropstart .dropdown-toggle:empty::after,
.dropup .dropdown-toggle:empty::after,
dd {
    margin-left: 0;
}
hr:not([size]) {
    height: 1px;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
}
address,
dl,
ol,
p,
ul {
    margin-bottom: 1rem;
}
.table td:first-child,
dt,
kbd kbd {
    font-weight: 700;
}
address,
legend {
    line-height: inherit;
}
.h1,
h1 {
    font-size: calc(1.375rem + 1.5vw);
}
.h2,
h2 {
    font-size: calc(1.325rem + 0.9vw);
}
.h3,
h3 {
    font-size: calc(1.3rem + 0.6vw);
}
.h4,
h4 {
    font-size: calc(1.275rem + 0.3vw);
}
.h5,
h5 {
    font-size: 1.25rem;
}
.h6,
.header .mainmenu .mainmenu-list.auto-dropdown .nav-item .dropdown-menu > li .dropdown-item,
h6 {
    font-size: 1rem;
}
dl,
ol,
p,
ul {
    margin-top: 0;
}
abbr[data-bs-original-title],
abbr[title] {
    text-decoration: underline dotted;
    cursor: help;
    text-decoration-skip-ink: none;
}
.btn,
.form-control-color:not(:disabled):not([readonly]),
.form-control[type="file"]:not(:disabled):not([readonly]),
[role="button"],
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled),
button:not(:disabled),
summary {
    cursor: pointer;
}
address {
    font-style: normal;
}
ol,
ul {
    padding-left: 2rem;
}
.accordion-header,
.blockquote > :last-child,
.card-text:last-child,
ol ol,
ol ul,
ul ol,
ul ul {
    margin-bottom: 0;
}
blockquote,
figure {
    margin: 0 0 1rem;
}
.blockquote,
.blockquote-footer,
pre {
    margin-bottom: 1rem;
}
b,
strong {
    font-weight: bolder;
}
.small,
small {
    font-size: 0.875em;
}
.mark,
mark {
    padding: 0.2em;
    background-color: #fcf8e3;
}
sub,
sup {
    font-size: 0.75em;
    line-height: 0;
}
.btn,
.navbar-toggler-icon,
img,
svg {
    vertical-align: middle;
}
sub {
    bottom: -0.25em;
}
sup {
    top: -0.5em;
}
a {
    color: #7d2deb;
    text-decoration: underline;
}
.btn-link:hover,
.link-primary:focus,
.link-primary:hover,
a:hover {
    color: #6424bc;
}
.get-to-know-us-section a,
a > code,
pre code {
    color: inherit;
}
a:not([href]):not([class]),
a:not([href]):not([class]):hover {
    color: inherit;
    text-decoration: none;
}
code,
kbd,
pre,
samp {
    font-family: var(--bs-font-monospace);
    font-size: 1em;
    direction: ltr;
    unicode-bidi: bidi-override;
}
code,
kbd,
pre {
    font-size: 0.875em;
}
pre {
    display: block;
    margin-top: 0;
    overflow: auto;
}
pre code {
    font-size: inherit;
    word-break: normal;
}
code {
    color: #d63384;
}
kbd {
    padding: 0.2rem 0.4rem;
    color: #fff;
    background-color: #212529;
    border-radius: 0.2rem;
}
kbd kbd {
    padding: 0;
    font-size: 1em;
}
table {
    caption-side: bottom;
    border-collapse: collapse;
}
caption {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    color: #6c757d;
    text-align: left;
}
th {
    text-align: inherit;
    text-align: -webkit-match-parent;
}
tbody,
td,
tfoot,
th,
thead,
tr {
    border: 0 solid;
    border-color: inherit;
}
.figure,
.list-inline-item,
a.line,
label,
output {
    display: inline-block;
}
.accordion-flush .accordion-item .accordion-button,
.list-group-flush,
button {
    border-radius: 0;
}
fieldset,
iframe {
    border: 0;
}
.form-range:focus,
button:focus:not(:focus-visible) {
    outline: 0;
}
button,
input,
optgroup,
select,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}
button,
select {
    text-transform: none;
}
select {
    word-wrap: normal;
}
.carousel-indicators .active,
select:disabled {
    opacity: 1;
}
[list]::-webkit-calendar-picker-indicator {
    display: none;
}
[type="button"],
[type="reset"],
[type="submit"],
button {
    -webkit-appearance: button;
}
::-moz-focus-inner {
    padding: 0;
    border-style: none;
}
textarea {
    resize: vertical;
}
fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
}
legend {
    float: left;
    width: 100%;
    padding: 0;
    font-size: calc(1.275rem + 0.3vw);
}
legend + * {
    clear: left;
}
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-year-field {
    padding: 0;
}
::-webkit-inner-spin-button {
    height: auto;
}
[type="search"] {
    outline-offset: -2px;
    -webkit-appearance: textfield;
}
::-webkit-search-decoration {
    -webkit-appearance: none;
}
::-webkit-color-swatch-wrapper {
    padding: 0;
}
::file-selector-button {
    font: inherit;
}
::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button;
}
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
    font-weight: 300;
    line-height: 1.2;
}
summary {
    display: list-item;
}
.d-none,
.header .nav-link.dropdown-toggle .icon-close,
.header .nav-link.dropdown-toggle.show .search-icon,
.header .nav-link.dropdown-toggle.show .search-text,
[hidden] {
    display: none !important;
}
.hstack,
.row,
.vstack {
    display: flex;
}
.lead {
    font-size: 1.25rem;
    font-weight: 300;
}
.display-1 {
    font-size: calc(1.625rem + 4.5vw);
}
.display-2 {
    font-size: calc(1.575rem + 3.9vw);
}
.display-3 {
    font-size: calc(1.525rem + 3.3vw);
}
.display-4 {
    font-size: calc(1.475rem + 2.7vw);
}
.display-5 {
    font-size: calc(1.425rem + 2.1vw);
}
.display-6 {
    font-size: calc(1.375rem + 1.5vw);
}
.list-inline,
.list-unstyled {
    padding-left: 0;
    list-style: none;
}
.list-inline-item:not(:last-child) {
    margin-right: 0.5rem;
}
.initialism {
    font-size: 0.875em;
    text-transform: uppercase;
}
.blockquote {
    font-size: 1.25rem;
}
.blockquote-footer,
.figure-caption {
    font-size: 0.875em;
    color: #6c757d;
}
.blockquote-footer {
    margin-top: -1rem;
}
.blockquote-footer::before {
    content: "\2014\00A0";
}
.img-thumbnail {
    padding: 0.25rem;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
}
.figure-img {
    margin-bottom: 0.5rem;
    line-height: 1;
}
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    width: 100%;
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
    margin-right: auto;
    margin-left: auto;
}
.row {
    --bs-gutter-x: 1.5rem;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-0.5 * var(--bs-gutter-x));
    margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-top: var(--bs-gutter-y);
}
.col {
    flex: 1 0 0%;
}
.col-auto,
.row-cols-auto > * {
    flex: 0 0 auto;
    width: auto;
}
.col-12,
.row-cols-1 > * {
    flex: 0 0 auto;
    width: 100%;
}
.col-6,
.row-cols-2 > * {
    flex: 0 0 auto;
    width: 50%;
}
.col-4,
.row-cols-3 > * {
    flex: 0 0 auto;
    width: 33.33333%;
}
.col-3,
.row-cols-4 > * {
    flex: 0 0 auto;
    width: 25%;
}
.row-cols-5 > * {
    flex: 0 0 auto;
    width: 20%;
}
.col-2,
.row-cols-6 > * {
    flex: 0 0 auto;
    width: 16.66667%;
}
.col-1,
.col-5 {
    flex: 0 0 auto;
}
.col-1 {
    width: 8.33333%;
}
.col-5 {
    width: 41.66667%;
}
.col-7,
.col-8 {
    flex: 0 0 auto;
}
.col-7 {
    width: 58.33333%;
}
.col-8 {
    width: 66.66667%;
}
.col-9 {
    flex: 0 0 auto;
    width: 75%;
}
.col-10 {
    flex: 0 0 auto;
    width: 83.33333%;
}
.col-11 {
    flex: 0 0 auto;
    width: 91.66667%;
}
.offset-1 {
    margin-left: 8.33333%;
}
.offset-2 {
    margin-left: 16.66667%;
}
.offset-3 {
    margin-left: 25%;
}
.offset-4 {
    margin-left: 33.33333%;
}
.offset-5 {
    margin-left: 41.66667%;
}
.offset-6 {
    margin-left: 50%;
}
.offset-7 {
    margin-left: 58.33333%;
}
.offset-8 {
    margin-left: 66.66667%;
}
.offset-9 {
    margin-left: 75%;
}
.offset-10 {
    margin-left: 83.33333%;
}
.offset-11 {
    margin-left: 91.66667%;
}
.g-0,
.gx-0 {
    --bs-gutter-x: 0;
}
.g-1,
.gx-1 {
    --bs-gutter-x: 0.25rem;
}
.g-1,
.gy-1 {
    --bs-gutter-y: 0.25rem;
}
.g-2,
.gx-2 {
    --bs-gutter-x: 0.5rem;
}
.g-2,
.gy-2 {
    --bs-gutter-y: 0.5rem;
}
.g-3,
.gx-3 {
    --bs-gutter-x: 1rem;
}
.g-3,
.gy-3 {
    --bs-gutter-y: 1rem;
}
.g-4,
.gx-4 {
    --bs-gutter-x: 1.5rem;
}
.g-4,
.gy-4 {
    --bs-gutter-y: 1.5rem;
}
.g-5,
.gx-5 {
    --bs-gutter-x: 2rem;
}
.g-5,
.gy-5 {
    --bs-gutter-y: 2rem;
}
.g-6,
.gx-6 {
    --bs-gutter-x: 3rem;
}
.g-6,
.gy-6 {
    --bs-gutter-y: 3rem;
}
.g-7,
.gx-7 {
    --bs-gutter-x: 4rem;
}
.g-7,
.gy-7 {
    --bs-gutter-y: 4rem;
}
.g-8,
.gx-8 {
    --bs-gutter-x: 5rem;
}
.g-8,
.gy-8 {
    --bs-gutter-y: 5rem;
}
.g-9,
.gx-9 {
    --bs-gutter-x: 6rem;
}
.g-9,
.gy-9 {
    --bs-gutter-y: 6rem;
}
.g-10,
.gx-10 {
    --bs-gutter-x: 7rem;
}
.g-10,
.gy-10 {
    --bs-gutter-y: 7rem;
}
.g-11,
.gx-11 {
    --bs-gutter-x: 8rem;
}
.g-11,
.gy-11 {
    --bs-gutter-y: 8rem;
}
.g-12,
.gx-12 {
    --bs-gutter-x: 9rem;
}
.g-12,
.gy-12 {
    --bs-gutter-y: 9rem;
}
.g-13,
.gx-13 {
    --bs-gutter-x: 10rem;
}
.g-13,
.gy-13 {
    --bs-gutter-y: 10rem;
}
.g-14,
.gx-14 {
    --bs-gutter-x: 11rem;
}
.g-14,
.gy-14 {
    --bs-gutter-y: 11rem;
}
.g-15,
.gx-15 {
    --bs-gutter-x: 12rem;
}
.g-15,
.gy-15 {
    --bs-gutter-y: 12rem;
}
.carousel-inner::after,
.clearfix::after {
    display: block;
    clear: both;
    content: "";
}
.btn.btn-white.line:hover::after,
.carousel-control-next:active,
.carousel-control-next:focus,
.carousel-control-next:hover,
.carousel-control-prev:active,
.carousel-control-prev:focus,
.carousel-control-prev:hover,
.header .mainmenu .icon-close:hover,
.link-primary,
.pagination .page-item.forward .page-link,
.pagination .page-item.previus .page-link,
.primary-color {
    color: #7d2deb;
}
.line:hover i,
.link-secondary {
    color: #9358e9;
}
.link-secondary:focus,
.link-secondary:hover {
    color: #a979ed;
}
.link-success {
    color: #198754;
}
.link-success:focus,
.link-success:hover {
    color: #146c43;
}
.link-info {
    color: #0dcaf0;
}
.link-info:focus,
.link-info:hover {
    color: #3dd5f3;
}
.link-warning {
    color: #ffc107;
}
.link-warning:focus,
.link-warning:hover {
    color: #ffcd39;
}
.link-danger {
    color: #dc3545;
}
.link-danger:focus,
.link-danger:hover {
    color: #b02a37;
}
.link-light {
    color: #f8f9fa;
}
.link-light:focus,
.link-light:hover {
    color: #f9fafb;
}
.link-dark {
    color: #001f33;
}
.link-dark:focus,
.link-dark:hover {
    color: #001929;
}
.btn,
.btn:hover {
    color: #212529;
}
.ratio {
    width: 100%;
}
.ratio::before {
    display: block;
    padding-top: var(--bs-aspect-ratio);
    content: "";
}
.ratio > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.fixed-bottom,
.fixed-top {
    position: fixed;
    z-index: 1030;
    right: 0;
    left: 0;
}
.ratio-1x1 {
    --bs-aspect-ratio: 100%;
}
.ratio-4x3 {
    --bs-aspect-ratio: calc(3 / 4 * 100%);
}
.ratio-16x9 {
    --bs-aspect-ratio: calc(9 / 16 * 100%);
}
.ratio-21x9 {
    --bs-aspect-ratio: calc(9 / 21 * 100%);
}
.fixed-top {
    top: 0;
}
.fixed-bottom {
    bottom: 0;
}
.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
}
.hstack {
    flex-direction: row;
    align-items: center;
}
.vstack {
    flex: 1 1 auto;
    flex-direction: column;
}
.btn,
.vr {
    display: inline-block;
}
.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}
.nav,
.navbar-nav {
    margin-bottom: 0;
    list-style: none;
}
.dropdown-header,
.dropdown-item,
.dropdown-toggle,
.input-group-text,
.navbar-brand,
.text-truncate {
    white-space: nowrap;
}
.stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    content: "";
}
.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
}
.vr {
    width: 1px;
    min-height: 1em;
    background-color: currentColor;
}

.btn {
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.btn-check:focus + .btn,
.btn:focus {
    outline: 0;
}
.btn-check:active + .btn-primary:focus,
.btn-check:checked + .btn-primary:focus,
.btn-check:focus + .btn-primary,
.btn-primary.active:focus,
.btn-primary:active:focus,
.btn-primary:focus,
.show > .btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.25rem rgba(145, 77, 238, 0.5);
}
.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
    pointer-events: none;
    opacity: 0.65;
}
.btn-check:active + .btn-outline-primary,
.btn-check:checked + .btn-outline-primary,
.btn-outline-primary.active,
.btn-outline-primary.dropdown-toggle.show,
.btn-outline-primary:active,
.btn-outline-primary:hover,
.btn-primary,
.btn-primary.disabled,
.btn-primary:disabled {
    color: #fff;
    background-color: #7d2deb;
    border-color: #7d2deb;
}
.btn-check:focus + .btn-primary,
.btn-primary:focus,
.btn-primary:hover {
    background-color: #6a26c8;
    border-color: #6424bc;
    color: #fff;
}
.btn-check:active + .btn-primary,
.btn-check:checked + .btn-primary,
.btn-primary.active,
.btn-primary:active,
.show > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #6424bc;
    border-color: #5e22b0;
}
.btn-check:active + .btn-outline-secondary,
.btn-check:checked + .btn-outline-secondary,
.btn-outline-secondary.active,
.btn-outline-secondary.dropdown-toggle.show,
.btn-outline-secondary:active,
.btn-outline-secondary:hover,
.btn-secondary,
.btn-secondary.disabled,
.btn-secondary:disabled {
    color: #000;
    background-color: #9358e9;
    border-color: #9358e9;
}
.btn-secondary:hover {
    color: #000;
    background-color: #a371ec;
    border-color: #9e69eb;
}
.btn-check:focus + .btn-secondary,
.btn-secondary:focus {
    color: #000;
    background-color: #a371ec;
    border-color: #9e69eb;
    box-shadow: 0 0 0 0.25rem rgba(125, 75, 198, 0.5);
}
.btn-check:active + .btn-secondary,
.btn-check:checked + .btn-secondary,
.btn-secondary.active,
.btn-secondary:active,
.show > .btn-secondary.dropdown-toggle {
    color: #000;
    background-color: #a979ed;
    border-color: #9e69eb;
}
.btn-check:active + .btn-secondary:focus,
.btn-check:checked + .btn-secondary:focus,
.btn-secondary.active:focus,
.btn-secondary:active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.25rem rgba(125, 75, 198, 0.5);
}
.btn-check:active + .btn-success:focus,
.btn-check:checked + .btn-success:focus,
.btn-check:focus + .btn-success,
.btn-success.active:focus,
.btn-success:active:focus,
.btn-success:focus,
.show > .btn-success.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5);
}
.btn-check:active + .btn-outline-success,
.btn-check:checked + .btn-outline-success,
.btn-outline-success.active,
.btn-outline-success.dropdown-toggle.show,
.btn-outline-success:active,
.btn-outline-success:hover,
.btn-success,
.btn-success.disabled,
.btn-success:disabled {
    color: #fff;
    background-color: #198754;
    border-color: #198754;
}
.btn-check:focus + .btn-success,
.btn-success:focus,
.btn-success:hover {
    background-color: #157347;
    border-color: #146c43;
    color: #fff;
}
.btn-check:active + .btn-success,
.btn-check:checked + .btn-success,
.btn-success.active,
.btn-success:active,
.show > .btn-success.dropdown-toggle {
    color: #fff;
    background-color: #146c43;
    border-color: #13653f;
}
.btn-check:active + .btn-info:focus,
.btn-check:checked + .btn-info:focus,
.btn-check:focus + .btn-info,
.btn-info.active:focus,
.btn-info:active:focus,
.btn-info:focus,
.show > .btn-info.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5);
}
.btn-check:active + .btn-outline-info,
.btn-check:checked + .btn-outline-info,
.btn-info,
.btn-info.disabled,
.btn-info:disabled,
.btn-outline-info.active,
.btn-outline-info.dropdown-toggle.show,
.btn-outline-info:active,
.btn-outline-info:hover {
    color: #000;
    background-color: #0dcaf0;
    border-color: #0dcaf0;
}
.btn-check:focus + .btn-info,
.btn-info:focus,
.btn-info:hover {
    color: #000;
    background-color: #31d2f2;
    border-color: #25cff2;
}
.btn-check:active + .btn-info,
.btn-check:checked + .btn-info,
.btn-info.active,
.btn-info:active,
.show > .btn-info.dropdown-toggle {
    color: #000;
    background-color: #3dd5f3;
    border-color: #25cff2;
}
.btn-check:active + .btn-outline-warning,
.btn-check:checked + .btn-outline-warning,
.btn-outline-warning.active,
.btn-outline-warning.dropdown-toggle.show,
.btn-outline-warning:active,
.btn-outline-warning:hover,
.btn-warning,
.btn-warning.disabled,
.btn-warning:disabled {
    color: #000;
    background-color: #ffc107;
    border-color: #ffc107;
}
.btn-warning:hover {
    color: #000;
    background-color: #ffca2c;
    border-color: #ffc720;
}
.btn-check:focus + .btn-warning,
.btn-warning:focus {
    color: #000;
    background-color: #ffca2c;
    border-color: #ffc720;
    box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5);
}
.btn-check:active + .btn-warning,
.btn-check:checked + .btn-warning,
.btn-warning.active,
.btn-warning:active,
.show > .btn-warning.dropdown-toggle {
    color: #000;
    background-color: #ffcd39;
    border-color: #ffc720;
}
.btn-check:active + .btn-warning:focus,
.btn-check:checked + .btn-warning:focus,
.btn-warning.active:focus,
.btn-warning:active:focus,
.show > .btn-warning.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5);
}
.btn-check:active + .btn-danger:focus,
.btn-check:checked + .btn-danger:focus,
.btn-check:focus + .btn-danger,
.btn-danger.active:focus,
.btn-danger:active:focus,
.btn-danger:focus,
.show > .btn-danger.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5);
}
.btn-check:active + .btn-outline-danger,
.btn-check:checked + .btn-outline-danger,
.btn-danger,
.btn-danger.disabled,
.btn-danger:disabled,
.btn-outline-danger.active,
.btn-outline-danger.dropdown-toggle.show,
.btn-outline-danger:active,
.btn-outline-danger:hover {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}
.btn-check:focus + .btn-danger,
.btn-danger:focus,
.btn-danger:hover {
    background-color: #bb2d3b;
    border-color: #b02a37;
    color: #fff;
}
.btn-check:active + .btn-danger,
.btn-check:checked + .btn-danger,
.btn-danger.active,
.btn-danger:active,
.show > .btn-danger.dropdown-toggle {
    color: #fff;
    background-color: #b02a37;
    border-color: #a52834;
}
.btn-check:active + .btn-light:focus,
.btn-check:checked + .btn-light:focus,
.btn-check:focus + .btn-light,
.btn-light.active:focus,
.btn-light:active:focus,
.btn-light:focus,
.show > .btn-light.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5);
}
.btn-check:active + .btn-outline-light,
.btn-check:checked + .btn-outline-light,
.btn-light,
.btn-light.disabled,
.btn-light:disabled,
.btn-outline-light.active,
.btn-outline-light.dropdown-toggle.show,
.btn-outline-light:active,
.btn-outline-light:hover {
    color: #000;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}
.btn-check:active + .btn-light,
.btn-check:checked + .btn-light,
.btn-check:focus + .btn-light,
.btn-light.active,
.btn-light:active,
.btn-light:focus,
.btn-light:hover,
.show > .btn-light.dropdown-toggle {
    color: #000;
    background-color: #f9fafb;
    border-color: #f9fafb;
}
.btn-check:active + .btn-dark:focus,
.btn-check:checked + .btn-dark:focus,
.btn-check:focus + .btn-dark,
.btn-dark.active:focus,
.btn-dark:active:focus,
.btn-dark:focus,
.show > .btn-dark.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.25rem rgba(38, 65, 82, 0.5);
}
.btn-check:active + .btn-outline-dark,
.btn-check:checked + .btn-outline-dark,
.btn-dark,
.btn-dark.disabled,
.btn-dark:disabled,
.btn-outline-dark.active,
.btn-outline-dark.dropdown-toggle.show,
.btn-outline-dark:active,
.btn-outline-dark:hover {
    color: #fff;
    background-color: #001f33;
    border-color: #001f33;
}
.btn-check:focus + .btn-dark,
.btn-dark:focus,
.btn-dark:hover {
    background-color: #001a2b;
    border-color: #001929;
    color: #fff;
}
.btn-check:active + .btn-dark,
.btn-check:checked + .btn-dark,
.btn-dark.active,
.btn-dark:active,
.show > .btn-dark.dropdown-toggle {
    color: #fff;
    background-color: #001929;
    border-color: #001726;
}
.btn-outline-primary {
    color: #7d2deb;
    border-color: #7d2deb;
}
.btn-check:active + .btn-outline-primary:focus,
.btn-check:checked + .btn-outline-primary:focus,
.btn-check:focus + .btn-outline-primary,
.btn-outline-primary.active:focus,
.btn-outline-primary.dropdown-toggle.show:focus,
.btn-outline-primary:active:focus,
.btn-outline-primary:focus {
    box-shadow: 0 0 0 0.25rem rgba(125, 45, 235, 0.5);
}
.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
    color: #7d2deb;
    background-color: transparent;
}
.btn-outline-secondary {
    color: #9358e9;
    border-color: #9358e9;
}
.btn-check:active + .btn-outline-secondary:focus,
.btn-check:checked + .btn-outline-secondary:focus,
.btn-check:focus + .btn-outline-secondary,
.btn-outline-secondary.active:focus,
.btn-outline-secondary.dropdown-toggle.show:focus,
.btn-outline-secondary:active:focus,
.btn-outline-secondary:focus {
    box-shadow: 0 0 0 0.25rem rgba(147, 88, 233, 0.5);
}
.btn-outline-secondary.disabled,
.btn-outline-secondary:disabled {
    color: #9358e9;
    background-color: transparent;
}
.btn-outline-success {
    color: #198754;
    border-color: #198754;
}
.btn-check:active + .btn-outline-success:focus,
.btn-check:checked + .btn-outline-success:focus,
.btn-check:focus + .btn-outline-success,
.btn-outline-success.active:focus,
.btn-outline-success.dropdown-toggle.show:focus,
.btn-outline-success:active:focus,
.btn-outline-success:focus {
    box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5);
}
.btn-outline-success.disabled,
.btn-outline-success:disabled {
    color: #198754;
    background-color: transparent;
}
.btn-outline-info {
    color: #0dcaf0;
    border-color: #0dcaf0;
}
.btn-check:active + .btn-outline-info:focus,
.btn-check:checked + .btn-outline-info:focus,
.btn-check:focus + .btn-outline-info,
.btn-outline-info.active:focus,
.btn-outline-info.dropdown-toggle.show:focus,
.btn-outline-info:active:focus,
.btn-outline-info:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5);
}
.btn-outline-info.disabled,
.btn-outline-info:disabled {
    color: #0dcaf0;
    background-color: transparent;
}
.btn-outline-warning {
    color: #ffc107;
    border-color: #ffc107;
}
.btn-check:active + .btn-outline-warning:focus,
.btn-check:checked + .btn-outline-warning:focus,
.btn-check:focus + .btn-outline-warning,
.btn-outline-warning.active:focus,
.btn-outline-warning.dropdown-toggle.show:focus,
.btn-outline-warning:active:focus,
.btn-outline-warning:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5);
}
.btn-outline-warning.disabled,
.btn-outline-warning:disabled {
    color: #ffc107;
    background-color: transparent;
}
.btn-outline-danger {
    color: #dc3545;
    border-color: #dc3545;
}
.btn-check:active + .btn-outline-danger:focus,
.btn-check:checked + .btn-outline-danger:focus,
.btn-check:focus + .btn-outline-danger,
.btn-outline-danger.active:focus,
.btn-outline-danger.dropdown-toggle.show:focus,
.btn-outline-danger:active:focus,
.btn-outline-danger:focus {
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5);
}
.btn-outline-danger.disabled,
.btn-outline-danger:disabled {
    color: #dc3545;
    background-color: transparent;
}
.btn-outline-light {
    color: #f8f9fa;
    border-color: #f8f9fa;
}
.btn-check:active + .btn-outline-light:focus,
.btn-check:checked + .btn-outline-light:focus,
.btn-check:focus + .btn-outline-light,
.btn-outline-light.active:focus,
.btn-outline-light.dropdown-toggle.show:focus,
.btn-outline-light:active:focus,
.btn-outline-light:focus {
    box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5);
}
.btn-outline-light.disabled,
.btn-outline-light:disabled {
    color: #f8f9fa;
    background-color: transparent;
}
.btn-outline-dark {
    color: #001f33;
    border-color: #001f33;
}
.btn-outline-dark-tweet {
    width: 31px;
    height: 31px;
    background: url(/edaa.portal.theme.static.v2/themes/edaatheme/assets/img/icons/twitter.png);
    background-repeat: no-repeat;
    background-position: center;
    border-color: #212529;
}
.btn-check:active + .btn-outline-dark:focus,
.btn-check:checked + .btn-outline-dark:focus,
.btn-check:focus + .btn-outline-dark,
.btn-outline-dark.active:focus,
.btn-outline-dark.dropdown-toggle.show:focus,
.btn-outline-dark:active:focus,
.btn-outline-dark:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 31, 51, 0.5);
}
.btn-outline-dark.disabled,
.btn-outline-dark:disabled {
    color: #001f33;
    background-color: transparent;
}
.btn-link {
    font-weight: 400;
    color: #7d2deb;
    text-decoration: underline;
}
.btn-link.disabled,
.btn-link:disabled {
    color: #6c757d;
}
.btn-lg,
.input-group-lg > .btn,
.input-group-lg > .form-control,
.input-group-lg > .form-select,
.input-group-lg > .input-group-text {
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    border-radius: 0.3rem;
}
.btn-sm,
.input-group-sm > .btn,
.input-group-sm > .form-control,
.input-group-sm > .form-select,
.input-group-sm > .input-group-text {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    border-radius: 0.2rem;
}
.nav {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
}
.nav-link {
    display: block;
    padding: 0.5rem 0.9rem;
    color: #7d2deb;
    text-decoration: none;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
.nav-link:focus,
.nav-link:hover {
    color: #6424bc;
    text-decoration: none !important;
}
#aramcoGraph .highcharts-button-pressed text,
#fundsHomeGraph .highcharts-button-pressed text,
#graph1 .highcharts-button-pressed text,
#graph2 .highcharts-button-pressed text,
#graph3 .highcharts-button-pressed text,
#graph4 .highcharts-button-pressed text,
#graphS1 .highcharts-button-pressed text,
#graphS2 .highcharts-button-pressed text,
#graphS3 .highcharts-button-pressed text,
#graphS4 .highcharts-button-pressed text,
#graphS5 .highcharts-button-pressed text,
#graphS6 .highcharts-button-pressed text,
#graphS7 .highcharts-button-pressed text,
#graphS8 .highcharts-button-pressed text,
#indicesGraph1 .highcharts-button-pressed text,
#indicesGraph2 .highcharts-button-pressed text,
#indicesGraph3 .highcharts-button-pressed text,
#indicesGraph4 .highcharts-button-pressed text,
#investorGraph .highcharts-button-pressed text,
#nomucHomeGraph .highcharts-button-pressed text,
#peerGraph .highcharts-button-pressed text,
#performanceGraph .highcharts-button-pressed text,
#sukukGraph .highcharts-button-pressed text,
#sukukHomeGraph .highcharts-button-pressed text,
#tasiGraph .highcharts-button-pressed text,
#tasiGraphIndices .highcharts-button-pressed text,
#tasiHomeGraph .highcharts-button-pressed text,
.dropdown-item,
.header .mainmenu .mainmenu-list.auto-dropdown .nav-item .dropdown-menu > li ul li a,
.header .mainmenu .mainmenu-list.full-dropdown .nav-item .dropdown-menu > li ul li a,
.navbar-brand,
.navbar-toggler:hover,
.no-line {
    text-decoration: none;
}
.nav-link.disabled {
    color: #6c757d;
    pointer-events: none;
    cursor: default;
}
.language > a.nav-link > span.ar {
    font-family: AvenirArabicMedium;
}
.nav-tabs {
    border-bottom: 1px solid #dee2e6;
}
.nav-tabs .nav-link {
    margin-bottom: -1px;
    background: 0 0;
    border: 1px solid transparent;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}
.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
    border-color: #e9ecef #e9ecef #dee2e6;
    isolation: isolate;
}
.nav-tabs .nav-link.disabled {
    color: #6c757d;
    background-color: transparent;
    border-color: transparent;
}
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: #495057;
    background-color: #fff;
    border-color: #dee2e6 #dee2e6 #fff;
}
.nav-tabs .dropdown-menu {
    margin-top: -1px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.nav-pills .nav-link {
    background: 0 0;
    border: 0;
    border-radius: 0.25rem;
}
.dropdown-menu-dark .dropdown-item.active,
.dropdown-menu-dark .dropdown-item:active,
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    color: #fff;
    background-color: #7d2deb;
}
.nav-fill .nav-item,
.nav-fill > .nav-link {
    flex: 1 1 auto;
    text-align: center;
}
.nav-justified .nav-item,
.nav-justified > .nav-link {
    flex-basis: 0;
    flex-grow: 1;
    text-align: center;
}
.card-img,
.card-img-bottom,
.card-img-top,
.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link,
.news-section .tab-pane,
.news-section .tab-pane .carousel,
.tab-content-section .tab-pane .carousel,
.teams-section .tab-pane,
.teams-section .tab-pane .carousel {
    width: 100%;
}
#aramcoGraph .highcharts-credits,
#aramcoGraph .highcharts-range-input,
#aramcoGraph .highcharts-range-selector-buttons .highcharts-label,
#aramcoGraph .highcharts-range-selector-group .highcharts-input-group,
#aramcoGraph .highcharts-subtitle,
#aramcoGraph .highcharts-title,
#aramcoGraph .highcharts-tooltip text .highcharts-color-0,
#foreignGraph .highcharts-root text,
#fundsHomeGraph .highcharts-credits,
#fundsHomeGraph .highcharts-range-input,
#fundsHomeGraph .highcharts-range-selector-buttons .highcharts-label,
#fundsHomeGraph .highcharts-range-selector-group .highcharts-input-group,
#fundsHomeGraph .highcharts-subtitle,
#fundsHomeGraph .highcharts-title,
#fundsHomeGraph .highcharts-tooltip text .highcharts-color-0,
#graph1 .highcharts-credits,
#graph1 .highcharts-range-input,
#graph1 .highcharts-range-selector-buttons .highcharts-label,
#graph1 .highcharts-range-selector-group .highcharts-input-group,
#graph1 .highcharts-subtitle,
#graph1 .highcharts-title,
#graph1 .highcharts-tooltip text .highcharts-color-0,
#graph2 .highcharts-credits,
#graph2 .highcharts-range-input,
#graph2 .highcharts-range-selector-buttons .highcharts-label,
#graph2 .highcharts-range-selector-group .highcharts-input-group,
#graph2 .highcharts-subtitle,
#graph2 .highcharts-title,
#graph2 .highcharts-tooltip text .highcharts-color-0,
#graph3 .highcharts-credits,
#graph3 .highcharts-range-input,
#graph3 .highcharts-range-selector-buttons .highcharts-label,
#graph3 .highcharts-range-selector-group .highcharts-input-group,
#graph3 .highcharts-subtitle,
#graph3 .highcharts-title,
#graph3 .highcharts-tooltip text .highcharts-color-0,
#graph4 .highcharts-credits,
#graph4 .highcharts-range-input,
#graph4 .highcharts-range-selector-buttons .highcharts-label,
#graph4 .highcharts-range-selector-group .highcharts-input-group,
#graph4 .highcharts-subtitle,
#graph4 .highcharts-title,
#graph4 .highcharts-tooltip text .highcharts-color-0,
#graphS1 .highcharts-background,
#graphS1 .highcharts-credits,
#graphS1 .highcharts-navigator,
#graphS1 .highcharts-navigator-series,
#graphS1 .highcharts-range-input,
#graphS1 .highcharts-range-selector-buttons .highcharts-label,
#graphS1 .highcharts-range-selector-group,
#graphS1 .highcharts-range-selector-group .highcharts-input-group,
#graphS1 .highcharts-scrollbar,
#graphS1 .highcharts-subtitle,
#graphS1 .highcharts-title,
#graphS1 .highcharts-tooltip text .highcharts-color-0,
#graphS1 .highcharts-xaxis,
#graphS1 .highcharts-xaxis-grid,
#graphS1 div:first-child,
#graphS2 .highcharts-background,
#graphS2 .highcharts-credits,
#graphS2 .highcharts-navigator,
#graphS2 .highcharts-navigator-series,
#graphS2 .highcharts-range-input,
#graphS2 .highcharts-range-selector-buttons .highcharts-label,
#graphS2 .highcharts-range-selector-group,
#graphS2 .highcharts-range-selector-group .highcharts-input-group,
#graphS2 .highcharts-scrollbar,
#graphS2 .highcharts-subtitle,
#graphS2 .highcharts-title,
#graphS2 .highcharts-tooltip text .highcharts-color-0,
#graphS2 .highcharts-xaxis,
#graphS2 .highcharts-xaxis-grid,
#graphS2 div:first-child,
#graphS3 .highcharts-background,
#graphS3 .highcharts-credits,
#graphS3 .highcharts-navigator,
#graphS3 .highcharts-navigator-series,
#graphS3 .highcharts-range-input,
#graphS3 .highcharts-range-selector-buttons .highcharts-label,
#graphS3 .highcharts-range-selector-group,
#graphS3 .highcharts-range-selector-group .highcharts-input-group,
#graphS3 .highcharts-scrollbar,
#graphS3 .highcharts-subtitle,
#graphS3 .highcharts-title,
#graphS3 .highcharts-tooltip text .highcharts-color-0,
#graphS3 .highcharts-xaxis,
#graphS3 .highcharts-xaxis-grid,
#graphS3 div:first-child,
#graphS4 .highcharts-background,
#graphS4 .highcharts-credits,
#graphS4 .highcharts-navigator,
#graphS4 .highcharts-navigator-series,
#graphS4 .highcharts-range-input,
#graphS4 .highcharts-range-selector-buttons .highcharts-label,
#graphS4 .highcharts-range-selector-group,
#graphS4 .highcharts-range-selector-group .highcharts-input-group,
#graphS4 .highcharts-scrollbar,
#graphS4 .highcharts-subtitle,
#graphS4 .highcharts-title,
#graphS4 .highcharts-tooltip text .highcharts-color-0,
#graphS4 .highcharts-xaxis,
#graphS4 .highcharts-xaxis-grid,
#graphS4 div:first-child,
#graphS5 .highcharts-background,
#graphS5 .highcharts-credits,
#graphS5 .highcharts-navigator,
#graphS5 .highcharts-navigator-series,
#graphS5 .highcharts-range-input,
#graphS5 .highcharts-range-selector-buttons .highcharts-label,
#graphS5 .highcharts-range-selector-group,
#graphS5 .highcharts-range-selector-group .highcharts-input-group,
#graphS5 .highcharts-scrollbar,
#graphS5 .highcharts-subtitle,
#graphS5 .highcharts-title,
#graphS5 .highcharts-tooltip text .highcharts-color-0,
#graphS5 .highcharts-xaxis,
#graphS5 .highcharts-xaxis-grid,
#graphS5 div:first-child,
#graphS6 .highcharts-background,
#graphS6 .highcharts-credits,
#graphS6 .highcharts-navigator,
#graphS6 .highcharts-navigator-series,
#graphS6 .highcharts-range-input,
#graphS6 .highcharts-range-selector-buttons .highcharts-label,
#graphS6 .highcharts-range-selector-group,
#graphS6 .highcharts-range-selector-group .highcharts-input-group,
#graphS6 .highcharts-scrollbar,
#graphS6 .highcharts-subtitle,
#graphS6 .highcharts-title,
#graphS6 .highcharts-tooltip text .highcharts-color-0,
#graphS6 .highcharts-xaxis,
#graphS6 .highcharts-xaxis-grid,
#graphS6 div:first-child,
#graphS7 .highcharts-background,
#graphS7 .highcharts-credits,
#graphS7 .highcharts-navigator,
#graphS7 .highcharts-navigator-series,
#graphS7 .highcharts-range-input,
#graphS7 .highcharts-range-selector-buttons .highcharts-label,
#graphS7 .highcharts-range-selector-group,
#graphS7 .highcharts-range-selector-group .highcharts-input-group,
#graphS7 .highcharts-scrollbar,
#graphS7 .highcharts-subtitle,
#graphS7 .highcharts-title,
#graphS7 .highcharts-tooltip text .highcharts-color-0,
#graphS7 .highcharts-xaxis,
#graphS7 .highcharts-xaxis-grid,
#graphS8 .highcharts-background,
#graphS8 .highcharts-credits,
#graphS8 .highcharts-navigator,
#graphS8 .highcharts-navigator-series,
#graphS8 .highcharts-range-input,
#graphS8 .highcharts-range-selector-buttons .highcharts-label,
#graphS8 .highcharts-range-selector-group,
#graphS8 .highcharts-range-selector-group .highcharts-input-group,
#graphS8 .highcharts-scrollbar,
#graphS8 .highcharts-subtitle,
#graphS8 .highcharts-title,
#graphS8 .highcharts-tooltip text .highcharts-color-0,
#graphS8 .highcharts-xaxis,
#graphS8 .highcharts-xaxis-grid,
#indicesGraph1 .highcharts-credits,
#indicesGraph1 .highcharts-range-input,
#indicesGraph1 .highcharts-range-selector-buttons .highcharts-label,
#indicesGraph1 .highcharts-range-selector-group .highcharts-input-group,
#indicesGraph1 .highcharts-subtitle,
#indicesGraph1 .highcharts-title,
#indicesGraph1 .highcharts-tooltip text .highcharts-color-0,
#indicesGraph2 .highcharts-credits,
#indicesGraph2 .highcharts-range-input,
#indicesGraph2 .highcharts-range-selector-buttons .highcharts-label,
#indicesGraph2 .highcharts-range-selector-group .highcharts-input-group,
#indicesGraph2 .highcharts-subtitle,
#indicesGraph2 .highcharts-title,
#indicesGraph2 .highcharts-tooltip text .highcharts-color-0,
#indicesGraph3 .highcharts-credits,
#indicesGraph3 .highcharts-range-input,
#indicesGraph3 .highcharts-range-selector-buttons .highcharts-label,
#indicesGraph3 .highcharts-range-selector-group .highcharts-input-group,
#indicesGraph3 .highcharts-subtitle,
#indicesGraph3 .highcharts-title,
#indicesGraph3 .highcharts-tooltip text .highcharts-color-0,
#indicesGraph4 .highcharts-credits,
#indicesGraph4 .highcharts-range-input,
#indicesGraph4 .highcharts-range-selector-buttons .highcharts-label,
#indicesGraph4 .highcharts-range-selector-group .highcharts-input-group,
#indicesGraph4 .highcharts-subtitle,
#indicesGraph4 .highcharts-title,
#indicesGraph4 .highcharts-tooltip text .highcharts-color-0,
#investorGraph .highcharts-credits,
#investorGraph .highcharts-range-input,
#investorGraph .highcharts-range-selector-buttons .highcharts-label,
#investorGraph .highcharts-range-selector-group .highcharts-input-group,
#investorGraph .highcharts-subtitle,
#investorGraph .highcharts-title,
#investorGraph .highcharts-tooltip text .highcharts-color-0,
#nomucHomeGraph .highcharts-credits,
#nomucHomeGraph .highcharts-range-input,
#nomucHomeGraph .highcharts-range-selector-buttons .highcharts-label,
#nomucHomeGraph .highcharts-range-selector-group .highcharts-input-group,
#nomucHomeGraph .highcharts-subtitle,
#nomucHomeGraph .highcharts-title,
#nomucHomeGraph .highcharts-tooltip text .highcharts-color-0,
#peerGraph .highcharts-credits,
#peerGraph .highcharts-range-input,
#peerGraph .highcharts-range-selector-buttons .highcharts-label,
#peerGraph .highcharts-range-selector-group .highcharts-input-group,
#peerGraph .highcharts-subtitle,
#peerGraph .highcharts-title,
#peerGraph .highcharts-tooltip text .highcharts-color-0,
#performanceGraph .highcharts-credits,
#performanceGraph .highcharts-range-input,
#performanceGraph .highcharts-range-selector-buttons .highcharts-label,
#performanceGraph .highcharts-range-selector-group .highcharts-input-group,
#performanceGraph .highcharts-subtitle,
#performanceGraph .highcharts-title,
#performanceGraph .highcharts-tooltip text .highcharts-color-0,
#sukukGraph .highcharts-credits,
#sukukGraph .highcharts-range-input,
#sukukGraph .highcharts-range-selector-buttons .highcharts-label,
#sukukGraph .highcharts-range-selector-group .highcharts-input-group,
#sukukGraph .highcharts-subtitle,
#sukukGraph .highcharts-title,
#sukukGraph .highcharts-tooltip text .highcharts-color-0,
#sukukHomeGraph .highcharts-credits,
#sukukHomeGraph .highcharts-range-input,
#sukukHomeGraph .highcharts-range-selector-buttons .highcharts-label,
#sukukHomeGraph .highcharts-range-selector-group .highcharts-input-group,
#sukukHomeGraph .highcharts-subtitle,
#sukukHomeGraph .highcharts-title,
#sukukHomeGraph .highcharts-tooltip text .highcharts-color-0,
#tasiGraph .highcharts-credits,
#tasiGraph .highcharts-range-input,
#tasiGraph .highcharts-range-selector-buttons .highcharts-label,
#tasiGraph .highcharts-range-selector-group .highcharts-input-group,
#tasiGraph .highcharts-subtitle,
#tasiGraph .highcharts-title,
#tasiGraph .highcharts-tooltip text .highcharts-color-0,
#tasiGraphIndices .highcharts-credits,
#tasiGraphIndices .highcharts-range-input,
#tasiGraphIndices .highcharts-range-selector-buttons .highcharts-label,
#tasiGraphIndices .highcharts-range-selector-group .highcharts-input-group,
#tasiGraphIndices .highcharts-subtitle,
#tasiGraphIndices .highcharts-title,
#tasiGraphIndices .highcharts-tooltip text .highcharts-color-0,
#tasiHomeGraph .highcharts-credits,
#tasiHomeGraph .highcharts-range-input,
#tasiHomeGraph .highcharts-range-selector-buttons .highcharts-label,
#tasiHomeGraph .highcharts-range-selector-group .highcharts-input-group,
#tasiHomeGraph .highcharts-subtitle,
#tasiHomeGraph .highcharts-title,
#tasiHomeGraph .highcharts-tooltip text .highcharts-color-0,
.chat .chat-trigger.small span,
.collapse:not(.show),
.foreign_graph .highcharts-title,
.foreign_graph g.highcharts-exporting-group,
.header .mainmenu .mainmenu-list.auto-dropdown .nav-item .dropdown-menu > li:first-child::before,
.header .mainmenu .mainmenu-list.full-dropdown .nav-item .dropdown-menu > li:first-child::before,
.header .search-block .dropdown-toggle::after,
.navbar-expand .navbar-toggler,
.navbar-expand .offcanvas-header,
.tab-content > .tab-pane {
    display: none;
}
.carousel-item-next,
.carousel-item-prev,
.carousel-item.active,
.dropdown-menu.show,
.tab-content > .active {
    display: block;
}
.navbar {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
.navbar > .container,
.navbar > .container-fluid,
.navbar > .container-lg,
.navbar > .container-md,
.navbar > .container-sm,
.navbar > .container-xl,
.navbar > .container-xxl {
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between;
}
.navbar-brand {
    padding-top: 0.3125rem;
    padding-bottom: 0.3125rem;
    margin-right: 1rem;
    font-size: 1.25rem;
}
.navbar-nav {
    display: flex;
    flex-direction: column;
    padding-left: 0;
}
.form-control-plaintext.form-control-lg,
.form-control-plaintext.form-control-sm,
.navbar-nav .nav-link {
    padding-right: 0;
    padding-left: 0;
}
.navbar-nav .dropdown-menu {
    position: static;
}
.navbar-text {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
.navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
}
.navbar-toggler {
    padding: 0.25rem 0.75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    transition: box-shadow 0.15s ease-in-out;
}
.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: 0 0 0 0.25rem;
}
.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}
.carousel-inner,
.carousel-item {
    width: 100%;
    position: relative;
}
.navbar-nav-scroll {
    max-height: var(--bs-scroll-height, 75vh);
    overflow-y: auto;
}
.navbar-expand {
    flex-wrap: nowrap;
    justify-content: flex-start;
}
.list-group-horizontal,
.navbar-expand .navbar-nav {
    flex-direction: row;
}
.navbar-expand .navbar-nav .dropdown-menu {
    position: absolute;
}
.navbar-expand .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
}
.navbar-expand .navbar-nav-scroll {
    overflow: visible;
}
.navbar-expand .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
}
.navbar-expand .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    flex-grow: 1;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: none;
    transform: none;
}
.navbar-expand .offcanvas-bottom,
.navbar-expand .offcanvas-top {
    height: auto;
    border-top: 0;
    border-bottom: 0;
}
.navbar-expand .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
}
.carousel-inner,
.contact-and-career-section,
.form-control[type="file"] {
    overflow: hidden;
}
.navbar-light .navbar-brand,
.navbar-light .navbar-brand:focus,
.navbar-light .navbar-brand:hover,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-text a,
.navbar-light .navbar-text a:focus,
.navbar-light .navbar-text a:hover {
    color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-nav .nav-link,
.navbar-light .navbar-text {
    color: rgba(0, 0, 0, 0.55);
}
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
    color: rgba(0, 0, 0, 0.7);
}
.navbar-light .navbar-nav .nav-link.disabled {
    color: rgba(0, 0, 0, 0.3);
}
.navbar-light .navbar-toggler {
    color: rgba(0, 0, 0, 0.55);
    border-color: rgba(0, 0, 0, 0.1);
}
.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.btn.btn-white,
.btn.btn-white.line:hover,
.graphBlueBox .graphLft ul li .name a,
.graphBlueBox .graphLft ul li .priceEqual,
.header .nav-link,
.header .search-block a,
.navbar-dark .navbar-brand,
.navbar-dark .navbar-brand:focus,
.navbar-dark .navbar-brand:hover,
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-text a,
.navbar-dark .navbar-text a:focus,
.navbar-dark .navbar-text a:hover,
.status-bar .searchBox .srchBox .srchList a:hover,
.status-bar .statusBox ul li .priceBox .priceEqual {
    color: #fff;
}
.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-text {
    color: rgba(255, 255, 255, 0.55);
}
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover {
    color: rgba(255, 255, 255, 0.75);
}
.navbar-dark .navbar-nav .nav-link.disabled {
    color: rgba(255, 255, 255, 0.25);
}
.navbar-dark .navbar-toggler {
    color: rgba(255, 255, 255, 0.55);
    border-color: rgba(255, 255, 255, 0.1);
}
.dropdown-toggle::after,
.dropup .dropdown-toggle::after {
    content: "";
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
}
.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.app-and-ecosystem-section .ecosystem .col-body,
.carousel,
.dropdown,
.dropend,
.dropstart,
.dropup,
.form-floating,
.graphBlueBox .container,
.header .mainmenu,
.innerPage .status-bar,
.twitter-section {
    position: relative;
}
.dropdown-toggle::after {
    border-top: 0.3em solid;
    border-bottom: 0;
}
.dropdown-menu {
    position: absolute;
    z-index: 1000;
    display: none;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}
.dropdown-menu[data-bs-popper] {
    top: 100%;
    left: 0;
    margin-top: 0.125rem;
}
.dropdown-menu-start {
    --bs-position: start;
}
.dropdown-menu-start[data-bs-popper] {
    right: auto;
    left: 0;
}
.dropdown-menu-end {
    --bs-position: end;
}
.dropdown-menu-end[data-bs-popper] {
    right: 0;
    left: auto;
}
.dropup .dropdown-menu[data-bs-popper] {
    top: auto;
    bottom: 100%;
    margin-top: 0;
    margin-bottom: 0.125rem;
}
.dropup .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    border-top: 0;
    border-bottom: 0.3em solid;
}
.dropend .dropdown-toggle::after,
.dropstart .dropdown-toggle::before {
    content: "";
    border-top: 0.3em solid transparent;
    border-bottom: 0.3em solid transparent;
}
.dropend .dropdown-menu[data-bs-popper] {
    top: 0;
    right: auto;
    left: 100%;
    margin-top: 0;
    margin-left: 0.125rem;
}
.dropend .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    border-right: 0;
    border-left: 0.3em solid;
    vertical-align: 0;
}
.dropstart .dropdown-menu[data-bs-popper] {
    top: 0;
    right: 100%;
    left: auto;
    margin-top: 0;
    margin-right: 0.125rem;
}
.dropstart .dropdown-toggle::after {
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    display: none;
}
.dropstart .dropdown-toggle::before {
    display: inline-block;
    margin-right: 0.255em;
    border-right: 0.3em solid;
    vertical-align: 0;
}
.dropdown-divider {
    height: 0;
    margin: 0.5rem 0;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
}
.dropdown-item {
    display: block;
    width: 100%;
    padding: 0.25rem 1rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    background-color: transparent;
    border: 0;
}
.dropdown-menu-dark,
.dropdown-menu-dark .dropdown-divider {
    border-color: rgba(0, 0, 0, 0.15);
}
.dropdown-item:focus,
.dropdown-item:hover {
    color: #1e2125;
    background-color: #e9ecef;
    text-decoration: none !important;
}
.dropdown-item.active,
.dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #7d2deb;
}
.dropdown-item.disabled,
.dropdown-item:disabled {
    color: #adb5bd;
    pointer-events: none;
    background-color: transparent;
}
.dropdown-header {
    display: block;
    padding: 0.5rem 1rem;
    margin-bottom: 0;
    font-size: 0.875rem;
    color: #6c757d;
}
.dropdown-item-text {
    display: block;
    padding: 0.25rem 1rem;
    color: #212529;
}
.dropdown-menu-dark {
    color: #dee2e6;
    background-color: #343a40;
}
.dropdown-menu-dark .dropdown-item,
.dropdown-menu-dark .dropdown-item-text {
    color: #dee2e6;
}
.dropdown-menu-dark .dropdown-item:focus,
.dropdown-menu-dark .dropdown-item:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.15);
}
.dropdown-menu-dark .dropdown-header,
.dropdown-menu-dark .dropdown-item.disabled,
.dropdown-menu-dark .dropdown-item:disabled {
    color: #adb5bd;
}
.carousel.pointer-event {
    touch-action: pan-y;
}
.carousel-item {
    display: none;
    float: left;
    margin-right: -100%;
    backface-visibility: hidden;
    transition: transform 0.6s ease-in-out;
}
.active.carousel-item-end,
.carousel-item-next:not(.carousel-item-start) {
    transform: translateX(100%);
}
.active.carousel-item-start,
.carousel-item-prev:not(.carousel-item-end) {
    transform: translateX(-100%);
}
.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    transform: none;
}
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end,
.carousel-fade .carousel-item.active {
    z-index: 1;
    opacity: 1;
}
.carousel-fade .active.carousel-item-end,
.carousel-fade .active.carousel-item-start {
    z-index: 0;
    opacity: 0;
    transition: opacity 0s 0.6s;
}
.carousel-control-next,
.carousel-control-prev {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    text-align: center;
    background: 0 0;
    border: 0;
    opacity: 0.5;
    transition: opacity 0.15s;
}
.form-control,
.form-select {
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    font-weight: 400;
}
.carousel-control-next:focus,
.carousel-control-next:hover,
.carousel-control-prev:focus,
.carousel-control-prev:hover {
    text-decoration: none;
    outline: 0;
    opacity: 0.9;
}
.bg-relative.bg-to-right::after,
.carousel-control-prev {
    left: 0;
}
.bg-relative.bg-to-left::after,
.carousel-control-next {
    right: 0;
}
.carousel-control-next-icon,
.carousel-control-prev-icon {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 100%;
}



.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")}
.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")}



.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-right: 15%;
    margin-bottom: 1rem;
    margin-left: 15%;
    list-style: none;
}
.card-header-pills,
.card-header-tabs {
    margin-right: -0.5rem;
    margin-left: -0.5rem;
}
.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 30px;
    height: 3px;
    padding: 0;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 0.5;
    transition: opacity 0.6s;
}
.carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 1.25rem;
    left: 15%;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: center;
}
.carousel-dark .carousel-control-next-icon,
.carousel-dark .carousel-control-prev-icon {
    filter: invert(1) grayscale(100);
}
.carousel-dark .carousel-indicators [data-bs-target] {
    background-color: #000;
}
.carousel-dark .carousel-caption {
    color: #000;
}
.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0.25rem;
}
.accordion-item:first-of-type .accordion-button,
.card-img,
.card-img-top,
.card > .list-group:first-child {
    border-top-left-radius: calc(0.25rem - 1px);
    border-top-right-radius: calc(0.25rem - 1px);
}
.accordion-item:last-of-type .accordion-button.collapsed,
.card-img,
.card-img-bottom,
.card > .list-group:last-child {
    border-bottom-right-radius: calc(0.25rem - 1px);
    border-bottom-left-radius: calc(0.25rem - 1px);
}
.card > hr {
    margin-right: 0;
}
.card > .list-group {
    border-top: inherit;
    border-bottom: inherit;
}
.card > .list-group:first-child {
    border-top-width: 0;
}
.card > .list-group:last-child {
    border-bottom-width: 0;
}
.accordion-flush .accordion-item:first-child,
.accordion-item:not(:first-of-type),
.card > .card-header + .list-group,
.card > .list-group + .card-footer {
    border-top: 0;
}
.card-body {
    flex: 1 1 auto;
    padding: 1rem;
}
.card-footer,
.card-header {
    padding: 0.5rem 1rem;
    background-color: rgba(0, 0, 0, 0.03);
}
.card-title,
.form-label {
    margin-bottom: 0.5rem;
}
.card-subtitle {
    margin-top: -0.25rem;
    margin-bottom: 0;
}
.card-link + .card-link {
    margin-left: 1rem;
}
.card-header {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.card-header:first-child {
    border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}
.card-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.125);
}
.card-footer:last-child {
    border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}
.card-header-tabs {
    margin-bottom: -0.5rem;
    border-bottom: 0;
}
.card-img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1rem;
    border-radius: calc(0.25rem - 1px);
}
.card-group > .card {
    margin-bottom: 0.75rem;
}
.col-form-label {
    padding-top: calc(0.375rem + 1px);
    padding-bottom: calc(0.375rem + 1px);
    margin-bottom: 0;
    font-size: inherit;
    line-height: 1.5;
}
.col-form-label-lg {
    padding-top: calc(0.5rem + 1px);
    padding-bottom: calc(0.5rem + 1px);
    font-size: 1.25rem;
}
.col-form-label-sm {
    padding-top: calc(0.25rem + 1px);
    padding-bottom: calc(0.25rem + 1px);
    font-size: 0.875rem;
}
.form-text {
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: #6c757d;
}
.form-control,
.form-control:focus {
    color: #212529;
    background-color: #fff;
}
.form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    appearance: none;
    border-radius: 0.25rem;
}
.form-control:focus {
    border-color: #be96f5;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(125, 45, 235, 0.25);
}
.form-control::-webkit-date-and-time-value {
    height: 1.5em;
}
.form-control::placeholder {
    color: #6c757d;
    opacity: 1;
}
.form-control-plaintext,
.form-select {
    color: #212529;
    line-height: 1.5;
    display: block;
}
.form-control:disabled,
.form-control[readonly] {
    background-color: #e9ecef;
    opacity: 1;
}
.form-control::file-selector-button {
    padding: 0.375rem 0.75rem;
    margin: -0.375rem -0.75rem;
    margin-inline-end: 0.75rem;
    color: #212529;
    background-color: #e9ecef;
    pointer-events: none;
    border: 0 solid;
    border-inline-end-width: 1px;
    border-radius: 0;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    border-color: inherit;
}
.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
    background-color: #dde0e3;
}
.form-control::-webkit-file-upload-button {
    padding: 0.375rem 0.75rem;
    margin: -0.375rem -0.75rem;
    margin-inline-end: 0.75rem;
    color: #212529;
    background-color: #e9ecef;
    pointer-events: none;
    border: 0 solid;
    border-inline-end-width: 1px;
    border-radius: 0;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    border-color: inherit;
}
.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
    background-color: #dde0e3;
}
.form-control-plaintext {
    width: 100%;
    padding: 0.375rem 0;
    margin-bottom: 0;
    background-color: transparent;
    border: solid transparent;
    border-width: 1px 0;
}
.form-check-input,
.form-select {
    background-color: #fff;
    appearance: none;
    background-repeat: no-repeat;
}
.form-control-sm {
    min-height: calc(1.5em + 0.5rem + 2px);
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    border-radius: 0.2rem;
}
.form-control-sm::file-selector-button {
    padding: 0.25rem 0.5rem;
    margin: -0.25rem -0.5rem;
    margin-inline-end: 0.5rem;
}
.form-control-sm::-webkit-file-upload-button {
    padding: 0.25rem 0.5rem;
    margin: -0.25rem -0.5rem;
    margin-inline-end: 0.5rem;
}
.form-control-lg {
    min-height: calc(1.5em + 1rem + 2px);
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    border-radius: 0.3rem;
}
.form-control-lg::file-selector-button {
    padding: 0.5rem 1rem;
    margin: -0.5rem -1rem;
    margin-inline-end: 1rem;
}
.form-control-lg::-webkit-file-upload-button {
    padding: 0.5rem 1rem;
    margin: -0.5rem -1rem;
    margin-inline-end: 1rem;
}
textarea.form-control {
    min-height: calc(1.5em + 0.75rem + 2px);
}
textarea.form-control-sm {
    min-height: calc(1.5em + 0.5rem + 2px);
}
textarea.form-control-lg {
    min-height: calc(1.5em + 1rem + 2px);
}
.form-control-color {
    width: 3rem;
    height: auto;
    padding: 0.375rem;
}
.form-control-color::-moz-color-swatch {
    height: 1.5em;
    border-radius: 0.25rem;
}
.form-control-color::-webkit-color-swatch {
    height: 1.5em;
    border-radius: 0.25rem;
}
.form-select {
    width: 100%;
    padding: 0.375rem 1.62rem 0.375rem 0.75rem;
    -moz-padding-start: calc(0.75rem - 3px);
    font-size: 1rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}
.form-check-input:focus,
.form-select:focus {
    border-color: #be96f5;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(125, 45, 235, 0.25);
}
.form-select[multiple],
.form-select[size]:not([size="1"]) {
    padding-right: 0.75rem;
    background-image: none;
}
.form-select:disabled {
    background-color: #e9ecef;
}
.form-select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #212529;
}
.form-select-sm {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    padding-left: 0.5rem;
    font-size: 0.875rem;
    border-radius: 0.2rem;
}
.form-select-lg {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 1rem;
    font-size: 1.25rem;
    border-radius: 0.3rem;
}
.form-check {
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5em;
    margin-bottom: 0.125rem;
}
.breadcrumb,
.table {
    margin-bottom: 1rem;
}
.form-check .form-check-input {
    float: left;
    margin-left: -1.5em;
}
.form-check-input {
    width: 1em;
    height: 1em;
    margin-top: 0.25em;
    vertical-align: top;
    background-position: center;
    background-size: contain;
    border: 1px solid rgba(0, 0, 0, 0.25);
    color-adjust: exact;
}
.form-check-input[type="radio"] {
    border-radius: 50%;
}
.form-check-input:active {
    filter: brightness(90%);
}
.form-check-input:checked {
    background-color: #7d2deb;
    border-color: #7d2deb;
}
.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='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}
.form-check-input:checked[type="radio"] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23ffffff'/%3e%3c/svg%3e");
}
.form-check-input[type="checkbox"]:indeterminate {
    background-color: #7d2deb;
    border-color: #7d2deb;
    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='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
}
.form-check-input:disabled {
    pointer-events: none;
    filter: none;
    opacity: 0.5;
}
.form-check-input:disabled ~ .form-check-label,
.form-check-input[disabled] ~ .form-check-label {
    opacity: 0.5;
}
.form-switch {
    padding-left: 2.5em;
}
.form-switch .form-check-input {
    width: 2em;
    margin-left: -2.5em;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
    background-position: left center;
    border-radius: 2em;
    transition: background-position 0.15s ease-in-out;
}
.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='%23be96f5'/%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='%23ffffff'/%3e%3c/svg%3e");
}
.form-check-inline {
    display: inline-block;
    margin-right: 1rem;
}
.btn-check {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none;
}
.btn-check:disabled + .btn,
.btn-check[disabled] + .btn {
    pointer-events: none;
    filter: none;
    opacity: 0.65;
}
.form-range {
    width: 100%;
    height: 1.5rem;
    padding: 0;
    background-color: transparent;
    appearance: none;
}
.form-range:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(125, 45, 235, 0.25);
}
.form-range:focus::-moz-range-thumb {
    box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(125, 45, 235, 0.25);
}
.form-range::-moz-focus-outer {
    border: 0;
}
.form-range::-webkit-slider-thumb {
    width: 1rem;
    height: 1rem;
    margin-top: -0.25rem;
    background-color: #7d2deb;
    border: 0;
    border-radius: 1rem;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    appearance: none;
}
.form-range::-webkit-slider-thumb:active {
    background-color: #d8c0f9;
}
.form-range::-webkit-slider-runnable-track {
    width: 100%;
    height: 0.5rem;
    color: transparent;
    cursor: pointer;
    background-color: #dee2e6;
    border-color: transparent;
    border-radius: 1rem;
}
.form-range::-moz-range-thumb {
    width: 1rem;
    height: 1rem;
    background-color: #7d2deb;
    border: 0;
    border-radius: 1rem;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    appearance: none;
}
.form-range::-moz-range-thumb:active {
    background-color: #d8c0f9;
}
.form-range::-moz-range-track {
    width: 100%;
    height: 0.5rem;
    color: transparent;
    cursor: pointer;
    background-color: #dee2e6;
    border-color: transparent;
    border-radius: 1rem;
}
.form-range:disabled {
    pointer-events: none;
}
.form-range:disabled::-webkit-slider-thumb {
    background-color: #adb5bd;
}
.form-range:disabled::-moz-range-thumb {
    background-color: #adb5bd;
}
.form-floating > .form-control,
.form-floating > .form-select {
    height: calc(3.5rem + 2px);
    line-height: 1.25;
}
.form-floating > label {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    padding: 1rem 0.75rem;
    pointer-events: none;
    border: 1px solid transparent;
    transform-origin: 0 0;
    transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
}
.form-floating > .form-control {
    padding: 1rem 0.75rem;
}
.form-floating > .form-control:focus,
.form-floating > .form-control:not(:placeholder-shown),
.form-floating > .form-select {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
}
.form-floating > .form-control::placeholder {
    color: transparent;
}
.form-floating > .form-control:-webkit-autofill {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
}
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
    opacity: 0.65;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:-webkit-autofill ~ label {
    opacity: 0.65;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}
.input-group > .form-control,
.input-group > .form-select {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
}
.input-group .btn:focus,
.input-group > .form-control:focus,
.input-group > .form-select:focus {
    z-index: 3;
}
.input-group .btn {
    position: relative;
    z-index: 2;
}
.input-group-text {
    display: flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}
.invalid-tooltip,
.valid-tooltip {
    top: 100%;
    z-index: 5;
    display: none;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    position: absolute;
    max-width: 100%;
}
.input-group-lg > .form-select,
.input-group-sm > .form-select {
    padding-right: 3rem;
}
.input-group.has-validation > .dropdown-toggle:nth-last-child(n + 4),
.input-group.has-validation > :nth-last-child(n + 3):not(.dropdown-toggle):not(.dropdown-menu),
.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n + 3),
.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),
.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    margin-left: -1px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.valid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: #198754;
}
.valid-tooltip {
    margin-top: 0.1rem;
    font-size: 0.875rem;
    color: #fff;
    background-color: rgba(25, 135, 84, 0.9);
}
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip,
.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip {
    display: block;
}
.form-control.is-valid,
.was-validated .form-control:valid {
    border-color: #198754;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.form-control.is-valid:focus,
.was-validated .form-control:valid:focus {
    border-color: #198754;
    box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}
.was-validated textarea.form-control:valid,
textarea.form-control.is-valid {
    padding-right: calc(1.5em + 0.75rem);
    background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}
.form-select.is-valid,
.was-validated .form-select:valid {
    border-color: #198754;
}
.form-select.is-valid:not([multiple]):not([size]),
.form-select.is-valid:not([multiple])[size="1"],
.was-validated .form-select:valid:not([multiple]):not([size]),
.was-validated .form-select:valid:not([multiple])[size="1"] {
    padding-right: 4.125rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),
        url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-position: right 0.75rem center, center right 2.25rem;
    background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.form-select.is-valid:focus,
.was-validated .form-select:valid:focus {
    border-color: #198754;
    box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}
.form-check-input.is-valid,
.was-validated .form-check-input:valid {
    border-color: #198754;
}
.form-check-input.is-valid:checked,
.was-validated .form-check-input:valid:checked {
    background-color: #198754;
}
.form-check-input.is-valid:focus,
.was-validated .form-check-input:valid:focus {
    box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}
.form-check-input.is-valid ~ .form-check-label,
.was-validated .form-check-input:valid ~ .form-check-label {
    color: #198754;
}
.form-check-inline .form-check-input ~ .invalid-feedback,
.form-check-inline .form-check-input ~ .valid-feedback {
    margin-left: 0.5em;
}
.input-group .form-control.is-valid,
.input-group .form-select.is-valid,
.was-validated .input-group .form-control:valid,
.was-validated .input-group .form-select:valid {
    z-index: 1;
}
.input-group .form-control.is-valid:focus,
.input-group .form-select.is-valid:focus,
.was-validated .input-group .form-control:valid:focus,
.was-validated .input-group .form-select:valid:focus {
    z-index: 3;
}
.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: #dc3545;
}
.invalid-tooltip {
    margin-top: 0.1rem;
    font-size: 0.875rem;
    color: #fff;
    background-color: rgba(220, 53, 69, 0.9);
}
.accordion-button,
.page-link {
    position: relative;
    background-color: #fff;
}
.accordion-button,
.table {
    color: #212529;
    width: 100%;
}
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip,
.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip {
    display: block;
}
.form-control.is-invalid,
.was-validated .form-control:invalid {
    border-color: #dc3545;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.form-control.is-invalid:focus,
.was-validated .form-control:invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}
.was-validated textarea.form-control:invalid,
textarea.form-control.is-invalid {
    padding-right: calc(1.5em + 0.75rem);
    background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}
.form-select.is-invalid,
.was-validated .form-select:invalid {
    border-color: #dc3545;
}
.form-select.is-invalid:not([multiple]):not([size]),
.form-select.is-invalid:not([multiple])[size="1"],
.was-validated .form-select:invalid:not([multiple]):not([size]),
.was-validated .form-select:invalid:not([multiple])[size="1"] {
    padding-right: 4.125rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),
        url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-position: right 0.75rem center, center right 2.25rem;
    background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.form-select.is-invalid:focus,
.was-validated .form-select:invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}
.form-check-input.is-invalid,
.was-validated .form-check-input:invalid {
    border-color: #dc3545;
}
.form-check-input.is-invalid:checked,
.was-validated .form-check-input:invalid:checked {
    background-color: #dc3545;
}
.form-check-input.is-invalid:focus,
.was-validated .form-check-input:invalid:focus {
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}
.form-check-input.is-invalid ~ .form-check-label,
.was-validated .form-check-input:invalid ~ .form-check-label {
    color: #dc3545;
}
.input-group .form-control.is-invalid,
.input-group .form-select.is-invalid,
.was-validated .input-group .form-control:invalid,
.was-validated .input-group .form-select:invalid {
    z-index: 2;
}
.input-group .form-control.is-invalid:focus,
.input-group .form-select.is-invalid:focus,
.was-validated .input-group .form-control:invalid:focus,
.was-validated .input-group .form-select:invalid:focus {
    z-index: 3;
}
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    list-style: none;
}
.accordion-body,
.accordion-button {
    padding: 1rem 1.25rem;
}
.breadcrumb-item + .breadcrumb-item {
    padding-left: 0.5rem;
}
.breadcrumb-item + .breadcrumb-item::before {
    float: left;
    padding-right: 0.5rem;
    color: #6c757d;
    content: var(--bs-breadcrumb-divider, "/");
}
.accordion-button {
    display: flex;
    align-items: center;
    font-size: 1rem;
    text-align: left;
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s;
}
.accordion-button:not(.collapsed) {
    color: #7129d4;
    background-color: #f2eafd;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}
.page-link:focus,
.page-link:hover {
    color: #6424bc;
    background-color: #e9ecef;
}
.accordion-button:focus,
.page-link:focus {
    box-shadow: 0 0 0 0.25rem rgba(125, 45, 235, 0.25);
    outline: 0;
}
.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%237129d4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-180deg);
}
.accordion-button::after {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    content: "";
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 1.25rem;
    transition: transform 0.2s ease-in-out;
}
.accordion-button:hover {
    z-index: 2;
}
.accordion-button:focus {
    z-index: 3;
    border-color: #be96f5;
}
.accordion-item {
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.125);
}
.accordion-item:first-of-type {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}
.accordion-item:last-of-type,
.accordion-item:last-of-type .accordion-collapse {
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}
.accordion-flush .accordion-collapse {
    border-width: 0;
}
.accordion-flush .accordion-item {
    border-right: 0;
    border-left: 0;
    border-radius: 0;
}
.accordion-flush .accordion-item:last-child {
    border-bottom: 0;
}
.fade {
    transition: opacity 0.15s linear;
}
.fade:not(.show) {
    opacity: 0;
}
.collapsing {
    height: 0;
    overflow: hidden;
    transition: height 0.35s;
}
.collapsing.collapse-horizontal {
    width: 0;
    height: auto;
    transition: width 0.35s;
}
.table {
    --bs-table-bg: transparent;
    --bs-table-accent-bg: transparent;
    --bs-table-striped-color: #212529;
    --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
    --bs-table-active-color: #212529;
    --bs-table-active-bg: rgba(0, 0, 0, 0.1);
    --bs-table-hover-color: #212529;
    --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
    vertical-align: top;
}
.table > :not(caption) > * > * {
    padding: 0.5rem;
    background-color: var(--bs-table-bg);
    border-bottom-width: 1px;
    box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}
.table > tbody {
    vertical-align: inherit;
}
.table > thead {
    vertical-align: bottom;
}
.table > :not(:first-child) {
    border-top: 2px solid currentColor;
}
.caption-top {
    caption-side: top;
}
.table-sm > :not(caption) > * > * {
    padding: 0.25rem;
}
.table-bordered > :not(caption) > * {
    border-width: 1px 0;
}
.table-bordered > :not(caption) > * > * {
    border-width: 0 1px;
}
.list-group-flush > .list-group-item:last-child,
.table-borderless > :not(caption) > * > * {
    border-bottom-width: 0;
}
.list-group-item + .list-group-item,
.table-borderless > :not(:first-child) {
    border-top-width: 0;
}
.table-striped > tbody > tr:nth-of-type(odd) > * {
    --bs-table-accent-bg: var(--bs-table-striped-bg);
    color: var(--bs-table-striped-color);
}
.table-active {
    --bs-table-accent-bg: var(--bs-table-active-bg);
    color: var(--bs-table-active-color);
}
.table-danger,
.table-info,
.table-light,
.table-primary,
.table-secondary,
.table-success,
.table-warning {
    --bs-table-striped-color: #000;
    --bs-table-active-color: #000;
    --bs-table-hover-color: #000;
    color: #000;
}
.table-hover > tbody > tr:hover > * {
    --bs-table-accent-bg: var(--bs-table-hover-bg);
    color: var(--bs-table-hover-color);
}
.table-primary {
    --bs-table-bg: #e5d5fb;
    --bs-table-striped-bg: #dacaee;
    --bs-table-active-bg: #cec0e2;
    --bs-table-hover-bg: #d4c5e8;
    border-color: #cec0e2;
}
.table-secondary {
    --bs-table-bg: #e9defb;
    --bs-table-striped-bg: #ddd3ee;
    --bs-table-active-bg: #d2c8e2;
    --bs-table-hover-bg: #d8cde8;
    border-color: #d2c8e2;
}
.table-success {
    --bs-table-bg: #d1e7dd;
    --bs-table-striped-bg: #c7dbd2;
    --bs-table-active-bg: #bcd0c7;
    --bs-table-hover-bg: #c1d6cc;
    border-color: #bcd0c7;
}
.table-info {
    --bs-table-bg: #cff4fc;
    --bs-table-striped-bg: #c5e8ef;
    --bs-table-active-bg: #badce3;
    --bs-table-hover-bg: #bfe2e9;
    border-color: #badce3;
}
.table-warning {
    --bs-table-bg: #fff3cd;
    --bs-table-striped-bg: #f2e7c3;
    --bs-table-active-bg: #e6dbb9;
    --bs-table-hover-bg: #ece1be;
    border-color: #e6dbb9;
}
.table-danger {
    --bs-table-bg: #f8d7da;
    --bs-table-striped-bg: #eccccf;
    --bs-table-active-bg: #dfc2c4;
    --bs-table-hover-bg: #e5c7ca;
    border-color: #dfc2c4;
}
.table-light {
    --bs-table-bg: #f8f9fa;
    --bs-table-striped-bg: #ecedee;
    --bs-table-active-bg: #dfe0e1;
    --bs-table-hover-bg: #e5e6e7;
    border-color: #dfe0e1;
}
.table-dark {
    --bs-table-bg: #001f33;
    --bs-table-striped-bg: #0d2a3d;
    --bs-table-striped-color: #ffffff;
    --bs-table-active-bg: #1a3547;
    --bs-table-active-color: #ffffff;
    --bs-table-hover-bg: #133042;
    --bs-table-hover-color: #ffffff;
    color: #fff;
    border-color: #1a3547;
}
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.wtSpreader  > table {
	width: 100% !important;
}
.pagination {
    display: flex;
    padding-left: 0;
    list-style: none;
}
.page-link {
    display: block;
    color: #7d2deb;
    text-decoration: none;
    border: 1px solid #dee2e6;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    padding: 0.375rem 0.75rem;
}
.page-link:hover {
    z-index: 2;
    border-color: #dee2e6;
}
.page-link:focus {
    z-index: 3;
}
.page-item:not(:first-child) .page-link {
    margin-left: -1px;
}
.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #7d2deb;
    border-color: #7d2deb;
}
.page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #fff;
    border-color: #dee2e6;
}
.page-item:first-child .page-link {
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}
.page-item:last-child .page-link {
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
}
.pagination-lg .page-link {
    padding: 0.75rem 1.5rem;
    font-size: 1.25rem;
}
.pagination-lg .page-item:first-child .page-link {
    border-top-left-radius: 0.3rem;
    border-bottom-left-radius: 0.3rem;
}
.pagination-lg .page-item:last-child .page-link {
    border-top-right-radius: 0.3rem;
    border-bottom-right-radius: 0.3rem;
}
.pagination-sm .page-link {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
}
.pagination-sm .page-item:first-child .page-link {
    border-top-left-radius: 0.2rem;
    border-bottom-left-radius: 0.2rem;
}
.pagination-sm .page-item:last-child .page-link {
    border-top-right-radius: 0.2rem;
    border-bottom-right-radius: 0.2rem;
}
.list-group {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    border-radius: 0.25rem;
}
.list-group-numbered {
    list-style-type: none;
    counter-reset: section;
}
.list-group-numbered > li::before {
    content: counters(section, ".") ". ";
    counter-increment: section;
}
.list-group-item-action {
    width: 100%;
    color: #495057;
    text-align: inherit;
}
.list-group-item-action:focus,
.list-group-item-action:hover {
    z-index: 1;
    color: #495057;
    text-decoration: none;
    background-color: #f8f9fa;
}
.list-group-item-action:active {
    color: #212529;
    background-color: #e9ecef;
}
.graphBlueBox .graphLft ul li a.pageLink:before,
.list-group-item {
    background-color: #fff;
}
.list-group-item {
    position: relative;
    display: block;
    padding: 0.5rem 1rem;
    color: #212529;
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, 0.125);
}
.list-group-item:first-child {
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}
.list-group-item:last-child {
    border-bottom-right-radius: inherit;
    border-bottom-left-radius: inherit;
}
.list-group-item.disabled,
.list-group-item:disabled {
    color: #6c757d;
    pointer-events: none;
    background-color: #fff;
}
.list-group-item.active {
    z-index: 2;
    color: #fff;
    background-color: #7d2deb;
    border-color: #7d2deb;
}
.list-group-item + .list-group-item.active {
    margin-top: -1px;
    border-top-width: 1px;
}
.list-group-horizontal > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
}
.list-group-horizontal > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    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: 1px;
    border-left-width: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
}
.list-group-flush > .list-group-item {
    border-width: 0 0 1px;
}
.list-group-item-primary {
    color: #4b1b8d;
    background-color: #e5d5fb;
}
.list-group-item-primary.list-group-item-action:focus,
.list-group-item-primary.list-group-item-action:hover {
    color: #4b1b8d;
    background-color: #cec0e2;
}
.list-group-item-primary.list-group-item-action.active {
    color: #fff;
    background-color: #4b1b8d;
    border-color: #4b1b8d;
}
.list-group-item-secondary {
    color: #58358c;
    background-color: #e9defb;
}
.list-group-item-secondary.list-group-item-action:focus,
.list-group-item-secondary.list-group-item-action:hover {
    color: #58358c;
    background-color: #d2c8e2;
}
.list-group-item-secondary.list-group-item-action.active {
    color: #fff;
    background-color: #58358c;
    border-color: #58358c;
}
.list-group-item-success {
    color: #0f5132;
    background-color: #d1e7dd;
}
.list-group-item-success.list-group-item-action:focus,
.list-group-item-success.list-group-item-action:hover {
    color: #0f5132;
    background-color: #bcd0c7;
}
.list-group-item-success.list-group-item-action.active {
    color: #fff;
    background-color: #0f5132;
    border-color: #0f5132;
}
.list-group-item-info {
    color: #055160;
    background-color: #cff4fc;
}
.list-group-item-info.list-group-item-action:focus,
.list-group-item-info.list-group-item-action:hover {
    color: #055160;
    background-color: #badce3;
}
.list-group-item-info.list-group-item-action.active {
    color: #fff;
    background-color: #055160;
    border-color: #055160;
}
.list-group-item-warning {
    color: #664d03;
    background-color: #fff3cd;
}
.list-group-item-warning.list-group-item-action:focus,
.list-group-item-warning.list-group-item-action:hover {
    color: #664d03;
    background-color: #e6dbb9;
}
.list-group-item-warning.list-group-item-action.active {
    color: #fff;
    background-color: #664d03;
    border-color: #664d03;
}
.list-group-item-danger {
    color: #842029;
    background-color: #f8d7da;
}
.list-group-item-danger.list-group-item-action:focus,
.list-group-item-danger.list-group-item-action:hover {
    color: #842029;
    background-color: #dfc2c4;
}
.list-group-item-danger.list-group-item-action.active {
    color: #fff;
    background-color: #842029;
    border-color: #842029;
}
.list-group-item-light {
    color: #636464;
    background-color: #fefefe;
}
.list-group-item-light.list-group-item-action:focus,
.list-group-item-light.list-group-item-action:hover {
    color: #636464;
    background-color: #e5e5e5;
}
.list-group-item-light.list-group-item-action.active {
    color: #fff;
    background-color: #636464;
    border-color: #636464;
}
.list-group-item-dark {
    color: #00131f;
    background-color: #ccd2d6;
}
.list-group-item-dark.list-group-item-action:focus,
.list-group-item-dark.list-group-item-action:hover {
    color: #00131f;
    background-color: #b8bdc1;
}
.list-group-item-dark.list-group-item-action.active {
    color: #fff;
    background-color: #00131f;
    border-color: #00131f;
}
.align-baseline {
    vertical-align: baseline !important;
}
.align-top {
    vertical-align: top !important;
}
.align-middle {
    vertical-align: middle !important;
}
.align-bottom {
    vertical-align: bottom !important;
}
.align-text-bottom {
    vertical-align: text-bottom !important;
}
.align-text-top {
    vertical-align: text-top !important;
}
.float-start {
    float: left !important;
}
.float-end {
    float: right !important;
}
.float-none {
    float: none !important;
}
.opacity-0 {
    opacity: 0 !important;
}
.opacity-25 {
    opacity: 0.25 !important;
}
.opacity-50 {
    opacity: 0.5 !important;
}
.opacity-75 {
    opacity: 0.75 !important;
}
.opacity-100 {
    opacity: 1 !important;
}
.overflow-auto {
    overflow: auto !important;
}
.overflow-hidden {
    overflow: hidden !important;
}
.overflow-visible {
    overflow: visible !important;
}
.overflow-scroll {
    overflow: scroll !important;
}
.d-inline {
    display: inline !important;
}
.d-inline-block {
    display: inline-block !important;
}
.d-block {
    display: block !important;
}
.d-grid {
    display: grid !important;
}
.d-table {
    display: table !important;
}
.d-table-row {
    display: table-row !important;
}
.d-table-cell {
    display: table-cell !important;
}
.d-flex {
    display: flex !important;
}
.d-inline-flex {
    display: inline-flex !important;
}
.chat .chat-window,
.shadow {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}
.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}
.shadow-none {
    box-shadow: none !important;
}
.position-static {
    position: static !important;
}
.position-relative {
    position: relative !important;
}
.position-absolute {
    position: absolute !important;
}
.position-fixed {
    position: fixed !important;
}
.position-sticky {
    position: sticky !important;
}
.top-0 {
    top: 0 !important;
}
.top-50 {
    top: 50% !important;
}
.top-100 {
    top: 100% !important;
}
.bottom-0 {
    bottom: 0 !important;
}
.bottom-50 {
    bottom: 50% !important;
}
.bottom-100 {
    bottom: 100% !important;
}
.start-0 {
    left: 0 !important;
}
.start-50 {
    left: 50% !important;
}
.start-100 {
    left: 100% !important;
}
.end-0 {
    right: 0 !important;
}
.end-50 {
    right: 50% !important;
}
.end-100 {
    right: 100% !important;
}
.translate-middle {
    transform: translate(-50%, -50%) !important;
}
.translate-middle-x {
    transform: translateX(-50%) !important;
}
.translate-middle-y {
    transform: translateY(-50%) !important;
}
.border {
    border: 1px solid #dee2e6 !important;
}
.border-0,
.header .search-block input,
.news-section .nav-link,
.our-services-section .nav-link,
.tab-content-section .nav-link,
.teams-section .nav-link {
    border: 0 !important;
}
section.teams-section img {
    filter: grayscale(100%);
    height: 200px;
    width: 200px;
    transition: all .5s ease;
}
/*
section.teams-section img:hover {
    filter: none;
    transform: scale(1.1);
}
*/
section.teams-section img:hover {
    filter: grayscale(0%);
    transform: scale(1.1); /* Slight zoom effect */
}
.image-container {
    overflow: hidden;
    width: 200px; /* Same as the image dimensions */
    height: 200px; /* Same as the image dimensions */
}
.border-top {
    border-top: 1px solid #dee2e6 !important;
}
.border-top-0 {
    border-top: 0 !important;
}
.border-end {
    border-right: 1px solid #dee2e6 !important;
}
.border-end-0 {
    border-right: 0 !important;
}
.border-bottom {
    border-bottom: 1px solid #dee2e6 !important;
}
.border-bottom-0 {
    border-bottom: 0 !important;
}
.border-start {
    border-left: 1px solid #dee2e6 !important;
}
.border-start-0 {
    border-left: 0 !important;
}
.border-primary {
    border-color: #7d2deb !important;
}
.border-secondary {
    border-color: #9358e9 !important;
}
.border-success {
    border-color: #198754 !important;
}
.border-info {
    border-color: #0dcaf0 !important;
}
.border-warning {
    border-color: #ffc107 !important;
}
.border-danger {
    border-color: #dc3545 !important;
}
.border-light {
    border-color: #f8f9fa !important;
}
.border-dark {
    border-color: #001f33 !important;
}
.border-white {
    border-color: #fff !important;
}
.border-1 {
    border-width: 1px !important;
}
.border-2,
.btn {
    border-width: 2px !important;
}
.border-3 {
    border-width: 3px !important;
}
.border-4 {
    border-width: 4px !important;
}
.border-5 {
    border-width: 5px !important;
}
.w-25 {
    width: 25% !important;
}
.w-50 {
    width: 50% !important;
}
.w-75 {
    width: 75% !important;
}
#jump-section li,
.w-100 {
    width: 100% !important;
}
.w-auto {
    width: auto !important;
}
.mw-100 {
    max-width: 100% !important;
}
.vw-100 {
    width: 100vw !important;
}
.min-vw-100 {
    min-width: 100vw !important;
}
.h-25 {
    height: 25% !important;
}
.h-50 {
    height: 50% !important;
}
.h-75 {
    height: 75% !important;
}
.h-100 {
    height: 100% !important;
}
.h-auto {
    height: auto !important;
}
.mh-100 {
    max-height: 100% !important;
}
.vh-100 {
    height: 100vh !important;
}
.min-vh-100 {
    min-height: 100vh !important;
}
.flex-fill {
    flex: 1 1 auto !important;
}
.flex-row {
    flex-direction: row !important;
}
.flex-column {
    flex-direction: column !important;
}
.flex-row-reverse {
    flex-direction: row-reverse !important;
}
.flex-column-reverse {
    flex-direction: column-reverse !important;
}
.flex-grow-0 {
    flex-grow: 0 !important;
}
.flex-grow-1 {
    flex-grow: 1 !important;
}
.flex-shrink-0 {
    flex-shrink: 0 !important;
}
.flex-shrink-1 {
    flex-shrink: 1 !important;
}
.flex-wrap {
    flex-wrap: wrap !important;
}
.flex-nowrap {
    flex-wrap: nowrap !important;
}
.flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
}
.gap-0 {
    gap: 0 !important;
}
.gap-1 {
    gap: 0.25rem !important;
}
.gap-2 {
    gap: 0.5rem !important;
}
.gap-3 {
    gap: 1rem !important;
}
.gap-4 {
    gap: 1.5rem !important;
}
.gap-5 {
    gap: 2rem !important;
}
.gap-6 {
    gap: 3rem !important;
}
.gap-7 {
    gap: 4rem !important;
}
.gap-8 {
    gap: 5rem !important;
}
.gap-9 {
    gap: 6rem !important;
}
.gap-10 {
    gap: 7rem !important;
}
.gap-11 {
    gap: 8rem !important;
}
.gap-12 {
    gap: 9rem !important;
}
.gap-13 {
    gap: 10rem !important;
}
.gap-14 {
    gap: 11rem !important;
}
.gap-15 {
    gap: 12rem !important;
}
.justify-content-start {
    justify-content: flex-start !important;
}
.justify-content-end {
    justify-content: flex-end !important;
}
.justify-content-center {
    justify-content: center !important;
}
.justify-content-between {
    justify-content: space-between !important;
}
.justify-content-around {
    justify-content: space-around !important;
}
.justify-content-evenly {
    justify-content: space-evenly !important;
}
.align-items-start {
    align-items: flex-start !important;
}
.align-items-end {
    align-items: flex-end !important;
}
.align-items-center {
    align-items: center !important;
}
.align-items-baseline {
    align-items: baseline !important;
}
.align-items-stretch {
    align-items: stretch !important;
}
.align-content-start {
    align-content: flex-start !important;
}
.align-content-end {
    align-content: flex-end !important;
}
.align-content-center {
    align-content: center !important;
}
.align-content-between {
    align-content: space-between !important;
}
.align-content-around {
    align-content: space-around !important;
}
.align-content-stretch {
    align-content: stretch !important;
}
.align-self-auto {
    align-self: auto !important;
}
.align-self-start {
    align-self: flex-start !important;
}
.align-self-end {
    align-self: flex-end !important;
}
.align-self-center {
    align-self: center !important;
}
.align-self-baseline {
    align-self: baseline !important;
}
.align-self-stretch {
    align-self: stretch !important;
}
.order-first {
    order: -1 !important;
}
.order-0 {
    order: 0 !important;
}
.order-1 {
    order: 1 !important;
}
.order-2 {
    order: 2 !important;
}
.order-3 {
    order: 3 !important;
}
.order-4 {
    order: 4 !important;
}
.order-5 {
    order: 5 !important;
}
.order-last {
    order: 6 !important;
}
.m-0,
.wpthemeCol,
.wpthemeControl {
    margin: 0 !important;
}
.m-1 {
    margin: 0.25rem !important;
}
.m-2 {
    margin: 0.5rem !important;
}
.m-3,
.our-services-section .nav-link {
    margin: 1rem !important;
}
.m-4 {
    margin: 1.5rem !important;
}
.m-5 {
    margin: 2rem !important;
}
.m-6 {
    margin: 3rem !important;
}
.m-7 {
    margin: 4rem !important;
}
.m-8 {
    margin: 5rem !important;
}
.m-9 {
    margin: 6rem !important;
}
.m-10 {
    margin: 7rem !important;
}
.m-11 {
    margin: 8rem !important;
}
.m-12 {
    margin: 9rem !important;
}
.m-13 {
    margin: 10rem !important;
}
.m-14 {
    margin: 11rem !important;
}
.m-15 {
    margin: 12rem !important;
}
.m-auto {
    margin: auto !important;
}
.mx-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
}
.mx-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
}
.mx-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
}
.mx-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
}
.hr-purple,
.mx-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
}
.mx-5 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
}
.mx-6 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
}
.mx-7 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
}
.mx-8 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
}
.mx-9 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
}
.mx-10 {
    margin-right: 7rem !important;
    margin-left: 7rem !important;
}
.mx-11 {
    margin-right: 8rem !important;
    margin-left: 8rem !important;
}
.mx-12 {
    margin-right: 9rem !important;
    margin-left: 9rem !important;
}
.mx-13 {
    margin-right: 10rem !important;
    margin-left: 10rem !important;
}
.mx-14 {
    margin-right: 11rem !important;
    margin-left: 11rem !important;
}
.mx-15 {
    margin-right: 12rem !important;
    margin-left: 12rem !important;
}
.mx-auto {
    margin-right: auto !important;
    margin-left: auto !important;
}
.my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
}
.my-2,
.news-section .nav-link,
.teams-section .nav-link {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
}
.my-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
}
.my-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}
.my-5 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
}
.my-6 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
}
.my-7 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
}
.my-8 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
}
.my-9 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
}
.my-10 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
}
.my-11 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
}
.my-12 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
}
.my-13 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
}
.my-14 {
    margin-top: 11rem !important;
    margin-bottom: 11rem !important;
}
.my-15 {
    margin-top: 12rem !important;
    margin-bottom: 12rem !important;
}
.my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
}
.mt-0 {
    margin-top: 0 !important;
}
.mt-1 {
    margin-top: 0.25rem !important;
}
.mt-2 {
    margin-top: 0.5rem !important;
}
.mt-3 {
    margin-top: 1rem !important;
}
.mt-4 {
    margin-top: 1.5rem !important;
}
.mt-5 {
    margin-top: 2rem !important;
}
.mt-6 {
    margin-top: 3rem !important;
}
.mt-7 {
    margin-top: 4rem !important;
}
.mt-8 {
    margin-top: 5rem !important;
}
.mt-9 {
    margin-top: 6rem !important;
}
.mt-10 {
    margin-top: 7rem !important;
}
.mt-11 {
    margin-top: 8rem !important;
}
.mt-12 {
    margin-top: 9rem !important;
}
.mt-13 {
    margin-top: 10rem !important;
}
.mt-14 {
    margin-top: 11rem !important;
}
.mt-15 {
    margin-top: 12rem !important;
}
.mt-auto {
    margin-top: auto !important;
}
.me-0 {
    margin-right: 0 !important;
}
.me-1 {
    margin-right: 0.25rem !important;
}
.me-2 {
    margin-right: 0.5rem !important;
}
.me-3 {
    margin-right: 1rem !important;
}
.me-4 {
    margin-right: 1.5rem !important;
}
.me-5 {
    margin-right: 2rem !important;
}
.me-6 {
    margin-right: 3rem !important;
}
.me-7 {
    margin-right: 4rem !important;
}
.me-8 {
    margin-right: 5rem !important;
}
.me-9 {
    margin-right: 6rem !important;
}
.me-10 {
    margin-right: 7rem !important;
}
.me-11 {
    margin-right: 8rem !important;
}
.me-12 {
    margin-right: 9rem !important;
}
.me-13 {
    margin-right: 10rem !important;
}
.me-14 {
    margin-right: 11rem !important;
}
.me-15 {
    margin-right: 12rem !important;
}
.me-auto {
    margin-right: auto !important;
}
.mb-0 {
    margin-bottom: 0 !important;
}
.mb-1 {
    margin-bottom: 0.25rem !important;
}
.mb-2 {
    margin-bottom: 0.5rem !important;
}
.mb-3 {
    margin-bottom: 1rem !important;
}
.mb-4 {
    margin-bottom: 1.5rem !important;
}
.mb-5 {
    margin-bottom: 2rem !important;
}
.mb-6 {
    margin-bottom: 3rem !important;
}
.mb-7 {
    margin-bottom: 4rem !important;
}
.mb-8 {
    margin-bottom: 5rem !important;
}
.mb-9 {
    margin-bottom: 6rem !important;
}
.mb-10 {
    margin-bottom: 7rem !important;
}
.mb-11 {
    margin-bottom: 8rem !important;
}
.mb-12 {
    margin-bottom: 9rem !important;
}
.mb-13 {
    margin-bottom: 10rem !important;
}
.mb-14 {
    margin-bottom: 11rem !important;
}
.mb-15 {
    margin-bottom: 12rem !important;
}
.mb-auto {
    margin-bottom: auto !important;
}
.ms-0 {
    margin-left: 0 !important;
}
.line:hover i,
.ms-1 {
    margin-left: 0.25rem !important;
}
.ms-2 {
    margin-left: 0.5rem !important;
}
.ms-3 {
    margin-left: 1rem !important;
}
.ms-4 {
    margin-left: 1.5rem !important;
}
.ms-5 {
    margin-left: 2rem !important;
}
.ms-6 {
    margin-left: 3rem !important;
}
.ms-7 {
    margin-left: 4rem !important;
}
.ms-8 {
    margin-left: 5rem !important;
}
.ms-9 {
    margin-left: 6rem !important;
}
.ms-10 {
    margin-left: 7rem !important;
}
.ms-11 {
    margin-left: 8rem !important;
}
.ms-12 {
    margin-left: 9rem !important;
}
.ms-13 {
    margin-left: 10rem !important;
}
.ms-14 {
    margin-left: 11rem !important;
}
.ms-15 {
    margin-left: 12rem !important;
}
.ms-auto {
    margin-left: auto !important;
}
.news-section .nav-link,
.our-services-section .nav-link,
.p-0,
.teams-section .nav-link,
.wpthemeLayoutContainers {
    padding: 0 !important;
}
.p-1 {
    padding: 0.25rem !important;
}
.p-2 {
    padding: 0.5rem !important;
}
.p-3 {
    padding: 1rem !important;
}
.p-4,
.tab-content-section .nav-link {
    padding: 1.5rem !important;
}
.p-5 {
    padding: 2rem !important;
}
.p-6 {
    padding: 3rem !important;
}
.p-7 {
    padding: 4rem !important;
}
.p-8 {
    padding: 5rem !important;
}
.p-9 {
    padding: 6rem !important;
}
.p-10 {
    padding: 7rem !important;
}
.p-11 {
    padding: 8rem !important;
}
.p-12 {
    padding: 9rem !important;
}
.p-13 {
    padding: 10rem !important;
}
.p-14 {
    padding: 11rem !important;
}
.p-15 {
    padding: 12rem !important;
}
.footer .nav .nav-link,
.px-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
}
.px-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
}
.header .search-block input,
.px-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
}
.px-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
}
.px-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
}
.px-5 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
}
.px-6 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
}
.px-7 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
}
.px-8 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
}
.px-9 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
}
.px-10 {
    padding-right: 7rem !important;
    padding-left: 7rem !important;
}
.px-11 {
    padding-right: 8rem !important;
    padding-left: 8rem !important;
}
.px-12 {
    padding-right: 9rem !important;
    padding-left: 9rem !important;
}
.px-13 {
    padding-right: 10rem !important;
    padding-left: 10rem !important;
}
.px-14 {
    padding-right: 11rem !important;
    padding-left: 11rem !important;
}
.px-15 {
    padding-right: 12rem !important;
    padding-left: 12rem !important;
}
.py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
.py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
}
.py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}
.py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}
.py-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
}
.py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}
.py-6 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}
.py-7 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}
.py-8 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}
.py-9 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
}
.py-10 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
}
.py-11 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
}
.py-12 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
}
.py-13 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
}
.py-14 {
    padding-top: 11rem !important;
    padding-bottom: 11rem !important;
}
.py-15 {
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
}
.pt-0 {
    padding-top: 0 !important;
}
.pt-1 {
    padding-top: 0.25rem !important;
}
.pt-2 {
    padding-top: 0.5rem !important;
}
.pt-3 {
    padding-top: 1rem !important;
}
.pt-4 {
    padding-top: 1.5rem !important;
}
.pt-5 {
    padding-top: 2rem !important;
}
.pt-6 {
    padding-top: 3rem !important;
}
.pt-7 {
    padding-top: 4rem !important;
}
.pt-8 {
    padding-top: 5rem !important;
}
.pt-9 {
    padding-top: 6rem !important;
}
.pt-10 {
    padding-top: 7rem !important;
}
.pt-11 {
    padding-top: 8rem !important;
}
.pt-12 {
    padding-top: 9rem !important;
}
.pt-13 {
    padding-top: 10rem !important;
}
.pt-14 {
    padding-top: 11rem !important;
}
.pt-15 {
    padding-top: 12rem !important;
}
.pe-0 {
    padding-right: 0 !important;
}
.pe-1 {
    padding-right: 0.25rem !important;
}
.pe-2 {
    padding-right: 0.5rem !important;
}
.pe-3 {
    padding-right: 1rem !important;
}
.pe-4 {
    padding-right: 1.5rem !important;
}
.pe-5 {
    padding-right: 2rem !important;
}
.pe-6 {
    padding-right: 3rem !important;
}
.pe-7 {
    padding-right: 4rem !important;
}
.pe-8 {
    padding-right: 5rem !important;
}
.pe-9 {
    padding-right: 6rem !important;
}
.pe-10 {
    padding-right: 7rem !important;
}
.pe-11 {
    padding-right: 8rem !important;
}
.pe-12 {
    padding-right: 9rem !important;
}
.pe-13 {
    padding-right: 10rem !important;
}
.pe-14 {
    padding-right: 11rem !important;
}
.pe-15 {
    padding-right: 12rem !important;
}
.pb-0 {
    padding-bottom: 0 !important;
}
.pb-1 {
    padding-bottom: 0.25rem !important;
}
.pb-2 {
    padding-bottom: 0.5rem !important;
}
.pb-3 {
    padding-bottom: 1rem !important;
}
.pb-4 {
    padding-bottom: 1.5rem !important;
}
.pb-5 {
    padding-bottom: 2rem !important;
}
.pb-6 {
    padding-bottom: 3rem !important;
}
.pb-7 {
    padding-bottom: 4rem !important;
}
.pb-8 {
    padding-bottom: 5rem !important;
}
.pb-9 {
    padding-bottom: 6rem !important;
}
.pb-10 {
    padding-bottom: 7rem !important;
}
.pb-11 {
    padding-bottom: 8rem !important;
}
.pb-12 {
    padding-bottom: 9rem !important;
}
.pb-13 {
    padding-bottom: 10rem !important;
}
.pb-14 {
    padding-bottom: 11rem !important;
}
.pb-15 {
    padding-bottom: 12rem !important;
}
.ps-0 {
    padding-left: 0 !important;
}
.ps-1 {
    padding-left: 0.25rem !important;
}
.ps-2 {
    padding-left: 0.5rem !important;
}
.ps-3 {
    padding-left: 1rem !important;
}
.ps-4 {
    padding-left: 1.5rem !important;
}
.ps-5 {
    padding-left: 2rem !important;
}
.ps-6 {
    padding-left: 3rem !important;
}
.ps-7 {
    padding-left: 4rem !important;
}
.ps-8 {
    padding-left: 5rem !important;
}
.ps-9 {
    padding-left: 6rem !important;
}
.ps-10 {
    padding-left: 7rem !important;
}
.ps-11 {
    padding-left: 8rem !important;
}
.ps-12 {
    padding-left: 9rem !important;
}
.ps-13 {
    padding-left: 10rem !important;
}
.ps-14 {
    padding-left: 11rem !important;
}
.ps-15 {
    padding-left: 12rem !important;
}
.font-monospace {
    font-family: var(--bs-font-monospace) !important;
}
.fs-1 {
    font-size: calc(1.375rem + 1.5vw) !important;
}
.fs-2 {
    font-size: calc(1.325rem + 0.9vw) !important;
}
.fs-3 {
    font-size: calc(1.3rem + 0.6vw) !important;
}
.fs-4 {
    font-size: calc(1.275rem + 0.3vw) !important;
}
.fs-5 {
    font-size: 1.25rem !important;
}
.fs-6 {
    font-size: 1rem !important;
}
.fst-italic {
    font-style: italic !important;
}
.fst-normal {
    font-style: normal !important;
}
.fw-light {
    font-weight: 300 !important;
}
.fw-lighter {
    font-weight: lighter !important;
}
.fw-normal {
    font-weight: 400 !important;
}
.fw-bold {
    font-weight: 700 !important;
}
.fw-bolder {
    font-weight: bolder !important;
}
.lh-1 {
    line-height: 1 !important;
}
.lh-sm {
    line-height: 1.25 !important;
}
.lh-base {
    line-height: 1.5 !important;
}
.lh-lg {
    line-height: 2 !important;
}
.text-start {
    text-align: left !important;
}
.text-end {
    text-align: right !important;
}
.text-center {
    text-align: center !important;
}
.text-decoration-none {
    text-decoration: none !important;
}
.text-decoration-underline {
    text-decoration: underline !important;
}
.text-decoration-line-through {
    text-decoration: line-through !important;
}
.text-lowercase {
    text-transform: lowercase !important;
}
.text-uppercase {
    text-transform: uppercase !important;
}
.text-capitalize {
    text-transform: capitalize !important;
}
.text-wrap {
    white-space: normal !important;
}
.jump-section-mobile .list-group-item,
.text-nowrap {
    white-space: nowrap !important;
}
.text-break {
    word-wrap: break-word !important;
    word-break: break-word !important;
}
.header .mainmenu .mainmenu-list.full-dropdown .nav-item .dropdown-menu .dropdown-item.active,
.text-primary {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}
.text-secondary {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}
.text-success {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
}
.text-info {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
}
.text-warning {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
}
.text-danger {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}
.text-light {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
}
.header .mainmenu .mainmenu-list.auto-dropdown .nav-item .dropdown-menu > li ul li,
.header .mainmenu .mainmenu-list.full-dropdown .nav-item .dropdown-menu > li ul li,
.text-dark {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}
.text-black {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
}
.header .mainmenu .mainmenu-list.full-dropdown .nav-item .dropdown-menu .dropdown-item:active,
.header .mainmenu .mainmenu-list.full-dropdown .nav-item .dropdown-menu .dropdown-item:focus,
.text-white {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}
.text-body {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
}
.text-muted {
    --bs-text-opacity: 1;
    color: #6c757d !important;
}
.text-black-50 {
    --bs-text-opacity: 1;
    color: rgba(0, 0, 0, 0.5) !important;
}
.text-white-50 {
    --bs-text-opacity: 1;
    color: rgba(255, 255, 255, 0.5) !important;
}
.text-reset {
    --bs-text-opacity: 1;
    color: inherit !important;
}
.text-opacity-25 {
    --bs-text-opacity: 0.25;
}
.text-opacity-50 {
    --bs-text-opacity: 0.5;
}
.text-opacity-75 {
    --bs-text-opacity: 0.75;
}
.text-opacity-100 {
    --bs-text-opacity: 1;
}
.bg-primary,
.line.line-primary::after {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
}
.bg-secondary,
.line.line-secondary::after {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
}
.bg-success {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
}
.bg-info {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
}
.bg-warning {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
}
.bg-danger {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
}
.bg-light {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
}
.bg-dark,
.header .mainmenu .mainmenu-list.full-dropdown .nav-item .dropdown-menu .dropdown-item:active,
.header .mainmenu .mainmenu-list.full-dropdown .nav-item .dropdown-menu .dropdown-item:focus,
.line.line-dark::after {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}
.bg-black {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
}
.bg-white,
.line.line-white::after {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
}
.bg-body {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
}
.bg-transparent,
.header .mainmenu .mainmenu-list.full-dropdown .nav-item .dropdown-menu .dropdown-item.active {
    --bs-bg-opacity: 1;
    background-color: transparent !important;
}
.bg-opacity-10 {
    --bs-bg-opacity: 0.1;
}
.bg-opacity-25 {
    --bs-bg-opacity: 0.25;
}
.bg-opacity-50 {
    --bs-bg-opacity: 0.5;
}
.bg-opacity-75 {
    --bs-bg-opacity: 0.75;
}
.bg-opacity-100 {
    --bs-bg-opacity: 1;
}
.bg-gradient {
    background-image: var(--bs-gradient) !important;
}
.user-select-all {
    user-select: all !important;
}
.user-select-auto {
    user-select: auto !important;
}
.user-select-none {
    user-select: none !important;
}
.pe-none {
    pointer-events: none !important;
}
.pe-auto {
    pointer-events: auto !important;
}
.rounded,
.rounded-2 {
    border-radius: 0.25rem !important;
}
.btn,
.header .mainmenu .mainmenu-list .nav-item .dropdown-menu .dropdown-submenu,
.rounded-0 {
    border-radius: 0 !important;
}
.rounded-1 {
    border-radius: 0.2rem !important;
}
.chat .chat-window,
.rounded-3 {
    border-radius: 0.3rem !important;
}
.rounded-circle {
    border-radius: 50% !important;
}
.btn.btn-icon,
.carousel-controls .carousel-indicators > button,
.carousel-controls.light .carousel-indicators > button,
.chat .chat-trigger,
.chat .chat-window .chat-close,
.rounded-pill,
.tab-content-section .company-info::-webkit-scrollbar-track,
.twitter-section .tweetslist::-webkit-scrollbar-track {
    border-radius: 50rem !important;
}
.rounded-end,
.rounded-top {
    border-top-right-radius: 0.25rem !important;
}
.rounded-bottom,
.rounded-end {
    border-bottom-right-radius: 0.25rem !important;
}
.rounded-bottom,
.rounded-start {
    border-bottom-left-radius: 0.25rem !important;
}
.rounded-start,
.rounded-top {
    border-top-left-radius: 0.25rem !important;
}
.invisible {
    visibility: hidden !important;
}




.content-chat {
    width: 100vw;
    height: auto;
    position: fixed;
    bottom: 0;
    z-index: 9999;
}
.chat .chat-trigger {
    background: url("../img/chat/chat.png") 0 0/100% no-repeat;
    position: absolute;
    bottom: 2rem;
    right: 0;
    width: 130px;
    height: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
    font-size: 14px;
    line-height: 1.2;
    cursor: pointer;
    z-index: 9;
    transform: scale(1);
    transition: 0.5s;
}
.chat .chat-trigger.small {
    transform: scale(0.6);
    bottom: 0;
    right: 0;
}
.chat .chat-window,
.chat .chat-window .chat-close {
    position: absolute;
    right: 1rem;
    transition: 0.3s;
    cursor: pointer;
}
.chat .chat-window {
    background: #fff;
    bottom: 12rem;
    width: 300px;
    height: 450px;
    display: none;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
    color: #a6b1b8;
    font-size: 14px;
    line-height: 1.2;
    z-index: 9999;
    opacity: 0;
    transform: translateY(5rem);
}
.chat .chat-window.open {
    transform: translateY(0);
    z-index: 10;
    opacity: 1;
}
.chat .chat-window .chat-close {
    background: #a6b1b8;
    width: 32px;
    height: 32px;
    top: 1rem;
    color: #f6f6f7;
    display: flex;
    justify-content: center;
    align-items: center;
}
.chat .chat-window .chat-close:hover {
    transform: scale(1.1);
}
.footer .logo  img {
    max-width: 100px;
}
.footer .other-group-select {
    border: 2px solid #001f33;
}
#home-slider .carousel-inner .carousel-item {
    transition: none;
}
#home-slider .carousel-inner {
    position: relative;
    width: 100vw;
    height: 80vh;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-x: hidden;
    transform: translateZ(-1);
    -webkit-transform: translateZ(-1);
    -moz-transform: translateZ(-1);
    z-index: 1;
}
#home-slider .carousel-caption {
    position: absolute;
    top: 1.25rem;
    left: 0;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: left;
    width: 100vw !important;
}
#home-slider .carousel-item .slider-image {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: -1;
    filter: brightness(80%);
}
#home-slider .carousel-item .slider-image img,
#home-slider .carousel-item .slider-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#home-slider .slider-content {
    height: 81vh;
}
.carousel-controls {
    position: relative;
    width: 100%;
    height: 60px;
}
.carousel-controls .carousel-pause {
    margin: 0 2rem 0 0;
}
.carousel-controls .carousel-indicators {
    margin: 0;
    padding: 0;
    position: initial;
}
.carousel-controls .carousel-indicators > button {
    width: 20px;
    height: 20px;
    margin: 0 0.3rem;
    border: 0;
    opacity: 1;
}
.carousel-controls .carousel-indicators > button.active,
.carousel-controls.light .carousel-indicators > button.active {
    background: #9358e9;
}
.carousel-controls .carousel-control-next,
.carousel-controls .carousel-control-prev {
    opacity: 1;
    position: initial;
    width: auto;
}
.carousel-controls .carousel-control-next .carousel-control-next-icon,
.carousel-controls .carousel-control-next .carousel-control-prev-icon,
.carousel-controls .carousel-control-prev .carousel-control-next-icon,
.carousel-controls .carousel-control-prev .carousel-control-prev-icon {
    width: 3rem;
    height: 3rem;
}
.carousel-controls.light {
    width: auto;
    height: auto;
}
.carousel-controls.light .carousel-indicators > button {
    background: #a6b1b8;
    width: 1.2rem;
    height: 1.2rem;
    margin: 0 0.3rem;
    border: 0;
    opacity: 1;
}
.carousel-controls.light .carousel-control-next,
.carousel-controls.light .carousel-control-prev {
    color: #a6b1b8 !important;
    font-size: 2rem;
}
.carousel-controls.light .carousel-control-next i,
.carousel-controls.light .carousel-control-prev i {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#companyDetailsTab .nav-item .nav-link {
    border-right: 1px solid #fff !important;
}
.news-section .nav-link.active,
.teams-section .nav-link.active {
    background: 0 0;
    color: #001f33;
    font-weight: 700;
    text-decoration: none;
}
.news-section .tab-content,
.tab-content-section .tab-content,
.teams-section .tab-content {
    color: #001f33;
    min-height: 210px;
}
.news-section .tab-pane .slider-body,
.tab-content-section .tab-pane .slider-body,
.teams-section .tab-pane .slider-body {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.tab-content-section {
    background: #f0f1f3;
}
.tab-content-section .nav-link {
    background-color: #7e8d99;
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    border-radius: 0;
}
.tab-content-section .nav-link.active {
    background: #f0f1f3;
    color: #001f33;
    font-weight: 700;
    text-decoration: none;
}
.tab-content-section .tab-pane {
    background: #f0f1f3;
    width: 100%;
}
.carousel-inner .carousel-item-next,
.carousel-inner .carousel-item-prev,
.carousel-inner .carousel-item.active,
.pagination .page-item,
.tab-content-section .tab-pane.active {
    display: flex;
}
.tab-content-section .company-info {
    width: 100%;
    height: 450px;
    overflow: auto;
}
.tab-content-section .company-info::-webkit-scrollbar,
.tab-content-section .company-info::-webkit-scrollbar-thumb,
.tab-content-section .company-info::-webkit-scrollbar-track {
    width: 10px;
    border: none;
    background: 0 0;
}
.tab-content-section .company-info::-webkit-resizer,
.tab-content-section .company-info::-webkit-scrollbar-button,
.tab-content-section .company-info::-webkit-scrollbar-corner,
.tab-content-section .company-info::-webkit-scrollbar-track-piece {
    display: none;
}
.tab-content-section .company-info::-webkit-scrollbar-thumb {
    border-radius: 16px;
    background-color: #001f33;
}
.tab-content-section .company-info::-webkit-scrollbar-track {
    background: #e9ecef;
    background: linear-gradient(90deg, transparent 0, transparent 40%, #001f33 40%, #001f33 60%, transparent 60%, transparent 100%);
}


/* keyboard shorcuts css begin */

.shortcuts-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
  gap: 20px; 
}

.column {
  list-style-type: none;
  padding-left: 0;
}

.accordion-body {
  padding: 20px;
  background-color: #f9f9f9;
  font-size: 14px;
  color: #333;
}

.accordion-body ul li {
  margin-bottom: 8px;
}

.close-button {
  background: none;
  border: none;
  font-size: 24px;
  color: #555;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
}

.close-button:hover {
  color: #d9534f;
}

.accordion-body {
    padding: 20px;
    background-color: #f9f9f9;
}

.keyboard-shortcuts {
    display: flex;
    flex-wrap: wrap;  
    gap: 20px;  
}

.keyboard-shortcuts li {
    flex: 1 0 45%;
    list-style: none;
}

.close-button {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    float: right;
}

.close-button:hover {
    color: #ff0000;
}


.form-group {
	display: flex;
	flex-direction: row;
	gap: 16px;
	align-items: flex-end;
	margin-bottom: 40px;
	justify-content: space-between;
}

.result-container {
	display: flex;
	margin-bottom: 16px;
	gap: 8px;
	padding: 16px 20px;
	border-radius: 12px;
}

.result-container.success {
	background-color: #eaf4fc;
}

.result-container.error {
	background-color: #fceaea;
}

.result-container-der.success {
	background-color: #eaf4fc;
}

.result-container-der.error {
	background-color: #fceaea;
}

.label-bold {
	font-weight: bold;
}

.result-label {
	color: #1d4e89;
}

.result-value {
	color: #00b4ff;
}

.result-container.error .result-label, .result-container.error .result-value, .result-container-der.error .result-value, .result-container-der.error .result-label
	{
	color: #c52727;
}

.input-group {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.input-field {
	border: 1px solid #001f33;
	border-radius: 4px;
	padding: 8px 16px;
}

.button-group {
	display: flex;
	align-items: baseline;
	gap: 16px;
	flex-wrap: wrap;
}

.btn {
	border: 1px solid #001f33;
	padding: 8px 16px;
	border-radius: 4px;
	cursor: pointer;
}

.primary {
	background-color: #001f33;
	color: white;
}

.secondary {
	background-color: #fff;
	color: #001f33;
}

[lang=ar] #calculate-button {
	margin-right: auto;
}

[lang=en] #calculate-button {
	margin-left: auto;
}

.htbold span, .label-bold {
	font-weight: bold !important;
}

.keyboard-shortcuts {
	position: relative;
	border: 0px solid #ddd;
	border-radius: 12px;
	background-color: #fafafa;
	padding: 20px;
	margin-bottom: 16px;
}

.keyboard-shortcuts h3 {
	font-size: 19px;
	color: #34495e;
	margin-bottom: 12px;
	font-weight: 600;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.keyboard-shortcuts ul {
	padding-left: 0;
	list-style-type: none;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 8px;
}

[lang=en] .keyboard-shortcuts li {
	font-size: 15px;
	color: #555;
	border-left: 3px solid #00b4ff;
	padding: 5px 5px;
}

[lang=ar] .keyboard-shortcuts li {
	font-size: 15px;
	color: #555;
	border-right: 3px solid #00b4ff;
	padding: 5px 5px;
}

.keyboard-shortcuts li strong {
	color: #00b4ff;
}

.close-button {
	background: none;
	border: none;
	font-size: 24px;
	color: #555;
	cursor: pointer;
	margin-left: 10px;
	transition: color 0.3s ease;
}

.close-button:hover {
	color: #d9534f;
}


/* Added to fix tab functionality */
.tab-content {
	position: relative;
	padding: 15px; /* Optional: You can add padding for spacing */
	display: block; /* Ensure it's a block element */
	z-index: 1; /* To avoid conflicts with other elements */
}

/* Ensure tab-pane is initially hidden, but the active one is shown */
.tab-pane {
	display: none; /* Hide all tabs initially */
}

.tab-pane.active {
	display: block !important; /* Only the active tab should be visible */
}

.result-container-der {
	display: block;
	margin-bottom: 16px;
	gap: 8px;
	padding: 16px 20px;
	border-radius: 12px;
}

/* Added to fix tab functionality */
.htDropdownArrow {
  display: flex; !important;
}

/*handsontable style costomization - Nilesh*/
/* Customized */
#accordionKeyboardShortcuts .accordion-button {
    font-weight: bold;
    font-size: 18px;
    background-color: #f0f1f3;
    color: #001f33;
    width: 230px;
    border: 0;
    box-shadow: unset;
}
.accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
    filter: invert(1);
    filter: invert(1%) sepia(17%) saturate(54%) hue-rotate(169deg) brightness(57%) contrast(155%);
}

/*.handsontable .ht_master:not(.innerBorderInlineStart):not(.emptyColumns) tbody tr th, .handsontable .ht_master:not(.innerBorderInlineStart):not(.emptyColumns) thead tr th:first-child, .handsontable .ht_master:not(.innerBorderInlineStart):not(.emptyColumns)~.handsontable:not(.htGhostTable) tbody tr th, .handsontable .ht_master:not(.innerBorderInlineStart):not(.emptyColumns)~.handsontable:not(.ht_clone_top):not(.htGhostTable) thead tr th:first-child {
    border-inline-end-width: 0;
    border-inline-start-width: 0;
}*/
.handsontable th:first-child{
/* border-bottom: 1px solid #ddd; */
}
.handsontable th:last-child{
border-right: 1px solid #ddd;
}
.handsontable tr:first-child th {
    border-top: 1px solid #ccc !important;
    border-bottom: 1px solid #ccc;
}
handsontable th:first-child {
    border-inline-start-color: var(--ht-border-color);
    border-bottom: 1px solid #ddd;
    border-block-end-color: unset;
    border-block-start-color: unset;
    border-left: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}
.handsontableInputHolder .handsontableInput{
resize: none !important;
    width: auto !important;
}
.wtHider{
width: 100%!important;
height: auto!important;
}

.handsontable .htMiddle {
    vertical-align: top;
}
#derivative .container {
	padding: 0;
}
.handsontable th:last-child {
    border-right: 1px solid #ddd;
    border-left: 1px solid #ddd;
}
handsontable.ht-wrapper .ht_clone_inline_start .htCore tbody tr:last-child th:first-child{
    border-end-start-radius: var(--ht-wrapper-border-radius);
    border-color: #ddd;
}
.handsontable tr:first-child td, .handsontable tr:first-child th {
    /*border-top: 1px solid #ccc !important;*/
    /*border-bottom: 0px solid #ccc !important;*/
}

.handsontable .htMiddle {
    vertical-align: top;
}
#derivative .container {
	padding: 0;
}
.handsontable th:last-child {
    border-right: 1px solid #ddd;
    border-left: 1px solid #ddd;
}
handsontable.ht-wrapper .ht_clone_inline_start .htCore tbody tr:last-child th:first-child{
    border-end-start-radius: var(--ht-wrapper-border-radius);
    border-color: #ddd;
}

.handsontable .ht_master:not(.innerBorderInlineStart):not(.emptyColumns) tbody tr th, .handsontable .ht_master:not(.innerBorderInlineStart):not(.emptyColumns) thead tr th:first-child, .handsontable .ht_master:not(.innerBorderInlineStart):not(.emptyColumns)~.handsontable:not(.htGhostTable) tbody tr th, .handsontable .ht_master:not(.innerBorderInlineStart):not(.emptyColumns)~.handsontable:not(.ht_clone_top):not(.htGhostTable) thead tr th:first-child {
    border-left: 1px solid #ccc;
    border-right-width: 0;
    height: 60px !important;
    border-bottom: 1px solid #ccc;
}

.ht_master .wtHolder {
  overflow: auto !important;
}


/*Issue4 in Excel*/

#row-numbers, #row-numbers-derivative {
    width: 340px;
}
.primary-btn{
color: #003dda;
    border: 2px solid #003dda!important;
    background: #fff;
    padding: 7px 40px 7px 25px;
    height: 47px;
    font-size: 18px;
    font-family: "Avenir-Heavy";
    position: relative;
}
.primary-btn:hover{
    background: white!important;
    color: #003dda!important;
 border: 2px solid #003dda!important;
}
.primary-btn:after{
      border-color: #003dda !important;
    transition: all .5s 
ease;
 
}
#clear-row-derivative, #clear-row {
	width: 160px;
    background-color: transparent;
}

#remove-row, #remove-row-derivative {
    width: 160px;
    height: 46px;
}

.ui-dialog-title{
    color: #001f33!important;
    font-size: 32px!important;
    font-family: "Avenir-Book";
    padding-bottom: 8px;
    position: relative;
    margin-bottom: 0;
    text-align: left!important;
    text-transform: capitalize!important;
}
.ui-dialog-titlebar{
    background-color: white!important;
    box-shadow: none;
    box-sizing: 0;
    border: 0 !important;;
    padding-inline-start: 40px!important;
    padding-block-start: 20px!important;
}

.accordion-container h2 {
    margin-bottom: 0 !important;
    font-size: 30px !important;
}
#disclaimerDialog {
    text-align: left!important;
    padding: 20px 10px 3px 45px!important;
    font-weight: 600;
    height: auto;
    overflow: hidden;
}
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
    justify-content: flex-end!important;
    padding-inline-end: 25px!important;
    gap: 10px;
    display: flex
;
}
.ui-dialog .ui-dialog-titlebar-close{
border: 0;
    color: blue!important;
}
#disclaimerDialog{
height: auto!important;
}
.ui-dialog-buttonpane{
	padding-block-end: 20px!important;
}
#ok_btn{
color: #003dda;
    border: 2px solid #003dda !important;
    background: #fff;
    padding: 7px 40px 7px 25px;
    height: 47px;
    font-size: 18px;
}
.secondary-btn{
border: 0!important;
   
    font-size: 18px;
}
.secondary-btn:after{
border: solid #001f33;
    border-width: 0 2px 2px 0;
    content: "";
    display: inline-block;
    margin: 0 2px 1px 6px;
    padding: 3px;
    transform: rotate(315deg);
    border-color: #001f33 !important;
}
/*.secondary-btn:before {
    content: "";
    display: inline-block;
    padding: 0;
    bottom: 3px;
    width: 75%;
    height: 4px;
    background-color: #001f33;
   position: absolute;
    }*/
#calculate-button, #acceptBtn, #calculate-button-derivative {
width: 160px!important;
border: 2px solid #001f33 !important;
    color: #001f33 !important;
}
#accordionKeyboardShortcuts .accordion-item{
background-color: #f0f1f3 !important;
    border: 0;
}
.keyboard-shortcuts{
	border-bottom: 4px solid;
    border-radius: 0;
}
.accordion-container {
    padding: 0 30px 0 30px;
}


#clear-row, #clear-row-derivative{
    color: #212529;
    border: 2px solid #212529;
    width: 160px;
}
#clear-row:hover, #clear-row-derivative:hover{
background-color: #212529;
color: #fff;
}

#add-row, #add-row-derivative {
	width: 160px;
}

#calculate-button:hover{
color: #fff !important;
}
.two-columns > div div:last-of-type:only-child {
    margin-bottom: 38px;
}

/*16/11//2025*/
/*Issue 2 in Excel*/
.tab-content-section.row.gx-4.gx-sm-0{
    width: 1152px;
}

/*Issue 3 in Excel*/
#calculate-button, #acceptBtn {
    width: 160px !important;
    border: 2px solid #001f33 !important;
    color: #001f33 !important;
}

#accordionKeyboardShortcuts{
    margin-bottom: 0;
}
#accordionKeyboardShortcuts .accordion-item{
    margin-bottom: 10px;
}

.handsontable .changeType {
    text-align: center;
    background: #eee;
    border: 1px solid #bbb;
    border-radius: 2px;
    color: #bbb;
    float: right;
    font-size: 9px;
    line-height: 9px;
    margin: 3px 1px 0 5px;
    padding: 0!important;
    height: 12px;
    width: 13px;
}

.handsontable .ht_master table.htCore>thead {
    visibility: visible;
}
.ht-root-wrapper{
    height: auto;
}
/* .sheet-container{
    overflow-y: scroll;
    height: 600px;
}
.ht-wrapper.handsontable{
    height: 100%!important;
    overflow: hidden!important;
}


.sheet-container , .derivative-sheet-container{

    overflow-y: scroll;

    height: 600px;

}
 */
.ht_master:not(.innerBorderInlineStart):not(.emptyColumns)~.handsontable:not(.htGhostTable) tbody tr th {
    border-left: 1px solid #ccc;
    border-right-width: 0;
    height: 61px !important;
}

/*Copied from JSP*/
.handsontable th {
    background-color: rgb(0, 180, 255, 20%) !important;
	border-right: 1px solid #ccc;
    color: #222;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    padding: 0px 10px;
text-align: center;
}
.handsontable tr:first-child td, .handsontable tr:first-child th {
    border-top: 1px solid !important; }
.handsontable tr:first-child td, .handsontable tr:first-child th {
    border-top: 1px solid #ccc !important;
}
.handsontable.htRowHeaders thead tr th:nth-child(2) {
  border: 1px solid #ccc;
}

.handsontable  table > tbody > tr:nth-child(odd) td{
	border: 1px solid #ddd;
   /* border-right: none;*/
    border-spacing: 0;
    width: 100%;
	box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.054)!important;
    box-shadow: inset 0 0 0 9999px rgba(var(--dt-column-ordering), 0.054)!important;
}

.handsontable  table > tbody > tr:nth-child(even) td{
	border: 1px solid #ddd;
   /* border-right: none;*/
    border-spacing: 0;
    width: 100%;
	box-shadow: inset 0 0 0 9999px rgb(0 0 0 / 4%)!important;
    box-shadow: inset 0 0 0 9999px rgba(var(--dt-column-ordering), 4%)!important;
	
}

.derivative-sheet-container .htCore > thead > th , .sheet-container .htCore > thead > th {
	    height: auto !important;
}

.derivative-sheet-container .htCore > thead > tr > td , .sheet-container .htCore > tbody> tr > td {
	    height: auto !important;
}

.derivative-sheet-container .htCore .two-columns > div div:last-of-type:only-child {
    margin-bottom: 0 !important;
}

.sheet-container .handsontable > table > tbody > tr > th{
	    height: auto!important;
}

.handsontable tr:first-child th {
    background-color: rgb(0, 180, 255, 20%) !important;
    height: auto !important;
}

.handsontable .htAutocompleteArrow{
color: #bbb;
    cursor: default;
    float: right;
    font-size: 10px;
    text-align: center;
    width: 16px;
}
.handsontable .changeType {
    text-align: center;
    background: #eee;
    border: 1px solid #bbb;
    border-radius: 2px;
    color: #bbb;
    float: right;
    font-size: 9px;
    line-height: 9px;
    margin: 3px 1px 0 5px;
    padding: 3px;
    height: 12px;
    width: 13px;
}
.handsontable .changeType::before {
    content: "▼ ";
    left: 2px;
}

/*JQuery dialog*/
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
        float: none; /* Disable the default right float */
    }

    .ui-dialog .ui-dialog-buttonpane {
        text-align: center; /* Center the text (and thus the buttons) */
    }

#disclaimerDialog {
	text-align: justify;
}

.ui-dialog-buttons{
    z-index: 900;
}
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
    text-align: center;
}
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset .ui-button{
font-weight: 600;
}
.ui-dialog .ui-dialog-buttonpane button {
    margin: .5em .4em .5em 0;
    cursor: pointer;
    font-weight: 600;
    color: #477ea4;
    border: 1px solid #477ea4;
}
.ui-dialog .ui-dialog-buttonpane {
  
    border-width: 0;

}
.ui-dialog-content{
height: auto;
}
.ui-dialog .ui-dialog-title {

    text-align: center;
}
#disclaimerDialog {
    text-align: center;
    padding: 20px 10px 3px 10px;
    font-weight: 600;
}
.ui-widget.ui-widget-content {
    border: 1px solid #c5c5c5;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2), 0 8px 20px rgba(0, 0, 0, 0.1);
}

html[lang="ar"] .secondary-btn::after {
    transform: rotate(-226deg); /* or rotate(223deg); */
}

html[lang="ar"] #acceptBtn::after {
    transform: rotate(-226deg); /* or rotate(223deg); */
}

/* Copied from JSP End*/

#clear-row-derivative{
margin-inline-end: 0 !important;
}

#calculate-button-derivative:hover {
    color: white !important;
}