@charset "UTF-8";
/* #THEME COLOR (variable overrides)
========================================================================== */
/* #GLOBAL IMPORTS
========================================================================== */
/* #IMPORTS ~~
========================================================================== */
/*---------------------------------------------------
    SASS ELements (based on LESS Elements 0.9 http://lesselements.com) 
  -------------------------------- -------------------
    LESS ELEMENTS made by Dmitry Fadeyev (http://fadeyev.net)
    SASS port by Samuel Beek (http://samuelbeek.com) 
  ---------------------------------------------------*/
/*------------------------
    Usage

  $color-white: hexToRGBString(#fff) => "255,255,255"
  $color-white: hexToRGBString(rgb(255,255,255)) => "255,255,255"
  $color-white: hexToRGBString(rgba(#fff,1)) => "255,255,255"

------------------------*/
/*------------------------
    Usage

    h1 {
      font-size: rem(32);
    }

    OR:

    h1 {
      font-size: rem(32px);
    }
------------------------*/
/*------------------------
  FADE IN
  e.g. @include fadeIn( 2s );
------------------------*/
/*------------------------
mixin that calculates if text needs to be light or dark
depending on the background color passed.

From this W3C document: http://www.webmasterworld.com/r.cgi?f=88&d=9769&url=http://www.w3.org/TR/AERT#color-contrast

usage:
@include text-contrast($bgcolor)

Color brightness is determined by the following formula: 
((Red value X 299) + (Green value X 587) + (Blue value X 114)) / 1000
------------------------*/
/*------------------------
 color factory 
  eg: contrast-ink($contrastvalue)
------------------------*/
/*------------------------
 color factory 
  eg: @include paint($blue-grey-50, bg-blue-grey-50);
------------------------*/
/* backface visibility */
/* generate theme button */
/*  THEME COLORs
========================================================================== */
/* Looks good on chrome default color profile */
/* We will manually convert these primary colors to rgb for the dark mode option of the theme */
/* looks good in sRGB but washed up on chrome default 
$color-primary:						#826bb0;
$color-success:						#31cb55;
$color-info:						#5e93ec;
$color-warning:						#eec559;
$color-danger:						#dc4b92;
$color-fusion:						darken(desaturate(adjust-hue($color-primary, 5), 80%), 25%); */
/*  Color Polarity
========================================================================== */
/*  PAINTBUCKET MIXER
========================================================================== */
/* the grays */
/* the sapphires */
/* the emeralds */
/* the amethyths */
/* the topaz */
/* the rubies */
/* the graphites */
/*  Define universal border difition (div outlines, etc)
========================================================================== */
/*  MOBILE BREAKPOINT & GUTTERS (contains some bootstrap responsive overrides)
========================================================================== */
/* define when mobile menu activates, here we are declearing (lg) so it targets the one after it */
/* bootstrap reference xs: 0,  sm: 544px, md: 768px, lg: 992px, xl: 1200px*/
/* global var used for spacing*/
/* Uniform Padding variable */
/* Heads up! This is a global scoped variable - changing may impact the whole template */
/*   BOOTSTRAP OVERRIDES (bootstrap variables)
========================================================================== */
/* usage: theme-colors("primary"); */
/* forms */
/*$input-height:							calc(2.25rem + 1px); //I had to add this because the input gruops was having improper height for some reason... */
/* links */
/* checkbox */
/*$custom-file-height-inner:				calc(2.25rem - 1px);*/
/* not part of bootstrap variable */
/* custom checkbox */
/* custom range */
/* custom file */
/* badge */
/* cards */
/*border radius*/
/* alert */
/* toast */
/* breadcrumb */
/* input button */
/* nav link */
/* nav, tabs, pills */
/* tables */
/* dropdowns */
/* dropdowns sizes */
/* popovers */
/* tooltips */
/* modal */
/* reference guide
http://www.standardista.com/px-to-rem-conversion-if-root-font-size-is-16px/
8px = 0.5rem
9px = 0.5625rem
10px = 0.625rem
11px = 0.6875rem
12px = 0.75rem
13px = 0.8125rem
14px = 0.875rem
15px = 0.9375rem
16px = 1rem (base)
17px = 1.0625rem
18px = 1.125rem
19px = 1.1875rem
20px = 1.25rem
21px = 1.3125rem
22px = 1.375rem
24px = 1.5rem
25px = 1.5625rem
26px = 1.625rem
28px = 1.75rem
30px = 1.875rem
32px = 2rem
34px = 2.125rem
36px = 2.25rem
38px = 2.375rem
40px = 2.5rem
*/
/* Fonts */
/* carousel */
/*  BASE VARS
========================================================================== */
/* font vars below will auto change to rem values using function rem($value)*/
/* 11px   */
/* 12px   */
/* 12.5px */
/* 14px   */
/* 15px   */
/* 16px   */
/* 28px   */
/*  Font Family
========================================================================== */
/*hint: you can also try the font called 'Poppins' by replacing the font 'Roboto' */
/*  ANIMATIONS
========================================================================== */
/* this addresses all animation related to nav hide to nav minify */
/*  Z-INDEX declearation
========================================================================== */
/* we adjust bootstrap z-index to be higher than our higest z-index*/
/*  CUSTOM ICON PREFIX 
========================================================================== */
/*  PRINT CSS (landscape or portrait)
========================================================================== */
/* landscape or portrait */
/* auto, letter */
/*  Common Element Variables
========================================================================== */
/* Z-index decleartion "birds eye view"
========================================================================== */
/*  Components
========================================================================== */
/*  PAGE HEADER STUFF
========================================================================== */
/* colors */
/* height */
/* logo */
/* try not to go beywond the width of $main_nav_width value */
/* you may need to change this depending on your logo design */
/* adjust this as you see fit : left, right, center */
/* icon font size (not button) */
/* search input box */
/* suggestion: #ccced0*/
/* btn */
/* dropdown: app list */
/* badge */
/* COMPONENTS & MODS */
/*  NAVIGATION STUFF

Guide:

aside.page-sidebar ($nav-width, $nav-background)
	.page-logo
	.primary-nav
		.info-card
		ul.nav-menu
			li
				a (parent level-0..., $nav-link-color, $nav-link-hover-color, $nav-link-hover-bg-color, $nav-link-hover-left-border-color)
					icon 
					span
					collapse-sign 

				ul.nav-menu-sub-one  
					li
						a ($nav-level-1... $nav-sub-link-height)
							span
							collapse-sign

						ul.nav-menu-sub-two
							li
								a ($nav-level-2... $nav-sub-link-height)
									span

		p.nav-title ($nav-title-*...)


========================================================================== */
/* main navigation */
/* left panel */
/* nav footer */
/* nav parent level-0 */
/* nav icon sizes */
/* badge default */
/* all child */
/* nav title */
/* nav Minify */
/* when the menu pops on hover */
/* navigation Width */
/* partial visibility of the menu */
/* top navigation */
/* nav Info Card (appears below the logo) */
/* width is auto */
/* nav DL labels for all child */
/* will be pulled to left as a negative value */
/*   MISC Settings
========================================================================== */
/* List Table */
/*   PAGE SETTINGS
========================================================================== */
/*   PAGE BREADCRUMB 
========================================================================== */
/*   PAGE COMPONENT PANELS 
========================================================================== */
/*   PAGE COMPONENT PROGRESSBARS 
========================================================================== */
/*   PAGE COMPONENT MESSENGER 
========================================================================== */
/*   FOOTER
========================================================================== */
/*   GLOBALS
========================================================================== */
/* ACCESSIBILITIES */
/* PLACEHOLDER 
============================================= 

EXAMPLE:

%bg-image {
    width: 100%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.image-one {
    @extend %bg-image;
    background-image:url(/img/image-one.jpg");
}

RESULT:

.image-one, .image-two {
    width: 100%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

*/
.bg-brand-gradient, .nav-footer, .page-sidebar, .page-logo {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(154, 194, 234, 0.18)), to(transparent));
  background-image: linear-gradient(270deg, rgba(154, 194, 234, 0.18), transparent);
  background-color: #1c3d85;
}

/*
%shadow-hover {
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 0 2px rgba(0,0,0,0.24);
  transition: all 0.2s ease-in-out;

  &:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 -1px 6px rgba(0,0,0,0.23);
  }
}
*/
.btn-default {
  background-color: #f5f5f5;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#f5f5f5), to(#f1f1f1));
  background-image: linear-gradient(to top, #f5f5f5, #f1f1f1);
  color: #444;
}
.btn-default:hover {
  border: 1px solid #c6c6c6;
}
.btn-default:focus {
  border-color: #6c93e8 !important;
}
.active.btn-default {
  background: #5682e4;
  color: #fff;
}

.mod-panel-icon .btn-switch[data-class=mod-panel-icon], .mod-nav-dark .btn-switch[data-class=mod-nav-dark], .mod-nav-link .btn-switch[data-class=mod-nav-link], .mod-disable-animation .btn-switch[data-class=mod-disable-animation], .mod-lean-subheader .btn-switch[data-class=mod-lean-subheader], .mod-hide-info-card .btn-switch[data-class=mod-hide-info-card], .mod-hide-nav-icons .btn-switch[data-class=mod-hide-nav-icons], .mod-color-blind .btn-switch[data-class=mod-color-blind], .mod-high-contrast .btn-switch[data-class=mod-high-contrast], .mod-bigger-font .btn-switch[data-class=mod-bigger-font], .mod-pace-custom .btn-switch[data-class=mod-pace-custom], .mod-clean-page-bg .btn-switch[data-class=mod-clean-page-bg], .mod-fixed-bg .btn-switch[data-class=mod-fixed-bg], .mod-main-boxed .btn-switch[data-class=mod-main-boxed], .nav-mobile-slide-out .btn-switch[data-class=nav-mobile-slide-out], .nav-mobile-no-overlay .btn-switch[data-class=nav-mobile-no-overlay], .nav-mobile-push .btn-switch[data-class=nav-mobile-push], .footer-function-fixed .btn-switch[data-class=footer-function-fixed], .nav-function-top .btn-switch[data-class=nav-function-top], .nav-function-hidden .btn-switch[data-class=nav-function-hidden], .nav-function-minify .btn-switch[data-class=nav-function-minify], .nav-function-fixed .btn-switch[data-class=nav-function-fixed], .header-function-fixed .btn-switch[data-class=header-function-fixed] {
  color: #fff;
  background: #2A62DD !important;
}
.mod-panel-icon .btn-switch[data-class=mod-panel-icon]:after, .mod-nav-dark .btn-switch[data-class=mod-nav-dark]:after, .mod-nav-link .btn-switch[data-class=mod-nav-link]:after, .mod-disable-animation .btn-switch[data-class=mod-disable-animation]:after, .mod-lean-subheader .btn-switch[data-class=mod-lean-subheader]:after, .mod-hide-info-card .btn-switch[data-class=mod-hide-info-card]:after, .mod-hide-nav-icons .btn-switch[data-class=mod-hide-nav-icons]:after, .mod-color-blind .btn-switch[data-class=mod-color-blind]:after, .mod-high-contrast .btn-switch[data-class=mod-high-contrast]:after, .mod-bigger-font .btn-switch[data-class=mod-bigger-font]:after, .mod-pace-custom .btn-switch[data-class=mod-pace-custom]:after, .mod-clean-page-bg .btn-switch[data-class=mod-clean-page-bg]:after, .mod-fixed-bg .btn-switch[data-class=mod-fixed-bg]:after, .mod-main-boxed .btn-switch[data-class=mod-main-boxed]:after, .nav-mobile-slide-out .btn-switch[data-class=nav-mobile-slide-out]:after, .nav-mobile-no-overlay .btn-switch[data-class=nav-mobile-no-overlay]:after, .nav-mobile-push .btn-switch[data-class=nav-mobile-push]:after, .footer-function-fixed .btn-switch[data-class=footer-function-fixed]:after, .nav-function-top .btn-switch[data-class=nav-function-top]:after, .nav-function-hidden .btn-switch[data-class=nav-function-hidden]:after, .nav-function-minify .btn-switch[data-class=nav-function-minify]:after, .nav-function-fixed .btn-switch[data-class=nav-function-fixed]:after, .header-function-fixed .btn-switch[data-class=header-function-fixed]:after {
  background: #fff !important;
  color: #2A62DD !important;
}
.mod-panel-icon .btn-switch[data-class=mod-panel-icon] + .onoffswitch-title, .mod-nav-dark .btn-switch[data-class=mod-nav-dark] + .onoffswitch-title, .mod-nav-link .btn-switch[data-class=mod-nav-link] + .onoffswitch-title, .mod-disable-animation .btn-switch[data-class=mod-disable-animation] + .onoffswitch-title, .mod-lean-subheader .btn-switch[data-class=mod-lean-subheader] + .onoffswitch-title, .mod-hide-info-card .btn-switch[data-class=mod-hide-info-card] + .onoffswitch-title, .mod-hide-nav-icons .btn-switch[data-class=mod-hide-nav-icons] + .onoffswitch-title, .mod-color-blind .btn-switch[data-class=mod-color-blind] + .onoffswitch-title, .mod-high-contrast .btn-switch[data-class=mod-high-contrast] + .onoffswitch-title, .mod-bigger-font .btn-switch[data-class=mod-bigger-font] + .onoffswitch-title, .mod-pace-custom .btn-switch[data-class=mod-pace-custom] + .onoffswitch-title, .mod-clean-page-bg .btn-switch[data-class=mod-clean-page-bg] + .onoffswitch-title, .mod-fixed-bg .btn-switch[data-class=mod-fixed-bg] + .onoffswitch-title, .mod-main-boxed .btn-switch[data-class=mod-main-boxed] + .onoffswitch-title, .nav-mobile-slide-out .btn-switch[data-class=nav-mobile-slide-out] + .onoffswitch-title, .nav-mobile-no-overlay .btn-switch[data-class=nav-mobile-no-overlay] + .onoffswitch-title, .nav-mobile-push .btn-switch[data-class=nav-mobile-push] + .onoffswitch-title, .footer-function-fixed .btn-switch[data-class=footer-function-fixed] + .onoffswitch-title, .nav-function-top .btn-switch[data-class=nav-function-top] + .onoffswitch-title, .nav-function-hidden .btn-switch[data-class=nav-function-hidden] + .onoffswitch-title, .nav-function-minify .btn-switch[data-class=nav-function-minify] + .onoffswitch-title, .nav-function-fixed .btn-switch[data-class=nav-function-fixed] + .onoffswitch-title, .header-function-fixed .btn-switch[data-class=header-function-fixed] + .onoffswitch-title {
  color: #2A62DD;
}

.nav-function-top #nfh .onoffswitch-title, .nav-function-top #mnl .onoffswitch-title,
.nav-function-minify #mnl .onoffswitch-title,
.mod-hide-nav-icons #mnl .onoffswitch-title, .nav-mobile-slide-out #nmp .onoffswitch-title,
.nav-mobile-slide-out #nmno .onoffswitch-title {
  color: #d58100;
}
.nav-function-top #nfh .onoffswitch-title-desc, .nav-function-top #mnl .onoffswitch-title-desc,
.nav-function-minify #mnl .onoffswitch-title-desc,
.mod-hide-nav-icons #mnl .onoffswitch-title-desc, .nav-mobile-slide-out #nmp .onoffswitch-title-desc,
.nav-mobile-slide-out #nmno .onoffswitch-title-desc {
  color: #ec9f28;
}
.header-btn, .dropdown-icon-menu > ul > li .btn {
  border: 1px solid #d0d0d0;
  color: #a6a6a6;
}
.header-btn:hover, .dropdown-icon-menu > ul > li .btn:hover {
  border-color: #2A62DD;
  background: #5682e4;
  color: #fff;
}

.nav-function-top #nfh:after, .nav-function-top #mnl:after,
.nav-function-minify #mnl:after,
.mod-hide-nav-icons #mnl:after, .nav-mobile-slide-out #nmp:after,
.nav-mobile-slide-out #nmno:after {
  background: #fef9ee;
  border: 1px solid #f4be45;
  color: #111111;
}

/* #GLOBAL IMPORTS
========================================================================== */
/*@import '_imports/_global-import';*/
/* #FRAMEWORK - Structure and layout files. (**DO NOT** change order)
                DOC: you can disable unused _modules
========================================================================== */
/* contains root variables to be used with css (see docs) */
/* html and body base styles */
html body {
  background-color: #fff;
}
html body a {
  color: #2A62DD;
  background-color: transparent;
}
html body a:hover {
  color: #1d4db7;
}

.header-icon {
  color: #454545;
}
.header-icon:not(.btn) > [class*=fa-]:first-child,
.header-icon:not(.btn) > .ni:first-child {
  color: #2A62DD;
}
.header-icon:not(.btn):hover > [class*=fa-]:only-child, .header-icon:not(.btn):hover > .ni {
  color: #404040;
}
.header-icon:not(.btn)[data-toggle=dropdown] {
  /* header dropdowns */
  /* note: important rules to override popper's inline classes */
  /* end header dropdowns */
}
.header-icon:not(.btn)[data-toggle=dropdown][aria-expanded=true] {
  color: #404040;
}
.header-icon:not(.btn)[data-toggle=dropdown][aria-expanded=true] > [class*=fa-]:first-child,
.header-icon:not(.btn)[data-toggle=dropdown][aria-expanded=true] > .ni:first-child {
  color: #404040 !important;
}
.header-icon:not(.btn)[data-toggle=dropdown] + .dropdown-menu {
  border-color: #ccc;
}
.header-icon:hover {
  color: #404040;
}

.page-header {
  background-color: #fff;
}

#search-field {
  background: transparent;
  border: 1px solid transparent;
}

.notification li.unread {
  background: white;
}
.notification li > :first-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.notification li > :first-child:hover {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(29, 33, 41, 0.03)), to(rgba(29, 33, 41, 0.04)));
  background-image: linear-gradient(rgba(29, 33, 41, 0.03), rgba(29, 33, 41, 0.04));
}
.notification .name {
  color: #222222;
}
.notification .msg-a,
.notification .msg-b {
  color: #555555;
}
.notification.notification-layout-2 li {
  background: #f9f9f9;
}
.notification.notification-layout-2 li.unread {
  background: #fff;
}
.notification.notification-layout-2 li > :first-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.notification.notification-layout-2:hover {
  cursor: pointer;
}

.app-list-item {
  color: #454545;
}
.app-list-item:hover {
  border: 1px solid #e3e3e3;
}
.app-list-item:active {
  border-color: #2A62DD;
}

@media (min-width: 992px) {
  .header-function-fixed.nav-function-top .page-header {
    -webkit-box-shadow: 0px 0px 28px 2px rgba(22, 59, 139, 0.13);
            box-shadow: 0px 0px 28px 2px rgba(22, 59, 139, 0.13);
  }
}
.nav-title {
  color: #2b5ecd;
}

.nav-menu li.open > a {
  color: rgb(255, 255, 255);
}
.nav-menu li.active {
  /* arrow that appears next to active/selected items */
}
.nav-menu li.active > a {
  color: rgb(255, 255, 255);
  background-color: rgba(255, 255, 255, 0.04);
  -webkit-box-shadow: inset 3px 0 0 #2A62DD;
          box-shadow: inset 3px 0 0 #2A62DD;
}
.nav-menu li.active > a:hover > [class*=fa-],
.nav-menu li.active > a:hover > .ni {
  color: #738dc7;
}
.nav-menu li.active > ul {
  display: block;
}
.nav-menu li.active:not(.open) > a:before {
  color: #24b3a4;
}
.nav-menu li a {
  color: #454545;
}
.nav-menu li a .dl-ref.label {
  color: rgba(255, 255, 255, 0.7);
}
.nav-menu li a > [class*=fa-],
.nav-menu li a > .ni {
  color: #2e62d3;
}
.nav-menu li a.collapsed .nav-menu-btn-sub-collapse {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.nav-menu li a:hover {
  color: rgb(255, 255, 255);
  background-color: rgba(0, 0, 0, 0.1);
}
.nav-menu li a:hover .badge {
  color: #fff;
}
.nav-menu li a:hover > [class*=fa-],
.nav-menu li a:hover > .ni {
  color: #738dc7;
}
.nav-menu li a:hover > .badge {
  -webkit-box-shadow: 0 0 0 1px rgba(35, 76, 167, 0.8);
          box-shadow: 0 0 0 1px rgba(35, 76, 167, 0.8);
  border: 1px solid rgba(35, 76, 167, 0.8);
}
.nav-menu li a:focus {
  color: rgb(255, 255, 255);
}
.nav-menu li a:focus .badge {
  color: #fff;
}
.nav-menu li b.collapse-sign {
  color: #4072e1;
}
.nav-menu li > ul {
  background-color: rgba(0, 0, 0, 0.1);
}
.nav-menu li > ul li a {
  color: #383838;
}
.nav-menu li > ul li a > [class*=fa-],
.nav-menu li > ul li a > .ni {
  color: #2e62d3;
}
.nav-menu li > ul li a > .badge {
  color: #fff;
  background-color: #E09A9A;
}
.nav-menu li > ul li a:hover {
  color: rgb(255, 255, 255);
  background-color: rgba(0, 0, 0, 0.1);
}
.nav-menu li > ul li a:hover > .nav-link-text > [class*=fa-],
.nav-menu li > ul li a:hover > .nav-link-text > .ni {
  color: #738dc7;
}
.nav-menu li > ul li.active > a {
  color: rgb(255, 255, 255);
  background-color: transparent;
}
.nav-menu li > ul li.active > a > .nav-link-text > [class*=fa-],
.nav-menu li > ul li.active > a > .nav-link-text > .ni {
  color: rgb(255, 255, 255);
}
.nav-menu li > ul li.active > a:hover > .nav-link-text > [class*=fa-],
.nav-menu li > ul li.active > a:hover > .nav-link-text > .ni {
  color: #738dc7;
}
.nav-menu li > ul li > ul li.active > a {
  color: rgb(255, 255, 255);
}
.nav-menu li > ul li > ul li a {
  color: #333333;
}
.nav-menu li > ul li > ul li a:hover {
  color: rgb(255, 255, 255);
}
.nav-menu li > ul li > ul li a > .badge {
  color: #fff;
  background-color: #E09A9A;
  border: 1px solid #444444;
}

/* nav clean elements */
.nav-menu-clean {
  background: #fff;
}
.nav-menu-clean li a {
  color: #444444 !important;
}
.nav-menu-clean li a span {
  color: #444444 !important;
}
.nav-menu-clean li a:hover {
  background-color: #f4f4f4 !important;
}

/* nav bordered elements */
.nav-menu-bordered {
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.nav-menu-bordered li a {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.nav-filter input[type=text] {
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
}
.nav-filter input[type=text]:not(:focus) {
  border-color: rgba(0, 0, 0, 0.1);
}
.nav-filter input[type=text]:focus {
  border-color: #2756bc;
}

.info-card {
  color: #fff;
}
.info-card .info-card-text {
  text-shadow: #000 0 1px;
}

@media (min-width: 992px) {
  .nav-function-top {
    /* correct search field color */
  }
  .nav-function-top #search-field {
    color: #fff;
  }
  .nav-function-top:not(.header-function-fixed) #nff {
    position: relative;
  }
  .nav-function-top:not(.header-function-fixed) #nff .onoffswitch-title {
    color: #d58100;
  }
  .nav-function-top:not(.header-function-fixed) #nff .onoffswitch-title-desc {
    color: #ec9f28;
  }
  .nav-function-top:not(.header-function-fixed) #nff:after {
    background: #fef9ee;
    border: 1px solid #f4be45;
    color: #111111;
  }
  .nav-function-top .page-header {
    background-image: -webkit-gradient(linear, right top, left top, from(rgba(154, 194, 234, 0.18)), to(transparent));
    background-image: linear-gradient(270deg, rgba(154, 194, 234, 0.18), transparent);
    background-color: #1c3d85;
    -webkit-box-shadow: 0px 0px 14px 0px rgba(22, 59, 139, 0.13);
            box-shadow: 0px 0px 14px 0px rgba(22, 59, 139, 0.13);
  }
  .nav-function-top .page-header .header-icon:not(.btn) > [class*=fa-]:first-child,
  .nav-function-top .page-header .header-icon:not(.btn) > .ni:first-child {
    color: #5682e4;
  }
  .nav-function-top .page-header .header-icon:not(.btn) > [class*=fa-]:first-child:hover,
  .nav-function-top .page-header .header-icon:not(.btn) > .ni:first-child:hover {
    color: #82a3eb;
  }
  .nav-function-top .page-header .badge.badge-icon {
    -webkit-box-shadow: 0 0 0 1px #2157cd;
            box-shadow: 0 0 0 1px #2157cd;
  }
  .nav-function-top .page-sidebar {
    background: #fff;
    -webkit-box-shadow: 0px 0px 14px 0px rgba(22, 59, 139, 0.13);
            box-shadow: 0px 0px 14px 0px rgba(22, 59, 139, 0.13);
  }
  .nav-function-top .page-sidebar .primary-nav .nav-menu > li.active > a:before {
    color: #24b3a4;
  }
  .nav-function-top .page-sidebar .primary-nav .nav-menu > li > a > .ni,
  .nav-function-top .page-sidebar .primary-nav .nav-menu > li > a > [class*=fa-] {
    color: inherit;
  }
  .nav-function-top .page-sidebar .primary-nav .nav-menu > li > a > .collapse-sign {
    color: #5d85dd;
  }
  .nav-function-top .page-sidebar .primary-nav .nav-menu > li a {
    color: #1c3d85;
  }
  .nav-function-top .page-sidebar .primary-nav .nav-menu > li > ul {
    background: #224aa3;
  }
  .nav-function-top .page-sidebar .primary-nav .nav-menu > li > ul li a {
    color: #454545;
  }
  .nav-function-top .page-sidebar .primary-nav .nav-menu > li > ul li ul {
    background: #224aa3;
  }
  .nav-function-top .page-sidebar .primary-nav .nav-menu > li > ul li:hover > a {
    background: rgba(0, 0, 0, 0.1);
    color: #fff;
  }
  .nav-function-top .page-sidebar .primary-nav .nav-menu > li > ul:after {
    background: transparent;
  }
  .nav-function-top .page-sidebar .primary-nav .nav-menu > li > ul:before {
    color: #224aa3;
  }
  .nav-function-top .page-sidebar .primary-nav .nav-menu > li:hover > a {
    color: #2A62DD;
    background: transparent;
  }
}
@media (min-width: 992px) {
  .nav-function-minify:not(.nav-function-top) .page-sidebar .primary-nav .nav-menu li.active.open > a:before {
    color: #24b3a4;
  }
  .nav-function-minify:not(.nav-function-top) .page-sidebar .primary-nav .nav-menu > li > a > .nav-link-text {
    background: trasparent;
  }
  .nav-function-minify:not(.nav-function-top) .page-sidebar .primary-nav .nav-menu > li > a + ul {
    background-color: #1c3d85;
  }
  .nav-function-minify:not(.nav-function-top) .page-sidebar .primary-nav .nav-menu > li > a + ul:before {
    color: #1c3d85;
  }
  .nav-function-minify:not(.nav-function-top) .page-sidebar .primary-nav:hover {
    overflow: visible;
  }
  .nav-function-minify:not(.nav-function-top) .page-sidebar .primary-nav:hover .nav-menu > li:hover > a {
    background: #1f4496;
    color: #fff;
  }
  .nav-function-minify:not(.nav-function-top) .page-sidebar .primary-nav:hover .nav-menu > li:hover > a > .nav-link-text:last-child {
    background: #1c3d85;
  }
  .nav-function-minify:not(.nav-function-top) .page-sidebar .primary-nav:hover .nav-menu > li:hover > a > .nav-link-text:last-child:before {
    color: #1c3d85;
  }
  .nav-function-minify:not(.nav-function-top) .page-header [data-class=nav-function-minify] {
    background: #444444;
    border-color: #2a2a2a !important;
    color: #fff !important;
  }
}
.nav-footer .nav-footer-buttons > li > a {
  color: #4875d9;
}

.nav-function-fixed .nav-footer {
  background: #1c3d85;
}
.nav-function-fixed .nav-footer:before {
  background: rgba(37, 80, 175, 0.2);
  background: -webkit-gradient(linear, left top, right top, from(#1c3d85), color-stop(50%, #295ac4), color-stop(50%, #295ac4), to(#1c3d85));
  background: linear-gradient(to right, #1c3d85 0%, #295ac4 50%, #295ac4 50%, #1c3d85 100%);
}

@media (min-width: 992px) {
  .nav-function-minify .nav-footer {
    background-color: #1a397d;
  }
  .nav-function-minify .nav-footer [data-class=nav-function-minify] {
    color: #2e62d3;
  }
  .nav-function-minify .nav-footer:hover {
    background-color: #1e4392;
  }
  .nav-function-minify .nav-footer:hover [data-class=nav-function-minify] {
    color: #738dc7;
  }
}
.page-content-wrapper {
  background-color: #e2eaf9;
}

.subheader-icon {
  color: #738dc7;
}

.subheader-title {
  color: #444444;
  text-shadow: #fff 0 1px;
}
.subheader-title small {
  color: #777777;
}

.page-footer {
  background: #fff;
  color: #2c2c2c;
}

.accordion .card .card-header {
  background-color: #f7f9fa;
}
.accordion .card .card-header .card-title {
  color: #2A62DD;
}
.accordion .card .card-header .card-title.collapsed {
  color: #777777;
}
.accordion.accordion-clean .card-header {
  background: #fff;
}
.accordion.accordion-hover .card-header {
  background: #fff;
}
.accordion.accordion-hover .card-header:hover .card-title.collapsed {
  color: #fff;
  background-color: #5682e4;
}
.accordion.accordion-hover .card-title:not(.collapsed) {
  color: #fff;
  background-color: #2A62DD;
}

/* 	DEV NOTE: The reason why we had to add this layer for alert colors is because BS4 
	does not allow you to add your own alert colors via variable control rather 
	through a systemetic agent that changes the theme colors. 

	REF: https://github.com/twbs/bootstrap/issues/24341#issuecomment-337457218
*/
.alert-primary {
  color: #445477;
  background-color: #dae2f4;
  border-color: #b2c2e4;
}

.alert-success {
  color: #607863;
  background-color: #eff7f0;
  border-color: #a9d7af;
}

.alert-danger {
  color: #ce5f5f;
  background-color: white;
  border-color: #f8e8e8;
}

.alert-warning {
  color: #e09f0d;
  background-color: white;
  border-color: #f9db97;
}

.alert-info {
  color: #4c9ceb;
  background-color: white;
  border-color: #edf5fd;
}

.alert-secondary {
  color: #444444;
  background-color: #efefef;
  border-color: #d0d0d0;
}

.badge.badge-icon {
  background-color: #E09A9A;
  color: #fff;
  -webkit-box-shadow: 0 0 0 1px #fff;
          box-shadow: 0 0 0 1px #fff;
}

/* btn switch */
.btn-switch {
  background: #5d5d5d;
  color: rgb(255, 255, 255);
}
.btn-switch:hover {
  color: rgb(255, 255, 255);
}
.btn-switch:after {
  color: rgb(255, 255, 255);
}
.btn-switch.active {
  color: #fff;
  background: #2A62DD;
}
.btn-switch.active:before {
  color: rgb(255, 255, 255);
}
.btn-switch.active:after {
  background: #fff;
  color: #2A62DD;
}

/* button used to close filter and mobile search */
.btn-search-close {
  color: #fff;
}

/* buttons used in the header section of the page */
.header-btn[data-class=mobile-nav-on] {
  border-color: #d47373;
  background-color: #da8686;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#da8686), to(#ce5f5f));
  background-image: linear-gradient(to top, #da8686, #ce5f5f);
  color: #fff;
}

/* dropdown btn */
/* used on info card pulldown filter */
.pull-trigger-btn {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(0, 0, 0, 0.4);
  color: #fff !important;
  -webkit-box-shadow: 0px 0px 2px rgba(42, 98, 221, 0.3);
          box-shadow: 0px 0px 2px rgba(42, 98, 221, 0.3);
}
.pull-trigger-btn:hover {
  background: #2A62DD;
  border-color: #2157cd;
}

/* btn misc */
.btn-outline-default {
  color: #212529;
  border-color: #E5E5E5;
}
.btn-outline-default:hover, .btn-outline-default:not(:disabled):not(.disabled):active, .btn-outline-default:not(:disabled):not(.disabled).active, .show > .btn-outline-default.dropdown-toggle {
  color: #212529;
  background-color: #f9f9f9;
  border-color: #E5E5E5;
}
.btn-outline-default.disabled, .btn-outline-default:disabled {
  color: #212529;
}

/* btn shadows */
.btn-primary {
  -webkit-box-shadow: 0 2px 6px 0 rgba(42, 98, 221, 0.5);
          box-shadow: 0 2px 6px 0 rgba(42, 98, 221, 0.5);
}

.btn-secondary {
  -webkit-box-shadow: 0 2px 6px 0 rgba(108, 117, 125, 0.5);
          box-shadow: 0 2px 6px 0 rgba(108, 117, 125, 0.5);
}

.btn-success {
  -webkit-box-shadow: 0 2px 6px 0 rgba(58, 158, 70, 0.5);
          box-shadow: 0 2px 6px 0 rgba(58, 158, 70, 0.5);
}

.btn-info {
  -webkit-box-shadow: 0 2px 6px 0 rgba(145, 194, 243, 0.5);
          box-shadow: 0 2px 6px 0 rgba(145, 194, 243, 0.5);
}

.btn-warning {
  -webkit-box-shadow: 0 2px 6px 0 rgba(247, 207, 117, 0.5);
          box-shadow: 0 2px 6px 0 rgba(247, 207, 117, 0.5);
}

.btn-danger {
  -webkit-box-shadow: 0 2px 6px 0 rgba(224, 154, 154, 0.5);
          box-shadow: 0 2px 6px 0 rgba(224, 154, 154, 0.5);
}

.btn-light {
  -webkit-box-shadow: 0 2px 6px 0 rgba(255, 255, 255, 0.5);
          box-shadow: 0 2px 6px 0 rgba(255, 255, 255, 0.5);
}

.btn-dark {
  -webkit-box-shadow: 0 2px 6px 0 rgba(68, 68, 68, 0.5);
          box-shadow: 0 2px 6px 0 rgba(68, 68, 68, 0.5);
}

.btn-icon-light {
  color: rgba(255, 255, 255, 0.7) !important;
  border-color: transparent !important;
}
.btn-icon-light:not(.active):not(:active):not(:hover):not(:focus) {
  color: rgba(255, 255, 255, 0.7) !important;
}
.btn-icon-light:hover {
  color: #fff !important;
  background-color: rgba(255, 255, 255, 0.2) !important;
}

/* bootstrap buttons */
.btn-link {
  color: #2A62DD;
}
.btn-link:hover {
  color: #1d4db7;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #2A62DD;
}

.card-header {
  background-color: #f7f9fa;
}

.carousel-control-prev:hover {
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.25)), color-stop(45%, rgba(0, 0, 0, 0)));
  background: linear-gradient(to right, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 45%);
}

.carousel-control-next:hover {
  background: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.25)), color-stop(45%, rgba(0, 0, 0, 0)));
  background: linear-gradient(to left, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 45%);
}

/* dropdown menu multi-level */
.dropdown-menu .dropdown-menu {
  background: #fff;
}
.dropdown-menu .dropdown-multilevel:hover > .dropdown-item:not(.disabled) {
  background: #f8f9fa;
  color: #1d4db7;
}

.dropdown-item:hover, .dropdown-item:focus {
  color: #1d4db7;
  background-color: #f8f9fa;
}
.dropdown-item.active, .dropdown-item:active {
  color: #1a44a1;
  background-color: #c4d3f6;
}

.chat-segment-get .chat-message {
  background: #f1f0f0;
}

.chat-segment-sent .chat-message {
  background: #3A9E46;
}

/* transparent modal */
.modal-transparent .modal-content {
  -webkit-box-shadow: 0 1px 15px 1px rgba(22, 59, 139, 0.3);
          box-shadow: 0 1px 15px 1px rgba(22, 59, 139, 0.3);
}
.modal-transparent .modal-content {
  background: rgba(14, 24, 45, 0.85);
}

.panel {
  background-color: #fff;
  border-bottom: 1px solid #e0e0e0;
  /* panel fullscreen */
  /* panel locked */
}
.panel.panel-fullscreen {
  /* make panel header bigger */
}
.panel.panel-fullscreen .panel-hdr {
  -webkit-box-shadow: 0 0.125rem 0.125rem -0.0625rem rgba(19, 49, 117, 0.1);
          box-shadow: 0 0.125rem 0.125rem -0.0625rem rgba(19, 49, 117, 0.1);
}
.panel.panel-locked:not(.panel-fullscreen) .panel-hdr:active h2:before {
  color: #E09A9A;
}

/* panel tag can be used globally */
.panel-tag {
  background: #eef7fd;
}

/* panel header */
.panel-hdr {
  background: #fff;
}

/* panel tap highlight */
.panel-sortable:not(.panel-locked) .panel-hdr:active {
  border-top-color: rgba(86, 130, 228, 0.7);
  border-left-color: rgba(42, 98, 221, 0.7);
  border-right-color: rgba(42, 98, 221, 0.7);
}
.panel-sortable:not(.panel-locked) .panel-hdr:active + .panel-container {
  border-color: transparent rgba(42, 98, 221, 0.7) rgba(33, 87, 205, 0.7);
}

/*.panel-sortable .panel-hdr:active,
.panel-sortable .panel-hdr:active + .panel-container {
	@include transition-border(0.4s, ease-out);
}*/
.panel-sortable.panel-locked .panel-hdr:active {
  border-top-color: #ecc1c1;
  border-left-color: #dc3545;
  border-right-color: #dc3545;
}
.panel-sortable.panel-locked .panel-hdr:active + .panel-container {
  border-color: transparent #dc3545 #dc3545;
}

/* panel toolbar (sits inside panel header) */
.panel-toolbar .btn-panel {
  /* add default colors for action buttons */
}
.panel-toolbar .btn-panel[data-action=panel-collapse], .panel-toolbar .btn-panel.js-panel-collapse {
  background: #3A9E46;
}
.panel-toolbar .btn-panel[data-action=panel-fullscreen], .panel-toolbar .btn-panel.js-panel-fullscreen {
  background: #F7CF75;
}
.panel-toolbar .btn-panel[data-action=panel-close], .panel-toolbar .btn-panel.js-panel-close {
  background: #E09A9A;
}

/* placeholder */
.panel-placeholder {
  background-color: #cbd6ef;
}
.panel-placeholder:before {
  background: #cbd6ef;
}

.mod-panel-clean .panel-hdr {
  background: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f7f7f7), to(#fff));
  background-image: linear-gradient(to bottom, #f7f7f7, #fff);
}

@media only screen and (max-width: 420px) {
  /* making mobile spacing a little narrow */
  .panel .panel-hdr {
    color: #060606;
  }
}
.popover .arrow {
  border-color: inherit;
}

.menu-item,
label.menu-open-button {
  background: #2A62DD;
  color: #fff !important;
}
.menu-item:hover,
label.menu-open-button:hover {
  background: #1d4db7;
}

.app-shortcut-icon {
  background: #ecf0f1;
  color: #ecf0f1;
}

.menu-open:checked + .menu-open-button {
  background: #444444;
}

/* nav tabs panel */
.nav-tabs-clean .nav-item .nav-link.active {
  border-bottom: 1px solid #2A62DD;
  color: #2A62DD;
}
.nav-tabs-clean .nav-item .nav-link:hover {
  color: #2A62DD;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #2A62DD;
}

.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: #1d4db7;
  background-color: #2157cd;
}
.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #4072e1;
}
.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  color: #82a3eb;
  background-color: #82a3eb;
  border-color: #82a3eb;
}
.custom-control-input[disabled] ~ .custom-control-label, .custom-control-input:disabled ~ .custom-control-label {
  color: #6c757d;
}
.custom-control-input[disabled] ~ .custom-control-label::before, .custom-control-input:disabled ~ .custom-control-label::before {
  background-color: #e9ecef;
}

.custom-control-label::before {
  background-color: #fff;
  border: #adb5bd solid 2px;
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  border-color: #2157cd;
  background-color: #2A62DD;
}
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e");
}
.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: #82a3eb;
}
.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  background-color: #82a3eb;
}

.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: #82a3eb;
}

.custom-switch .custom-control-label::after {
  background-color: #adb5bd;
}
.custom-switch .custom-control-input:checked ~ .custom-control-label::after {
  background-color: #fff;
}
.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: #82a3eb;
}

.custom-select {
  color: #495057;
  background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat;
  border: 1px solid #ced4da;
}
.custom-select:focus {
  border-color: #2A62DD;
}
.custom-select:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}
.custom-select:disabled {
  color: #6c757d;
  background-color: #e9ecef;
}

.custom-file-input:focus ~ .custom-file-label {
  border-color: #2A62DD;
}
.custom-file-input[disabled] ~ .custom-file-label, .custom-file-input:disabled ~ .custom-file-label {
  background-color: #e9ecef;
}
.custom-file-input ~ .custom-file-label[data-browse]::after {
  content: attr(data-browse);
}

.custom-file-label {
  color: #495057;
  background-color: #fff;
  border: 1px solid #ced4da;
}
.custom-file-label::after {
  color: #495057;
  background-color: #e9ecef;
}

.custom-range {
  background-color: transparent;
}
.custom-range::-webkit-slider-thumb {
  background-color: #2A62DD;
  border: 0;
}
.custom-range::-webkit-slider-thumb:active {
  background-color: #5682e4;
}
.custom-range::-webkit-slider-runnable-track {
  background-color: #dee2e6;
}
.custom-range::-moz-range-thumb {
  background-color: #2A62DD;
  border: 0;
}
.custom-range::-moz-range-thumb:active {
  background-color: #5682e4;
}
.custom-range::-moz-range-track {
  background-color: #dee2e6;
}
.custom-range::-ms-thumb {
  background-color: #2A62DD;
  border: 0;
}
.custom-range::-ms-thumb:active {
  background-color: #5682e4;
}
.custom-range::-ms-fill-lower {
  background-color: #dee2e6;
}
.custom-range::-ms-fill-upper {
  background-color: #dee2e6;
}
.custom-range:disabled::-webkit-slider-thumb {
  background-color: #adb5bd;
}
.custom-range:disabled::-moz-range-thumb {
  background-color: #adb5bd;
}
.custom-range:disabled::-ms-thumb {
  background-color: #adb5bd;
}

.page-link {
  color: #2A62DD;
  background-color: #fff;
  border: 1px solid #dee2e6;
  /*&:focus {
    outline: $pagination-focus-outline;
  }*/
}
.page-link:hover {
  color: #0056b3;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.page-item.active .page-link {
  color: #fff;
  background-color: #2A62DD;
}
.page-item.disabled .page-link {
  color: #6c757d;
  background-color: #fff;
}

.pagination .page-item:first-child:not(.active) .page-link,
.pagination .page-item:last-child:not(.active) .page-link,
.pagination .page-item.disabled .page-link {
  background: #c4d3f6;
}
.pagination .page-link:hover {
  background-color: #2A62DD !important;
  color: #fff;
}

.list-group-item {
  border: 1px solid rgba(var(--theme-rgb-primary), 0.15);
}
.list-group-item.active {
  background-color: #2A62DD;
  border-color: #2A62DD;
}

/* backgrounds */
.bg-white {
  background-color: #fff;
  color: #454545;
}

.bg-faded {
  background-color: #f7f9fa;
}

.bg-offwhite-fade {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#fff), to(#ececec));
  background-image: linear-gradient(to top, #fff, #ececec);
}

.bg-subtlelight {
  background-color: #ecf1fc;
}

.bg-subtlelight-fade {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#fff), to(#ecf1fc));
  background-image: linear-gradient(to top, #fff, #ecf1fc);
}

.bg-highlight {
  background-color: white;
}

.bg-gray-50 {
  background-color: #f9f9f9;
}

.bg-gray-100 {
  background-color: #f8f9fa;
}

.bg-gray-200 {
  background-color: #e9ecef;
}

.bg-gray-300 {
  background-color: #dee2e6;
}

.bg-gray-400 {
  background-color: #ced4da;
}

.bg-gray-500 {
  background-color: #adb5bd;
}

.bg-gray-600 {
  background-color: #6c757d;
}

.bg-gray-700 {
  background-color: #495057;
}

.bg-gray-800 {
  background-color: #343a40;
}

.bg-gray-900 {
  background-color: #212529;
}

/* borders */
.border-faded {
  border: 1px solid rgba(17, 17, 17, 0.07);
}

/* hover any bg */
/* inherits the parent background on hover */
.hover-bg {
  background: #fff;
}

/* states */
.state-selected {
  background: white !important;
}

/* demo window */
.demo-window {
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}
.demo-window:before {
  background: #e5e5e5;
}
.demo-window:after,
.demo-window .demo-window-content:before,
.demo-window .demo-window-content:after {
  background: #ccc;
}

.bg-trans-gradient {
  background: linear-gradient(250deg, #a0c2e4, #3667d1);
}

.notes {
  background: #f9f4b5;
}

/* disclaimer class */
.disclaimer {
  color: #a2a2a2;
}

/* online status */
.status {
  position: relative;
}
.status:before {
  background: #444444;
  border: 2px solid #fff;
}
.status.status-success:before {
  background: #3A9E46;
}
.status.status-danger:before {
  background: #E09A9A;
}
.status.status-warning:before {
  background: #F7CF75;
}

/* display frame */
.frame-heading {
  color: #959595;
}

.frame-wrap {
  background: white;
}

/* time stamp */
.time-stamp {
  color: #6a6a6a;
}

/* data-hasmore */
[data-hasmore] {
  color: #fff;
}
[data-hasmore]:before {
  background: rgba(0, 0, 0, 0.4);
}

/* code */
code {
  background: #eaebee;
}

/* select background */
::-moz-selection {
  background: #444444;
  color: #fff;
}
::selection {
  background: #444444;
  color: #fff;
}

::-moz-selection {
  background: #444444;
  color: #fff;
}

@media only screen and (max-width: 992px) {
  .page-wrapper {
    background: #fff;
  }
  .page-wrapper .page-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.09);
  }
  .page-wrapper .page-content {
    color: #222;
  }
  .page-wrapper .page-content .p-g {
    padding: 1.5rem;
  }
  .page-wrapper .page-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.09);
  }
  /* Off canvas */
  .nav-mobile-slide-out .page-wrapper .page-content {
    background: #e2eaf9;
  }
  /* mobile nav show & hide button */
  /* general */
  .mobile-nav-on .page-sidebar {
    border-right: 1px solid rgba(0, 0, 0, 0.03);
    -webkit-box-shadow: 0 3px 35px 3px rgba(0, 0, 0, 0.52);
            box-shadow: 0 3px 35px 3px rgba(0, 0, 0, 0.52);
  }
  .mobile-nav-on .page-content-overlay {
    background: rgba(0, 0, 0, 0.09);
  }
}
@media only screen and (max-width: 576px) {
  /* here we turn on mobile font for smaller screens */
  /*body {
  	font-family: $mobile-page-font !important;
  }*/
  /* mobile nav search */
  .mobile-search-on:not(.mobile-nav-on) .search .app-forms #search-field {
    background: #fff;
  }
  .mobile-search-on:not(.mobile-nav-on) .search .app-forms #search-field:focus {
    border-color: #2A62DD;
  }
}
/* text area */
[contenteditable=true]:empty:not(:focus):before {
  content: attr(data-placeholder);
  color: #848484;
}
[contenteditable=true]::-moz-selection {
  background: rgba(0, 132, 255, 0.2);
  color: #000;
}
[contenteditable=true]::selection {
  background: rgba(0, 132, 255, 0.2);
  color: #000;
}
[contenteditable=true]::-moz-selection {
  background: rgba(0, 132, 255, 0.2);
  color: #000;
}

/* add background to focused inpur prepend and append */
.form-control:focus ~ .input-group-prepend {
  background: #2A62DD;
}

.has-length .input-group-text {
  border-color: #2A62DD;
}
.has-length .input-group-text + .input-group-text {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}
.has-length .input-group-text:not([class^=bg-]):not([class*=" bg-"]) {
  background: #2A62DD;
  color: #fff !important;
}

/* help block and validation feedback texts*/
.help-block {
  color: #848484;
}

.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #2A62DD;
}

.settings-panel h5 {
  color: #444444;
}
.settings-panel .list {
  color: #666666;
}
.settings-panel .list:hover {
  color: #333333;
  background: rgba(255, 255, 255, 0.7);
}
.settings-panel .expanded:before {
  border-bottom-color: #515151;
}

@media only screen and (max-width: 992px) {
  .mobile-view-activated #nff,
  .mobile-view-activated #nfm,
  .mobile-view-activated #nfh,
  .mobile-view-activated #nft,
  .mobile-view-activated #mmb {
    position: relative;
  }
  .mobile-view-activated #nff .onoffswitch-title,
  .mobile-view-activated #nfm .onoffswitch-title,
  .mobile-view-activated #nfh .onoffswitch-title,
  .mobile-view-activated #nft .onoffswitch-title,
  .mobile-view-activated #mmb .onoffswitch-title {
    color: #d58100 !important;
  }
  .mobile-view-activated #nff .onoffswitch-title-desc,
  .mobile-view-activated #nfm .onoffswitch-title-desc,
  .mobile-view-activated #nfh .onoffswitch-title-desc,
  .mobile-view-activated #nft .onoffswitch-title-desc,
  .mobile-view-activated #mmb .onoffswitch-title-desc {
    color: #ec9f28 !important;
  }
  .mobile-view-activated #nff:after,
  .mobile-view-activated #nfm:after,
  .mobile-view-activated #nfh:after,
  .mobile-view-activated #nft:after,
  .mobile-view-activated #mmb:after {
    background: #fef9ee;
    border: 1px solid #f4be45;
    color: #111111;
  }
}
/* Hierarchical Navigation */
.mod-nav-link:not(.nav-function-top):not(.nav-function-minify):not(.mod-hide-nav-icons) ul.nav-menu:not(.nav-menu-compact) > li > ul {
  /* addressing all second, third children */
}
.mod-nav-link:not(.nav-function-top):not(.nav-function-minify):not(.mod-hide-nav-icons) ul.nav-menu:not(.nav-menu-compact) > li > ul:before {
  border-left: 1px solid #1f4496;
}
.mod-nav-link:not(.nav-function-top):not(.nav-function-minify):not(.mod-hide-nav-icons) ul.nav-menu:not(.nav-menu-compact) > li > ul > li a:after {
  background-color: #2e62d3;
}

.bg-primary-50 {
  background-color: #98b3ef;
  color: rgba(0, 0, 0, 0.8);
}
.bg-primary-50:hover {
  color: rgba(0, 0, 0, 0.8);
}

.bg-primary-100 {
  background-color: #82a3eb;
  color: rgba(0, 0, 0, 0.8);
}
.bg-primary-100:hover {
  color: rgba(0, 0, 0, 0.8);
}

.bg-primary-200 {
  background-color: #6c93e8;
  color: rgb(255, 255, 255);
}
.bg-primary-200:hover {
  color: rgb(255, 255, 255);
}

.bg-primary-300 {
  background-color: #5682e4;
  color: rgb(255, 255, 255);
}
.bg-primary-300:hover {
  color: rgb(255, 255, 255);
}

.bg-primary-400 {
  background-color: #4072e1;
  color: rgb(255, 255, 255);
}
.bg-primary-400:hover {
  color: rgb(255, 255, 255);
}

.bg-primary-500 {
  background-color: #2A62DD;
  color: rgb(255, 255, 255);
}
.bg-primary-500:hover {
  color: rgb(255, 255, 255);
}

.bg-primary-600 {
  background-color: #2157cd;
  color: rgb(255, 255, 255);
}
.bg-primary-600:hover {
  color: rgb(255, 255, 255);
}

.bg-primary-700 {
  background-color: #1d4db7;
  color: rgb(255, 255, 255);
}
.bg-primary-700:hover {
  color: rgb(255, 255, 255);
}

.bg-primary-800 {
  background-color: #1a44a1;
  color: rgb(255, 255, 255);
}
.bg-primary-800:hover {
  color: rgb(255, 255, 255);
}

.bg-primary-900 {
  background-color: #163b8b;
  color: rgb(255, 255, 255);
}
.bg-primary-900:hover {
  color: rgb(255, 255, 255);
}

.color-primary-50 {
  color: #98b3ef;
}

.color-primary-100 {
  color: #82a3eb;
}

.color-primary-200 {
  color: #6c93e8;
}

.color-primary-300 {
  color: #5682e4;
}

.color-primary-400 {
  color: #4072e1;
}

.color-primary-500 {
  color: #2A62DD;
}

.color-primary-600 {
  color: #2157cd;
}

.color-primary-700 {
  color: #1d4db7;
}

.color-primary-800 {
  color: #1a44a1;
}

.color-primary-900 {
  color: #163b8b;
}

.bg-success-50 {
  background-color: #85d28e;
  color: rgba(0, 0, 0, 0.8);
}
.bg-success-50:hover {
  color: rgba(0, 0, 0, 0.8);
}

.bg-success-100 {
  background-color: #73cb7d;
  color: rgba(0, 0, 0, 0.8);
}
.bg-success-100:hover {
  color: rgba(0, 0, 0, 0.8);
}

.bg-success-200 {
  background-color: #60c56c;
  color: rgba(0, 0, 0, 0.8);
}
.bg-success-200:hover {
  color: rgba(0, 0, 0, 0.8);
}

.bg-success-300 {
  background-color: #4dbe5b;
  color: rgba(0, 0, 0, 0.8);
}
.bg-success-300:hover {
  color: rgba(0, 0, 0, 0.8);
}

.bg-success-400 {
  background-color: #41b14e;
  color: rgb(255, 255, 255);
}
.bg-success-400:hover {
  color: rgb(255, 255, 255);
}

.bg-success-500 {
  background-color: #3A9E46;
  color: rgb(255, 255, 255);
}
.bg-success-500:hover {
  color: rgb(255, 255, 255);
}

.bg-success-600 {
  background-color: #338b3e;
  color: rgb(255, 255, 255);
}
.bg-success-600:hover {
  color: rgb(255, 255, 255);
}

.bg-success-700 {
  background-color: #2c7935;
  color: rgb(255, 255, 255);
}
.bg-success-700:hover {
  color: rgb(255, 255, 255);
}

.bg-success-800 {
  background-color: #25662d;
  color: rgb(255, 255, 255);
}
.bg-success-800:hover {
  color: rgb(255, 255, 255);
}

.bg-success-900 {
  background-color: #1f5325;
  color: rgb(255, 255, 255);
}
.bg-success-900:hover {
  color: rgb(255, 255, 255);
}

.color-success-50 {
  color: #85d28e;
}

.color-success-100 {
  color: #73cb7d;
}

.color-success-200 {
  color: #60c56c;
}

.color-success-300 {
  color: #4dbe5b;
}

.color-success-400 {
  color: #41b14e;
}

.color-success-500 {
  color: #3A9E46;
}

.color-success-600 {
  color: #338b3e;
}

.color-success-700 {
  color: #2c7935;
}

.color-success-800 {
  color: #25662d;
}

.color-success-900 {
  color: #1f5325;
}

.bg-info-50 {
  background-color: white;
  color: rgba(0, 0, 0, 0.8);
}
.bg-info-50:hover {
  color: rgba(0, 0, 0, 0.8);
}

.bg-info-100 {
  background-color: #edf5fd;
  color: rgba(0, 0, 0, 0.8);
}
.bg-info-100:hover {
  color: rgba(0, 0, 0, 0.8);
}

.bg-info-200 {
  background-color: #d6e8fb;
  color: rgba(0, 0, 0, 0.8);
}
.bg-info-200:hover {
  color: rgba(0, 0, 0, 0.8);
}

.bg-info-300 {
  background-color: #bfdcf8;
  color: rgba(0, 0, 0, 0.8);
}
.bg-info-300:hover {
  color: rgba(0, 0, 0, 0.8);
}

.bg-info-400 {
  background-color: #a8cff6;
  color: rgba(0, 0, 0, 0.8);
}
.bg-info-400:hover {
  color: rgba(0, 0, 0, 0.8);
}

.bg-info-500 {
  background-color: #91C2F3;
  color: rgba(0, 0, 0, 0.8);
}
.bg-info-500:hover {
  color: rgba(0, 0, 0, 0.8);
}

.bg-info-600 {
  background-color: #7ab5f0;
  color: rgba(0, 0, 0, 0.8);
}
.bg-info-600:hover {
  color: rgba(0, 0, 0, 0.8);
}

.bg-info-700 {
  background-color: #63a9ee;
  color: rgb(255, 255, 255);
}
.bg-info-700:hover {
  color: rgb(255, 255, 255);
}

.bg-info-800 {
  background-color: #4c9ceb;
  color: rgb(255, 255, 255);
}
.bg-info-800:hover {
  color: rgb(255, 255, 255);
}

.bg-info-900 {
  background-color: #358fe9;
  color: rgb(255, 255, 255);
}
.bg-info-900:hover {
  color: rgb(255, 255, 255);
}

.color-info-50 {
  color: white;
}

.color-info-100 {
  color: #edf5fd;
}

.color-info-200 {
  color: #d6e8fb;
}

.color-info-300 {
  color: #bfdcf8;
}

.color-info-400 {
  color: #a8cff6;
}

.color-info-500 {
  color: #91C2F3;
}

.color-info-600 {
  color: #7ab5f0;
}

.color-info-700 {
  color: #63a9ee;
}

.color-info-800 {
  color: #4c9ceb;
}

.color-info-900 {
  color: #358fe9;
}

.bg-warning-50 {
  background-color: #fef9ee;
  color: rgba(0, 0, 0, 0.8);
}
.bg-warning-50:hover {
  color: rgba(0, 0, 0, 0.8);
}

.bg-warning-100 {
  background-color: #fdf1d5;
  color: rgba(0, 0, 0, 0.8);
}
.bg-warning-100:hover {
  color: rgba(0, 0, 0, 0.8);
}

.bg-warning-200 {
  background-color: #fbe8bd;
  color: rgba(0, 0, 0, 0.8);
}
.bg-warning-200:hover {
  color: rgba(0, 0, 0, 0.8);
}

.bg-warning-300 {
  background-color: #fae0a5;
  color: rgba(0, 0, 0, 0.8);
}
.bg-warning-300:hover {
  color: rgba(0, 0, 0, 0.8);
}

.bg-warning-400 {
  background-color: #f8d78d;
  color: rgba(0, 0, 0, 0.8);
}
.bg-warning-400:hover {
  color: rgba(0, 0, 0, 0.8);
}

.bg-warning-500 {
  background-color: #F7CF75;
  color: rgba(0, 0, 0, 0.8);
}
.bg-warning-500:hover {
  color: rgba(0, 0, 0, 0.8);
}

.bg-warning-600 {
  background-color: #f6c75d;
  color: rgba(0, 0, 0, 0.8);
}
.bg-warning-600:hover {
  color: rgba(0, 0, 0, 0.8);
}

.bg-warning-700 {
  background-color: #f4be45;
  color: rgba(0, 0, 0, 0.8);
}
.bg-warning-700:hover {
  color: rgba(0, 0, 0, 0.8);
}

.bg-warning-800 {
  background-color: #f3b62d;
  color: rgba(0, 0, 0, 0.8);
}
.bg-warning-800:hover {
  color: rgba(0, 0, 0, 0.8);
}

.bg-warning-900 {
  background-color: #f1ad15;
  color: rgba(0, 0, 0, 0.8);
}
.bg-warning-900:hover {
  color: rgba(0, 0, 0, 0.8);
}

.color-warning-50 {
  color: #fef9ee;
}

.color-warning-100 {
  color: #fdf1d5;
}

.color-warning-200 {
  color: #fbe8bd;
}

.color-warning-300 {
  color: #fae0a5;
}

.color-warning-400 {
  color: #f8d78d;
}

.color-warning-500 {
  color: #F7CF75;
}

.color-warning-600 {
  color: #f6c75d;
}

.color-warning-700 {
  color: #f4be45;
}

.color-warning-800 {
  color: #f3b62d;
}

.color-warning-900 {
  color: #f1ad15;
}

.bg-danger-50 {
  background-color: #fefcfc;
  color: rgba(0, 0, 0, 0.8);
}
.bg-danger-50:hover {
  color: rgba(0, 0, 0, 0.8);
}

.bg-danger-100 {
  background-color: #f8e8e8;
  color: rgba(0, 0, 0, 0.8);
}
.bg-danger-100:hover {
  color: rgba(0, 0, 0, 0.8);
}

.bg-danger-200 {
  background-color: #f2d5d5;
  color: rgba(0, 0, 0, 0.8);
}
.bg-danger-200:hover {
  color: rgba(0, 0, 0, 0.8);
}

.bg-danger-300 {
  background-color: #ecc1c1;
  color: rgba(0, 0, 0, 0.8);
}
.bg-danger-300:hover {
  color: rgba(0, 0, 0, 0.8);
}

.bg-danger-400 {
  background-color: #e6aeae;
  color: rgba(0, 0, 0, 0.8);
}
.bg-danger-400:hover {
  color: rgba(0, 0, 0, 0.8);
}

.bg-danger-500 {
  background-color: #E09A9A;
  color: rgba(0, 0, 0, 0.8);
}
.bg-danger-500:hover {
  color: rgba(0, 0, 0, 0.8);
}

.bg-danger-600 {
  background-color: #da8686;
  color: rgba(0, 0, 0, 0.8);
}
.bg-danger-600:hover {
  color: rgba(0, 0, 0, 0.8);
}

.bg-danger-700 {
  background-color: #d47373;
  color: rgb(255, 255, 255);
}
.bg-danger-700:hover {
  color: rgb(255, 255, 255);
}

.bg-danger-800 {
  background-color: #ce5f5f;
  color: rgb(255, 255, 255);
}
.bg-danger-800:hover {
  color: rgb(255, 255, 255);
}

.bg-danger-900 {
  background-color: #c84c4c;
  color: rgb(255, 255, 255);
}
.bg-danger-900:hover {
  color: rgb(255, 255, 255);
}

.color-danger-50 {
  color: #fefcfc;
}

.color-danger-100 {
  color: #f8e8e8;
}

.color-danger-200 {
  color: #f2d5d5;
}

.color-danger-300 {
  color: #ecc1c1;
}

.color-danger-400 {
  color: #e6aeae;
}

.color-danger-500 {
  color: #E09A9A;
}

.color-danger-600 {
  color: #da8686;
}

.color-danger-700 {
  color: #d47373;
}

.color-danger-800 {
  color: #ce5f5f;
}

.color-danger-900 {
  color: #c84c4c;
}

.bg-fusion-50 {
  background-color: #848484;
  color: rgb(255, 255, 255);
}
.bg-fusion-50:hover {
  color: rgb(255, 255, 255);
}

.bg-fusion-100 {
  background-color: #777777;
  color: rgb(255, 255, 255);
}
.bg-fusion-100:hover {
  color: rgb(255, 255, 255);
}

.bg-fusion-200 {
  background-color: #6a6a6a;
  color: rgb(255, 255, 255);
}
.bg-fusion-200:hover {
  color: rgb(255, 255, 255);
}

.bg-fusion-300 {
  background-color: #5d5d5d;
  color: rgb(255, 255, 255);
}
.bg-fusion-300:hover {
  color: rgb(255, 255, 255);
}

.bg-fusion-400 {
  background-color: #515151;
  color: rgb(255, 255, 255);
}
.bg-fusion-400:hover {
  color: rgb(255, 255, 255);
}

.bg-fusion-500 {
  background-color: #444444;
  color: rgb(255, 255, 255);
}
.bg-fusion-500:hover {
  color: rgb(255, 255, 255);
}

.bg-fusion-600 {
  background-color: #373737;
  color: rgb(255, 255, 255);
}
.bg-fusion-600:hover {
  color: rgb(255, 255, 255);
}

.bg-fusion-700 {
  background-color: #2a2a2a;
  color: rgb(255, 255, 255);
}
.bg-fusion-700:hover {
  color: rgb(255, 255, 255);
}

.bg-fusion-800 {
  background-color: #1e1e1e;
  color: rgb(255, 255, 255);
}
.bg-fusion-800:hover {
  color: rgb(255, 255, 255);
}

.bg-fusion-900 {
  background-color: #111111;
  color: rgb(255, 255, 255);
}
.bg-fusion-900:hover {
  color: rgb(255, 255, 255);
}

.color-fusion-50 {
  color: #848484;
}

.color-fusion-100 {
  color: #777777;
}

.color-fusion-200 {
  color: #6a6a6a;
}

.color-fusion-300 {
  color: #5d5d5d;
}

.color-fusion-400 {
  color: #515151;
}

.color-fusion-500 {
  color: #444444;
}

.color-fusion-600 {
  color: #373737;
}

.color-fusion-700 {
  color: #2a2a2a;
}

.color-fusion-800 {
  color: #1e1e1e;
}

.color-fusion-900 {
  color: #111111;
}

.color-white {
  color: #fff;
}

.color-black {
  color: #222222;
}

.bg-primary-gradient {
  background-image: linear-gradient(250deg, rgba(22, 59, 139, 0.7), transparent);
}

.bg-danger-gradient {
  background-image: linear-gradient(250deg, rgba(200, 76, 76, 0.7), transparent);
}

.bg-info-gradient {
  background-image: linear-gradient(250deg, rgba(53, 143, 233, 0.7), transparent);
}

.bg-warning-gradient {
  background-image: linear-gradient(250deg, rgba(241, 173, 21, 0.7), transparent);
}

.bg-success-gradient {
  background-image: linear-gradient(250deg, rgba(31, 83, 37, 0.7), transparent);
}

.bg-fusion-gradient {
  background-image: linear-gradient(250deg, rgba(17, 17, 17, 0.7), transparent);
}

.btn-primary {
  color: #fff;
  background-color: #2A62DD;
  border-color: #2A62DD;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
}
.btn-primary:hover {
  color: #fff;
  background-color: #1f52c2;
  border-color: #1d4db7;
}
.btn-primary:focus, .btn-primary.focus {
  color: #fff;
  background-color: #1f52c2;
  border-color: #1d4db7;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(74, 122, 226, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(74, 122, 226, 0.5);
}
.btn-primary.disabled, .btn-primary:disabled {
  color: #fff;
  background-color: #2A62DD;
  border-color: #2A62DD;
}
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #1d4db7;
  border-color: #1b49ac;
}
.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(74, 122, 226, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(74, 122, 226, 0.5);
}

.btn-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
}
.btn-secondary:hover {
  color: #fff;
  background-color: #5a6268;
  border-color: #545b62;
}
.btn-secondary:focus, .btn-secondary.focus {
  color: #fff;
  background-color: #5a6268;
  border-color: #545b62;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
}
.btn-secondary.disabled, .btn-secondary:disabled {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, .show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: #545b62;
  border-color: #4e555b;
}
.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-secondary.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
}

.btn-success {
  color: #fff;
  background-color: #3A9E46;
  border-color: #3A9E46;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
}
.btn-success:hover {
  color: #fff;
  background-color: #30823a;
  border-color: #2c7935;
}
.btn-success:focus, .btn-success.focus {
  color: #fff;
  background-color: #30823a;
  border-color: #2c7935;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(88, 173, 98, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(88, 173, 98, 0.5);
}
.btn-success.disabled, .btn-success:disabled {
  color: #fff;
  background-color: #3A9E46;
  border-color: #3A9E46;
}
.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, .show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #2c7935;
  border-color: #296f31;
}
.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, .show > .btn-success.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(88, 173, 98, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(88, 173, 98, 0.5);
}

.btn-info {
  color: #212529;
  background-color: #91C2F3;
  border-color: #91C2F3;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
}
.btn-info:hover {
  color: #212529;
  background-color: #6fafef;
  border-color: #63a9ee;
}
.btn-info:focus, .btn-info.focus {
  color: #212529;
  background-color: #6fafef;
  border-color: #63a9ee;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(128, 170, 213, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(128, 170, 213, 0.5);
}
.btn-info.disabled, .btn-info:disabled {
  color: #212529;
  background-color: #91C2F3;
  border-color: #91C2F3;
}
.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, .show > .btn-info.dropdown-toggle {
  color: #212529;
  background-color: #63a9ee;
  border-color: #58a2ed;
}
.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus, .show > .btn-info.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(128, 170, 213, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(128, 170, 213, 0.5);
}

.btn-warning {
  color: #212529;
  background-color: #F7CF75;
  border-color: #F7CF75;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
}
.btn-warning:hover {
  color: #212529;
  background-color: #f5c251;
  border-color: #f4be45;
}
.btn-warning:focus, .btn-warning.focus {
  color: #212529;
  background-color: #f5c251;
  border-color: #f4be45;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(215, 182, 106, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(215, 182, 106, 0.5);
}
.btn-warning.disabled, .btn-warning:disabled {
  color: #212529;
  background-color: #F7CF75;
  border-color: #F7CF75;
}
.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, .show > .btn-warning.dropdown-toggle {
  color: #212529;
  background-color: #f4be45;
  border-color: #f4ba39;
}
.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-warning.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(215, 182, 106, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(215, 182, 106, 0.5);
}

.btn-danger {
  color: #212529;
  background-color: #E09A9A;
  border-color: #E09A9A;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
}
.btn-danger:hover {
  color: #212529;
  background-color: #d77d7d;
  border-color: #d47373;
}
.btn-danger:focus, .btn-danger.focus {
  color: #212529;
  background-color: #d77d7d;
  border-color: #d47373;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(195, 136, 137, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(195, 136, 137, 0.5);
}
.btn-danger.disabled, .btn-danger:disabled {
  color: #212529;
  background-color: #E09A9A;
  border-color: #E09A9A;
}
.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, .show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #d47373;
  border-color: #d16969;
}
.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-danger.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(195, 136, 137, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(195, 136, 137, 0.5);
}

.btn-light {
  color: #212529;
  background-color: #fff;
  border-color: #fff;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
}
.btn-light:hover {
  color: #212529;
  background-color: #ececec;
  border-color: #e6e6e6;
}
.btn-light:focus, .btn-light.focus {
  color: #212529;
  background-color: #ececec;
  border-color: #e6e6e6;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(222, 222, 223, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(222, 222, 223, 0.5);
}
.btn-light.disabled, .btn-light:disabled {
  color: #212529;
  background-color: #fff;
  border-color: #fff;
}
.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, .show > .btn-light.dropdown-toggle {
  color: #212529;
  background-color: #e6e6e6;
  border-color: #dfdfdf;
}
.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, .show > .btn-light.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(222, 222, 223, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(222, 222, 223, 0.5);
}

.btn-dark {
  color: #fff;
  background-color: #444444;
  border-color: #444444;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
}
.btn-dark:hover {
  color: #fff;
  background-color: #313131;
  border-color: #2a2a2a;
}
.btn-dark:focus, .btn-dark.focus {
  color: #fff;
  background-color: #313131;
  border-color: #2a2a2a;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(96, 96, 96, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(96, 96, 96, 0.5);
}
.btn-dark.disabled, .btn-dark:disabled {
  color: #fff;
  background-color: #444444;
  border-color: #444444;
}
.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, .show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #2a2a2a;
  border-color: #242424;
}
.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-dark.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(96, 96, 96, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(96, 96, 96, 0.5);
}

.btn-outline-primary {
  color: #2A62DD;
  border-color: #2A62DD;
}
.btn-outline-primary:hover {
  color: #fff;
  background-color: #2A62DD;
  border-color: #2A62DD;
}
.btn-outline-primary:focus, .btn-outline-primary.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(42, 98, 221, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(42, 98, 221, 0.5);
}
.btn-outline-primary.disabled, .btn-outline-primary:disabled {
  color: #2A62DD;
  background-color: transparent;
}
.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, .show > .btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #2A62DD;
  border-color: #2A62DD;
}
.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-primary.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(42, 98, 221, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(42, 98, 221, 0.5);
}

.btn-outline-secondary {
  color: #6c757d;
  border-color: #6c757d;
}
.btn-outline-secondary:hover {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-outline-secondary:focus, .btn-outline-secondary.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}
.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
  color: #6c757d;
  background-color: transparent;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, .show > .btn-outline-secondary.dropdown-toggle {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-secondary.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-outline-success {
  color: #3A9E46;
  border-color: #3A9E46;
}
.btn-outline-success:hover {
  color: #fff;
  background-color: #3A9E46;
  border-color: #3A9E46;
}
.btn-outline-success:focus, .btn-outline-success.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(58, 158, 70, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(58, 158, 70, 0.5);
}
.btn-outline-success.disabled, .btn-outline-success:disabled {
  color: #3A9E46;
  background-color: transparent;
}
.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active, .show > .btn-outline-success.dropdown-toggle {
  color: #fff;
  background-color: #3A9E46;
  border-color: #3A9E46;
}
.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-success.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(58, 158, 70, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(58, 158, 70, 0.5);
}

.btn-outline-info {
  color: #91C2F3;
  border-color: #91C2F3;
}
.btn-outline-info:hover {
  color: #212529;
  background-color: #91C2F3;
  border-color: #91C2F3;
}
.btn-outline-info:focus, .btn-outline-info.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(145, 194, 243, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(145, 194, 243, 0.5);
}
.btn-outline-info.disabled, .btn-outline-info:disabled {
  color: #91C2F3;
  background-color: transparent;
}
.btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active, .show > .btn-outline-info.dropdown-toggle {
  color: #212529;
  background-color: #91C2F3;
  border-color: #91C2F3;
}
.btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-info.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(145, 194, 243, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(145, 194, 243, 0.5);
}

.btn-outline-warning {
  color: #F7CF75;
  border-color: #F7CF75;
}
.btn-outline-warning:hover {
  color: #212529;
  background-color: #F7CF75;
  border-color: #F7CF75;
}
.btn-outline-warning:focus, .btn-outline-warning.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(247, 207, 117, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(247, 207, 117, 0.5);
}
.btn-outline-warning.disabled, .btn-outline-warning:disabled {
  color: #F7CF75;
  background-color: transparent;
}
.btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active, .show > .btn-outline-warning.dropdown-toggle {
  color: #212529;
  background-color: #F7CF75;
  border-color: #F7CF75;
}
.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-warning.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(247, 207, 117, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(247, 207, 117, 0.5);
}

.btn-outline-danger {
  color: #E09A9A;
  border-color: #E09A9A;
}
.btn-outline-danger:hover {
  color: #212529;
  background-color: #E09A9A;
  border-color: #E09A9A;
}
.btn-outline-danger:focus, .btn-outline-danger.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(224, 154, 154, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(224, 154, 154, 0.5);
}
.btn-outline-danger.disabled, .btn-outline-danger:disabled {
  color: #E09A9A;
  background-color: transparent;
}
.btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active, .show > .btn-outline-danger.dropdown-toggle {
  color: #212529;
  background-color: #E09A9A;
  border-color: #E09A9A;
}
.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-danger.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(224, 154, 154, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(224, 154, 154, 0.5);
}

.btn-outline-light {
  color: #fff;
  border-color: #fff;
}
.btn-outline-light:hover {
  color: #212529;
  background-color: #fff;
  border-color: #fff;
}
.btn-outline-light:focus, .btn-outline-light.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}
.btn-outline-light.disabled, .btn-outline-light:disabled {
  color: #fff;
  background-color: transparent;
}
.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active, .show > .btn-outline-light.dropdown-toggle {
  color: #212529;
  background-color: #fff;
  border-color: #fff;
}
.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-light.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}

.btn-outline-dark {
  color: #444444;
  border-color: #444444;
}
.btn-outline-dark:hover {
  color: #fff;
  background-color: #444444;
  border-color: #444444;
}
.btn-outline-dark:focus, .btn-outline-dark.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(68, 68, 68, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(68, 68, 68, 0.5);
}
.btn-outline-dark.disabled, .btn-outline-dark:disabled {
  color: #444444;
  background-color: transparent;
}
.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, .show > .btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #444444;
  border-color: #444444;
}
.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-dark.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(68, 68, 68, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(68, 68, 68, 0.5);
}

.border-primary {
  border-color: #2A62DD !important;
}

.border-secondary {
  border-color: #6c757d !important;
}

.border-success {
  border-color: #3A9E46 !important;
}

.border-info {
  border-color: #91C2F3 !important;
}

.border-warning {
  border-color: #F7CF75 !important;
}

.border-danger {
  border-color: #E09A9A !important;
}

.border-light {
  border-color: #fff !important;
}

.border-dark {
  border-color: #444444 !important;
}

.text-primary {
  color: #2A62DD !important;
}

a.text-primary:hover, a.text-primary:focus {
  color: #1a44a1 !important;
}

.text-secondary {
  color: #6c757d !important;
}

a.text-secondary:hover, a.text-secondary:focus {
  color: #494f54 !important;
}

.text-success {
  color: #3A9E46 !important;
}

a.text-success:hover, a.text-success:focus {
  color: #25662d !important;
}

.text-info {
  color: #91C2F3 !important;
}

a.text-info:hover, a.text-info:focus {
  color: #4c9ceb !important;
}

.text-warning {
  color: #F7CF75 !important;
}

a.text-warning:hover, a.text-warning:focus {
  color: #f3b62d !important;
}

.text-danger {
  color: #E09A9A !important;
}

a.text-danger:hover, a.text-danger:focus {
  color: #ce5f5f !important;
}

.text-light {
  color: #fff !important;
}

a.text-light:hover, a.text-light:focus {
  color: #d9d9d9 !important;
}

.text-dark {
  color: #444444 !important;
}

a.text-dark:hover, a.text-dark:focus {
  color: #1e1e1e !important;
}

.bg-primary {
  background-color: #2A62DD !important;
}

a.bg-primary:hover, a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: #1d4db7 !important;
}

.bg-secondary {
  background-color: #6c757d !important;
}

a.bg-secondary:hover, a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: #545b62 !important;
}

.bg-success {
  background-color: #3A9E46 !important;
}

a.bg-success:hover, a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: #2c7935 !important;
}

.bg-info {
  background-color: #91C2F3 !important;
}

a.bg-info:hover, a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
  background-color: #63a9ee !important;
}

.bg-warning {
  background-color: #F7CF75 !important;
}

a.bg-warning:hover, a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
  background-color: #f4be45 !important;
}

.bg-danger {
  background-color: #E09A9A !important;
}

a.bg-danger:hover, a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
  background-color: #d47373 !important;
}

.bg-light {
  background-color: #fff !important;
}

a.bg-light:hover, a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: #e6e6e6 !important;
}

.bg-dark {
  background-color: #444444 !important;
}

a.bg-dark:hover, a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: #2a2a2a !important;
}

:root {
  --theme-primary: #2A62DD;
  --theme-secondary: #6c757d;
  --theme-success: #3A9E46;
  --theme-info: #91C2F3;
  --theme-warning: #F7CF75;
  --theme-danger: #E09A9A;
  --theme-light: #fff;
  --theme-dark: #444444;
  --theme-rgb-primary: 42,98,221;
  --theme-rgb-success: 58,158,70;
  --theme-rgb-info: 145,194,243;
  --theme-rgb-warning: 247,207,117;
  --theme-rgb-danger: 224,154,154;
  --theme-rgb-fusion: 68,68,68;
  --theme-primary-50: #98b3ef;
  --theme-primary-100: #82a3eb;
  --theme-primary-200: #6c93e8;
  --theme-primary-300: #5682e4;
  --theme-primary-400: #4072e1;
  --theme-primary-500: #2A62DD;
  --theme-primary-600: #2157cd;
  --theme-primary-700: #1d4db7;
  --theme-primary-800: #1a44a1;
  --theme-primary-900: #163b8b;
  --theme-success-50: #85d28e;
  --theme-success-100: #73cb7d;
  --theme-success-200: #60c56c;
  --theme-success-300: #4dbe5b;
  --theme-success-400: #41b14e;
  --theme-success-500: #3A9E46;
  --theme-success-600: #338b3e;
  --theme-success-700: #2c7935;
  --theme-success-800: #25662d;
  --theme-success-900: #1f5325;
  --theme-info-50: white;
  --theme-info-100: #edf5fd;
  --theme-info-200: #d6e8fb;
  --theme-info-300: #bfdcf8;
  --theme-info-400: #a8cff6;
  --theme-info-500: #91C2F3;
  --theme-info-600: #7ab5f0;
  --theme-info-700: #63a9ee;
  --theme-info-800: #4c9ceb;
  --theme-info-900: #358fe9;
  --theme-warning-50: #fef9ee;
  --theme-warning-100: #fdf1d5;
  --theme-warning-200: #fbe8bd;
  --theme-warning-300: #fae0a5;
  --theme-warning-400: #f8d78d;
  --theme-warning-500: #F7CF75;
  --theme-warning-600: #f6c75d;
  --theme-warning-700: #f4be45;
  --theme-warning-800: #f3b62d;
  --theme-warning-900: #f1ad15;
  --theme-danger-50: #fefcfc;
  --theme-danger-100: #f8e8e8;
  --theme-danger-200: #f2d5d5;
  --theme-danger-300: #ecc1c1;
  --theme-danger-400: #e6aeae;
  --theme-danger-500: #E09A9A;
  --theme-danger-600: #da8686;
  --theme-danger-700: #d47373;
  --theme-danger-800: #ce5f5f;
  --theme-danger-900: #c84c4c;
  --theme-fusion-50: #848484;
  --theme-fusion-100: #777777;
  --theme-fusion-200: #6a6a6a;
  --theme-fusion-300: #5d5d5d;
  --theme-fusion-400: #515151;
  --theme-fusion-500: #444444;
  --theme-fusion-600: #373737;
  --theme-fusion-700: #2a2a2a;
  --theme-fusion-800: #1e1e1e;
  --theme-fusion-900: #111111;
}

.ct-series-a .ct-point, .ct-series-a .ct-line, .ct-series-a .ct-bar, .ct-series-a .ct-slice-donut {
  stroke: #2A62DD;
}
.ct-series-a .ct-slice-pie, .ct-series-a .ct-slice-donut-solid, .ct-series-a .ct-area {
  fill: #2A62DD;
}

.ct-series-b .ct-point, .ct-series-b .ct-line, .ct-series-b .ct-bar, .ct-series-b .ct-slice-donut {
  stroke: #E09A9A;
}
.ct-series-b .ct-slice-pie, .ct-series-b .ct-slice-donut-solid, .ct-series-b .ct-area {
  fill: #E09A9A;
}

.ct-series-c .ct-point, .ct-series-c .ct-line, .ct-series-c .ct-bar, .ct-series-c .ct-slice-donut {
  stroke: #F7CF75;
}
.ct-series-c .ct-slice-pie, .ct-series-c .ct-slice-donut-solid, .ct-series-c .ct-area {
  fill: #F7CF75;
}

.ct-series-d .ct-point, .ct-series-d .ct-line, .ct-series-d .ct-bar, .ct-series-d .ct-slice-donut {
  stroke: #91C2F3;
}
.ct-series-d .ct-slice-pie, .ct-series-d .ct-slice-donut-solid, .ct-series-d .ct-area {
  fill: #91C2F3;
}

.ct-series-e .ct-point, .ct-series-e .ct-line, .ct-series-e .ct-bar, .ct-series-e .ct-slice-donut {
  stroke: #444444;
}
.ct-series-e .ct-slice-pie, .ct-series-e .ct-slice-donut-solid, .ct-series-e .ct-area {
  fill: #444444;
}

.ct-series-f .ct-point, .ct-series-f .ct-line, .ct-series-f .ct-bar, .ct-series-f .ct-slice-donut {
  stroke: #3A9E46;
}
.ct-series-f .ct-slice-pie, .ct-series-f .ct-slice-donut-solid, .ct-series-f .ct-area {
  fill: #3A9E46;
}

.ct-series-g .ct-point, .ct-series-g .ct-line, .ct-series-g .ct-bar, .ct-series-g .ct-slice-donut {
  stroke: #91C2F3;
}
.ct-series-g .ct-slice-pie, .ct-series-g .ct-slice-donut-solid, .ct-series-g .ct-area {
  fill: #91C2F3;
}

.ct-series-h .ct-point, .ct-series-h .ct-line, .ct-series-h .ct-bar, .ct-series-h .ct-slice-donut {
  stroke: #163b8b;
}
.ct-series-h .ct-slice-pie, .ct-series-h .ct-slice-donut-solid, .ct-series-h .ct-area {
  fill: #163b8b;
}

.ct-series-i .ct-point, .ct-series-i .ct-line, .ct-series-i .ct-bar, .ct-series-i .ct-slice-donut {
  stroke: #f8e8e8;
}
.ct-series-i .ct-slice-pie, .ct-series-i .ct-slice-donut-solid, .ct-series-i .ct-area {
  fill: #f8e8e8;
}

.ct-series-j .ct-point, .ct-series-j .ct-line, .ct-series-j .ct-bar, .ct-series-j .ct-slice-donut {
  stroke: #fbe8bd;
}
.ct-series-j .ct-slice-pie, .ct-series-j .ct-slice-donut-solid, .ct-series-j .ct-area {
  fill: #fbe8bd;
}

.ct-series-k .ct-point, .ct-series-k .ct-line, .ct-series-k .ct-bar, .ct-series-k .ct-slice-donut {
  stroke: #c84c4c;
}
.ct-series-k .ct-slice-pie, .ct-series-k .ct-slice-donut-solid, .ct-series-k .ct-area {
  fill: #c84c4c;
}

.ct-series-l .ct-point, .ct-series-l .ct-line, .ct-series-l .ct-bar, .ct-series-l .ct-slice-donut {
  stroke: #5d5d5d;
}
.ct-series-l .ct-slice-pie, .ct-series-l .ct-slice-donut-solid, .ct-series-l .ct-area {
  fill: #5d5d5d;
}

.ct-series-m .ct-point, .ct-series-m .ct-line, .ct-series-m .ct-bar, .ct-series-m .ct-slice-donut {
  stroke: #4dbe5b;
}
.ct-series-m .ct-slice-pie, .ct-series-m .ct-slice-donut-solid, .ct-series-m .ct-area {
  fill: #4dbe5b;
}

.ct-series-n .ct-point, .ct-series-n .ct-line, .ct-series-n .ct-bar, .ct-series-n .ct-slice-donut {
  stroke: #bfdcf8;
}
.ct-series-n .ct-slice-pie, .ct-series-n .ct-slice-donut-solid, .ct-series-n .ct-area {
  fill: #bfdcf8;
}

.ct-series-o .ct-point, .ct-series-o .ct-line, .ct-series-o .ct-bar, .ct-series-o .ct-slice-donut {
  stroke: #5682e4;
}
.ct-series-o .ct-slice-pie, .ct-series-o .ct-slice-donut-solid, .ct-series-o .ct-area {
  fill: #5682e4;
}

.select2-container--default .select2-selection--single,
.select2-container--default .select2-selection--multiple {
  border-color: #E5E5E5;
}

.select2-dropdown {
  border-color: #E5E5E5;
}

.select2-search--dropdown:before {
  color: #2A62DD;
}

.select2-results__message {
  color: #2A62DD !important;
}

.select2-container--open .select2-dropdown--above {
  border-color: #2A62DD;
}

.select2-container--open .select2-dropdown--below {
  border-color: #2A62DD;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  color: #495057;
  background-color: #fff;
  border-color: #E5E5E5;
  -webkit-box-shadow: inset 0 0.25rem 0.125rem 0 rgba(33, 37, 41, 0.025);
          box-shadow: inset 0 0.25rem 0.125rem 0 rgba(33, 37, 41, 0.025);
}
.select2-container--default .select2-search--dropdown .select2-search__field:focus {
  border-color: #cccccc;
}

.select2-container--default .select2-results__group {
  padding: 0.5rem 0;
  color: #8e8e8e;
}

.select2-container--default .select2-results__option[aria-selected=true] {
  background: #d1ddf8;
  color: #163b8b;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #2A62DD;
  color: #fff;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple,
.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-color: #2A62DD;
}

.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default.select2-container--focus .select2-selection--multiple {
  border-color: #2A62DD;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background: #0654BA;
  border-color: #4072e1;
  color: #ffffff;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove {
  color: #ffffff;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove:hover {
  color: #ffffff;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove:active {
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15) inset;
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15) inset;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  color: #E09A9A;
}
.select2-container--default .select2-selection--single .select2-selection__clear:hover {
  color: #da8686;
}

.select2-results__message {
  color: #E09A9A;
}

.sorting_asc,
.sorting_desc,
.even .sorting_1 {
  background-color: rgba(42, 98, 221, 0.03);
}

.odd .sorting_1 {
  background-color: rgba(42, 98, 221, 0.04);
}

.table-dark .sorting_asc,
.table-dark .sorting_desc,
.table-dark .even .sorting_1 {
  background-color: rgba(247, 207, 117, 0.15);
}
.table-dark .odd .sorting_1 {
  background-color: rgba(247, 207, 117, 0.15);
}

table.dataTable.dtr-inline.collapsed > tbody > tr[role=row] > td:first-child:before,
table.dataTable.dtr-inline.collapsed > tbody > tr[role=row] > th:first-child:before,
table.dataTable.dtr-column > tbody > tr > td.control:before,
table.dataTable.dtr-column > tbody > tr > th.control:before {
  background-color: #2A62DD;
}

table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td:first-child:before,
table.dataTable.dtr-inline.collapsed > tbody > tr.parent > th:first-child:before,
table.dataTable.dtr-column > tbody > tr.parent td.control:before,
table.dataTable.dtr-column > tbody > tr.parent th.control:before {
  background-color: #3A9E46;
}

.dataTables_empty {
  color: #E09A9A;
}

.dataTables_wrapper tr.child td.child .dtr-details:before {
  color: #41b14e;
}
.dataTables_wrapper tr.child td.child .dtr-details:after {
  background: #60c56c;
}

div.dt-autofill-background {
  opacity: 0.2;
  background-color: #000;
}

div.dt-autofill-handle {
  background: #2A62DD;
}

div.dt-autofill-select {
  background-color: #2A62DD;
}

/* FixedColumns */
.DTFC_LeftHeadWrapper:before,
.DTFC_LeftBodyWrapper:before,
.DTFC_LeftFootWrapper:before {
  background: #E09A9A;
}

/* KeyTable */
table.dataTable tbody th.focus,
table.dataTable tbody td.focus {
  -webkit-box-shadow: inset 0 0 0px 1px #2A62DD;
          box-shadow: inset 0 0 0px 1px #2A62DD;
  background: rgba(42, 98, 221, 0.1);
}

table.dataTable:not(.table-dark) tr.dtrg-group td {
  background: #fff;
}

tr.dt-rowReorder-moving {
  outline-color: #3A9E46;
}

table.dt-rowReorder-float {
  outline-color: #2A62DD;
}

/* Select */
table.dataTable.table-bordered .selected td {
  border-color: rgba(0, 0, 0, 0.1);
}
table.dataTable.table-bordered td.selected {
  border-color: rgba(0, 0, 0, 0.1);
}
table.dataTable tbody > tr.selected,
table.dataTable tbody > tr > .selected {
  -webkit-box-shadow: inset 0 0 0px 1px #2A62DD;
          box-shadow: inset 0 0 0px 1px #2A62DD;
  background: rgba(42, 98, 221, 0.1);
}

.datepicker table tr td.old,
.datepicker table tr td.new {
  color: #9d9d9d;
}

.datepicker table tr td.active:active,
.datepicker table tr td.active.highlighted:active,
.datepicker table tr td.active.active,
.datepicker table tr td.active.highlighted.active,
.datepicker table tr td.selected,
.datepicker table tr td.selected.highlighted,
.datepicker table tr td span.active.active,
.datepicker table tr td span.focused {
  background-color: #4072e1;
  border-color: #2A62DD;
  color: #fff;
}

.datepicker table tr td.active:active:hover,
.datepicker table tr td.active.highlighted:active:hover,
.datepicker table tr td.active.active:hover,
.datepicker table tr td.active.highlighted.active:hover,
.datepicker table tr td.active:active:focus,
.datepicker table tr td.active.highlighted:active:focus,
.datepicker table tr td.active.active:focus,
.datepicker table tr td.active.highlighted.active:focus,
.datepicker table tr td.active:active.focus,
.datepicker table tr td.active.highlighted:active.focus,
.datepicker table tr td.active.active.focus,
.datepicker table tr td.active.highlighted.active.focus,
.datepicker table tr td.selected:active:hover,
.datepicker table tr td.selected.highlighted:active:hover,
.datepicker table tr td.selected.active:hover,
.datepicker table tr td.selected.highlighted.active:hover,
.datepicker table tr td.selected:active:focus,
.datepicker table tr td.selected.highlighted:active:focus,
.datepicker table tr td.selected.active:focus,
.datepicker table tr td.selected.highlighted.active:focus,
.datepicker table tr td.selected:active.focus,
.datepicker table tr td.selected.highlighted:active.focus,
.datepicker table tr td.selected.active.focus,
.datepicker table tr td.selected.highlighted.active.focus,
.datepicker table tr td.selected:hover,
.datepicker table tr td.selected.highlighted:hover {
  background-color: #2157cd;
  border-color: #1d4db7;
  color: #fff;
}

.datepicker.datepicker-inline {
  border: 1px solid #ebedf2;
}

.datepicker thead th.prev, .datepicker thead th.datepicker-switch, .datepicker thead th.next {
  color: #a1a8c3;
}

.daterangepicker table tr td.old,
.daterangepicker table tr td.new {
  color: #9d9d9d;
}

.daterangepicker table tr td.active:active,
.daterangepicker table tr td.active.highlighted:active,
.daterangepicker table tr td.active.active,
.daterangepicker table tr td.active.highlighted.active,
.daterangepicker table tr td.selected,
.daterangepicker table tr td.selected.highlighted,
.daterangepicker table tr td span.active.active,
.daterangepicker table tr td span.focused {
  background-color: #4072e1;
  color: #fff;
}

.daterangepicker table tr td.active:active:hover,
.daterangepicker table tr td.active.highlighted:active:hover,
.daterangepicker table tr td.active.active:hover,
.daterangepicker table tr td.active.highlighted.active:hover,
.daterangepicker table tr td.active:active:focus,
.daterangepicker table tr td.active.highlighted:active:focus,
.daterangepicker table tr td.active.active:focus,
.daterangepicker table tr td.active.highlighted.active:focus,
.daterangepicker table tr td.active:active.focus,
.daterangepicker table tr td.active.highlighted:active.focus,
.daterangepicker table tr td.active.active.focus,
.daterangepicker table tr td.active.highlighted.active.focus,
.daterangepicker table tr td.selected:active:hover,
.daterangepicker table tr td.selected.highlighted:active:hover,
.daterangepicker table tr td.selected.active:hover,
.daterangepicker table tr td.selected.highlighted.active:hover,
.daterangepicker table tr td.selected:active:focus,
.daterangepicker table tr td.selected.highlighted:active:focus,
.daterangepicker table tr td.selected.active:focus,
.daterangepicker table tr td.selected.highlighted.active:focus,
.daterangepicker table tr td.selected:active.focus,
.daterangepicker table tr td.selected.highlighted:active.focus,
.daterangepicker table tr td.selected.active.focus,
.daterangepicker table tr td.selected.highlighted.active.focus,
.daterangepicker table tr td.selected:hover,
.daterangepicker table tr td.selected.highlighted:hover {
  background-color: #2157cd;
  color: #fff;
}

.daterangepicker .calendar-table .next span,
.daterangepicker .calendar-table .prev span {
  border-color: #a1a8c3;
}

.daterangepicker .in-range.available {
  background-color: #fdf1d5;
}

.daterangepicker .off.ends.in-range.available {
  background-color: #fef9ee;
}

.daterangepicker td.available:hover,
.daterangepicker th.available:hover {
  background-color: #fae0a5;
}

.daterangepicker .calendar-table table thead tr th.month {
  color: #a1a8c3;
}

.daterangepicker .ranges li.active {
  background-color: #2A62DD;
}

.irs--flat .irs-bar,
.irs--flat .irs-from,
.irs--flat .irs-to,
.irs--flat .irs-single,
.irs--flat .irs-handle > i:first-child {
  background-color: #2A62DD;
}

.irs--flat .irs-from:before,
.irs--flat .irs-to:before,
.irs--flat .irs-single:before {
  border-top-color: #2A62DD;
}

.irs--flat .irs-handle.state_hover > i:first-child,
.irs--flat .irs-handle:hover > i:first-child {
  background-color: #2157cd;
}

.irs--big .irs-bar {
  background-color: #5682e4;
  border-color: #2A62DD;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), color-stop(30%, #5682e4), to(#2A62DD));
  background: linear-gradient(to bottom, #ffffff 0%, #5682e4 30%, #2A62DD 100%);
}

.irs--big .irs-from,
.irs--big .irs-to,
.irs--big .irs-single {
  background: #2A62DD;
}

.irs--modern .irs-bar {
  background: #338b3e;
  background: -webkit-gradient(linear, left top, left bottom, from(#41b14e), to(#338b3e));
  background: linear-gradient(to bottom, #41b14e 0%, #338b3e 100%);
}

.irs--modern .irs-from,
.irs--modern .irs-to,
.irs--modern .irs-single {
  background-color: #3A9E46;
}

.irs--modern .irs-from:before,
.irs--modern .irs-to:before,
.irs--modern .irs-single:before {
  border-top-color: #3A9E46;
}

.irs--sharp .irs-bar,
.irs--sharp .irs-handle,
.irs--sharp .irs-from,
.irs--sharp .irs-to,
.irs--sharp .irs-single {
  background-color: #E09A9A;
}

.irs--sharp .irs-handle > i:first-child,
.irs--sharp .irs-from:before,
.irs--sharp .irs-to:before,
.irs--sharp .irs-single:before {
  border-top-color: #E09A9A;
}

.irs--sharp .irs-min,
.irs--sharp .irs-max {
  background-color: #ce5f5f;
}

.irs--round .irs-handle {
  border-color: #91C2F3;
}

.irs--round .irs-bar,
.irs--round .irs-from,
.irs--round .irs-to,
.irs--round .irs-single {
  background-color: #91C2F3;
}

.irs--round .irs-from:before,
.irs--round .irs-to:before,
.irs--round .irs-single:before {
  border-top-color: #91C2F3;
}

body:not(.mod-pace-custom) .pace .pace-progress {
  background: #2A62DD;
}

.mod-pace-custom .pace {
  background: #fff;
}
.mod-pace-custom .pace .pace-progress {
  background-color: #2A62DD;
  background-image: linear-gradient(135deg, #2A62DD 0%, #2A62DD 25%, #1d4db7 25%, #1d4db7 50%, #2A62DD 50%, #2A62DD 75%, #1d4db7 75%, #1d4db7 100%);
}
.mod-pace-custom.pace-running .page-content:before {
  background-color: #e2eaf9;
}

.text-solid {
  color: black;
}

.color-golden {
  color: #FFD700 !important;
}

.bg-golden {
  background: #FFD700 !important;
}

.orders-marketplace-checkbox input[type=checkbox] ~ label:before {
  color: white;
  background-color: white !important;
}
.orders-marketplace-checkbox input[type=checkbox] ~ label.color-set-0:before {
  border-color: #af6897 !important;
}
.orders-marketplace-checkbox input[type=checkbox] ~ label.color-set-1:before {
  border-color: #5d8cd2 !important;
}
.orders-marketplace-checkbox input[type=checkbox] ~ label.color-set-2:before {
  border-color: #e3aa66 !important;
}
.orders-marketplace-checkbox input[type=checkbox] ~ label.color-set-3:before {
  border-color: #db869e !important;
}
.orders-marketplace-checkbox input[type=checkbox] ~ label.color-set-4:before {
  border-color: #81c29c !important;
}
.orders-marketplace-checkbox input[type=checkbox] ~ label.color-set-5:before {
  border-color: #a7d6d4 !important;
}
.orders-marketplace-checkbox input[type=checkbox] ~ label.color-set-6:before {
  border-color: #f3e06f !important;
}
.orders-marketplace-checkbox input[type=checkbox] ~ label.color-set-7:before {
  border-color: #4a993f !important;
}
.orders-marketplace-checkbox input[type=checkbox] ~ label.color-set-8:before {
  border-color: #f3866f !important;
}
.orders-marketplace-checkbox input[type=checkbox] ~ label.color-set-9:before {
  border-color: #726297 !important;
}
.orders-marketplace-checkbox input[type=checkbox]:checked ~ label.color-set-0:before {
  background-color: #af6897 !important;
}
.orders-marketplace-checkbox input[type=checkbox]:checked ~ label.color-set-1:before {
  background-color: #5d8cd2 !important;
}
.orders-marketplace-checkbox input[type=checkbox]:checked ~ label.color-set-2:before {
  background-color: #e3aa66 !important;
}
.orders-marketplace-checkbox input[type=checkbox]:checked ~ label.color-set-3:before {
  background-color: #db869e !important;
}
.orders-marketplace-checkbox input[type=checkbox]:checked ~ label.color-set-4:before {
  background-color: #81c29c !important;
}
.orders-marketplace-checkbox input[type=checkbox]:checked ~ label.color-set-5:before {
  background-color: #a7d6d4 !important;
}
.orders-marketplace-checkbox input[type=checkbox]:checked ~ label.color-set-6:before {
  background-color: #f3e06f !important;
}
.orders-marketplace-checkbox input[type=checkbox]:checked ~ label.color-set-7:before {
  background-color: #4a993f !important;
}
.orders-marketplace-checkbox input[type=checkbox]:checked ~ label.color-set-8:before {
  background-color: #f3866f !important;
}
.orders-marketplace-checkbox input[type=checkbox]:checked ~ label.color-set-9:before {
  background-color: #726297 !important;
}

.color-urgent-50 {
  color: #de9c9c;
}

.color-urgent-100 {
  color: #d78989;
}

.color-urgent-200 {
  color: #d17676;
}

.color-urgent-300 {
  color: #ca6363;
}

.color-urgent-400 {
  color: #c45050;
}

.color-urgent-500 {
  color: #BB3F3F;
}

.color-urgent-600 {
  color: #a83939;
}

.color-urgent-700 {
  color: #953232;
}

.color-urgent-800 {
  color: #822c2c;
}

.color-urgent-900 {
  color: #6f2525;
}

.color-secondary {
  color: #f6f9f7;
}

.background-secondary {
  background: #f6f9f7;
}

.color-tertiary-50 {
  color: white !important;
}

.color-tertiary-100 {
  color: white !important;
}

.color-tertiary-200 {
  color: white !important;
}

.color-tertiary-300 {
  color: white !important;
}

.color-tertiary-400 {
  color: #f0f5f3 !important;
}

.color-tertiary-500 {
  color: #e1eae6 !important;
}

.color-tertiary-600 {
  color: #d2e0da !important;
}

.color-tertiary-700 {
  color: #c3d5cd !important;
}

.color-tertiary-800 {
  color: #b4cbc1 !important;
}

.color-tertiary-900 {
  color: #a5c0b4 !important;
}

.color-tertiary, .text-tertiary {
  color: #e1eae6;
}

.bg-tertiary-50 {
  background: white !important;
}

.bg-tertiary-100 {
  background: white !important;
}

.bg-tertiary-200 {
  background: white !important;
}

.bg-tertiary-300 {
  background: white !important;
}

.bg-tertiary-400 {
  background: #f0f5f3 !important;
}

.bg-tertiary-500 {
  background: #e1eae6 !important;
}

.bg-tertiary-600 {
  background: #d2e0da !important;
}

.bg-tertiary-700 {
  background: #c3d5cd !important;
}

.bg-tertiary-800 {
  background: #b4cbc1 !important;
}

.bg-tertiary-900 {
  background: #a5c0b4 !important;
}

.background-tertiary {
  background: #e1eae6;
}

.bg-warning-50 {
  background: #fef9ee;
}

.bg-warning-100 {
  background: #fdf1d5;
}

.bg-warning-200 {
  background: #fbe8bd;
}

.bg-warning-300 {
  background: #fae0a5;
}

.bg-warning-400 {
  background: #f8d78d;
}

.bg-warning-500 {
  background: #F7CF75;
}

.bg-warning-600 {
  background: #f6c75d;
}

.bg-warning-700 {
  background: #f4be45;
}

.bg-warning-800 {
  background: #f3b62d;
}

.bg-warning-900 {
  background: #f1ad15;
}

.text-warning-50 {
  color: #fef9ee;
}

.text-warning-100 {
  color: #fdf1d5;
}

.text-warning-200 {
  color: #fbe8bd;
}

.text-warning-300 {
  color: #fae0a5;
}

.text-warning-400 {
  color: #f8d78d;
}

.text-warning-500 {
  color: #F7CF75;
}

.text-warning-600 {
  color: #f6c75d;
}

.text-warning-700 {
  color: #f4be45;
}

.text-warning-800 {
  color: #f3b62d;
}

.text-warning-900 {
  color: #f1ad15;
}

.page-content .alert {
  margin-bottom: 1rem;
}
.page-content .alert a {
  color: inherit;
  font-weight: bold;
  text-decoration: underline;
}
.page-content .alert .btn-outline-danger:hover {
  color: white !important;
  background: #dc3545;
}
.page-content .alert .btn-outline-warning:hover {
  color: white !important;
  background: #ffc107;
}
.page-content .alert .btn-outline-info:hover {
  color: white !important;
  background: #91C2F3;
}
.page-content .alert .btn-outline-success:hover {
  color: white !important;
  background: #28a745;
}
.page-content .alert.alert-info:hover {
  color: #358fe9;
}
.page-content .alert.alert-info a:hover {
  color: #2B598F;
}
.page-content .alert.alert-warning:hover {
  color: #EEA73E;
}
.page-content .alert.alert-warning a:hover {
  color: #A16916;
}
.page-content .alert.alert-danger:hover {
  color: #BB3F3F;
}
.page-content .alert.alert-danger a:hover {
  color: #7D2A2A;
}
.page-content .alert .alert-content {
  position: relative;
  max-height: 5rem;
  overflow: hidden;
}
.page-content .alert .alert-content .alert-show-more {
  position: absolute;
  top: 3.25rem;
  left: 2.75rem;
  right: 1rem;
  padding: 0.5rem;
  font-weight: 900;
}
.page-content .alert .alert-content.alert-show-all {
  max-height: none;
}
.page-content .alert .alert-content.alert-show-all .alert-show-more {
  display: none;
}

.table {
  border-spacing: 0 !important;
}

.no-scroller {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.no-scroller::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}

.scroll-area {
  display: block;
  overflow: auto !important;
  border: 1px solid #f6f9f7 !important;
  border-radius: 4px;
  width: 100%;
}
.scroll-area:not(.sideways) {
  height: 90vh;
  min-height: 250px;
}
.scroll-area thead th {
  border: none !important;
  white-space: nowrap;
}
.scroll-area tbody th {
  border: none !important;
}
.scroll-area .top-stuck {
  position: sticky;
  top: 0;
  background: white;
  z-index: 100;
  border-bottom: 1px solid #f6f9f7 !important;
}
.scroll-area .top-stuck .left-stuck {
  z-index: 200;
  --left-stuck-width: 100%;
}
.scroll-area .bottom-stuck {
  position: sticky;
  bottom: 0;
  background: rgba(255, 255, 255, 0.7);
  z-index: 100;
  border-top: 1px solid #f6f9f7 !important;
}
.scroll-area .bottom-stuck .left-stuck {
  z-index: 200;
  --left-stuck-width: 100%;
}
.scroll-area .left-stuck {
  position: sticky;
  left: 0;
  background: white;
  z-index: 10;
  border-right: 1px solid #dee2e6 !important;
}
.scroll-area .simplebar-track.simplebar-horizontal {
  top: 1.9rem;
  height: 1rem;
  z-index: 300;
}
.scroll-area .simplebar-track.simplebar-vertical {
  top: 3rem;
  width: 11px;
  height: calc(100% - 4rem);
}
.scroll-area .simplebar-wrapper {
  padding-bottom: 2px;
}
.scroll-area .simplebar-mask {
  margin-top: 2px;
}

@media (min-width: 992px) {
  body.nav-function-hidden .scroll-area {
    width: calc(100vw - 84px) !important;
  }
}

.page-content {
  color: #454545;
  background: #f6f9f7;
}

.panel-hdr {
  border-radius: 0;
  border-bottom: 1px solid #2A62DD;
}
.panel-hdr h2 {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 13px;
}

ul.list-ticks {
  list-style: none;
}
ul.list-ticks li {
  margin-top: 1rem;
}
ul.list-ticks li:before {
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  content: "\f058";
  color: #2A62DD;
  margin-left: -1.8rem;
  margin-right: 1rem;
}

pre {
  white-space: break-spaces;
  background: white;
  padding: 1rem;
}
pre.code {
  white-space: break-spaces;
  background: #e1eae6;
  padding: 1rem;
}

.external-link {
  position: relative;
}
.external-link:not(.external-link.btn) {
  margin-right: 2rem;
}
.external-link:not(.external-link.btn):after {
  right: -1.5rem;
}
.external-link.btn {
  padding-right: 2rem;
}
.external-link.btn:after {
  right: 0.25rem;
}
.external-link:after {
  position: absolute;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  font-size: 1rem;
  z-index: 5;
  content: "\f08e";
}

.section-collapsing.section-collapsed {
  padding-bottom: 1rem;
}
.section-collapsing.section-collapsed .section-target {
  height: 0;
  display: none;
}
.section-collapsing.section-collapsed .section-reveal {
  display: none;
}
.section-collapsing:not(.section-collapsed) .section-hidden {
  display: none;
}
ul.arrow-list {
  -webkit-padding-start: 1.25rem;
          padding-inline-start: 1.25rem;
}
ul.arrow-list li {
  list-style-type: none;
  position: relative;
}
ul.arrow-list li:before {
  color: #2A62DD;
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  content: "\f356";
  margin-right: 0.25rem;
  margin-left: -1rem;
  position: absolute;
  top: 0.25rem;
}

.text-danger {
  color: var(--theme-danger-700) !important;
}

.text-super {
  vertical-align: super;
  font-size: 0.6rem;
}

.content-generated {
  position: relative;
}
.content-generated::after {
  content: "XXXX";
  font-size: 2rem;
  padding: 2px;
  color: red;
}

.page-logo {
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #ffffff;
  height: 2.8125rem;
}
.page-logo img {
  height: 3rem;
  padding: 3px;
  width: auto;
}

.page-breadcrumb {
  position: absolute;
  top: -2rem;
  z-index: 1000;
}
.page-breadcrumb li, .page-breadcrumb a {
  color: white !important;
  text-shadow: none;
}

.nav-function-hidden .page-breadcrumb {
  left: 14rem;
}

.page-sidebar {
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 1.25rem 0px rgba(72, 93, 140, 0.08);
          box-shadow: 0px 0px 1.25rem 0px rgba(72, 93, 140, 0.08);
}
.page-sidebar ul li i {
  color: #00ff00;
}
.page-sidebar ul li span {
  color: #000000;
}
.page-sidebar .nav-menu > li > a:hover, .page-sidebar .nav-menu > li > a:active {
  color: #0654BA;
  background: rgba(0, 80, 0, 0.1);
}
.page-sidebar .nav-menu > li > a:hover span, .page-sidebar .nav-menu > li > a:active span {
  color: #0654BA;
}
.page-sidebar .nav-menu > li > ul {
  border-left: 5px solid #2A62DD;
}
.page-sidebar .nav-menu > li.active > a {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.page-sidebar .nav-menu > li.active > a:before {
  display: none;
}
.page-sidebar .nav-menu li.active > a {
  font-weight: 500;
  color: #000 !important;
}
.page-sidebar .nav-menu li.active > a:before {
  display: none;
}
.page-sidebar .nav-menu li > ul {
  padding-top: 0;
  padding-bottom: 0;
  background: #f6f9f7;
}
.page-sidebar .nav-menu li > ul > li.open > a {
  color: #000 !important;
  font-weight: bold;
}
.page-sidebar .nav-menu li > ul > li > a {
  margin-left: 37px;
  padding-left: 27px;
  border-left: 1px solid #2A62DD;
}
.page-sidebar .nav-menu li > ul > li > a:hover, .page-sidebar .nav-menu li > ul > li > a:active {
  color: #0654BA;
  background: rgba(0, 80, 0, 0.1);
}
.page-sidebar .nav-menu li > ul > li:before {
  color: #2A62DD;
  content: "·";
  position: absolute;
  left: 1.97rem;
  font-size: 3rem;
  line-height: 3rem;
  z-index: 100;
}
.page-sidebar .nav-menu li > ul > li.active:before {
  color: orange;
}
.page-sidebar .nav-menu li > ul > li > ul > li > a {
  padding-left: 37px;
}
.page-sidebar .nav-menu li > ul > li > ul > li:before {
  content: "";
}

@media (min-width: 992px) {
  .nav-function-hidden:not(.nav-function-top) .page-sidebar:after {
    width: 1rem;
  }
  .nav-function-hidden:not(.nav-function-top) .page-header {
    padding-left: 0;
    margin-left: -10px;
  }
}
#dashboard .marketplace-tabs-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
}
#dashboard .marketplace-tabs-wrapper .marketplace-tabs {
  display: block;
  white-space: nowrap;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
#dashboard .marketplace-tabs-wrapper .marketplace-tabs .nav-item {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
}
#dashboard .marketplace-tabs-wrapper .marketplace-tabs .nav-item a {
  padding: 0px 16px;
  margin: 5px 8px 0 0;
}
#dashboard .marketplace-tabs-wrapper .marketplace-tabs .nav-item a.active {
  color: #2A62DD;
  background: #f6f9f7;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
#dashboard .marketplace-tabs-wrapper .marketplace-tabs .nav-item a span.badge, #dashboard .marketplace-tabs-wrapper .marketplace-tabs .nav-item a i {
  margin-top: -5px;
  margin-right: 5px;
}

a[role=tab].nav-link {
  border: none;
}
a[role=tab].nav-link.active {
  position: relative;
}
a[role=tab].nav-link.active:after {
  display: block;
  content: " ";
  z-index: 1000;
  position: absolute;
  left: -1px;
  right: -1px;
  bottom: -2px;
  height: 5px;
  background: #4072e1;
}

#product-override-actions {
  z-index: 2000;
}

#back-to-top, #localhost {
  z-index: 2100;
}

.page-header {
  color: #ffffff;
  background: #2A62DD;
  height: 2.8125rem;
}
.page-header .dropdown-divider {
  border-top: 2px solid #2A62DD;
}
.page-header [class*=fa-] {
  color: #2A62DD;
}
.page-header .header-icon {
  height: 2.8125rem;
}
.page-header .header-icon:not(.btn)[data-toggle=dropdown] {
  color: #ffffff;
}
.page-header .header-icon:not(.btn)[data-toggle=dropdown] > [class*=fa-]:first-child {
  color: #ffffff;
  font-size: 1.5rem;
}
.page-header .header-icon:not(.btn)[data-toggle=dropdown][aria-expanded=true] {
  background: #0654BA;
}
.page-header .header-icon:not(.btn)[data-toggle=dropdown][aria-expanded=true]:after {
  opacity: 0;
}
.page-header .header-icon:not(.btn)[data-toggle=dropdown][aria-expanded=true] > [class*=fa-]:first-child, .page-header .header-icon:not(.btn)[data-toggle=dropdown][aria-expanded=false] > [class*=fa-]:first-child {
  color: #ffffff !important;
}
.page-header .dropdown-icon-menu > ul > li .btn, .page-header .header-btn {
  color: #ffffff;
  border: 1px solid #ffffff;
  background: transparent;
  height: 1.75rem;
  width: 2.5rem;
  margin-right: 0.25rem;
  font-size: 18px;
  line-height: 1.75rem;
}

body.nav-function-hidden .page-header .page-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #2A62DD;
  -webkit-box-shadow: none;
  box-shadow: none;
  width: auto;
}
body.nav-function-hidden .page-header .page-logo img {
  height: 3rem;
  width: auto;
  padding: 3px;
}

.onboarding .page-header {
  height: auto;
}

.pos-under-1 {
  bottom: -1rem;
}

.page-footer {
  color: #454545;
  background: #f6f9f7;
  border-top: 1px solid #7596B7;
}
.page-footer a, .page-footer a[target]:not(.btn) {
  color: #68799f;
}
.page-footer a:hover, .page-footer a[target]:not(.btn):hover {
  text-decoration: underline !important;
}
.page-footer ul > li {
  border-right: 1px solid #7596B7;
}
.page-footer ul > li:first-child {
  color: #7596B7;
  border: none;
}
.page-footer ul > li:last-child {
  border: none;
}

.card {
  -webkit-box-shadow: 0px 2px 4px 0 #E2E6E1;
          box-shadow: 0px 2px 4px 0 #E2E6E1;
}
.card .card-title {
  margin-left: -0.5rem;
  padding: 0.5rem;
  font-weight: bold;
}
.card .card-title .card-leader {
  display: inline-block;
  min-width: 4px;
  width: 4px;
  height: 24px;
  border-radius: 2px;
  font-size: 0;
  color: #2A62DD;
  background: #2A62DD;
  vertical-align: middle;
  margin: -4px 5px 0 0;
}
.card .card-title h5 {
  display: inline-block;
}
.card .card-header {
  font-size: 0.9375rem;
  font-weight: bold;
  color: #333333;
}
.card .card-body > a {
  color: #454545;
}
.card .card-body > a:hover {
  color: #2A62DD;
}

.badge.badge-big-icon {
  max-width: none;
}

.l-h-1 {
  line-height: 1rem;
}

.l-h-2 {
  line-height: 2rem;
}

.l-h-1-85 {
  line-height: 1.85rem;
}

.l-h-2-4 {
  line-height: 2.4rem;
}

.bg-transparent {
  background-color: rgba(0, 0, 0, 0) !important;
}

a.bg-transparent:hover, a.bg-transparent:focus,
button.bg-transparent:hover,
button.bg-transparent:focus {
  background-color: rgba(0, 0, 0, 0) !important;
}

.bg-transparent-25 {
  background-color: rgba(0, 0, 0, 0.25) !important;
}

a.bg-transparent-25:hover, a.bg-transparent-25:focus,
button.bg-transparent-25:hover,
button.bg-transparent-25:focus {
  background-color: rgba(0, 0, 0, 0.25) !important;
}

.bg-transparent-50 {
  background-color: rgba(0, 0, 0, 0.5) !important;
}

a.bg-transparent-50:hover, a.bg-transparent-50:focus,
button.bg-transparent-50:hover,
button.bg-transparent-50:focus {
  background-color: rgba(0, 0, 0, 0.5) !important;
}

.bg-transparent-75 {
  background-color: rgba(0, 0, 0, 0.75) !important;
}

a.bg-transparent-75:hover, a.bg-transparent-75:focus,
button.bg-transparent-75:hover,
button.bg-transparent-75:focus {
  background-color: rgba(0, 0, 0, 0.75) !important;
}

.bg-secondary-color {
  background: #f6f9f7;
}

.bg-off-color {
  background: #0654BA;
}

.bg-tertiary-color {
  background: #e1eae6;
}

.bg-white {
  background: white;
}

.width-5r {
  min-width: 5rem;
}

.width-6r {
  min-width: 6rem;
}

.width-7r {
  min-width: 7rem;
}

.width-8r {
  min-width: 8rem;
}

.width-9r {
  min-width: 9rem;
}

.width-10r {
  min-width: 10rem;
}

.width-s {
  min-width: 7.5rem;
}

.w-1r {
  width: 1rem;
}

.w-2r {
  width: 2rem;
}

.w-3r {
  width: 3rem;
}

.w-4r {
  width: 4rem;
}

.w-5r {
  width: 5rem;
}

.w-6r {
  width: 6rem;
}

.w-7r {
  width: 7rem;
}

.w-8r {
  width: 8rem;
}

.w-9r {
  width: 9rem;
}

.w-10r {
  width: 10rem;
}

.w-11r {
  width: 11rem;
}

.w-12r {
  width: 12rem;
}

.w-13r {
  width: 13rem;
}

.w-14r {
  width: 14rem;
}

.w-15r {
  width: 15rem;
}

.w-15r-r {
  width: calc(100% - 15rem);
}

.w-20r {
  width: 20rem;
}

.w-21r {
  width: 21rem;
}

.w-22r {
  width: 22rem;
}

.w-23r {
  width: 23rem;
}

.w-24r {
  width: 24rem;
}

.w-25r {
  width: 25rem;
}

.wm-5 {
  max-width: 5rem;
}

.wm-6 {
  max-width: 6rem;
}

.wm-7 {
  max-width: 7rem;
}

.wm-8 {
  max-width: 8rem;
}

.wm-9 {
  max-width: 9rem;
}

.wm-10 {
  max-width: 10rem;
}

.wm-11 {
  max-width: 11rem;
}

.wm-12 {
  max-width: 12rem;
}

.wm-13 {
  max-width: 13rem;
}

.wm-14 {
  max-width: 14rem;
}

.wm-15 {
  max-width: 15rem;
}

.wm-16 {
  max-width: 16rem;
}

.wm-17 {
  max-width: 17rem;
}

.wm-18 {
  max-width: 18rem;
}

.wm-19 {
  max-width: 19rem;
}

.wm-20 {
  max-width: 20rem;
}

.wm-25 {
  max-width: 25rem;
}

.wm-26 {
  max-width: 26rem;
}

.wm-27 {
  max-width: 27rem;
}

.wm-28 {
  max-width: 28rem;
}

.wm-29 {
  max-width: 29rem;
}

.wm-30 {
  max-width: 30rem;
}

.wmp-50 {
  max-width: 50%;
}

.mw-5 {
  min-width: 5rem;
}

.mw-10 {
  min-width: 10rem;
}

.mw-15 {
  min-width: 15rem;
}

.mw-20 {
  min-width: 20rem;
}

.height-s {
  height: 7.5rem;
}

.h-1r {
  height: 1rem;
}

.height-20 {
  height: 20rem;
}

.height-27 {
  height: 27rem;
}

.height-30 {
  height: 30rem;
}

.height-40 {
  height: 40rem;
}

.height-select2 {
  height: 37.5px;
}

.w-20 {
  width: 25% !important;
}

.warning-text-color {
  color: #EEA73E !important;
}

.btn-outline-danger:hover {
  color: white;
  background: #dc3545;
}

.btn-outline-success:hover {
  color: white;
  background: #28a745;
}

.btn-outline-warning:hover {
  color: white;
  background: #EEA73E;
}

.btn-outline-info:hover {
  color: white;
  background: #17a2b8;
}

.btn-urgent {
  color: white;
  background: #BB3F3F;
}
.fs-0 {
  font-size: 0;
}

.fs-q {
  font-size: 0.25rem;
}

.fs-1 {
  font-size: 1.25rem;
}

.fs-2 {
  font-size: 1.5rem;
}

.fs-3 {
  font-size: 1.75rem;
}

.fs-4 {
  font-size: 2rem;
}

.fs-5 {
  font-size: 2.25rem;
}

.fs-6 {
  font-size: 2.5rem;
}

.fs-7 {
  font-size: 2.75rem;
}

.fs-8 {
  font-size: 3rem;
}

.fs-9 {
  font-size: 3.25rem;
}

.fs-10 {
  font-size: 3.5rem;
}

.height-0 {
  height: 0;
}

.height-1 {
  height: 1.5rem;
}

.height-2 {
  height: 2rem;
}

.height-3 {
  height: 2.5rem;
}

.height-4 {
  height: 2.75rem;
}

.height-5 {
  height: 3rem;
}

.height-6 {
  height: 3.25rem;
}

.height-7 {
  height: 3.5rem;
}

.height-8 {
  height: 3.75rem;
}

.height-9 {
  height: 4rem;
}

.height-10 {
  height: 4.25rem;
}

.height-90 {
  max-height: 90vh;
}

.height-100 {
  height: 100vh;
}

.text-light-weight {
  font-weight: 200;
}

.text-bold-weight {
  font-weight: bold;
  color: #333333;
}

.text-base {
  font-weight: normal;
  color: #454545;
}

.text-normal {
  font-weight: normal;
}

.no-wrap {
  white-space: nowrap;
}

.border-width-1 {
  border-width: 1px !important;
}

.border-width-2 {
  border-width: 2px !important;
}

.border-width-3 {
  border-width: 3px !important;
}

.border-width-4 {
  border-width: 4px !important;
}

.border-urgent {
  border-color: #BB3F3F;
}

.rounded-plus-top {
  border-top-left-radius: 10px !important;
  border-top-right-radius: 10px !important;
}

.ls-185 {
  letter-spacing: 1.85px;
}

.color-fusion-50 {
  color: #f9f9f9;
}

.color-fusion-100 {
  color: #777777;
}

.color-fusion-200 {
  color: #6a6a6a;
}

.color-fusion-300 {
  color: #5d5d5d;
}

.color-fusion-400 {
  color: #515151;
}

.color-fusion-500 {
  color: #444444;
}

.color-fusion-600 {
  color: #373737;
}

.color-fusion-700 {
  color: #2a2a2a;
}

.color-fusion-800 {
  color: #1e1e1e;
}

.color-fusion-900 {
  color: #111111;
}

.color-gray-50 {
  color: #f9f9f9;
}

.color-gray-100 {
  color: #f8f9fa;
}

.color-gray-200 {
  color: #e9ecef;
}

.color-gray-300 {
  color: #dee2e6;
}

.color-gray-400 {
  color: #ced4da;
}

.color-gray-500 {
  color: #adb5bd;
}

.color-gray-600 {
  color: #6c757d;
}

.color-gray-700 {
  color: #495057;
}

.color-gray-800 {
  color: #343a40;
}

.color-gray-900 {
  color: #212529;
}

.pos-right-5 {
  right: -5rem;
}

.va-middle {
  vertical-align: middle !important;
}

.va-top {
  vertical-align: top !important;
}

.va-bottom {
  vertical-align: bottom !important;
}

.scrolling {
  overflow: scroll;
}

.d-hide-row {
  display: none;
}

.mt-n-2 {
  margin-top: -2.5rem;
}

@media only screen and (min-width: 768px) {
  #analytics-activate .analytics-activate-cards {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  #analytics-activate .analytics-activate-cards .card {
    width: 14rem;
  }
}
@media only screen and (max-width: 768px) {
  #analytics-activate .analytics-activate-cards {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
}

#dashboard > .panel {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #e7eee7;
}

.pagination .page-item .page-link {
  color: #454545;
}
.pagination .page-item .page-link:hover {
  color: #f9f9f9 !important;
}
.pagination .page-item.active .page-link {
  color: #2A62DD;
  background: #f6f9f7;
}
.pagination .page-item:first-child:not(.active) .page-link, .pagination .page-item:last-child:not(.active) .page-link {
  border: 1px solid #adb5bd;
  border-radius: 4px;
  background: transparent;
  color: #0654BA;
}

.panel.clear-panel {
  background-color: transparent;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.panel.clear-panel .panel-hdr {
  background-color: transparent;
}
.panel.clear-panel .pagination .page-item a {
  background: transparent;
}

[data-simplebar] {
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.simplebar-wrapper {
  overflow: hidden;
  width: inherit;
  height: inherit;
  max-width: inherit;
  max-height: inherit;
}

.simplebar-mask {
  direction: inherit;
  position: absolute;
  overflow: hidden;
  padding: 0;
  margin: 0;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: auto !important;
  height: auto !important;
  z-index: 0;
}

.simplebar-offset {
  direction: inherit !important;
  -webkit-box-sizing: inherit !important;
          box-sizing: inherit !important;
  resize: none !important;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0;
  margin: 0;
  -webkit-overflow-scrolling: touch;
}

.simplebar-content-wrapper {
  direction: inherit;
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
  position: relative;
  display: block;
  height: 100%; /* Required for horizontal native scrollbar to not appear if parent is taller than natural height */
  width: auto;
  max-width: 100%; /* Not required for horizontal scroll to trigger */
  max-height: 100%; /* Needed for vertical scroll to trigger */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.scroll-area::-webkit-scrollbar,
.simplebar-content::-webkit-scrollbar,
.simplebar-content-wrapper::-webkit-scrollbar,
.simplebar-hide-scrollbar::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.simplebar-content:before,
.simplebar-content:after {
  content: " ";
  display: table;
}

.simplebar-placeholder {
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  pointer-events: none;
}

.simplebar-height-auto-observer-wrapper {
  -webkit-box-sizing: inherit !important;
          box-sizing: inherit !important;
  height: 100%;
  width: 100%;
  max-width: 1px;
  position: relative;
  float: left;
  max-height: 1px;
  overflow: hidden;
  z-index: -1;
  padding: 0;
  margin: 0;
  pointer-events: none;
  -webkit-box-flex: inherit;
      -ms-flex-positive: inherit;
          flex-grow: inherit;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
}

.simplebar-height-auto-observer {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  display: block;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 1000%;
  width: 1000%;
  min-height: 1px;
  min-width: 1px;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.simplebar-track {
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

[data-simplebar].simplebar-dragging .simplebar-content {
  pointer-events: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

[data-simplebar].simplebar-dragging .simplebar-track {
  pointer-events: all;
}

.simplebar-scrollbar {
  position: absolute;
  left: 0;
  right: 0;
  min-height: 10px;
}

.simplebar-scrollbar:before {
  position: absolute;
  content: "";
  background: black;
  border-radius: 7px;
  left: 2px;
  right: 2px;
  opacity: 0;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}

.simplebar-scrollbar.simplebar-visible:before {
  /* When hovered, remove all transitions from drag handle */
  opacity: 0.5;
  -webkit-transition: opacity 0s linear;
  transition: opacity 0s linear;
}

.simplebar-track.simplebar-vertical {
  top: 0;
  width: 11px;
}

.simplebar-track.simplebar-vertical .simplebar-scrollbar:before {
  top: 2px;
  bottom: 2px;
}

.simplebar-track.simplebar-horizontal {
  left: 0;
  height: 11px;
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar:before {
  height: 100%;
  left: 2px;
  right: 2px;
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar {
  right: auto;
  left: 0;
  top: 2px;
  height: 7px;
  min-height: 0;
  min-width: 10px;
  width: auto;
}

/* Rtl support */
[data-simplebar-direction=rtl] .simplebar-track.simplebar-vertical {
  right: auto;
  left: 0;
}

.hs-dummy-scrollbar-size {
  direction: rtl;
  position: fixed;
  opacity: 0;
  visibility: hidden;
  height: 500px;
  width: 500px;
  overflow-y: hidden;
  overflow-x: scroll;
}

.simplebar-hide-scrollbar {
  position: fixed;
  left: 0;
  visibility: hidden;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.simplebar-wrapper {
  padding-bottom: 14px;
}

.simplebar-mask {
  margin-top: 14px;
}

.simplebar-track.simplebar-horizontal {
  top: -7px;
  height: 1rem;
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar {
  margin-top: 7px;
}

.any-other-table table, .marketplace-attributes table, .variations-table table, .expanded-table table, .attribute-table table, .product-table table, .product-status-table table, .not-imported-table table, .category-product-table table, .category-mapping-table table, .external-product-table table, .missing-epid-table table, .asin-linking-table table {
  border: none !important;
  table-layout: auto;
  margin-bottom: 2px;
}
.any-other-table table thead tr th, .marketplace-attributes table thead tr th, .variations-table table thead tr th, .expanded-table table thead tr th, .attribute-table table thead tr th, .product-table table thead tr th, .product-status-table table thead tr th, .not-imported-table table thead tr th, .category-product-table table thead tr th, .category-mapping-table table thead tr th, .external-product-table table thead tr th, .missing-epid-table table thead tr th, .asin-linking-table table thead tr th {
  text-align: center;
}
.any-other-table table thead tr th .subtitle, .marketplace-attributes table thead tr th .subtitle, .variations-table table thead tr th .subtitle, .expanded-table table thead tr th .subtitle, .attribute-table table thead tr th .subtitle, .product-table table thead tr th .subtitle, .product-status-table table thead tr th .subtitle, .not-imported-table table thead tr th .subtitle, .category-product-table table thead tr th .subtitle, .category-mapping-table table thead tr th .subtitle, .external-product-table table thead tr th .subtitle, .missing-epid-table table thead tr th .subtitle, .asin-linking-table table thead tr th .subtitle {
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
  bottom: 0;
  padding-left: 0 !important;
}
.any-other-table table tbody tr.odd, .marketplace-attributes table tbody tr.odd, .variations-table table tbody tr.odd, .expanded-table table tbody tr.odd, .attribute-table table tbody tr.odd, .product-table table tbody tr.odd, .product-status-table table tbody tr.odd, .not-imported-table table tbody tr.odd, .category-product-table table tbody tr.odd, .category-mapping-table table tbody tr.odd, .external-product-table table tbody tr.odd, .missing-epid-table table tbody tr.odd, .asin-linking-table table tbody tr.odd {
  background: #f6f9f7 !important;
}
.any-other-table table tbody tr.odd .left-stuck, .marketplace-attributes table tbody tr.odd .left-stuck, .variations-table table tbody tr.odd .left-stuck, .expanded-table table tbody tr.odd .left-stuck, .attribute-table table tbody tr.odd .left-stuck, .product-table table tbody tr.odd .left-stuck, .product-status-table table tbody tr.odd .left-stuck, .not-imported-table table tbody tr.odd .left-stuck, .category-product-table table tbody tr.odd .left-stuck, .category-mapping-table table tbody tr.odd .left-stuck, .external-product-table table tbody tr.odd .left-stuck, .missing-epid-table table tbody tr.odd .left-stuck, .asin-linking-table table tbody tr.odd .left-stuck {
  background: #f6f9f7 !important;
}
.any-other-table table tbody tr.even, .marketplace-attributes table tbody tr.even, .variations-table table tbody tr.even, .expanded-table table tbody tr.even, .attribute-table table tbody tr.even, .product-table table tbody tr.even, .product-status-table table tbody tr.even, .not-imported-table table tbody tr.even, .category-product-table table tbody tr.even, .category-mapping-table table tbody tr.even, .external-product-table table tbody tr.even, .missing-epid-table table tbody tr.even, .asin-linking-table table tbody tr.even {
  background: #fff !important;
}
.any-other-table table tbody tr.even .left-stuck, .marketplace-attributes table tbody tr.even .left-stuck, .variations-table table tbody tr.even .left-stuck, .expanded-table table tbody tr.even .left-stuck, .attribute-table table tbody tr.even .left-stuck, .product-table table tbody tr.even .left-stuck, .product-status-table table tbody tr.even .left-stuck, .not-imported-table table tbody tr.even .left-stuck, .category-product-table table tbody tr.even .left-stuck, .category-mapping-table table tbody tr.even .left-stuck, .external-product-table table tbody tr.even .left-stuck, .missing-epid-table table tbody tr.even .left-stuck, .asin-linking-table table tbody tr.even .left-stuck {
  background: #fff !important;
}
.any-other-table table tbody tr.disabled-product, .marketplace-attributes table tbody tr.disabled-product, .variations-table table tbody tr.disabled-product, .expanded-table table tbody tr.disabled-product, .attribute-table table tbody tr.disabled-product, .product-table table tbody tr.disabled-product, .product-status-table table tbody tr.disabled-product, .not-imported-table table tbody tr.disabled-product, .category-product-table table tbody tr.disabled-product, .category-mapping-table table tbody tr.disabled-product, .external-product-table table tbody tr.disabled-product, .missing-epid-table table tbody tr.disabled-product, .asin-linking-table table tbody tr.disabled-product {
  background: #f5f5f5 !important;
}
.any-other-table table tbody tr.disabled-product .left-stuck, .marketplace-attributes table tbody tr.disabled-product .left-stuck, .variations-table table tbody tr.disabled-product .left-stuck, .expanded-table table tbody tr.disabled-product .left-stuck, .attribute-table table tbody tr.disabled-product .left-stuck, .product-table table tbody tr.disabled-product .left-stuck, .product-status-table table tbody tr.disabled-product .left-stuck, .not-imported-table table tbody tr.disabled-product .left-stuck, .category-product-table table tbody tr.disabled-product .left-stuck, .category-mapping-table table tbody tr.disabled-product .left-stuck, .external-product-table table tbody tr.disabled-product .left-stuck, .missing-epid-table table tbody tr.disabled-product .left-stuck, .asin-linking-table table tbody tr.disabled-product .left-stuck {
  background: #f5f5f5 !important;
}
.any-other-table table tbody tr.disabled-product th:first-child, .any-other-table table tbody tr.disabled-product td:first-child, .marketplace-attributes table tbody tr.disabled-product th:first-child, .marketplace-attributes table tbody tr.disabled-product td:first-child, .variations-table table tbody tr.disabled-product th:first-child, .variations-table table tbody tr.disabled-product td:first-child, .expanded-table table tbody tr.disabled-product th:first-child, .expanded-table table tbody tr.disabled-product td:first-child, .attribute-table table tbody tr.disabled-product th:first-child, .attribute-table table tbody tr.disabled-product td:first-child, .product-table table tbody tr.disabled-product th:first-child, .product-table table tbody tr.disabled-product td:first-child, .product-status-table table tbody tr.disabled-product th:first-child, .product-status-table table tbody tr.disabled-product td:first-child, .not-imported-table table tbody tr.disabled-product th:first-child, .not-imported-table table tbody tr.disabled-product td:first-child, .category-product-table table tbody tr.disabled-product th:first-child, .category-product-table table tbody tr.disabled-product td:first-child, .category-mapping-table table tbody tr.disabled-product th:first-child, .category-mapping-table table tbody tr.disabled-product td:first-child, .external-product-table table tbody tr.disabled-product th:first-child, .external-product-table table tbody tr.disabled-product td:first-child, .missing-epid-table table tbody tr.disabled-product th:first-child, .missing-epid-table table tbody tr.disabled-product td:first-child, .asin-linking-table table tbody tr.disabled-product th:first-child, .asin-linking-table table tbody tr.disabled-product td:first-child {
  border-left: 3px solid #E09A9A !important;
}
.any-other-table table tbody tr.disabled-product th:last-child, .any-other-table table tbody tr.disabled-product td:last-child, .marketplace-attributes table tbody tr.disabled-product th:last-child, .marketplace-attributes table tbody tr.disabled-product td:last-child, .variations-table table tbody tr.disabled-product th:last-child, .variations-table table tbody tr.disabled-product td:last-child, .expanded-table table tbody tr.disabled-product th:last-child, .expanded-table table tbody tr.disabled-product td:last-child, .attribute-table table tbody tr.disabled-product th:last-child, .attribute-table table tbody tr.disabled-product td:last-child, .product-table table tbody tr.disabled-product th:last-child, .product-table table tbody tr.disabled-product td:last-child, .product-status-table table tbody tr.disabled-product th:last-child, .product-status-table table tbody tr.disabled-product td:last-child, .not-imported-table table tbody tr.disabled-product th:last-child, .not-imported-table table tbody tr.disabled-product td:last-child, .category-product-table table tbody tr.disabled-product th:last-child, .category-product-table table tbody tr.disabled-product td:last-child, .category-mapping-table table tbody tr.disabled-product th:last-child, .category-mapping-table table tbody tr.disabled-product td:last-child, .external-product-table table tbody tr.disabled-product th:last-child, .external-product-table table tbody tr.disabled-product td:last-child, .missing-epid-table table tbody tr.disabled-product th:last-child, .missing-epid-table table tbody tr.disabled-product td:last-child, .asin-linking-table table tbody tr.disabled-product th:last-child, .asin-linking-table table tbody tr.disabled-product td:last-child {
  border-right: 3px solid #E09A9A !important;
}
.any-other-table table tbody tr td, .marketplace-attributes table tbody tr td, .variations-table table tbody tr td, .expanded-table table tbody tr td, .attribute-table table tbody tr td, .product-table table tbody tr td, .product-status-table table tbody tr td, .not-imported-table table tbody tr td, .category-product-table table tbody tr td, .category-mapping-table table tbody tr td, .external-product-table table tbody tr td, .missing-epid-table table tbody tr td, .asin-linking-table table tbody tr td {
  border: none !important;
  text-align: center;
}
.any-other-table table tr th.product-name-select, .any-other-table table tr th.product-name, .marketplace-attributes table tr th.product-name-select, .marketplace-attributes table tr th.product-name, .variations-table table tr th.product-name-select, .variations-table table tr th.product-name, .expanded-table table tr th.product-name-select, .expanded-table table tr th.product-name, .attribute-table table tr th.product-name-select, .attribute-table table tr th.product-name, .product-table table tr th.product-name-select, .product-table table tr th.product-name, .product-status-table table tr th.product-name-select, .product-status-table table tr th.product-name, .not-imported-table table tr th.product-name-select, .not-imported-table table tr th.product-name, .category-product-table table tr th.product-name-select, .category-product-table table tr th.product-name, .category-mapping-table table tr th.product-name-select, .category-mapping-table table tr th.product-name, .external-product-table table tr th.product-name-select, .external-product-table table tr th.product-name, .missing-epid-table table tr th.product-name-select, .missing-epid-table table tr th.product-name, .asin-linking-table table tr th.product-name-select, .asin-linking-table table tr th.product-name {
  width: 8rem !important;
  text-align: left;
}
@media (min-width: 576px) {
  .any-other-table table tr th.product-name-select, .any-other-table table tr th.product-name, .marketplace-attributes table tr th.product-name-select, .marketplace-attributes table tr th.product-name, .variations-table table tr th.product-name-select, .variations-table table tr th.product-name, .expanded-table table tr th.product-name-select, .expanded-table table tr th.product-name, .attribute-table table tr th.product-name-select, .attribute-table table tr th.product-name, .product-table table tr th.product-name-select, .product-table table tr th.product-name, .product-status-table table tr th.product-name-select, .product-status-table table tr th.product-name, .not-imported-table table tr th.product-name-select, .not-imported-table table tr th.product-name, .category-product-table table tr th.product-name-select, .category-product-table table tr th.product-name, .category-mapping-table table tr th.product-name-select, .category-mapping-table table tr th.product-name, .external-product-table table tr th.product-name-select, .external-product-table table tr th.product-name, .missing-epid-table table tr th.product-name-select, .missing-epid-table table tr th.product-name, .asin-linking-table table tr th.product-name-select, .asin-linking-table table tr th.product-name {
    width: 14rem !important;
  }
}
.any-other-table table tr th.product-name-select img, .any-other-table table tr th.product-name img, .marketplace-attributes table tr th.product-name-select img, .marketplace-attributes table tr th.product-name img, .variations-table table tr th.product-name-select img, .variations-table table tr th.product-name img, .expanded-table table tr th.product-name-select img, .expanded-table table tr th.product-name img, .attribute-table table tr th.product-name-select img, .attribute-table table tr th.product-name img, .product-table table tr th.product-name-select img, .product-table table tr th.product-name img, .product-status-table table tr th.product-name-select img, .product-status-table table tr th.product-name img, .not-imported-table table tr th.product-name-select img, .not-imported-table table tr th.product-name img, .category-product-table table tr th.product-name-select img, .category-product-table table tr th.product-name img, .category-mapping-table table tr th.product-name-select img, .category-mapping-table table tr th.product-name img, .external-product-table table tr th.product-name-select img, .external-product-table table tr th.product-name img, .missing-epid-table table tr th.product-name-select img, .missing-epid-table table tr th.product-name img, .asin-linking-table table tr th.product-name-select img, .asin-linking-table table tr th.product-name img {
  height: 6rem;
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 6rem;
}
.any-other-table table tr th.product-name-select, .marketplace-attributes table tr th.product-name-select, .variations-table table tr th.product-name-select, .expanded-table table tr th.product-name-select, .attribute-table table tr th.product-name-select, .product-table table tr th.product-name-select, .product-status-table table tr th.product-name-select, .not-imported-table table tr th.product-name-select, .category-product-table table tr th.product-name-select, .category-mapping-table table tr th.product-name-select, .external-product-table table tr th.product-name-select, .missing-epid-table table tr th.product-name-select, .asin-linking-table table tr th.product-name-select {
  width: 10rem !important;
}
@media (min-width: 576px) {
  .any-other-table table tr th.product-name-select, .marketplace-attributes table tr th.product-name-select, .variations-table table tr th.product-name-select, .expanded-table table tr th.product-name-select, .attribute-table table tr th.product-name-select, .product-table table tr th.product-name-select, .product-status-table table tr th.product-name-select, .not-imported-table table tr th.product-name-select, .category-product-table table tr th.product-name-select, .category-mapping-table table tr th.product-name-select, .external-product-table table tr th.product-name-select, .missing-epid-table table tr th.product-name-select, .asin-linking-table table tr th.product-name-select {
    width: 16rem !important;
  }
}
.any-other-table table tr th.wrap, .marketplace-attributes table tr th.wrap, .variations-table table tr th.wrap, .expanded-table table tr th.wrap, .attribute-table table tr th.wrap, .product-table table tr th.wrap, .product-status-table table tr th.wrap, .not-imported-table table tr th.wrap, .category-product-table table tr th.wrap, .category-mapping-table table tr th.wrap, .external-product-table table tr th.wrap, .missing-epid-table table tr th.wrap, .asin-linking-table table tr th.wrap {
  white-space: normal;
}
.any-other-table table tr .product-col-narrow, .marketplace-attributes table tr .product-col-narrow, .variations-table table tr .product-col-narrow, .expanded-table table tr .product-col-narrow, .attribute-table table tr .product-col-narrow, .product-table table tr .product-col-narrow, .product-status-table table tr .product-col-narrow, .not-imported-table table tr .product-col-narrow, .category-product-table table tr .product-col-narrow, .category-mapping-table table tr .product-col-narrow, .external-product-table table tr .product-col-narrow, .missing-epid-table table tr .product-col-narrow, .asin-linking-table table tr .product-col-narrow {
  width: 4rem;
  padding-left: 4px;
  padding-right: 4px;
}
.any-other-table table tr .product-col-small, .marketplace-attributes table tr .product-col-small, .variations-table table tr .product-col-small, .expanded-table table tr .product-col-small, .attribute-table table tr .product-col-small, .product-table table tr .product-col-small, .product-status-table table tr .product-col-small, .not-imported-table table tr .product-col-small, .category-product-table table tr .product-col-small, .category-mapping-table table tr .product-col-small, .external-product-table table tr .product-col-small, .missing-epid-table table tr .product-col-small, .asin-linking-table table tr .product-col-small {
  width: 2.75rem;
  padding-left: 4px;
  padding-right: 4px;
}
.any-other-table table tr .product-col-medium, .marketplace-attributes table tr .product-col-medium, .variations-table table tr .product-col-medium, .expanded-table table tr .product-col-medium, .attribute-table table tr .product-col-medium, .product-table table tr .product-col-medium, .product-status-table table tr .product-col-medium, .not-imported-table table tr .product-col-medium, .category-product-table table tr .product-col-medium, .category-mapping-table table tr .product-col-medium, .external-product-table table tr .product-col-medium, .missing-epid-table table tr .product-col-medium, .asin-linking-table table tr .product-col-medium {
  width: 6rem;
}
.any-other-table table tr .product-col-large, .marketplace-attributes table tr .product-col-large, .variations-table table tr .product-col-large, .expanded-table table tr .product-col-large, .attribute-table table tr .product-col-large, .product-table table tr .product-col-large, .product-status-table table tr .product-col-large, .not-imported-table table tr .product-col-large, .category-product-table table tr .product-col-large, .category-mapping-table table tr .product-col-large, .external-product-table table tr .product-col-large, .missing-epid-table table tr .product-col-large, .asin-linking-table table tr .product-col-large {
  width: 8rem;
}
.any-other-table table tr .product-col-wide, .marketplace-attributes table tr .product-col-wide, .variations-table table tr .product-col-wide, .expanded-table table tr .product-col-wide, .attribute-table table tr .product-col-wide, .product-table table tr .product-col-wide, .product-status-table table tr .product-col-wide, .not-imported-table table tr .product-col-wide, .category-product-table table tr .product-col-wide, .category-mapping-table table tr .product-col-wide, .external-product-table table tr .product-col-wide, .missing-epid-table table tr .product-col-wide, .asin-linking-table table tr .product-col-wide {
  width: 10rem;
}
.any-other-table .simplebar-track.simplebar-horizontal, .marketplace-attributes .simplebar-track.simplebar-horizontal, .variations-table .simplebar-track.simplebar-horizontal, .expanded-table .simplebar-track.simplebar-horizontal, .attribute-table .simplebar-track.simplebar-horizontal, .product-table .simplebar-track.simplebar-horizontal, .product-status-table .simplebar-track.simplebar-horizontal, .not-imported-table .simplebar-track.simplebar-horizontal, .category-product-table .simplebar-track.simplebar-horizontal, .category-mapping-table .simplebar-track.simplebar-horizontal, .external-product-table .simplebar-track.simplebar-horizontal, .missing-epid-table .simplebar-track.simplebar-horizontal, .asin-linking-table .simplebar-track.simplebar-horizontal {
  top: 1.9rem;
  height: 1rem;
  left: 14rem;
  width: calc(100% - 15rem);
  z-index: 1000;
}
.any-other-table .simplebar-track.simplebar-vertical, .marketplace-attributes .simplebar-track.simplebar-vertical, .variations-table .simplebar-track.simplebar-vertical, .expanded-table .simplebar-track.simplebar-vertical, .attribute-table .simplebar-track.simplebar-vertical, .product-table .simplebar-track.simplebar-vertical, .product-status-table .simplebar-track.simplebar-vertical, .not-imported-table .simplebar-track.simplebar-vertical, .category-product-table .simplebar-track.simplebar-vertical, .category-mapping-table .simplebar-track.simplebar-vertical, .external-product-table .simplebar-track.simplebar-vertical, .missing-epid-table .simplebar-track.simplebar-vertical, .asin-linking-table .simplebar-track.simplebar-vertical {
  top: 3rem;
  width: 11px;
  height: calc(100% - 4rem);
}
.any-other-table .simplebar-wrapper, .marketplace-attributes .simplebar-wrapper, .variations-table .simplebar-wrapper, .expanded-table .simplebar-wrapper, .attribute-table .simplebar-wrapper, .product-table .simplebar-wrapper, .product-status-table .simplebar-wrapper, .not-imported-table .simplebar-wrapper, .category-product-table .simplebar-wrapper, .category-mapping-table .simplebar-wrapper, .external-product-table .simplebar-wrapper, .missing-epid-table .simplebar-wrapper, .asin-linking-table .simplebar-wrapper {
  padding-bottom: 2px;
}
.any-other-table .simplebar-mask, .marketplace-attributes .simplebar-mask, .variations-table .simplebar-mask, .expanded-table .simplebar-mask, .attribute-table .simplebar-mask, .product-table .simplebar-mask, .product-status-table .simplebar-mask, .not-imported-table .simplebar-mask, .category-product-table .simplebar-mask, .category-mapping-table .simplebar-mask, .external-product-table .simplebar-mask, .missing-epid-table .simplebar-mask, .asin-linking-table .simplebar-mask {
  margin-top: 2px;
}
.any-other-table input::-webkit-calendar-picker-indicator, .marketplace-attributes input::-webkit-calendar-picker-indicator, .variations-table input::-webkit-calendar-picker-indicator, .expanded-table input::-webkit-calendar-picker-indicator, .attribute-table input::-webkit-calendar-picker-indicator, .product-table input::-webkit-calendar-picker-indicator, .product-status-table input::-webkit-calendar-picker-indicator, .not-imported-table input::-webkit-calendar-picker-indicator, .category-product-table input::-webkit-calendar-picker-indicator, .category-mapping-table input::-webkit-calendar-picker-indicator, .external-product-table input::-webkit-calendar-picker-indicator, .missing-epid-table input::-webkit-calendar-picker-indicator, .asin-linking-table input::-webkit-calendar-picker-indicator {
  opacity: 100;
}

.not-imported-table {
  width: 100% !important;
  border: none !important;
}
.not-imported-table table tr th.product-name-select {
  display: block;
  width: auto !important;
}

.any-other-table, .marketplace-attributes, .variations-table, .expanded-table, .attribute-table, .product-table, .category-mapping-table, .category-product-table, .external-product-table, .asin-linking-table {
  width: 100% !important;
  border: none !important;
}
.any-other-table table, .marketplace-attributes table, .variations-table table, .expanded-table table, .attribute-table table, .product-table table, .category-mapping-table table, .category-product-table table, .external-product-table table, .asin-linking-table table {
  border-collapse: separate;
  border-spacing: 1px;
  border: 0;
}
.any-other-table table thead th div.marketplace-head, .any-other-table table thead th div.retailer-head, .marketplace-attributes table thead th div.marketplace-head, .marketplace-attributes table thead th div.retailer-head, .variations-table table thead th div.marketplace-head, .variations-table table thead th div.retailer-head, .expanded-table table thead th div.marketplace-head, .expanded-table table thead th div.retailer-head, .attribute-table table thead th div.marketplace-head, .attribute-table table thead th div.retailer-head, .product-table table thead th div.marketplace-head, .product-table table thead th div.retailer-head, .category-mapping-table table thead th div.marketplace-head, .category-mapping-table table thead th div.retailer-head, .category-product-table table thead th div.marketplace-head, .category-product-table table thead th div.retailer-head, .external-product-table table thead th div.marketplace-head, .external-product-table table thead th div.retailer-head, .asin-linking-table table thead th div.marketplace-head, .asin-linking-table table thead th div.retailer-head {
  height: 2.5rem;
  vertical-align: middle;
  margin: -0.75rem -0.85rem 0.75rem -0.75rem;
  padding: 0.75rem;
}
.any-other-table table thead th div.marketplace-head, .marketplace-attributes table thead th div.marketplace-head, .variations-table table thead th div.marketplace-head, .expanded-table table thead th div.marketplace-head, .attribute-table table thead th div.marketplace-head, .product-table table thead th div.marketplace-head, .category-mapping-table table thead th div.marketplace-head, .category-product-table table thead th div.marketplace-head, .external-product-table table thead th div.marketplace-head, .asin-linking-table table thead th div.marketplace-head {
  background: #e1eae6;
}
.any-other-table table thead th div.retailer-head, .marketplace-attributes table thead th div.retailer-head, .variations-table table thead th div.retailer-head, .expanded-table table thead th div.retailer-head, .attribute-table table thead th div.retailer-head, .product-table table thead th div.retailer-head, .category-mapping-table table thead th div.retailer-head, .category-product-table table thead th div.retailer-head, .external-product-table table thead th div.retailer-head, .asin-linking-table table thead th div.retailer-head {
  color: #adb5bd;
  background: #e9ecef;
}
.any-other-table table thead th div.marketplace-detail, .any-other-table table thead th div.retailer-detail, .marketplace-attributes table thead th div.marketplace-detail, .marketplace-attributes table thead th div.retailer-detail, .variations-table table thead th div.marketplace-detail, .variations-table table thead th div.retailer-detail, .expanded-table table thead th div.marketplace-detail, .expanded-table table thead th div.retailer-detail, .attribute-table table thead th div.marketplace-detail, .attribute-table table thead th div.retailer-detail, .product-table table thead th div.marketplace-detail, .product-table table thead th div.retailer-detail, .category-mapping-table table thead th div.marketplace-detail, .category-mapping-table table thead th div.retailer-detail, .category-product-table table thead th div.marketplace-detail, .category-product-table table thead th div.retailer-detail, .external-product-table table thead th div.marketplace-detail, .external-product-table table thead th div.retailer-detail, .asin-linking-table table thead th div.marketplace-detail, .asin-linking-table table thead th div.retailer-detail {
  margin: -0.75rem;
  padding: 0.75rem;
  display: block;
  border-top: 1px solid #2A62DD !important;
  border-bottom: 1px solid #2A62DD !important;
  border-left: none;
  border-right: none;
}
.any-other-table table thead th div.marketplace-head-first, .any-other-table table thead th div.retailer-head-first, .marketplace-attributes table thead th div.marketplace-head-first, .marketplace-attributes table thead th div.retailer-head-first, .variations-table table thead th div.marketplace-head-first, .variations-table table thead th div.retailer-head-first, .expanded-table table thead th div.marketplace-head-first, .expanded-table table thead th div.retailer-head-first, .attribute-table table thead th div.marketplace-head-first, .attribute-table table thead th div.retailer-head-first, .product-table table thead th div.marketplace-head-first, .product-table table thead th div.retailer-head-first, .category-mapping-table table thead th div.marketplace-head-first, .category-mapping-table table thead th div.retailer-head-first, .category-product-table table thead th div.marketplace-head-first, .category-product-table table thead th div.retailer-head-first, .external-product-table table thead th div.marketplace-head-first, .external-product-table table thead th div.retailer-head-first, .asin-linking-table table thead th div.marketplace-head-first, .asin-linking-table table thead th div.retailer-head-first {
  margin-left: 0;
  border-top-left-radius: 6px;
  border-left: 6px solid #2A62DD;
  font-weight: 700;
}
.any-other-table table thead th div.marketplace-head-last, .any-other-table table thead th div.retailer-head-last, .marketplace-attributes table thead th div.marketplace-head-last, .marketplace-attributes table thead th div.retailer-head-last, .variations-table table thead th div.marketplace-head-last, .variations-table table thead th div.retailer-head-last, .expanded-table table thead th div.marketplace-head-last, .expanded-table table thead th div.retailer-head-last, .attribute-table table thead th div.marketplace-head-last, .attribute-table table thead th div.retailer-head-last, .product-table table thead th div.marketplace-head-last, .product-table table thead th div.retailer-head-last, .category-mapping-table table thead th div.marketplace-head-last, .category-mapping-table table thead th div.retailer-head-last, .category-product-table table thead th div.marketplace-head-last, .category-product-table table thead th div.retailer-head-last, .external-product-table table thead th div.marketplace-head-last, .external-product-table table thead th div.retailer-head-last, .asin-linking-table table thead th div.marketplace-head-last, .asin-linking-table table thead th div.retailer-head-last {
  border-top-right-radius: 6px;
}
.any-other-table table thead th:first-child div.marketplace-detail, .any-other-table table thead th:first-child div.retailer-detail, .marketplace-attributes table thead th:first-child div.marketplace-detail, .marketplace-attributes table thead th:first-child div.retailer-detail, .variations-table table thead th:first-child div.marketplace-detail, .variations-table table thead th:first-child div.retailer-detail, .expanded-table table thead th:first-child div.marketplace-detail, .expanded-table table thead th:first-child div.retailer-detail, .attribute-table table thead th:first-child div.marketplace-detail, .attribute-table table thead th:first-child div.retailer-detail, .product-table table thead th:first-child div.marketplace-detail, .product-table table thead th:first-child div.retailer-detail, .category-mapping-table table thead th:first-child div.marketplace-detail, .category-mapping-table table thead th:first-child div.retailer-detail, .category-product-table table thead th:first-child div.marketplace-detail, .category-product-table table thead th:first-child div.retailer-detail, .external-product-table table thead th:first-child div.marketplace-detail, .external-product-table table thead th:first-child div.retailer-detail, .asin-linking-table table thead th:first-child div.marketplace-detail, .asin-linking-table table thead th:first-child div.retailer-detail {
  border-left: 1px solid #2A62DD !important;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  height: 2.82rem;
}
.any-other-table table thead th:last-child div.marketplace-head, .any-other-table table thead th:last-child div.retailer-head, .marketplace-attributes table thead th:last-child div.marketplace-head, .marketplace-attributes table thead th:last-child div.retailer-head, .variations-table table thead th:last-child div.marketplace-head, .variations-table table thead th:last-child div.retailer-head, .expanded-table table thead th:last-child div.marketplace-head, .expanded-table table thead th:last-child div.retailer-head, .attribute-table table thead th:last-child div.marketplace-head, .attribute-table table thead th:last-child div.retailer-head, .product-table table thead th:last-child div.marketplace-head, .product-table table thead th:last-child div.retailer-head, .category-mapping-table table thead th:last-child div.marketplace-head, .category-mapping-table table thead th:last-child div.retailer-head, .category-product-table table thead th:last-child div.marketplace-head, .category-product-table table thead th:last-child div.retailer-head, .external-product-table table thead th:last-child div.marketplace-head, .external-product-table table thead th:last-child div.retailer-head, .asin-linking-table table thead th:last-child div.marketplace-head, .asin-linking-table table thead th:last-child div.retailer-head {
  margin-right: 0.75rem;
}
.any-other-table table thead th:last-child div.marketplace-detail, .any-other-table table thead th:last-child div.retailer-detail, .marketplace-attributes table thead th:last-child div.marketplace-detail, .marketplace-attributes table thead th:last-child div.retailer-detail, .variations-table table thead th:last-child div.marketplace-detail, .variations-table table thead th:last-child div.retailer-detail, .expanded-table table thead th:last-child div.marketplace-detail, .expanded-table table thead th:last-child div.retailer-detail, .attribute-table table thead th:last-child div.marketplace-detail, .attribute-table table thead th:last-child div.retailer-detail, .product-table table thead th:last-child div.marketplace-detail, .product-table table thead th:last-child div.retailer-detail, .category-mapping-table table thead th:last-child div.marketplace-detail, .category-mapping-table table thead th:last-child div.retailer-detail, .category-product-table table thead th:last-child div.marketplace-detail, .category-product-table table thead th:last-child div.retailer-detail, .external-product-table table thead th:last-child div.marketplace-detail, .external-product-table table thead th:last-child div.retailer-detail, .asin-linking-table table thead th:last-child div.marketplace-detail, .asin-linking-table table thead th:last-child div.retailer-detail {
  border-right: 1px solid #2A62DD !important;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
.any-other-table .simplebar-track.simplebar-vertical, .marketplace-attributes .simplebar-track.simplebar-vertical, .variations-table .simplebar-track.simplebar-vertical, .expanded-table .simplebar-track.simplebar-vertical, .attribute-table .simplebar-track.simplebar-vertical, .product-table .simplebar-track.simplebar-vertical, .category-mapping-table .simplebar-track.simplebar-vertical, .category-product-table .simplebar-track.simplebar-vertical, .external-product-table .simplebar-track.simplebar-vertical, .asin-linking-table .simplebar-track.simplebar-vertical {
  top: 5.5rem;
  height: calc(100% - 6rem);
}
.any-other-table .row-index, .marketplace-attributes .row-index, .variations-table .row-index, .expanded-table .row-index, .attribute-table .row-index, .product-table .row-index, .category-mapping-table .row-index, .category-product-table .row-index, .external-product-table .row-index, .asin-linking-table .row-index {
  width: 3rem;
  text-align: center !important;
}

.category-mapping-table table thead tr th.product-name-select, .category-product-table table thead tr th.product-name-select {
  border-right-color: transparent !important;
}
.category-mapping-table table thead th div.retailer-head, .category-mapping-table table thead th:first-child div.retailer-head, .category-product-table table thead th div.retailer-head, .category-product-table table thead th:first-child div.retailer-head {
  color: #454545;
  background: transparent;
}
.category-mapping-table table thead th div.retailer-detail, .category-mapping-table table thead th:first-child div.retailer-detail, .category-product-table table thead th div.retailer-detail, .category-product-table table thead th:first-child div.retailer-detail {
  height: 3.75rem;
}
.category-mapping-table .simplebar-track.simplebar-horizontal, .category-product-table .simplebar-track.simplebar-horizontal {
  top: 5.9rem;
  left: 1rem;
  width: calc(100% - 1.5rem);
}
.category-mapping-table .simplebar-track.simplebar-vertical, .category-product-table .simplebar-track.simplebar-vertical {
  top: 6.5rem;
}

.external-product-table table tbody tr td img, .missing-epid-table table tbody tr td img, .asin-linking-table table tbody tr td img {
  height: 6rem;
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 6rem;
}

.asin-actions {
  position: relative;
}
.asin-actions .asin-actions-busy {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: lightgrey;
  display: none;
  opacity: 0.7;
}

.cat-tree {
  margin-left: 30px;
}

tr.marketplace-product-variant {
  display: none;
}
tr.marketplace-product-variant.active {
  display: table-row;
}

.any-other-table {
  overflow-x: scroll;
}
.any-other-table table thead th, .any-other-table table thead th:first-child, .any-other-table table thead th:last-child {
  text-align: left;
  border: none;
}
.any-other-table table thead th div.marketplace-detail, .any-other-table table thead th div.retailer-detail, .any-other-table table thead th:first-child div.marketplace-detail, .any-other-table table thead th:first-child div.retailer-detail, .any-other-table table thead th:last-child div.marketplace-detail, .any-other-table table thead th:last-child div.retailer-detail {
  background: #e1eae6;
  border-top-color: #e1eae6 !important;
  border-bottom-color: #e1eae6 !important;
  border-left-color: #e1eae6 !important;
  border-right-color: #e1eae6 !important;
}
.any-other-table table tbody tr td {
  text-align: left;
  vertical-align: middle;
}

.variations-table {
  overflow-x: scroll;
}
.variations-table table thead th, .variations-table table thead th:first-child, .variations-table table thead th:last-child {
  border: none;
}
.variations-table table thead th div.marketplace-detail, .variations-table table thead th div.retailer-detail, .variations-table table thead th:first-child div.marketplace-detail, .variations-table table thead th:first-child div.retailer-detail, .variations-table table thead th:last-child div.marketplace-detail, .variations-table table thead th:last-child div.retailer-detail {
  background: #e1eae6;
  border-top-color: #e1eae6 !important;
  border-bottom-color: #e1eae6 !important;
  border-left-color: #e1eae6 !important;
  border-right-color: #e1eae6 !important;
}
.variations-table table tbody tr td {
  vertical-align: middle;
}
.variations-table .simplebar-track.simplebar-horizontal {
  top: 1.9rem;
  height: 1rem;
  left: 1rem;
  width: calc(100% - 2rem);
  z-index: 1000;
}

.marketplace-attributes table thead tr th, .marketplace-attributes table thead tr th:first-child, .marketplace-attributes table thead tr th:last-child {
  border: none;
}
.marketplace-attributes table thead tr th div.marketplace-detail, .marketplace-attributes table thead tr th div.retailer-detail, .marketplace-attributes table thead tr th:first-child div.marketplace-detail, .marketplace-attributes table thead tr th:first-child div.retailer-detail, .marketplace-attributes table thead tr th:last-child div.marketplace-detail, .marketplace-attributes table thead tr th:last-child div.retailer-detail {
  background: #e1eae6;
  border-top-color: #e1eae6 !important;
  border-bottom-color: #e1eae6 !important;
  border-left-color: #e1eae6 !important;
  border-right-color: #e1eae6 !important;
  text-align: left !important;
}
.marketplace-attributes table tbody tr th, .marketplace-attributes table tbody tr td {
  text-align: left !important;
}
.marketplace-attributes table tbody tr:first-child th, .marketplace-attributes table tbody tr:first-child td {
  border-top: none;
}
.marketplace-attributes table tbody tr:not(:first-child) th, .marketplace-attributes table tbody tr:not(:first-child) td {
  border-top: 2px solid #f6f9f7 !important;
}
.marketplace-attributes table tbody .marketplace-attribute {
  height: 2.7rem;
  white-space: nowrap;
  overflow-x: hidden;
}
.marketplace-attributes table tbody .marketplace-attribute.marketplace-attribute-1 {
  margin-left: 1rem;
}
.marketplace-attributes table tbody .marketplace-attribute.marketplace-attribute-2 {
  margin-left: 2rem;
}
.marketplace-attributes table tbody .marketplace-attribute.marketplace-attribute-3 {
  margin-left: 3rem;
}
.marketplace-attributes table tbody .marketplace-attribute.marketplace-attribute-4 {
  margin-left: 4rem;
}
.marketplace-attributes table tbody .marketplace-attribute.marketplace-attribute-5 {
  margin-left: 6rem;
}
.marketplace-attributes table tbody .marketplace-attribute.marketplace-attribute-7 {
  margin-left: 7rem;
}
.marketplace-attributes table tbody .marketplace-attribute.marketplace-attribute-8 {
  margin-left: 8rem;
}
.marketplace-attributes table tbody .marketplace-value:not(.marketplace-value-many) {
  height: 2.7rem;
}
.marketplace-attributes table tbody .marketplace-value.marketplace-value-many select:not(:first-child), .marketplace-attributes table tbody .marketplace-value.marketplace-value-many input:not(:first-child), .marketplace-attributes table tbody .marketplace-value.marketplace-value-many textarea:not(:first-child) {
  margin-top: 1rem;
}
.marketplace-attributes table tbody .marketplace-value img.data-source {
  max-width: 20px;
  max-height: 20px;
  margin-right: 0.5rem;
}
.marketplace-attributes table tbody .marketplace-value .marketplace-value-pair-value, .marketplace-attributes table tbody .marketplace-value .marketplace-value-value {
  width: 15rem !important;
}
.marketplace-attributes table tbody .marketplace-value .marketplace-value-pair-unit {
  width: 10rem !important;
}

.updatable-add {
  right: -1.5rem;
  bottom: 0.5rem;
}

.updatable-trashed {
  text-decoration: line-through;
}

.image-container-small, .image-container-smaller {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: transparent;
  border: 1px solid #2A62DD;
  overflow: hidden;
}

.image-container-small {
  width: 130px;
  height: 130px;
  margin-right: 5px;
  margin-bottom: 5px;
  vertical-align: top;
}
.image-container-small .image-small {
  max-width: 120px;
  max-height: 120px;
}

.image-container-smaller-wrapper {
  position: relative;
  width: 96px;
  height: 96px;
}
.image-container-smaller-wrapper .image-container-smaller-container {
  position: absolute;
  text-wrap: nowrap;
  width: 87px;
  height: 87px;
  padding: 3px;
  overflow: hidden;
  border: 1px solid #e1eae6;
}
.image-container-smaller-wrapper .image-container-smaller-container.expandable:hover, .image-container-smaller-wrapper .image-container-smaller-container.expandable.open {
  border-color: #2A62DD;
  background: #e1eae6;
  width: auto;
  overflow: visible;
}
.image-container-smaller-wrapper .image-container-smaller-container .image-container-smaller {
  width: 80px;
  height: 80px;
  vertical-align: top;
}
.image-container-smaller-wrapper .image-container-smaller-container .image-container-smaller .image-smaller {
  max-width: 70px;
  max-height: 70px;
}

.hero-image {
  border-color: #2A62DD;
}
.hero-image:after {
  text-align: center;
  content: "Main Image";
  text-transform: uppercase;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: white;
  background: #2A62DD;
}

.product-image {
  border-color: #2A62DD;
}

.variant-image {
  border-color: #454545;
}

.no-image {
  display: block;
  background: #f6f9f7;
}

span.marketplace-value-value.select2-container.error .selection .select2-selection {
  border-color: grey;
  background-color: #f2d5d5;
}
span.marketplace-value-value.select2-container.completed .selection .select2-selection {
  border-color: grey;
}
span.marketplace-value-value.select2-container.required .selection .select2-selection {
  border-color: grey;
}

input.marketplace-value-value.error {
  border-color: grey;
  background-color: #f2d5d5;
}
input.marketplace-value-value.completed {
  border-color: grey;
}
input.marketplace-value-value.required {
  border-color: grey;
}

.product-label-space {
  width: 20rem;
}

#aliasing-table {
  /* Allows the entire rendered area within the select2 box to wrap to multiple lines */
  /* Optional: Ensures each choice's text can wrap within its 'pill' container */
}
#aliasing-table .select2-container--default .select2-selection--multiple .select2-selection__rendered {
  white-space: normal !important;
  word-wrap: break-word !important; /* For older browser compatibility */
  /* Remove text-overflow if present, as normal white-space makes it irrelevant */
}
#aliasing-table .select2-container--default .select2-selection--multiple .select2-selection__choice {
  white-space: normal !important;
  word-wrap: break-word !important;
}

.aside-input {
  width: 20rem !important;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #28a745;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(40, 167, 69, 0.9);
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.form-row > .col > .valid-tooltip, .form-row > [class*=col-] > .valid-tooltip {
  left: 5px;
}

.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control:valid, .form-control.is-valid {
  border-color: #28a745;
  padding-right: calc(1.5em + 0.75rem) !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' 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);
}
.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  border-color: #28a745;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.was-validated select.form-control:valid, select.form-control.is-valid {
  padding-right: 3.5rem !important;
  background-position: right 1.75rem center;
}

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .custom-select:valid, .custom-select.is-valid {
  border-color: #28a745;
  padding-right: calc(0.75em + 2.3125rem) !important;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat, #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' 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") center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) no-repeat;
}
.was-validated .custom-select:valid:focus, .custom-select.is-valid:focus {
  border-color: #28a745;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #28a745;
}
.was-validated .form-check-input:valid ~ .valid-feedback,
.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback,
.form-check-input.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {
  color: #28a745;
}
.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {
  border-color: #28a745;
}
.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {
  border-color: #34ce57;
  background-color: #34ce57;
}
.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}
.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #28a745;
}

.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {
  border-color: #28a745;
}
.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {
  border-color: #28a745;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #dc3545;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(220, 53, 69, 0.9);
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.form-row > .col > .invalid-tooltip, .form-row > [class*=col-] > .invalid-tooltip {
  left: 5px;
}

.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control:invalid, .form-control.is-invalid {
  border-color: #dc3545;
  padding-right: calc(1.5em + 0.75rem) !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  border-color: #dc3545;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.was-validated select.form-control:invalid, select.form-control.is-invalid {
  padding-right: 3.5rem !important;
  background-position: right 1.75rem center;
}

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .custom-select:invalid, .custom-select.is-invalid {
  border-color: #dc3545;
  padding-right: calc(0.75em + 2.3125rem) !important;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat, #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%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") center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) no-repeat;
}
.was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus {
  border-color: #dc3545;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #dc3545;
}
.was-validated .form-check-input:invalid ~ .invalid-feedback,
.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback,
.form-check-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {
  color: #dc3545;
}
.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {
  border-color: #dc3545;
}
.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  border-color: #e4606d;
  background-color: #e4606d;
}
.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #dc3545;
}

.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {
  border-color: #dc3545;
}
.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {
  border-color: #dc3545;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.btn:disabled, .btn.disabled {
  color: #ffffff !important;
  background-color: #454545 !important;
  border-color: #454545 !important;
}
.btn.btn-action {
  border-radius: 0;
}
.btn.btn-action:not(.btn-last) {
  border-right: none;
}
.btn.btn-first {
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
.btn.btn-last {
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}
.btn.btn-generate {
  position: relative;
  background: linear-gradient(76deg, rgb(252, 72, 47) 0%, rgb(229, 66, 67) 17%, rgb(160, 55, 135) 36%, rgb(132, 38, 147) 74%, rgb(18, 5, 240) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  font-weight: 600;
  -webkit-transition: 0.1s ease-in-out;
  transition: 0.1s ease-in-out;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.btn.btn-generate::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  padding: 2px;
  background: linear-gradient(76deg, rgb(252, 72, 47) 0%, rgb(229, 66, 67) 17%, rgb(160, 55, 135) 36%, rgb(132, 38, 147) 74%, rgb(18, 5, 240) 100%) border-box;
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #000)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #000));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #000)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #000));
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}
.btn.btn-generate.generate-none {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}
.btn.btn-generate:not(.generate-none):active {
  -webkit-transition: 0.1s ease-in-out;
  transition: 0.1s ease-in-out;
  -webkit-transform: scale(0.95) !important;
          transform: scale(0.95) !important;
}
.btn.btn-generate:not(.generate-none):hover {
  -webkit-transition: 0.1s ease-in-out;
  transition: 0.1s ease-in-out;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
img.pulse {
  -webkit-animation: pulse 1s infinite;
          animation: pulse 1s infinite;
}

.btn-generate.pulse {
  -webkit-animation: pulse 1s infinite;
          animation: pulse 1s infinite;
}

.btn.pulse {
  -webkit-animation: pulse 1s infinite;
          animation: pulse 1s infinite;
}

.onboarding .step {
  position: relative;
}
.onboarding .step .number {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.6rem;
  text-align: center;
  border-radius: 50% !important;
  border: 2px solid #e1eae6 !important;
  background: white;
}
.onboarding .step .number.current {
  border-color: #2A62DD !important;
  color: #2A62DD !important;
}
.onboarding .step .number.complete {
  background: #2A62DD !important;
  color: white;
}
.onboarding .step .line {
  position: absolute;
  top: 1.25rem;
  left: 0;
  right: 0;
  z-index: -1;
  background: #e1eae6;
  height: 2px;
}
.onboarding .step .line.complete {
  background: #2A62DD !important;
}
.onboarding .step .line.before {
  right: 50%;
}
.onboarding .step .line.after {
  left: 50%;
}
.onboarding .nav-item a.nav-link.invalid {
  color: red !important;
  text-decoration: underline;
}

.marketplace-setup .marketplace-container #setupAccordion .card-header {
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.marketplace-setup .marketplace-container #setupAccordion .card-header .card-title {
  color: #2A62DD;
  background: #E1F0E3;
}
.marketplace-setup .marketplace-container #setupAccordion .card-header .card-title.collapsed {
  background: #e1eae6;
}
.marketplace-setup .marketplace-container #setupAccordion .card-header .collapsed-reveal, .marketplace-setup .marketplace-container #setupAccordion .card-header .collapsed-hidden {
  color: #2A62DD;
}

#dashboard .marketplace-container .dash-marketplace-setup .accordion > .card {
  border: none;
}
#dashboard .marketplace-container .dash-marketplace-setup .accordion > .card .card-header {
  border: 1px solid rgba(0, 0, 0, 0.08);
}
#dashboard .marketplace-container .dash-marketplace-setup .accordion > .card .card-header .card-title {
  color: #2A62DD;
  background: #E1F0E3;
}
#dashboard .marketplace-container .dash-marketplace-setup .accordion > .card .card-header .card-title.collapsed {
  background: #e1eae6;
}
#dashboard .marketplace-container .dash-marketplace-setup .accordion > .card .card-header .collapsed-reveal, #dashboard .marketplace-container .dash-marketplace-setup .accordion > .card .card-header .collapsed-hidden {
  color: #2A62DD;
}
#dashboard .marketplace-container .dash-marketplace-setup .accordion > .card .card-body {
  padding: 0.8rem 1rem;
}
#dashboard .marketplace-container .dash-marketplace-setup .accordion > .card .card-body .section {
  position: relative;
  background: #F6F6F6;
  padding: 1rem;
  margin-bottom: 0.8rem;
  border-radius: 8px;
}
#dashboard .marketplace-container .dash-marketplace-setup .accordion > .card .card-body .section .section-busy-icon {
  -webkit-animation: 0.75s linear infinite spinner-border;
          animation: 0.75s linear infinite spinner-border;
}
#dashboard .marketplace-container .dash-marketplace-setup .accordion > .card .card-body .section .panel-hdr {
  position: relative;
  background: transparent;
  border: none;
}
#dashboard .marketplace-container .dash-marketplace-setup .accordion > .card .card-body .section .panel-hdr h2 {
  font-size: 1rem;
  margin-left: 1.5rem;
}
#dashboard .marketplace-container .dash-marketplace-setup .accordion > .card .card-body .section .panel-content {
  padding: 0;
  font-size: 0.9rem;
  color: #6c757d;
}
#dashboard .marketplace-container .dash-marketplace-setup .accordion > .card .card-body .section .panel-content strong {
  color: #454545;
}
#dashboard .marketplace-container .dash-marketplace-setup .accordion > .card.checked .card-title, #dashboard .marketplace-container .dash-marketplace-setup .accordion > .card.checked .card-title.collapsed {
  color: #ffffff;
  background: #0654BA;
}
#dashboard .marketplace-container .dash-marketplace-setup .accordion > .card.checked .collapsed-reveal, #dashboard .marketplace-container .dash-marketplace-setup .accordion > .card.checked .collapsed-hidden {
  color: #ffffff;
}
#dashboard .marketplace-container .dash-marketplace-setup .accordion > .card.checked .when-not-checked {
  display: none;
}
#dashboard .marketplace-container .dash-marketplace-setup .accordion > .card:not(.checked) .when-checked {
  display: none;
}

a[target]:not(.btn) {
  font-weight: 400;
  -webkit-text-decoration-skip: none;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration: none !important;
}

h1.subheader-title {
  color: #525252;
  font-size: 1.75rem;
  font-weight: bold;
}
h1.subheader-title i {
  font-weight: lighter;
}

p.subheader-description {
  color: #525252;
  font-size: 1.75rem;
  font-weight: bold;
}
p.subheader-description i {
  font-weight: lighter;
}

div.subheader-foot {
  position: absolute;
  left: 0;
  bottom: -1.625rem;
  width: 100%;
}

select {
  color: #454545;
  padding: 2px;
}

.breadcrumb > li.breadcrumb-item {
  color: #68799f;
}
.breadcrumb > li.breadcrumb-item.active {
  color: #666666;
}

.panel-alt-input {
  background: #c5ccdb;
}

.panel-alt-gray-button {
  color: white;
  background: #495057;
}
.panel-alt-gray-button:hover, .panel-alt-gray-button:active, .panel-alt-gray-button:focus {
  color: white;
  background: #6c757d;
}

.panel-alt {
  color: white;
  background: #2A62DD;
}
.panel-alt a, .panel-alt a[target]:not(.btn) {
  color: white;
  text-decoration: underline !important;
}
.panel-alt a:hover, .panel-alt a:active, .panel-alt a:focus, .panel-alt a[target]:not(.btn):hover, .panel-alt a[target]:not(.btn):active, .panel-alt a[target]:not(.btn):focus {
  color: white;
  text-decoration: none !important;
}

.hover-outline:hover {
  border: 1px solid #4072e1;
}
/*# sourceMappingURL=marketplus.css.map */
