/**
 * Variables
 * Variables should follow the $component-state-property-size formula for
 * consistent naming. Examples:
 * $nav-link-disabled-color
 * $modal-content-box-shadow-xs 
 *
 * Customization:
 * To customize Bootstrap variables:
 * Copy the desired variable from node_modules/bootstrap/scss/_variables.scss
 * @see https://github.com/twbs/bootstrap/blob/main/scss/_variables.scss
 * Change the value and remove the !default flag.
 * Examples:
 * $body-bg: #000;
 * $body-color: $gray-100;
 */
:root,
[data-bs-theme=light] {
  --bs-blue: #3e88df;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #e83e8c;
  --bs-red: #e74c3c;
  --bs-orange: #fd7e14;
  --bs-yellow: #f39c12;
  --bs-green: #18bc9c;
  --bs-teal: #20c997;
  --bs-cyan: #3498db;
  --bs-black: #000;
  --bs-white: #fff;
  --bs-gray: #95a5a6;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #ecf0f1;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #b4bcc2;
  --bs-gray-600: #95a5a6;
  --bs-gray-700: #7b8a8b;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #3e88df;
  --bs-secondary: #95a5a6;
  --bs-success: #18bc9c;
  --bs-info: #3498db;
  --bs-warning: #f39c12;
  --bs-danger: #e74c3c;
  --bs-light: #ecf0f1;
  --bs-dark: #7b8a8b;
  --bs-primary-rgb: 62, 136, 223;
  --bs-secondary-rgb: 149, 165, 166;
  --bs-success-rgb: 24, 188, 156;
  --bs-info-rgb: 52, 152, 219;
  --bs-warning-rgb: 243, 156, 18;
  --bs-danger-rgb: 231, 76, 60;
  --bs-light-rgb: 236, 240, 241;
  --bs-dark-rgb: 123, 138, 139;
  --bs-primary-text-emphasis: rgb(24.8, 54.4, 89.2);
  --bs-secondary-text-emphasis: rgb(59.6, 66, 66.4);
  --bs-success-text-emphasis: rgb(9.6, 75.2, 62.4);
  --bs-info-text-emphasis: rgb(20.8, 60.8, 87.6);
  --bs-warning-text-emphasis: rgb(97.2, 62.4, 7.2);
  --bs-danger-text-emphasis: rgb(92.4, 30.4, 24);
  --bs-light-text-emphasis: #7b8a8b;
  --bs-dark-text-emphasis: #7b8a8b;
  --bs-primary-bg-subtle: rgb(216.4, 231.2, 248.6);
  --bs-secondary-bg-subtle: rgb(233.8, 237, 237.2);
  --bs-success-bg-subtle: rgb(208.8, 241.6, 235.2);
  --bs-info-bg-subtle: rgb(214.4, 234.4, 247.8);
  --bs-warning-bg-subtle: rgb(252.6, 235.2, 207.6);
  --bs-danger-bg-subtle: rgb(250.2, 219.2, 216);
  --bs-light-bg-subtle: rgb(251.5, 252, 252.5);
  --bs-dark-bg-subtle: #ced4da;
  --bs-primary-border-subtle: rgb(177.8, 207.4, 242.2);
  --bs-secondary-border-subtle: rgb(212.6, 219, 219.4);
  --bs-success-border-subtle: rgb(162.6, 228.2, 215.4);
  --bs-info-border-subtle: rgb(173.8, 213.8, 240.6);
  --bs-warning-border-subtle: rgb(250.2, 215.4, 160.2);
  --bs-danger-border-subtle: rgb(245.4, 183.4, 177);
  --bs-light-border-subtle: #ecf0f1;
  --bs-dark-border-subtle: #b4bcc2;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-font-sans-serif: "Fira Sans", "Oswald", -apple-system, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212529;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg: #fff;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-emphasis-color: #000;
  --bs-emphasis-color-rgb: 0, 0, 0;
  --bs-secondary-color: rgba(33, 37, 41, 0.75);
  --bs-secondary-color-rgb: 33, 37, 41;
  --bs-secondary-bg: #ecf0f1;
  --bs-secondary-bg-rgb: 236, 240, 241;
  --bs-tertiary-color: rgba(33, 37, 41, 0.5);
  --bs-tertiary-color-rgb: 33, 37, 41;
  --bs-tertiary-bg: #f8f9fa;
  --bs-tertiary-bg-rgb: 248, 249, 250;
  --bs-heading-color: inherit;
  --bs-link-color: #3e88df;
  --bs-link-color-rgb: 62, 136, 223;
  --bs-link-decoration: underline;
  --bs-link-hover-color: rgb(49.6, 108.8, 178.4);
  --bs-link-hover-color-rgb: 50, 109, 178;
  --bs-code-color: #e83e8c;
  --bs-highlight-color: #212529;
  --bs-highlight-bg: rgb(252.6, 235.2, 207.6);
  --bs-border-width: 1px;
  --bs-border-style: solid;
  --bs-border-color: #dee2e6;
  --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
  --bs-border-radius: 0.375rem;
  --bs-border-radius-sm: 0.25rem;
  --bs-border-radius-lg: 0.5rem;
  --bs-border-radius-xl: 1rem;
  --bs-border-radius-xxl: 2rem;
  --bs-border-radius-2xl: var(--bs-border-radius-xxl);
  --bs-border-radius-pill: 50rem;
  --bs-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --bs-box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  --bs-box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  --bs-focus-ring-width: 0.25rem;
  --bs-focus-ring-opacity: 0.25;
  --bs-focus-ring-color: rgba(62, 136, 223, 0.25);
  --bs-form-valid-color: #18bc9c;
  --bs-form-valid-border-color: #18bc9c;
  --bs-form-invalid-color: #e74c3c;
  --bs-form-invalid-border-color: #e74c3c;
}

[data-bs-theme=dark] {
  color-scheme: dark;
  --bs-body-color: #dee2e6;
  --bs-body-color-rgb: 222, 226, 230;
  --bs-body-bg: #212529;
  --bs-body-bg-rgb: 33, 37, 41;
  --bs-emphasis-color: #fff;
  --bs-emphasis-color-rgb: 255, 255, 255;
  --bs-secondary-color: rgba(222, 226, 230, 0.75);
  --bs-secondary-color-rgb: 222, 226, 230;
  --bs-secondary-bg: #343a40;
  --bs-secondary-bg-rgb: 52, 58, 64;
  --bs-tertiary-color: rgba(222, 226, 230, 0.5);
  --bs-tertiary-color-rgb: 222, 226, 230;
  --bs-tertiary-bg: rgb(42.5, 47.5, 52.5);
  --bs-tertiary-bg-rgb: 43, 48, 53;
  --bs-primary-text-emphasis: rgb(139.2, 183.6, 235.8);
  --bs-secondary-text-emphasis: rgb(191.4, 201, 201.6);
  --bs-success-text-emphasis: rgb(116.4, 214.8, 195.6);
  --bs-info-text-emphasis: rgb(133.2, 193.2, 233.4);
  --bs-warning-text-emphasis: rgb(247.8, 195.6, 112.8);
  --bs-danger-text-emphasis: rgb(240.6, 147.6, 138);
  --bs-light-text-emphasis: #f8f9fa;
  --bs-dark-text-emphasis: #dee2e6;
  --bs-primary-bg-subtle: rgb(12.4, 27.2, 44.6);
  --bs-secondary-bg-subtle: rgb(29.8, 33, 33.2);
  --bs-success-bg-subtle: rgb(4.8, 37.6, 31.2);
  --bs-info-bg-subtle: rgb(10.4, 30.4, 43.8);
  --bs-warning-bg-subtle: rgb(48.6, 31.2, 3.6);
  --bs-danger-bg-subtle: rgb(46.2, 15.2, 12);
  --bs-light-bg-subtle: #343a40;
  --bs-dark-bg-subtle: #1a1d20;
  --bs-primary-border-subtle: rgb(37.2, 81.6, 133.8);
  --bs-secondary-border-subtle: rgb(89.4, 99, 99.6);
  --bs-success-border-subtle: rgb(14.4, 112.8, 93.6);
  --bs-info-border-subtle: rgb(31.2, 91.2, 131.4);
  --bs-warning-border-subtle: rgb(145.8, 93.6, 10.8);
  --bs-danger-border-subtle: rgb(138.6, 45.6, 36);
  --bs-light-border-subtle: #7b8a8b;
  --bs-dark-border-subtle: #343a40;
  --bs-heading-color: inherit;
  --bs-link-color: rgb(139.2, 183.6, 235.8);
  --bs-link-hover-color: rgb(162.36, 197.88, 239.64);
  --bs-link-color-rgb: 139, 184, 236;
  --bs-link-hover-color-rgb: 162, 198, 240;
  --bs-code-color: rgb(241.2, 139.2, 186);
  --bs-highlight-color: #dee2e6;
  --bs-highlight-bg: rgb(97.2, 62.4, 7.2);
  --bs-border-color: #7b8a8b;
  --bs-border-color-translucent: rgba(255, 255, 255, 0.15);
  --bs-form-valid-color: rgb(116.4, 214.8, 195.6);
  --bs-form-valid-border-color: rgb(116.4, 214.8, 195.6);
  --bs-form-invalid-color: rgb(240.6, 147.6, 138);
  --bs-form-invalid-border-color: rgb(240.6, 147.6, 138);
}

.more-mega-menu {
  margin-bottom: 20px;
}
.more-mega-menu .mega-dropdown-inner .active .active-trail {
  background: #c6212d;
}
.more-mega-menu .tb-megamenu {
  background-color: #252525 !important;
}
.more-mega-menu .tb-megamenu .mega.open .mega-dropdown-menu {
  width: 100% !important;
}
.more-mega-menu .tb-megamenu .dropdown-menu li a {
  color: #ffffff;
}
.more-mega-menu .tb-megamenu .nav li.dropdown.active > .dropdown-toggle {
  background-color: #252525 !important;
  color: #ffffff !important;
}
@media screen and (max-width: 1197px) {
  .more-mega-menu .tb-megamenu .nav li.dropdown.active > .dropdown-toggle {
    font-size: 12px;
    padding: 11px;
  }
}
.more-mega-menu .tb-megamenu .nav li.dropdown.open .dropdown-toggle {
  background-color: #252525 !important;
  color: #ffffff !important;
}
.more-mega-menu .tb-megamenu .nav li span {
  font-weight: 400 !important;
}
.more-mega-menu .tb-megamenu .nav li span.tb-megamenu-no-link:hover, .more-mega-menu .tb-megamenu .nav li span.tb-megamenu-no-link:focus {
  background-color: #252525;
  color: #ffffff;
  cursor: pointer;
}
.more-mega-menu .tb-megamenu .nav li a {
  font-weight: normal;
  text-decoration: none;
}
@media screen and (max-width: 1197px) {
  .more-mega-menu .tb-megamenu .nav li a {
    font-size: 13px;
    padding: 11px;
  }
}
.more-mega-menu .tb-megamenu .nav li a:hover {
  background-color: #252525;
  color: #ffffff;
}
.more-mega-menu .tb-megamenu-nav {
  justify-content: right;
}
.more-mega-menu .caret {
  display: none !important;
}
@media screen and (max-width: 992px) {
  .more-mega-menu {
    display: none;
  }
}

/*# sourceMappingURL=dropdown-menu.css.map*/