@import url(icons/font-awesome/css/fontawesome-all.css);
@import url(icons/simple-line-icons/css/simple-line-icons.css);
@import url(icons/weather-icons/css/weather-icons.min.css);
@import url(icons/linea-icons/linea.css);
@import url(icons/themify-icons/themify-icons.css);
@import url(icons/flag-icon-css/flag-icon.min.css);
@import url(icons/material-design-iconic-font/css/materialdesignicons.min.css);
@import url(spinners.css);
@import url(animate.css);
* {
    outline: none
}

/* Theme tokens (easy to tweak) */
:root {
  --sb-bg1: #0b0f2c;        /* top */
  --sb-bg2: #1b1f4a;        /* bottom */
  --sb-text: #cbd5e1;       /* default text */
  --sb-text-soft: #9ca3af;  /* muted text */
  --sb-icon: #cbd5e1;
  --sb-accent: #6c5ce7;     /* active highlight */
  --sb-hover: rgba(255,255,255,0.08);
  --sb-sub-bg: rgba(255,255,255,0.03);
  --sb-border: rgba(255,255,255,0.05);
  --top-bg: rgba(6,10,20,0.56);
  --top-border: rgba(255,255,255,0.03);
  --top-text: #e6eefc;
  --top-sub: #bfc9e0;
  --top-hover: rgba(255,255,255,0.03);
  --drop-bg: rgba(8,12,22,0.96);
  --drop-border: rgba(255,255,255,0.02);
   --bg-card: rgba(8,12,22,0.86);
  --bg-card-strong: linear-gradient(180deg,#0b1320 0%, #081023 100%);
  --muted: rgba(255,255,255,0.72);
  --muted-2: rgba(255,255,255,0.55);
  --accent-green: #0bb45d;
  --accent-red: #ff4d4f;
  --panel-white-contrast: rgba(255,255,255,0.03);
  --control-bg: rgba(255,255,255,0.02);
  --border-weak: rgba(255,255,255,0.04);
  --chip-bg: rgba(255,255,255,0.02);
  --title-color: #e6eefc;
  --bg-dark: #0f1330;
  --panel-dark: rgba(12,18,35,0.95);
  --accent: linear-gradient(180deg,#6e2bff,#3a0fb7);
  --accent-flat: #6e2bff;
  --glass: rgba(255,255,255,0.02);
  --focus-ring: rgba(110,43,255,0.28);

  /* background gradient (kept exact as provided) */
  --page-gradient: radial-gradient(circle at 20% 10%, #3341ae 0%, #13112b 70%);

  /* background gradient (kept exact as provided) */
  --page-gradient-nav: radial-gradient(circle at 20% 10%, #3341ae 0%, #13112b 70%);

  /* typography */
  --body-font-size: 13px;
  --body-font-family: "Poppins", Helvetica, sans-serif;
  --body-font-weight: 400;

  /* text colors (dark page vs light page) */
  --text-dark: #373e4a;   /* for light page */
  --text-light: #e0e6f0;  /* for dark gradient page */

  /* card */
  --card-shadow: 0 0 30px 0 rgba(82,63,105,.05);

   --pg-accent: #7c3aed; /* violet */
   --pg-accent-2: #06b6d4; /* teal */
   --pg-text: #0f172a;
   --pg-card-bg: rgba(255,255,255,0.06);
   --pg-glass: rgba(255,255,255,0.06);
   --pg-radius: 14px;
   --pg-shadow: 0 8px 30px rgba(2,6,23,0.55);
   --pg-muted: rgba(15,23,42,0.6);

    --asset-bg: #0b0f2c;
    --asset-card-bg: #131a3a;
    --asset-card-border: #1f2750;
    --asset-text: #ffffff;
    --asset-muted: #9aa0c8;
    --asset-radius: 14px;
    --asset-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* page base (keep gradient high-specificity so it wins) */
html {
  background: var(--page-gradient) fixed !important;
  background-size: cover !important;
  height: 100%;
  margin: 0;
  padding: 0;
}

/* show gradient through body (default: dark theme) */
body {
  background: transparent !important;
  color: var(--text-light) !important; /* default uses light text for dark bg */
  font-size: var(--body-font-size);
  font-family: var(--body-font-family);
  font-weight: var(--body-font-weight);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  height: 100%;
  margin: 0;
  padding: 0;
}



/* ----- Cards: single clean rule (combined duplicates) ----- */
.card {
  margin-bottom: 30px;                 /* final chosen spacing */
  box-shadow: var(--card-shadow);
  border: 0;
}

/* Optional: if you need a smaller card spacing variant, use .card--compact */
.card--compact {
  margin-bottom: 0;
}

/* Small helper: keep everything tidy on very small viewports */
@media (max-width: 480px) {
  :root { --body-font-size: 12px; }
}

/* override common layout wrappers that are often white in admin themes */
#main-wrapper,
.main-wrapper,
.wrapper,
.page-wrapper,
.container-fluid,
.content,
.content-wrapper,
.page-content {
  background: transparent !important;
  background-color: transparent !important;
}

/* Light Mode Overrides */
.light-mode #main-wrapper,
.light-mode .main-wrapper,
.light-mode .wrapper,
.light-mode .page-wrapper,
.light-mode .container-fluid,
.light-mode .content,
.light-mode .content-wrapper,
.light-mode .page-content {
    background: #ffffff !important;
    background-color: #f3f3f3 !important;
}

.light-mode .filter-label,
.light-mode .filter-select,
.light-mode .all-vul-count,
.light-mode .option-all{
  color:#101011 !important;
}

.light-mode .filter-select ::placeholder {
    color: #101011;
}

.all-vul-count{
    color: #c1bac5;
}

/* give cards/panels a translucent dark look (like screenshot) */
.card, .panel, .box, .tile {
  background: rgba(8, 12, 22, 0.85) !important;
  border: 1px solid rgba(255,255,255,0.04) !important;
  box-shadow: 0 8px 30px rgba(2,6,20,0.6) !important;
  color: #fff !important;
  border-radius: 12px !important;
}

.light-mode .card{
    background:  #fff !important;
}

/* === Base Container === */
.left-sidebar {
  position: absolute;
  width: 250px;
  height: 100%;
  top: 0;
  z-index: 20;
  padding-top: 50px;
  background: linear-gradient(180deg, var(--sb-bg1) 0%, var(--sb-bg2) 100%) !important;
  color: var(--sb-text) !important;
  box-shadow: 1px 0 20px rgba(0,0,0,.25);
  border-right: 1px solid var(--sb-border);
  transition: width .18s ease, left .2s ease;
}

.fix-sidebar .left-sidebar { position: fixed; }

/* === Modern Look Enhancements === */
.left-sidebar.modern-sidebar { backdrop-filter: blur(6px); }
.left-sidebar.modern-sidebar .scroll-sidebar { padding:18px 14px; }

/* === Scroll Area === */
.scroll-sidebar {
  position: relative;
  height: calc(100% - 20px);
  overflow-y: auto;
  background: transparent !important;
}
.scroll-sidebar::-webkit-scrollbar { width:6px; }
.scroll-sidebar::-webkit-scrollbar-thumb {
  background-color: rgba(255,255,255,0.25);
  border-radius: 4px;
}

/* === Navigation Base === */
.sidebar-nav { background: transparent; padding: 0; }
.sidebar-nav ul { margin:0; padding:0; list-style:none; }
.sidebar-nav ul li { margin:6px 0; }

/* === Menu Links === */
.sidebar-nav ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--sb-text);
  text-decoration: none;
  border-radius: 8px;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}



.sidebar-nav ul li a:hover {
  background: var(--sb-hover);
  color: #fff;
  transform: translateX(6px);
}



/* === Icons === */
.sidebar-nav > ul > li > a i {
  width: 21px;
  font-size: 18px;
  color: var(--sb-icon);
  vertical-align: middle;
}

/* === Active & Expanded States === */
.sidebar-nav > ul > li > a.active,
.sidebar-nav > ul > li.active > a,
.sidebar-nav ul li a[aria-expanded="true"] {
  background: linear-gradient(90deg, color-mix(in srgb, var(--sb-accent) 30%, transparent), transparent 80%);
  color: #fff !important;
  box-shadow: 0 6px 18px rgba(2,6,23,0.45);
}


.sidebar-nav ul li a.active i,
.sidebar-nav > ul > li.active > a i {
  color: #fff;
}




/* === Section Titles === */
.sidebar-nav ul li.nav-small-cap {
  font-size: 11px;
  padding: 14px 14px 8px 18px;
  color: var(--sb-text-soft);
  text-transform: uppercase;
  letter-spacing: .6px;
}

/* === Submenus === */
.sidebar-nav ul li ul {
  padding-left: 16px;
  background: var(--sb-sub-bg);
  border-left: 2px solid var(--sb-border);
  border-radius: 6px;
  display: block;
}
.sidebar-nav ul li ul li a {
  padding: 8px 16px;
  font-size: 12.5px;
  color: var(--sb-text-soft);
}
.sidebar-nav ul li ul li a:hover {
  background: var(--sb-hover);
  color: #fff;
}
.sidebar-nav ul li ul ul { padding-left: 12px; }

/* === Collapsible Submenus === */
.submenu { display: none; }
.sidebar-item > .has-arrow[aria-expanded="true"] + .submenu { display: block; }

/* === Arrow Caret === */
.sidebar-nav .has-arrow {
  position: relative;
}
.sidebar-nav .has-arrow:after {
  content: '';
  position: absolute;
  right: 1em;
  top: 50%;
  width: 6px;
  height: 6px;
  border: 2px solid var(--sb-text);
  border-left: none;
  border-bottom: none;
  transform: translateY(-50%) rotate(45deg);
  transition: transform .2s ease, border-color .2s ease;
  opacity: .8;
}
.sidebar-nav .has-arrow[aria-expanded="true"]:after {
  transform: translateY(-50%) rotate(225deg);
  border-color: #fff;
}

/* === Mini Sidebar (>=768px) === */
@media (min-width:768px) {
  .mini-sidebar .left-sidebar { width: 70px; }
  .mini-sidebar .sidebar-nav #sidebarnav > li > ul {
    position: absolute;
    left: 70px;
    top: 42px;
    width: 250px;
    z-index: 1001;
    display: none;
    padding: 8px 6px 10px;
    background: linear-gradient(180deg, var(--sb-bg1) 0%, var(--sb-bg2) 100%);
    border: 1px solid var(--sb-border);
    border-radius: 10px;
    box-shadow: 0 10px 24px rgba(0,0,0,.35);
  }
  .mini-sidebar .sidebar-nav #sidebarnav > li:hover > ul { display: block; }
  .mini-sidebar .sidebar-nav #sidebarnav > li > a { padding: 12px 24px; width: 70px; }
  .mini-sidebar .sidebar-nav #sidebarnav > li:hover > a {
    width: 290px;
    background: var(--sb-hover) !important;
    color: #fff !important;
  }
  .mini-sidebar .sidebar-nav > ul > li > a i { font-size: 18px; }
  .mini-sidebar .hide-menu,
  .mini-sidebar .nav-small-cap,
  .mini-sidebar .sidebar-footer,
  .mini-sidebar .user-profile .profile-text,
  .mini-sidebar > .label { display: none; }
}

/* === Mobile Sidebar === */
@media (max-width:767px) {
  .mini-sidebar .left-sidebar { position: fixed; left: -250px; }
  .mini-sidebar.show-sidebar .left-sidebar { left: 0; }
}

/* === Accessibility & Helpers === */
.sidebar-nav a:focus {
  outline: 2px solid rgba(124,58,237,0.22);
  outline-offset: 2px;
}
.submenu .sidebar-sublink { padding-left: 6px; border-radius: 6px; }
.sidebar-thirdlink { font-size: 12px; padding: 6px 10px; }

a:focus,
a:hover {
    text-decoration: none
}

a.link {
    color: #455a64
}

a.link:focus,
a.link:hover {
    color: #398bf7
}

.img-responsive {
    width: 100%;
    height: auto;
    display: inline-block
}

.img-rounded {
    border-radius: 4px
}

html body .mdi-set,
html body .mdi:before {
    line-height: initial
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #455a64;
   
    font-weight: 500
}

h1 {
    line-height: 40px;
    font-size: 36px
}

h2 {
    line-height: 36px;
    font-size: 24px
}

h3 {
    line-height: 30px;
    font-size: 21px
}

h4 {
    line-height: 22px;
    font-size: 18px
}

h5 {
    line-height: 18px;
    font-size: 16px;
    font-weight: 400
}

h6 {
    line-height: 16px;
    font-size: 14px;
    font-weight: 400
}

.display-5 {
    font-size: 3rem
}

.display-6 {
    font-size: 36px
}

.box {
    border-radius: 4px;
    padding: 10px
}

html body .dl {
    display: inline-block
}

html body .db {
    display: block
}

.no-wrap td,
.no-wrap th {
    white-space: nowrap
}

html body blockquote {
    border-left: 5px solid #398bf7;
    border: 1px solid rgba(120, 130, 140, 0.13);
    padding: 15px
}

.clear {
    clear: both
}

ol li {
    margin: 5px 0
}

html body .p-0 {
    padding: 0px
}

html body .p-10 {
    padding: 10px
}

html body .p-20 {
    padding: 20px
}

html body .p-30 {
    padding: 30px
}

html body .p-l-0 {
    padding-left: 0px
}

html body .p-l-10 {
    padding-left: 10px
}

html body .p-l-20 {
    padding-left: 20px
}

html body .p-r-0 {
    padding-right: 0px
}

html body .p-r-10 {
    padding-right: 10px
}

html body .p-r-20 {
    padding-right: 20px
}

html body .p-r-30 {
    padding-right: 30px
}

html body .p-r-40 {
    padding-right: 40px
}

html body .p-t-0 {
    padding-top: 0px
}

html body .p-t-10 {
    padding-top: 10px
}

html body .p-t-20 {
    padding-top: 20px
}

html body .p-t-30 {
    padding-top: 30px
}

html body .p-b-0 {
    padding-bottom: 0px
}

html body .p-b-5 {
    padding-bottom: 5px
}

html body .p-b-10 {
    padding-bottom: 10px
}

html body .p-b-20 {
    padding-bottom: 20px
}

html body .p-b-30 {
    padding-bottom: 30px
}

html body .p-b-40 {
    padding-bottom: 40px
}

html body .m-0 {
    margin: 0px
}

html body .m-l-5 {
    margin-left: 5px
}

html body .m-l-10 {
    margin-left: 10px
}

html body .m-l-15 {
    margin-left: 15px
}

html body .m-l-20 {
    margin-left: 20px
}

html body .m-l-30 {
    margin-left: 30px
}

html body .m-l-40 {
    margin-left: 40px
}

html body .m-r-5 {
    margin-right: 5px
}

html body .m-r-10 {
    margin-right: 10px
}

html body .m-r-15 {
    margin-right: 15px
}

html body .m-r-20 {
    margin-right: 20px
}

html body .m-r-30 {
    margin-right: 30px
}

html body .m-r-40 {
    margin-right: 40px
}

html body .m-t-0 {
    margin-top: 0px
}

html body .m-t-5 {
    margin-top: 5px
}

html body .m-t-10 {
    margin-top: 10px
}

html body .m-t-15 {
    margin-top: 15px
}

html body .m-t-20 {
    margin-top: 20px
}

html body .m-t-30 {
    margin-top: 30px
}

html body .m-t-40 {
    margin-top: 40px
}

html body .m-b-0 {
    margin-bottom: 0px
}

html body .m-b-5 {
    margin-bottom: 5px
}

html body .m-b-10 {
    margin-bottom: 10px
}

html body .m-b-15 {
    margin-bottom: 15px
}

html body .m-b-20 {
    margin-bottom: 20px
}

html body .m-b-30 {
    margin-bottom: 30px
}

html body .m-b-40 {
    margin-bottom: 40px
}

html body .vt {
    vertical-align: top
}

html body .vm {
    vertical-align: middle
}

html body .vb {
    vertical-align: bottom
}

.op-5 {
    opacity: 0.5
}

.op-3 {
    opacity: 0.3
}

html body .font-bold {
    font-weight: 700
}

html body .font-normal {
    font-weight: normal
}

html body .font-light {
    font-weight: 300
}

html body .font-medium {
    font-weight: 500
}

html body .font-16 {
    font-size: 16px
}

html body .font-14 {
    font-size: 14px
}

html body .font-10 {
    font-size: 10px
}

html body .font-18 {
    font-size: 18px
}

html body .font-20 {
    font-size: 20px
}

html body .font-32 {
    font-size: 32px
}

html body .font-42 {
    font-size: 42px
}

html body .b-0 {
    border: none !important
}

html body .b-r {
    border-right: 1px solid rgba(120, 130, 140, 0.13)
}

html body .b-l {
    border-left: 1px solid rgba(120, 130, 140, 0.13)
}

html body .b-b {
    border-bottom: 1px solid rgba(120, 130, 140, 0.13)
}

html body .b-t {
    border-top: 1px solid rgba(120, 130, 140, 0.13)
}

html body .b-all {
    border: 1px solid rgba(120, 130, 140, 0.13) !important
}

.thumb-sm {
    height: 32px;
    width: 32px
}

.thumb-md {
    height: 48px;
    width: 48px
}

.thumb-lg {
    height: 88px;
    width: 88px
}

.hide {
    display: none
}

.img-circle {
    border-radius: 100%
}

.radius {
    border-radius: 4px
}

.text-white {
    color: #ffffff !important
}

.text-danger {
    color: #f64e60 !important
}

.text-muted {
    color: #99abb4 !important
}

.text-warning {
    color: #ffb22b !important
}

.text-success {
    color: #06d79c !important
}

.text-info {
    color: #398bf7 !important
}

.text-inverse {
    color: #2f3d4a !important
}

html body .text-blue {
    color: #02bec9
}

html body .text-purple {
    color: #7460ee
}

html body .text-primary {
    color: #8950fc !important
}

html body .text-megna {
    color: #56c0d8
}

html body .text-dark {
    color: #67757c
}

html body .text-themecolor {
    color: #398bf7
}

.bg-primary {
    background-color: #8950fc !important
}

.bg-success {
    background-color: #06d79c !important
}

.bg-info {
    background-color: #398bf7 !important
}

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

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

html body .bg-megna {
    background-color: #56c0d8
}

html body .bg-theme {
    background-color: #398bf7
}

html body .bg-inverse {
    background-color: #2f3d4a
}

html body .bg-purple {
    background-color: #7460ee
}

html body .bg-light-part {
    background-color: rgba(0, 0, 0, 0.02)
}

html body .bg-light-primary {
    background-color: #f1effd
}

html body .bg-light-success {
    background-color: #e8fdeb
}

html body .bg-light-info {
    background-color: #cfecfe
}

html body .bg-light-extra {
    background-color: #ebf3f5
}

html body .bg-light-warning {
    background-color: #fff8ec
}

html body .bg-light-danger {
    background-color: #f9e7eb
}

html body .bg-light-inverse {
    background-color: #f6f6f6
}

html body .bg-light {
    background-color: #e9edf2
}

html body .bg-white {
    background-color: #ffffff
}

.an-card-con{
    font-weight: 400;
    text-align: center;
}

.round {
    line-height: 48px;
    color: #ffffff;
    width: 50px;
    height: 50px;
    display: inline-block;
    font-weight: 400;
    text-align: center;
    border-radius: 100%;
    background: #398bf7
}

.round img {
    border-radius: 100%
}

.round-lg {
    line-height: 65px;
    width: 60px;
    height: 60px;
    font-size: 30px
}

.round.round-info {
    background: #398bf7
}

.round.round-warning {
    background: #ffb22b
}

.round.round-danger {
    background: #f64e60
}

.round.round-success {
    background: #06d79c
}

.round.round-primary {
    background: #8950fc
}

.label {
    padding: 3px 10px;
    line-height: 13px;
    color: #ffffff;
    font-weight: 400;
    border-radius: 4px;
    font-size: 75%
}

.label-rounded {
    border-radius: 60px
}

.label-custom {
    background-color: #56c0d8
}

.label-success {
    background-color: #06d79c
}

.label-info {
    background-color: #398bf7
}

.label-warning {
    background-color: #ffb22b
}

.label-danger {
    background-color: #f64e60
}

.label-megna {
    background-color: #56c0d8
}

.label-primary {
    background-color: #8950fc
}

.label-purple {
    background-color: #7460ee
}

.label-red {
    background-color: #fb3a3a
}

.label-inverse {
    background-color: #2f3d4a
}

.label-default {
    background-color: #e9edf2
}

.label-white {
    background-color: #ffffff
}

.label-light-success {
    background-color: #e8fdeb;
    color: #06d79c
}

.label-light-info {
    background-color: #cfecfe;
    color: #398bf7
}

.label-light-warning {
    background-color: #fff8ec;
    color: #ffb22b
}

.label-light-danger {
    background-color: #f9e7eb;
    color: #f64e60
}

.label-light-megna {
    background-color: #e0f2f4;
    color: #56c0d8
}

.label-light-primary {
    background-color: #f1effd;
    color: #8950fc
}

.label-light-inverse {
    background-color: #f6f6f6;
    color: #2f3d4a
}

.badge {
    font-weight: 400
}

.badge-xs {
    font-size: 9px
}

.badge-sm,
.badge-xs {
    -webkit-transform: translate(0, -2px);
    -ms-transform: translate(0, -2px);
    -o-transform: translate(0, -2px);
    transform: translate(0, -2px)
}

.badge-success {
    background-color: #06d79c
}

.badge-info {
    background-color: #398bf7
}

.badge-primary {
    background-color: #8950fc
}

.badge-warning {
    background-color: #ffb22b;
    color: #ffffff
}

.badge-danger {
    background-color: #f64e60
}

.badge-purple {
    background-color: #7460ee
}

.badge-red {
    background-color: #fb3a3a
}

.badge-inverse {
    background-color: #2f3d4a
}

ul.list-style-none {
    margin: 0px;
    padding: 0px
}

ul.list-style-none li {
    list-style: none
}

ul.list-style-none li a {
    color: #67757c;
    padding: 8px 0px;
    display: block;
    text-decoration: none
}

ul.list-style-none li a:hover {
    color: #398bf7
}

.dropdown-item {
    padding: 8px 1rem;
    color: #67757c
}

.card-no-border .card {
    border: 0px;
    border-radius: 0px;
    -webkit-box-shadow: none;
    box-shadow: none
}

.card-no-border .shadow-none {
    -webkit-box-shadow: none;
    box-shadow: none
}

.card-outline-danger,
.card-outline-info,
.card-outline-primary,
.card-outline-success,
.card-outline-warning {
    background: #ffffff
}

.card-fullscreen {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    overflow: auto
}

.single-column .left-sidebar {
    display: none
}

.single-column .page-wrapper {
    margin-left: 0px
}

.fix-width {
    width: 100%;
    max-width: 1170px;
    margin: 0 auto
}

.progress {
    height: auto
}

.card-group {
    margin-bottom: 30px
}

.ps-container {
    -ms-touch-action: auto;
    touch-action: auto;
    overflow: hidden !important;
    -ms-overflow-style: none
}

.fixed-table-container [type=checkbox]:checked,
.fixed-table-container [type=checkbox]:not(:checked),
.tablesaw [type=checkbox]:checked,
.tablesaw [type=checkbox]:not(:checked) {
    position: relative;
    left: 0;
    opacity: 1
}

#main-wrapper {
    width: 100%;
    overflow: hidden
}

.boxed #main-wrapper {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    -webkit-box-shadow: 0 0 60px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.1)
}

.boxed #main-wrapper .sidebar-footer {
    position: absolute
}

.boxed #main-wrapper .topbar {
    max-width: 1300px
}

.boxed #main-wrapper .footer {
    display: none
}

.page-wrapper {
   
    padding-bottom: 60px;
    position: relative
}

.container-fluid {
    padding: 25px 25px
}

.card .card-subtitle {
    font-weight: 300;
    margin-bottom: 15px;
    color: #99abb4
}

.card .card-title {
    position: relative
}

.fix-header .topbar {
    position: fixed;
    width: 100%;
    -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
   
}

.fix-header .page-wrapper {
    padding-top: 60px
}

.fix-header .right-side-panel {
    top: 148px;
    height: calc(100% - 148px)
}

li.nav-item.dark-white-th .nav-link {
    color: #FFFF !important;
}
.light-mode li.nav-item.dark-white-th .nav-link {
    color: #000000 !important;
}
.nav-tabs .nav-link.active{
    background-color: #2b358c !important;
}
.light-mode .nav-tabs .nav-link.active{
    background-color: #FFFF !important;
}
.light-mode .pro-per-head{
    color: #2b358c !important;
}
.pro-per-head{
    color: #FFFF !important;
}
.light-mode .form-horizontal label {
    color: #2b358c;
}
/* container */
.topbar {
  position: relative;
  z-index: 50;
  background: var(--top-bg) !important;
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--top-border);
  box-shadow: 0 6px 18px rgba(2,6,20,0.28);
}

.topbar .navbar-collapse { padding: 8px 10px; background: var(--page-gradient-nav) fixed !important;}
.topbar .navbar-collapse.no-bg {
    background: none !important;
}
.topbar .top-navbar { padding: 0; background: transparent; }
.topbar .top-navbar .navbar-header { line-height: 60px; padding-left: 10px; }
.topbar .top-navbar .navbar-brand { margin-right: 0; padding: 0; display:flex; align-items:center; gap:10px; color:var(--top-text); }
.topbar .top-navbar .navbar-brand .dark-logo { color:var(--top-text) !important; font-weight:500; padding-left:10px; }

/* toggler and nav links */
.topbar .top-navbar .navbar-nav > .nav-item > .nav-link {
  padding-left: 15px;
  padding-right: 15px;
  font-size: 20px;
  line-height: 28px;
  color: var(--top-text) !important;
  opacity: .95;
}
.topbar .top-navbar .navbar-nav > .nav-item > span {
  line-height: 65px;
  font-size: 24px;
  font-weight: 500;
  color: var(--top-text);
  padding: 0 10px;
}

/* nav item show state */
.topbar .top-navbar .navbar-nav > .nav-item.show {
  background: rgba(255,255,255,0.01);
}

/* profile pic */
.topbar .profile-pic { width: 30px; border-radius: 100%; }

/* dropdowns */
.topbar .dropdown-menu {
  box-shadow: 0 10px 30px rgba(2,6,20,0.45);
  border-color: transparent;
  background: var(--drop-bg) !important;
  color: var(--top-text) !important;
  border: 1px solid var(--drop-border) !important;
  min-width: 260px;
}

/* dropdown items */
.topbar .dropdown-menu .dropdown-item {
  padding: 8px 14px;
  color: var(--top-text) !important;
}
.topbar .dropdown-menu .dropdown-item:hover {
  background: var(--top-hover) !important;
  color: #fff !important;
}
/* dropdown-user list */
.topbar ul.dropdown-user { padding: 0; min-width: 280px; }
.topbar ul.dropdown-user li { list-style:none; padding:0; margin:0; }
.topbar ul.dropdown-user li.divider { height:1px; margin:9px 0; background-color: rgba(255,255,255,0.03); }

/* user box */
.topbar ul.dropdown-user li .dw-user-box { padding: 10px 15px; background: linear-gradient(90deg, rgba(108,92,231,0.06), rgba(0,0,0,0)) ; border-radius: 6px 6px 0 0; }
.topbar ul.dropdown-user li .dw-user-box .u-img { width:70px; display:inline-block; vertical-align:top; }
.topbar ul.dropdown-user li .dw-user-box .u-img img { width:100%; border-radius:5px; }
.topbar ul.dropdown-user li .dw-user-box .u-text { display:inline-block; padding-left:10px; color:var(--top-text); }
.topbar ul.dropdown-user li .dw-user-box .u-text h4 { margin:0; font-size:15px; color:var(--top-text); }
.topbar ul.dropdown-user li .dw-user-box .u-text p { margin:0; font-size:12px; color:var(--top-sub); }

/* dropdown anchors (links inside dropdown list) */
.topbar ul.dropdown-user li a {
  padding: 9px 15px;
  display: block;
  color: var(--top-text) !important;
  font-size: 13px;
  text-decoration: none;
}
.topbar ul.dropdown-user li a i {
  margin-right: 10px;
  color: var(--top-sub);
  font-weight: 600;
}
.topbar ul.dropdown-user li a:hover {
  background: var(--top-hover);
  color: #fff;
  text-decoration: none;
}

.search-box .app-search {
    position: absolute;
    margin: 0px;
    display: block;
    z-index: 110;
    width: 100%;
    top: -1px;
    -webkit-box-shadow: 2px 0px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 2px 0px 10px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0px
}

.search-box .app-search input {
    width: 100.5%;
    padding: 25px 40px 25px 20px;
    border-radius: 0px;
    font-size: 17px;
    -webkit-transition: 0.5s ease-in;
    -o-transition: 0.5s ease-in;
    transition: 0.5s ease-in;
    height: 73px
}

.search-box .app-search input:focus {
    border-color: #ffffff
}

.search-box .app-search .srh-btn {
    position: absolute;
    top: 23px;
    cursor: pointer;
    background: #ffffff;
    width: 15px;
    height: 15px;
    right: 20px;
    font-size: 14px
}

.mini-sidebar .top-navbar .navbar-header {
    width: 70px;
    text-align: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-left: 0px
}

.logo-center .top-navbar .navbar-header {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto
}

.notify {
    position: relative;
    top: -28px;
    right: -7px
}

.notify .heartbit {
    position: absolute;
    top: -20px;
    right: -4px;
    height: 25px;
    width: 25px;
    z-index: 10;
    border: 5px solid #f64e60;
    border-radius: 70px;
    -moz-animation: heartbit 1s ease-out;
    -moz-animation-iteration-count: infinite;
    -o-animation: heartbit 1s ease-out;
    -o-animation-iteration-count: infinite;
    -webkit-animation: heartbit 1s ease-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite
}

.notify .point {
    width: 6px;
    height: 6px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    background-color: #f64e60;
    position: absolute;
    right: 6px;
    top: -10px
}

@-moz-keyframes heartbit {
    0% {
        -moz-transform: scale(0);
        opacity: 0.0
    }
    25% {
        -moz-transform: scale(0.1);
        opacity: 0.1
    }
    50% {
        -moz-transform: scale(0.5);
        opacity: 0.3
    }
    75% {
        -moz-transform: scale(0.8);
        opacity: 0.5
    }
    to {
        -moz-transform: scale(1);
        opacity: 0.0
    }
}

@-webkit-keyframes heartbit {
    0% {
        -webkit-transform: scale(0);
        opacity: 0.0
    }
    25% {
        -webkit-transform: scale(0.1);
        opacity: 0.1
    }
    50% {
        -webkit-transform: scale(0.5);
        opacity: 0.3
    }
    75% {
        -webkit-transform: scale(0.8);
        opacity: 0.5
    }
    to {
        -webkit-transform: scale(1);
        opacity: 0.0
    }
}

.hdr-nav-bar .navbar {
    background: #ffffff;
    border-top: 1px solid rgba(120, 130, 140, 0.13);
    padding: 0 15px
}

.hdr-nav-bar .navbar .navbar-nav>li {
    padding: 0 10px
}

.hdr-nav-bar .navbar .navbar-nav>li>a {
    padding: 25px 5px;
    -webkit-transition: 0.2s ease-in;
    -o-transition: 0.2s ease-in;
    transition: 0.2s ease-in;
    border-bottom: 2px solid transparent
}

.hdr-nav-bar .navbar .navbar-nav>li.active>a,
.hdr-nav-bar .navbar .navbar-nav>li:hover>a,
.hdr-nav-bar .navbar .navbar-nav>li>a:focus {
    border-color: #398bf7
}

.hdr-nav-bar .navbar .navbar-nav .dropdown-toggle:after {
    display: none
}

.hdr-nav-bar .navbar .navbar-brand {
    padding: 20px 5px
}

.hdr-nav-bar .navbar .navbar-toggler {
    border: 0px;
    cursor: pointer
}

.hdr-nav-bar .navbar .custom-select {
    border-radius: 60px;
    font-size: 14px;
    padding: .375rem 40px .375rem 18px
}

.hdr-nav-bar .navbar .call-to-act {
    padding: 15px 0
}
 .label-underline {
    position: relative;
    font-weight: 600;
    font-size: 0.95rem;
    color: #374151;
    display: inline-block;
    padding-bottom: 4px;
  }

  .label-underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, #009FE0, #A8353A);
    border-radius: 4px;
    transition: width 0.3s ease;
  }

  .label-underline:hover::after {
    width: 100%;
  }

.page-titles {
    background: #fff;
    margin: -25px;
    margin-bottom: 25px;
    padding: 15px 25px ;
    box-shadow: 1px 0 5px rgba(0,0,0,.1);
}

.page-titles h1 ,
.page-titles h2 ,
.page-titles h3 ,
.page-titles h4 ,
.page-titles h5  {
    margin-bottom: 0px;
    margin-top: 0px ;
    font-size: 18px;
}
.page-titles i {
    margin-right: 20px;
}
.page-titles .breadcrumb {
    padding: 0px;
    margin-bottom: 0px;
    background: transparent;
    font-size: 14px
}

.page-titles .breadcrumb li {
    margin-top: 0px;
    margin-bottom: 0px
}

.page-titles .breadcrumb .breadcrumb-item+.breadcrumb-item:before {
    content: "\e649";
    font-family: themify;
    color: #a6b7bf;
    font-size: 11px
}

.page-titles .breadcrumb .breadcrumb-item.active {
    color: #99abb4
}

.p-relative {
    position: relative
}

.lstick {
    width: 2px;
    background: #398bf7;
    height: 30px;
    margin-left: -20px;
    margin-right: 18px;
    display: inline-block;
    vertical-align: middle
}

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg)
    }
    to {
        -webkit-transform: rotate(360deg)
    }
}

@-moz-keyframes rotate {
    0% {
        -moz-transform: rotate(0deg)
    }
    to {
        -moz-transform: rotate(360deg)
    }
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

.right-side-toggle {
    position: relative
}

.right-side-toggle i {
    -webkit-transition-property: -webkit-transform;
    -webkit-transition-duration: 1s;
    -moz-transition-property: -moz-transform;
    -moz-transition-duration: 1s;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -o-transition-duration: 1s;
    transition-duration: 1s;
    -webkit-animation-name: rotate;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: rotate;
    -moz-animation-duration: 2s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    animation-name: rotate;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    position: absolute;
    top: 18px;
    left: 18px
}

.right-sidebar {
    position: fixed;
    right: -250px;
    width: 250px;
    display: none;
    z-index: 1100;
    background: #ffffff;
    top: 0px;
    padding-bottom: 20px;
    height: 100%;
    -webkit-box-shadow: 5px 1px 40px rgba(0, 0, 0, 0.1);
    box-shadow: 5px 1px 40px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease
}

.right-sidebar .rpanel-title {
    display: block;
    padding: 24px 20px;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 15px;
    background: #398bf7
}

.right-sidebar .rpanel-title span {
    float: right;
    cursor: pointer;
    font-size: 11px
}

.right-sidebar .rpanel-title span:hover {
    color: #ffffff
}

.right-sidebar .r-panel-body {
    padding: 20px
}

.right-sidebar .r-panel-body ul {
    margin: 0px;
    padding: 0px
}

.right-sidebar .r-panel-body ul li {
    list-style: none;
    padding: 5px 0
}

.shw-rside {
    right: 0px;
    width: 250px;
    display: block
}

.chatonline img {
    margin-right: 10px;
    float: left;
    width: 30px
}

.chatonline li a {
    padding: 13px 0;
    float: left;
    width: 100%
}

.chatonline li a span {
    color: #67757c
}

.chatonline li a span small {
    display: block;
    font-size: 10px
}

ul#themecolors {
    display: block
}

ul#themecolors li {
    display: inline-block
}

ul#themecolors li:first-child {
    display: block
}

ul#themecolors li a {
    width: 50px;
    height: 50px;
    display: inline-block;
    margin: 5px;
    color: transparent;
    position: relative
}

ul#themecolors li a.working:before {
    content: "\f00c";
    font-family: 'Poppins,Helvetica,sans-serif';
    font-weight: 900;
    font-size: 18px;
    line-height: 50px;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 0;
    left: 0;
    color: #ffffff;
    text-align: center
}

.default-theme {
    background: #99abb4
}

.green-theme {
    background: #06d79c
}

.yellow-theme {
    background: #ffb22b
}

.red-theme {
    background: #f64e60
}

.blue-theme {
    background: #398bf7
}

.purple-theme {
    background: #7460ee
}

.megna-theme {
    background: #56c0d8
}

.default-dark-theme {
    background: #263238;
    background: -moz-linear-gradient(left, #263238 0%, #263238 23%, #99abb4 23%, #99abb4 99%);
    background: -webkit-linear-gradient(left, #263238 0%, #263238 23%, #99abb4 23%, #99abb4 99%);
    background: -webkit-gradient(linear, left top, right top, from(#263238), color-stop(23%, #263238), color-stop(23%, #99abb4), color-stop(99%, #99abb4));
    background: -o-linear-gradient(left, #263238 0%, #263238 23%, #99abb4 23%, #99abb4 99%);
    background: linear-gradient(to right, #263238 0%, #263238 23%, #99abb4 23%, #99abb4 99%)
}

.green-dark-theme {
    background: #263238;
    background: -moz-linear-gradient(left, #263238 0%, #263238 23%, #06d79c 23%, #06d79c 99%);
    background: -webkit-linear-gradient(left, #263238 0%, #263238 23%, #00c292 23%, #06d79c 99%);
    background: -webkit-gradient(linear, left top, right top, from(#263238), color-stop(23%, #263238), color-stop(23%, #06d79c), color-stop(99%, #06d79c));
    background: -webkit-linear-gradient(left, #263238 0%, #263238 23%, #06d79c 23%, #06d79c 99%);
    background: -o-linear-gradient(left, #263238 0%, #263238 23%, #06d79c 23%, #06d79c 99%);
    background: linear-gradient(to right, #263238 0%, #263238 23%, #06d79c 23%, #06d79c 99%)
}

.yellow-dark-theme {
    background: #263238;
    background: -moz-linear-gradient(left, #263238 0%, #263238 23%, #f64e60 23%, #f64e60 99%);
    background: -webkit-linear-gradient(left, #263238 0%, #263238 23%, #f64e60 23%, #f64e60 99%);
    background: -webkit-gradient(linear, left top, right top, from(#263238), color-stop(23%, #263238), color-stop(23%, #f64e60), color-stop(99%, #f64e60));
    background: -o-linear-gradient(left, #263238 0%, #263238 23%, #f64e60 23%, #f64e60 99%);
    background: linear-gradient(to right, #263238 0%, #263238 23%, #f64e60 23%, #f64e60 99%)
}

.blue-dark-theme {
    background: #263238;
    background: -moz-linear-gradient(left, #263238 0%, #263238 23%, #398bf7 23%, #398bf7 99%);
    background: -webkit-linear-gradient(left, #263238 0%, #263238 23%, #398bf7 23%, #398bf7 99%);
    background: -webkit-gradient(linear, left top, right top, from(#263238), color-stop(23%, #263238), color-stop(23%, #398bf7), color-stop(99%, #398bf7));
    background: -o-linear-gradient(left, #263238 0%, #263238 23%, #398bf7 23%, #398bf7 99%);
    background: linear-gradient(to right, #263238 0%, #263238 23%, #398bf7 23%, #398bf7 99%)
}

.purple-dark-theme {
    background: #263238;
    background: -moz-linear-gradient(left, #263238 0%, #263238 23%, #7460ee 23%, #7460ee 99%);
    background: -webkit-linear-gradient(left, #263238 0%, #263238 23%, #7460ee 23%, #7460ee 99%);
    background: -webkit-gradient(linear, left top, right top, from(#263238), color-stop(23%, #263238), color-stop(23%, #7460ee), color-stop(99%, #7460ee));
    background: -o-linear-gradient(left, #263238 0%, #263238 23%, #7460ee 23%, #7460ee 99%);
    background: linear-gradient(to right, #263238 0%, #263238 23%, #7460ee 23%, #7460ee 99%)
}

.megna-dark-theme {
    background: #263238;
    background: -moz-linear-gradient(left, #263238 0%, #263238 23%, #56c0d8 23%, #56c0d8 99%);
    background: -webkit-linear-gradient(left, #263238 0%, #263238 23%, #56c0d8 23%, #56c0d8 99%);
    background: -webkit-gradient(linear, left top, right top, from(#263238), color-stop(23%, #263238), color-stop(23%, #56c0d8), color-stop(99%, #56c0d8));
    background: -o-linear-gradient(left, #263238 0%, #263238 23%, #56c0d8 23%, #56c0d8 99%);
    background: linear-gradient(to right, #263238 0%, #263238 23%, #56c0d8 23%, #56c0d8 99%)
}

.red-dark-theme {
    background: #263238;
    background: -moz-linear-gradient(left, #263238 0%, #263238 23%, #f64e60 23%, #f64e60 99%);
    background: -webkit-linear-gradient(left, #263238 0%, #263238 23%, #f64e60 23%, #f64e60 99%);
    background: -webkit-gradient(linear, left top, right top, from(#263238), color-stop(23%, #263238), color-stop(23%, #f64e60), color-stop(99%, #f64e60));
    background: -o-linear-gradient(left, #263238 0%, #263238 23%, #f64e60 23%, #f64e60 99%);
    background: linear-gradient(to right, #263238 0%, #263238 23%, #f64e60 23%, #f64e60 99%)
}

.footer {
    bottom: 0;
    color: #67757c;
    left: 0px;
    padding: 17px 15px;
    position: absolute;
    right: 0;
    border-top: 1px solid rgba(120, 130, 140, 0.13);
    background: #ffffff
}

.slimScrollBar {
    z-index: 10 !important
}

.mega-dropdown {
    position: static;
    width: 100%
}

.mega-dropdown .dropdown-menu {
    width: 100%;
    padding: 30px;
    margin-top: 0px
}

.mega-dropdown ul {
    padding: 0px
}

.mega-dropdown ul li {
    list-style: none
}

.mega-dropdown .carousel-item .container {
    padding: 0px
}

.mega-dropdown .nav-accordion .card {
    margin-bottom: 1px
}

.mega-dropdown .nav-accordion .card-header {
    background: #ffffff
}

.mega-dropdown .nav-accordion .card-header h5 {
    margin: 0px
}

.mega-dropdown .nav-accordion .card-header h5 a {
    text-decoration: none;
    color: #67757c
}

.waves-effect {
    position: relative;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    vertical-align: middle;
    z-index: 1;
    will-change: opacity, transform;
    -webkit-transition: all 0.1s ease-out;
    -moz-transition: all 0.1s ease-out;
    -o-transition: all 0.1s ease-out;
    -ms-transition: all 0.1s ease-out;
    transition: all 0.1s ease-out
}

.waves-effect .waves-ripple {
    position: absolute;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    margin-left: -10px;
    opacity: 0;
    background: rgba(0, 0, 0, 0.2);
    -webkit-transition: all 0.7s ease-out;
    -moz-transition: all 0.7s ease-out;
    -o-transition: all 0.7s ease-out;
    -ms-transition: all 0.7s ease-out;
    transition: all 0.7s ease-out;
    -webkit-transition-property: -webkit-transform, opacity;
    -moz-transition-property: -moz-transform, opacity;
    -o-transition-property: -o-transform, opacity;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    -o-transition-property: transform, opacity;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    pointer-events: none
}

.waves-effect.waves-light .waves-ripple {
    background-color: rgba(255, 255, 255, 0.45)
}

.waves-effect.waves-red .waves-ripple {
    background-color: rgba(244, 67, 54, 0.7)
}

.waves-effect.waves-yellow .waves-ripple {
    background-color: rgba(255, 235, 59, 0.7)
}

.waves-effect.waves-orange .waves-ripple {
    background-color: rgba(255, 152, 0, 0.7)
}

.waves-effect.waves-purple .waves-ripple {
    background-color: rgba(156, 39, 176, 0.7)
}

.waves-effect.waves-green .waves-ripple {
    background-color: rgba(76, 175, 80, 0.7)
}

.waves-effect.waves-teal .waves-ripple {
    background-color: rgba(0, 150, 136, 0.7)
}

html body .waves-notransition {
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    -ms-transition: none;
    transition: none
}

.waves-circle {
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    text-align: center;
    width: 2.5em;
    height: 2.5em;
    line-height: 2.5em;
    border-radius: 50%;
    -webkit-mask-image: none
}

.waves-input-wrapper {
    border-radius: 0.2em;
    vertical-align: bottom
}

.waves-input-wrapper .waves-button-input {
    position: relative;
    top: 0;
    left: 0;
    z-index: 1
}

.waves-block {
    display: block
}

ul.list-inline li {
    display: inline-block;
    padding: 0 8px
}

.vm.table td,
.vm.table th {
    vertical-align: middle
}

.no-th-brd.table th {
    border: 0px
}

.table.no-border tbody td {
    border: 0px
}

.calendar-events {
    padding: 8px 10px;
    border: 1px solid #ffffff;
    cursor: move
}

.calendar-events:hover {
    border: 1px dashed rgba(120, 130, 140, 0.13)
}

.calendar-events i {
    margin-right: 8px
}

.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -ms-overflow-style: -ms-autohiding-scrollbar
}

.table-responsive-analy{
    display: block;
    width: 100%;
    overflow-x: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar
}

.single-column .left-sidebar {
    display: none
}

.single-column .page-wrapper {
    margin-left: 0px !important
}

.customtab li a.nav-link,
.profile-tab li a.nav-link {
    border: 0px;
    padding: 15px 20px;
    color: #67757c
}

.customtab li a.nav-link.active,
.profile-tab li a.nav-link.active {
    border-bottom: 2px solid #398bf7;
    color: #398bf7
}

.customtab li a.nav-link:hover,
.profile-tab li a.nav-link:hover {
    color: #398bf7
}

html body .flotTip,
html body .jqstooltip {
    width: auto !important;
    height: auto !important;
    background: #263238;
    color: #ffffff;
    padding: 5px 10px
}

body .jqstooltip {
    border-color: transparent;
    border-radius: 60px
}

.jq-icon-info {
    background-color: #398bf7;
    color: #ffffff
}

.jq-icon-success {
    background-color: #06d79c;
    color: #ffffff
}

.jq-icon-error {
    background-color: #f64e60;
    color: #ffffff
}

.jq-icon-warning {
    background-color: #ffb22b;
    color: #ffffff
}

.form-control-line .form-control {
    -webkit-box-shadow: none;
    box-shadow: none
}

.table-responsive>.table-bordered {
    border: 1px solid rgba(120, 130, 140, 0.13)
}

.pagination>li:first-child>a,
.pagination>li:first-child>span {
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px
}

.pagination>li:last-child>a,
.pagination>li:last-child>span {
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px
}

.pagination>li>a,
.pagination>li>span {
    color: #263238
}

.pagination>li>a:focus,
.pagination>li>a:hover,
.pagination>li>span:focus,
.pagination>li>span:hover {
    background-color: #e9edf2
}

.pagination-split li {
    margin-left: 5px;
    display: inline-block;
    float: left
}

.pagination-split li:first-child {
    margin-left: 0
}

.pagination-split li a {
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px
}

.pagination>.active>a,
.pagination>.active>a:focus,
.pagination>.active>a:hover,
.pagination>.active>span,
.pagination>.active>span:focus,
.pagination>.active>span:hover {
    background-color: #398bf7;
    border-color: #398bf7
}

.pager li>a,
.pager li>span {
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    color: #263238
}

.pagination-circle li.active a {
    background: #06d79c
}

.pagination-circle li a {
    width: 40px;
    height: 40px;
    background: #e9edf2;
    border: 0px;
    text-align: center;
    border-radius: 100%
}

.pagination-circle li a:first-child,
.pagination-circle li a:last-child {
    border-radius: 100%
}

.pagination-circle li a:hover {
    background: #06d79c;
    color: #ffffff
}

.pagination-circle li.disabled a {
    background: #e9edf2;
    color: rgba(120, 130, 140, 0.13)
}

.btn {
    padding: 7px 12px;
    cursor: pointer
}

.btn-group label {
    color: #ffffff !important;
    margin-bottom: 0px
}

.btn-group label.btn-secondary {
    color: #67757c !important
}

.btn-lg {
    padding: .75rem 1.5rem;
    font-size: 1.25rem
}

.btn-md {
    padding: 12px 55px;
    font-size: 16px
}

.btn-circle {
    border-radius: 100%;
    width: 40px;
    height: 40px;
    padding: 10px
}

.btn-circle.btn-sm {
    width: 35px;
    height: 35px;
    padding: 8px 10px;
    font-size: 14px
}

.btn-circle.btn-lg {
    width: 50px;
    height: 50px;
    padding: 14px 15px;
    font-size: 18px;
    line-height: 23px
}

.btn-circle.btn-xl {
    width: 70px;
    height: 70px;
    padding: 14px 15px;
    font-size: 24px
}

.btn-sm {
    padding: .25rem .5rem;
    font-size: 12px;
    color: white;
}
.light-mode .btn-sm {
    color: #101011;
}

.btn-xs {
    padding: .25rem .5rem;
    font-size: 10px
}

.button-list a,
.button-list button {
    margin: 5px 12px 5px 0
}

.btn-outline {
    color: inherit;
    background-color: transparent;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.btn-rounded {
    border-radius: 60px;
    padding: 7px 18px
}

.btn-rounded.btn-lg {
    padding: .75rem 1.5rem
}

.btn-rounded.btn-sm {
    padding: .25rem .5rem;
    font-size: 12px
}

.btn-rounded.btn-xs {
    padding: .25rem .5rem;
    font-size: 10px
}

.btn-rounded.btn-md {
    padding: 12px 35px;
    font-size: 16px
}

.btn-secondary,
.btn-secondary.disabled {
    -webkit-box-shadow: 0 2px 2px 0 rgba(169, 169, 169, 0.14), 0 3px 1px -2px rgba(169, 169, 169, 0.2), 0 1px 5px 0 rgba(169, 169, 169, 0.12);
    box-shadow: 0 2px 2px 0 rgba(169, 169, 169, 0.14), 0 3px 1px -2px rgba(169, 169, 169, 0.2), 0 1px 5px 0 rgba(169, 169, 169, 0.12);
    -webkit-transition: 0.2s ease-in;
    -o-transition: 0.2s ease-in;
    transition: 0.2s ease-in;
    background-color: #ffffff;
    color: #67757c;
    border-color: #cccccc
}

.btn-secondary.disabled:hover,
.btn-secondary:hover {
    -webkit-box-shadow: 0 14px 26px -12px rgba(169, 169, 169, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(169, 169, 169, 0.2);
    box-shadow: 0 14px 26px -12px rgba(169, 169, 169, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(169, 169, 169, 0.2);
    color: #ffffff !important
}

.btn-secondary.active,
.btn-secondary.disabled.active,
.btn-secondary.disabled:active,
.btn-secondary.disabled:focus,
.btn-secondary:active,
.btn-secondary:focus {
    -webkit-box-shadow: 0 14px 26px -12px rgba(169, 169, 169, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(169, 169, 169, 0.2);
    box-shadow: 0 14px 26px -12px rgba(169, 169, 169, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(169, 169, 169, 0.2);
    color: #ffffff !important;
    background: #263238;
    border-color: #263238
}

.btn-secondary.disabled:active,
.btn-secondary.disabled:focus,
.btn-secondary.disabled:hover {
    color: #67757c !important;
    background-color: #ffffff;
    border-color: #cccccc;
    cursor: default
}

.btn-primary,
.btn-primary.disabled {
    background: #8950fc;
    border: 1px solid #8950fc;
    -webkit-box-shadow: 0 2px 2px 0 rgba(116, 96, 238, 0.14), 0 3px 1px -2px rgba(116, 96, 238, 0.2), 0 1px 5px 0 rgba(116, 96, 238, 0.12);
    box-shadow: 0 2px 2px 0 rgba(116, 96, 238, 0.14), 0 3px 1px -2px rgba(116, 96, 238, 0.2), 0 1px 5px 0 rgba(116, 96, 238, 0.12);
    -webkit-transition: 0.2s ease-in;
    -o-transition: 0.2s ease-in;
    transition: 0.2s ease-in
}

.btn-primary.disabled:hover,
.btn-primary:hover {
    background: #8950fc;
    -webkit-box-shadow: 0 14px 26px -12px rgba(116, 96, 238, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(116, 96, 238, 0.2);
    box-shadow: 0 14px 26px -12px rgba(116, 96, 238, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(116, 96, 238, 0.2);
    border: 1px solid #8950fc
}

.btn-primary.active,
.btn-primary.disabled.active,
.btn-primary.disabled:active,
.btn-primary.disabled:focus,
.btn-primary:active,
.btn-primary:focus {
    background: #6352ce;
    -webkit-box-shadow: 0 14px 26px -12px rgba(116, 96, 238, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(116, 96, 238, 0.2);
    box-shadow: 0 14px 26px -12px rgba(116, 96, 238, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(116, 96, 238, 0.2);
    border-color: transparent
}

.btn-themecolor,
.btn-themecolor.disabled {
    background: #398bf7;
    color: #ffffff;
    border: 1px solid #398bf7
}

.btn-themecolor.disabled:hover,
.btn-themecolor:hover {
    background: #398bf7;
    opacity: 0.7;
    border: 1px solid #398bf7
}

.btn-themecolor.active,
.btn-themecolor.disabled.active,
.btn-themecolor.disabled:active,
.btn-themecolor.disabled:focus,
.btn-themecolor:active,
.btn-themecolor:focus {
    background: #028ee1
}

.btn-success,
.btn-success.disabled {
    background: #06d79c;
    border: 1px solid #06d79c;
    -webkit-box-shadow: 0 2px 2px 0 rgba(40, 190, 189, 0.14), 0 3px 1px -2px rgba(40, 190, 189, 0.2), 0 1px 5px 0 rgba(40, 190, 189, 0.12);
    box-shadow: 0 2px 2px 0 rgba(40, 190, 189, 0.14), 0 3px 1px -2px rgba(40, 190, 189, 0.2), 0 1px 5px 0 rgba(40, 190, 189, 0.12);
    -webkit-transition: 0.2s ease-in;
    -o-transition: 0.2s ease-in;
    transition: 0.2s ease-in
}

.btn-success.disabled:hover,
.btn-success:hover {
    background: #06d79c;
    -webkit-box-shadow: 0 14px 26px -12px rgba(40, 190, 189, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(40, 190, 189, 0.2);
    box-shadow: 0 14px 26px -12px rgba(40, 190, 189, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(40, 190, 189, 0.2);
    border: 1px solid #06d79c
}

.btn-success.active,
.btn-success.disabled.active,
.btn-success.disabled:active,
.btn-success.disabled:focus,
.btn-success:active,
.btn-success:focus {
    background: #1bc5bd;
    -webkit-box-shadow: 0 14px 26px -12px rgba(40, 190, 189, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(40, 190, 189, 0.2);
    box-shadow: 0 14px 26px -12px rgba(40, 190, 189, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(40, 190, 189, 0.2);
    border-color: transparent
}

.btn-info,
.btn-info.disabled {
    background: #398bf7;
    border: 1px solid #398bf7;
    -webkit-box-shadow: 0 2px 2px 0 rgba(66, 165, 245, 0.14), 0 3px 1px -2px rgba(66, 165, 245, 0.2), 0 1px 5px 0 rgba(66, 165, 245, 0.12);
    box-shadow: 0 2px 2px 0 rgba(66, 165, 245, 0.14), 0 3px 1px -2px rgba(66, 165, 245, 0.2), 0 1px 5px 0 rgba(66, 165, 245, 0.12);
    -webkit-transition: 0.2s ease-in;
    -o-transition: 0.2s ease-in;
    transition: 0.2s ease-in
}

.btn-info.disabled:hover,
.btn-info:hover {
    background: #398bf7;
    border: 1px solid #398bf7;
    -webkit-box-shadow: 0 14px 26px -12px rgba(23, 105, 255, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(23, 105, 255, 0.2);
    box-shadow: 0 14px 26px -12px rgba(23, 105, 255, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(23, 105, 255, 0.2)
}

.btn-info.active,
.btn-info.disabled.active,
.btn-info.disabled:active,
.btn-info.disabled:focus,
.btn-info:active,
.btn-info:focus {
    background: #028ee1;
    -webkit-box-shadow: 0 14px 26px -12px rgba(23, 105, 255, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(23, 105, 255, 0.2);
    box-shadow: 0 14px 26px -12px rgba(23, 105, 255, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(23, 105, 255, 0.2);
    border-color: transparent
}

.btn-warning,
.btn-warning.disabled {
    background: #ffb22b;
    color: #ffffff;
    -webkit-box-shadow: 0 2px 2px 0 rgba(248, 194, 0, 0.14), 0 3px 1px -2px rgba(248, 194, 0, 0.2), 0 1px 5px 0 rgba(248, 194, 0, 0.12);
    box-shadow: 0 2px 2px 0 rgba(248, 194, 0, 0.14), 0 3px 1px -2px rgba(248, 194, 0, 0.2), 0 1px 5px 0 rgba(248, 194, 0, 0.12);
    border: 1px solid #ffb22b;
    -webkit-transition: 0.2s ease-in;
    -o-transition: 0.2s ease-in;
    transition: 0.2s ease-in
}

.btn-warning.disabled:hover,
.btn-warning:hover {
    background: #ffb22b;
    color: #ffffff;
    -webkit-box-shadow: 0 14px 26px -12px rgba(248, 194, 0, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(248, 194, 0, 0.2);
    box-shadow: 0 14px 26px -12px rgba(248, 194, 0, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(248, 194, 0, 0.2);
    border: 1px solid #ffb22b
}

.btn-warning.active,
.btn-warning.disabled.active,
.btn-warning.disabled:active,
.btn-warning.disabled:focus,
.btn-warning:active,
.btn-warning:focus {
    background: #e9ab2e;
    color: #ffffff;
    -webkit-box-shadow: 0 14px 26px -12px rgba(248, 194, 0, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(248, 194, 0, 0.2);
    box-shadow: 0 14px 26px -12px rgba(248, 194, 0, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(248, 194, 0, 0.2);
    border-color: transparent
}

.btn-danger,
.btn-danger.disabled {
    background: #f64e60;
    border: 1px solid #f64e60;
    -webkit-box-shadow: 0 2px 2px 0 rgba(239, 83, 80, 0.14), 0 3px 1px -2px rgba(239, 83, 80, 0.2), 0 1px 5px 0 rgba(239, 83, 80, 0.12);
    box-shadow: 0 2px 2px 0 rgba(239, 83, 80, 0.14), 0 3px 1px -2px rgba(239, 83, 80, 0.2), 0 1px 5px 0 rgba(239, 83, 80, 0.12);
    -webkit-transition: 0.2s ease-in;
    -o-transition: 0.2s ease-in;
    transition: 0.2s ease-in
}

.btn-danger.disabled:hover,
.btn-danger:hover {
    background: #f64e60;
    -webkit-box-shadow: 0 14px 26px -12px rgba(239, 83, 80, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(239, 83, 80, 0.2);
    box-shadow: 0 14px 26px -12px rgba(239, 83, 80, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(239, 83, 80, 0.2);
    border: 1px solid #f64e60
}

.btn-danger.active,
.btn-danger.disabled.active,
.btn-danger.disabled:active,
.btn-danger.disabled:focus,
.btn-danger:active,
.btn-danger:focus {
    background: #e6294b;
    -webkit-box-shadow: 0 14px 26px -12px rgba(239, 83, 80, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(239, 83, 80, 0.2);
    box-shadow: 0 14px 26px -12px rgba(239, 83, 80, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(239, 83, 80, 0.2);
    border-color: transparent
}

.btn-inverse,
.btn-inverse.disabled {
    background: #2f3d4a;
    border: 1px solid #2f3d4a;
    color: #ffffff
}

.btn-inverse.disabled:hover,
.btn-inverse:hover {
    background: #2f3d4a;
    opacity: 0.7;
    color: #ffffff;
    border: 1px solid #2f3d4a
}

.btn-inverse.active,
.btn-inverse.disabled.active,
.btn-inverse.disabled:active,
.btn-inverse.disabled:focus,
.btn-inverse:active,
.btn-inverse:focus {
    background: #232a37;
    color: #ffffff
}

.btn-default,
.btn-default.disabled {
    background: #f9f9f9;
    border: 1px solid #eee;
    color: #333
}

.btn-default.disabled:hover,
.btn-default:hover {
    opacity: 0.7;
    border: 1px solid #eee;
    background: #f9f9f9
}

.btn-default.active,
.btn-default.disabled.active,
.btn-default.disabled:active,
.btn-default.disabled:focus,
.btn-default:active,
.btn-default:focus {
    background: #f9f9f9
}

.btn-red,
.btn-red.disabled {
    background: #fb3a3a;
    border: 1px solid #fb3a3a;
    color: #ffffff
}

.btn-red.disabled:hover,
.btn-red:hover {
    opacity: 0.7;
    border: 1px solid #fb3a3a;
    background: #fb3a3a
}

.btn-red.active,
.btn-red.disabled.active,
.btn-red.disabled:active,
.btn-red.disabled:focus,
.btn-red:active,
.btn-red:focus {
    background: #e6294b
}

.btn-outline-secondary {
    background-color: #ffffff;
    -webkit-box-shadow: 0 2px 2px 0 rgba(169, 169, 169, 0.14), 0 3px 1px -2px rgba(169, 169, 169, 0.2), 0 1px 5px 0 rgba(169, 169, 169, 0.12);
    box-shadow: 0 2px 2px 0 rgba(169, 169, 169, 0.14), 0 3px 1px -2px rgba(169, 169, 169, 0.2), 0 1px 5px 0 rgba(169, 169, 169, 0.12);
    -webkit-transition: 0.2s ease-in;
    -o-transition: 0.2s ease-in;
    transition: 0.2s ease-in;
    border-color: #cccccc
}

.btn-outline-secondary.focus,
.btn-outline-secondary:focus,
.btn-outline-secondary:hover {
    -webkit-box-shadow: 0 14px 26px -12px rgba(169, 169, 169, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(169, 169, 169, 0.2);
    box-shadow: 0 14px 26px -12px rgba(169, 169, 169, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(169, 169, 169, 0.2)
}

.btn-outline-secondary.active,
.btn-outline-secondary:active,
.btn-outline-secondary:focus {
    -webkit-box-shadow: 0 14px 26px -12px rgba(169, 169, 169, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(169, 169, 169, 0.2);
    box-shadow: 0 14px 26px -12px rgba(169, 169, 169, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(169, 169, 169, 0.2)
}

.btn-outline-primary {
    color: #8950fc;
    background-color: #8950fc;
    border-color: #ffffff;
    -webkit-box-shadow: 0 2px 2px 0 rgba(116, 96, 238, 0.14), 0 3px 1px -2px rgba(116, 96, 238, 0.2), 0 1px 5px 0 rgba(116, 96, 238, 0.12);
    box-shadow: 0 2px 2px 0 rgba(116, 96, 238, 0.14), 0 3px 1px -2px rgba(116, 96, 238, 0.2), 0 1px 5px 0 rgba(116, 96, 238, 0.12);
    -webkit-transition: 0.2s ease-in;
    -o-transition: 0.2s ease-in;
    transition: 0.2s ease-in
}

.btn-outline-primary.focus,
.btn-outline-primary:focus,
.btn-outline-primary:hover {
    background: #8950fc;
    -webkit-box-shadow: 0 14px 26px -12px rgba(116, 96, 238, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(116, 96, 238, 0.2);
    box-shadow: 0 14px 26px -12px rgba(116, 96, 238, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(116, 96, 238, 0.2);
    color: #ffffff;
    border-color: #8950fc
}

.btn-outline-primary.active,
.btn-outline-primary:active,
.btn-outline-primary:focus {
    -webkit-box-shadow: 0 14px 26px -12px rgba(116, 96, 238, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(116, 96, 238, 0.2);
    box-shadow: 0 14px 26px -12px rgba(116, 96, 238, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(116, 96, 238, 0.2);
    background-color: #6352ce;
    border-color: #6352ce
}

.btn-outline-success {
    color: #06d79c;
    background-color: transparent;
    border-color: #06d79c;
    -webkit-box-shadow: 0 2px 2px 0 rgba(40, 190, 189, 0.14), 0 3px 1px -2px rgba(40, 190, 189, 0.2), 0 1px 5px 0 rgba(40, 190, 189, 0.12);
    box-shadow: 0 2px 2px 0 rgba(40, 190, 189, 0.14), 0 3px 1px -2px rgba(40, 190, 189, 0.2), 0 1px 5px 0 rgba(40, 190, 189, 0.12);
    -webkit-transition: 0.2s ease-in;
    -o-transition: 0.2s ease-in;
    transition: 0.2s ease-in
}

.btn-outline-success.focus,
.btn-outline-success:focus,
.btn-outline-success:hover {
    background: #06d79c;
    border-color: #06d79c;
    color: #ffffff;
    -webkit-box-shadow: 0 14px 26px -12px rgba(40, 190, 189, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(40, 190, 189, 0.2);
    box-shadow: 0 14px 26px -12px rgba(40, 190, 189, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(40, 190, 189, 0.2)
}

.btn-outline-success.active,
.btn-outline-success:active,
.btn-outline-success:focus {
    -webkit-box-shadow: 0 14px 26px -12px rgba(40, 190, 189, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(40, 190, 189, 0.2);
    box-shadow: 0 14px 26px -12px rgba(40, 190, 189, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(40, 190, 189, 0.2);
    background-color: #1bc5bd;
    border-color: #1bc5bd
}

.btn-outline-info {
    color: #398bf7;
    background-color: transparent;
    border-color: #398bf7;
    -webkit-box-shadow: 0 2px 2px 0 rgba(66, 165, 245, 0.14), 0 3px 1px -2px rgba(66, 165, 245, 0.2), 0 1px 5px 0 rgba(66, 165, 245, 0.12);
    box-shadow: 0 2px 2px 0 rgba(66, 165, 245, 0.14), 0 3px 1px -2px rgba(66, 165, 245, 0.2), 0 1px 5px 0 rgba(66, 165, 245, 0.12);
    -webkit-transition: 0.2s ease-in;
    -o-transition: 0.2s ease-in;
    transition: 0.2s ease-in
}

.btn-outline-info.focus,
.btn-outline-info:focus,
.btn-outline-info:hover {
    background: #398bf7;
    border-color: #398bf7;
    color: #ffffff;
    -webkit-box-shadow: 0 14px 26px -12px rgba(23, 105, 255, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(23, 105, 255, 0.2);
    box-shadow: 0 14px 26px -12px rgba(23, 105, 255, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(23, 105, 255, 0.2)
}

.btn-outline-info.active,
.btn-outline-info:active,
.btn-outline-info:focus {
    -webkit-box-shadow: 0 14px 26px -12px rgba(23, 105, 255, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(23, 105, 255, 0.2);
    box-shadow: 0 14px 26px -12px rgba(23, 105, 255, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(23, 105, 255, 0.2);
    background-color: #028ee1;
    border-color: #028ee1
}

.btn-outline-warning {
    color: #ffb22b;
    background-color: transparent;
    border-color: #ffb22b;
    -webkit-box-shadow: 0 2px 2px 0 rgba(248, 194, 0, 0.14), 0 3px 1px -2px rgba(248, 194, 0, 0.2), 0 1px 5px 0 rgba(248, 194, 0, 0.12);
    box-shadow: 0 2px 2px 0 rgba(248, 194, 0, 0.14), 0 3px 1px -2px rgba(248, 194, 0, 0.2), 0 1px 5px 0 rgba(248, 194, 0, 0.12);
    -webkit-transition: 0.2s ease-in;
    -o-transition: 0.2s ease-in;
    transition: 0.2s ease-in
}

.btn-outline-warning.focus,
.btn-outline-warning:focus,
.btn-outline-warning:hover {
    background: #ffb22b;
    border-color: #ffb22b;
    color: #ffffff;
    -webkit-box-shadow: 0 14px 26px -12px rgba(248, 194, 0, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(248, 194, 0, 0.2);
    box-shadow: 0 14px 26px -12px rgba(248, 194, 0, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(248, 194, 0, 0.2)
}

.btn-outline-warning.active,
.btn-outline-warning:active,
.btn-outline-warning:focus {
    -webkit-box-shadow: 0 14px 26px -12px rgba(248, 194, 0, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(248, 194, 0, 0.2);
    box-shadow: 0 14px 26px -12px rgba(248, 194, 0, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(248, 194, 0, 0.2);
    background-color: #e9ab2e;
    border-color: #e9ab2e
}

.btn-outline-danger {
    color: #f64e60;
    background-color: transparent;
    border-color: #f64e60;
    -webkit-box-shadow: 0 2px 2px 0 rgba(239, 83, 80, 0.14), 0 3px 1px -2px rgba(239, 83, 80, 0.2), 0 1px 5px 0 rgba(239, 83, 80, 0.12);
    box-shadow: 0 2px 2px 0 rgba(239, 83, 80, 0.14), 0 3px 1px -2px rgba(239, 83, 80, 0.2), 0 1px 5px 0 rgba(239, 83, 80, 0.12);
    -webkit-transition: 0.2s ease-in;
    -o-transition: 0.2s ease-in;
    transition: 0.2s ease-in
}

.btn-outline-danger.focus,
.btn-outline-danger:focus,
.btn-outline-danger:hover {
    background: #f64e60;
    border-color: #f64e60;
    color: #ffffff;
    -webkit-box-shadow: 0 14px 26px -12px rgba(239, 83, 80, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(239, 83, 80, 0.2);
    box-shadow: 0 14px 26px -12px rgba(239, 83, 80, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(239, 83, 80, 0.2)
}

.btn-outline-danger.active,
.btn-outline-danger:active,
.btn-outline-danger:focus {
    -webkit-box-shadow: 0 14px 26px -12px rgba(239, 83, 80, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(239, 83, 80, 0.2);
    box-shadow: 0 14px 26px -12px rgba(239, 83, 80, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(239, 83, 80, 0.2);
    background-color: #e6294b
}

.btn-outline-red {
    color: #fb3a3a;
    background-color: transparent;
    border-color: #fb3a3a
}

.btn-outline-red.focus,
.btn-outline-red:focus,
.btn-outline-red:hover {
    background: #fb3a3a;
    border-color: #fb3a3a;
    color: #ffffff;
    -webkit-box-shadow: 0 14px 26px -12px rgba(239, 83, 80, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(239, 83, 80, 0.2);
    box-shadow: 0 14px 26px -12px rgba(239, 83, 80, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(239, 83, 80, 0.2)
}

.btn-outline-red.active,
.btn-outline-red:active,
.btn-outline-red:focus {
    -webkit-box-shadow: 0 14px 26px -12px rgba(239, 83, 80, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(239, 83, 80, 0.2);
    box-shadow: 0 14px 26px -12px rgba(239, 83, 80, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(239, 83, 80, 0.2);
    background-color: #d61f1f
}

.btn-outline-inverse {
    color: #2f3d4a;
    background-color: transparent;
    border-color: #2f3d4a
}

.btn-outline-inverse.focus,
.btn-outline-inverse:focus,
.btn-outline-inverse:hover {
    background: #2f3d4a;
    border-color: #2f3d4a;
    color: #ffffff
}

.btn-primary.active.focus,
.btn-primary.active:focus,
.btn-primary.active:hover,
.btn-primary.focus,
.btn-primary.focus:active,
.btn-primary:active:focus,
.btn-primary:active:hover,
.btn-primary:focus,
.open>.dropdown-toggle.btn-primary.focus,
.open>.dropdown-toggle.btn-primary:focus,
.open>.dropdown-toggle.btn-primary:hover,
.show>.btn-primary.dropdown-toggle {
    background-color: #6352ce;
    border: 1px solid #6352ce
}

.btn-success.active.focus,
.btn-success.active:focus,
.btn-success.active:hover,
.btn-success.focus,
.btn-success.focus:active,
.btn-success:active:focus,
.btn-success:active:hover,
.btn-success:focus,
.open>.dropdown-toggle.btn-success.focus,
.open>.dropdown-toggle.btn-success:focus,
.open>.dropdown-toggle.btn-success:hover,
.show>.btn-success.dropdown-toggle {
    background-color: #1bc5bd;
    border: 1px solid #1bc5bd
}

.btn-info.active.focus,
.btn-info.active:focus,
.btn-info.active:hover,
.btn-info.focus,
.btn-info.focus:active,
.btn-info:active:focus,
.btn-info:active:hover,
.btn-info:focus,
.open>.dropdown-toggle.btn-info.focus,
.open>.dropdown-toggle.btn-info:focus,
.open>.dropdown-toggle.btn-info:hover,
.show>.btn-info.dropdown-toggle {
    background-color: #028ee1;
    border: 1px solid #028ee1
}

.btn-warning.active.focus,
.btn-warning.active:focus,
.btn-warning.active:hover,
.btn-warning.focus,
.btn-warning.focus:active,
.btn-warning:active:focus,
.btn-warning:active:hover,
.btn-warning:focus,
.open>.dropdown-toggle.btn-warning.focus,
.open>.dropdown-toggle.btn-warning:focus,
.open>.dropdown-toggle.btn-warning:hover,
.show>.btn-warning.dropdown-toggle {
    background-color: #e9ab2e;
    border: 1px solid #e9ab2e
}

.btn-danger.active.focus,
.btn-danger.active:focus,
.btn-danger.active:hover,
.btn-danger.focus,
.btn-danger.focus:active,
.btn-danger:active:focus,
.btn-danger:active:hover,
.btn-danger:focus,
.open>.dropdown-toggle.btn-danger.focus,
.open>.dropdown-toggle.btn-danger:focus,
.open>.dropdown-toggle.btn-danger:hover,
.show>.btn-danger.dropdown-toggle {
    background-color: #e6294b;
    border: 1px solid #e6294b
}

.btn-inverse.active,
.btn-inverse.focus,
.btn-inverse:active,
.btn-inverse:focus,
.btn-inverse:hover,
.btn-inverse:hover,
.open>.dropdown-toggle.btn-inverse {
    background-color: #232a37;
    border: 1px solid #232a37
}

.btn-secondary.active.focus,
.btn-secondary.active:focus,
.btn-secondary.active:hover,
.btn-secondary.focus,
.btn-secondary.focus:active,
.btn-secondary:active:focus,
.btn-secondary:active:hover,
.btn-secondary:focus,
.open>.dropdown-toggle.btn-secondary.focus,
.open>.dropdown-toggle.btn-secondary:focus,
.open>.dropdown-toggle.btn-secondary:hover,
.show>.btn-secondary.dropdown-toggle {
    color: #ffffff
}

.btn-red.active,
.btn-red.focus,
.btn-red:active,
.btn-red:focus,
.btn-red:hover,
.btn-red:hover,
.open>.dropdown-toggle.btn-red {
    background-color: #d61f1f;
    border: 1px solid #d61f1f;
    color: #ffffff
}

.button-box .btn {
    margin: 0 8px 8px 0px
}

.btn-label {
    background: rgba(0, 0, 0, 0.05);
    display: inline-block;
    margin: -6px 12px -6px -14px;
    padding: 7px 15px
}

.btn-facebook {
    color: #ffffff;
    background-color: #3b5998
}

.btn-facebook:hover {
    color: #ffffff
}

.btn-twitter {
    color: #ffffff;
    background-color: #55acee
}

.btn-twitter:hover {
    color: #ffffff
}

.btn-linkedin {
    color: #ffffff;
    background-color: #007bb6
}

.btn-linkedin:hover {
    color: #ffffff
}

.btn-dribbble {
    color: #ffffff;
    background-color: #ea4c89
}

.btn-dribbble:hover {
    color: #ffffff
}

.btn-googleplus {
    color: #ffffff;
    background-color: #dd4b39
}

.btn-googleplus:hover {
    color: #ffffff
}

.btn-instagram {
    color: #ffffff;
    background-color: #3f729b
}

.btn-pinterest {
    color: #ffffff;
    background-color: #cb2027
}

.btn-dropbox {
    color: #ffffff;
    background-color: #007ee5
}

.btn-flickr {
    color: #ffffff;
    background-color: #ff0084
}

.btn-tumblr {
    color: #ffffff;
    background-color: #32506d
}

.btn-skype {
    color: #ffffff;
    background-color: #00aff0
}

.btn-youtube {
    color: #ffffff;
    background-color: #bb0000
}

.btn-github {
    color: #ffffff;
    background-color: #171515
}

.button-group .btn {
    margin-bottom: 5px;
    margin-right: 5px
}

.no-button-group .btn {
    margin-bottom: 5px;
    margin-right: 0px
}

.btn .text-active {
    display: none
}

.btn.active .text-active {
    display: inline-block
}

.btn.active .text {
    display: none
}

.custom-select {
    background: url(../../assets/images/custom-select.png) right 0.75rem center no-repeat
}

textarea {
    resize: none
}

.form-control {
    color: #67757c;
    min-height: 38px;
    display: initial;
    font-size: 12px !important;
}

.form-control-sm {
    min-height: 20px ;
    font-size: 12px !important;
}

.form-control:disabled,
.form-control[readonly] {
    opacity: 0.7
}

.custom-control-input:focus~.custom-control-indicator {
    -webkit-box-shadow: none;
    box-shadow: none
}

.custom-control-input:checked~.custom-control-indicator {
    background-color: #06d79c
}

form label {
    font-weight: 400
}

.form-group {
    margin-bottom: 25px
}

.form-horizontal label {
    margin-bottom: 10px;
}

.form-control-static {
    padding-top: 0px
}

.form-bordered .form-group {
    border-bottom: 1px solid rgba(120, 130, 140, 0.13);
    padding-bottom: 20px
}

.dropzone {
    border: 1px dashed #b1b8bb
}

.dropzone .dz-message {
    padding: 5% 0;
    margin: 0px
}

.asColorPicker-dropdown {
    max-width: 250px
}

.asColorPicker-trigger {
    position: absolute;
    top: 0;
    right: -35px;
    height: 38px;
    width: 37px;
    border: 0
}

.asColorPicker-clear {
    display: none;
    position: absolute;
    top: 5px;
    right: 10px;
    text-decoration: none
}

table th {
    font-weight: 400
}

.daterangepicker td.active,
.daterangepicker td.active:hover {
    background-color: #398bf7
}

.datepicker table tr td.today,
.datepicker table tr td.today.disabled,
.datepicker table tr td.today.disabled:hover,
.datepicker table tr td.today:hover {
    background: #398bf7;
    color: #ffffff
}

.datepicker td,
.datepicker th {
    padding: 5px 10px
}

.note-icon-caret,
.note-popover {
    display: none
}

.note-editor.note-frame {
    border: 1px solid #b1b8bb
}

.note-editor.note-frame .panel-heading {
    padding: 6px 10px 10px;
    border-bottom: 1px solid rgba(120, 130, 140, 0.13)
}

.label {
    display: inline-block
}

.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    width: 100%
}

.bootstrap-select .dropdown-menu li a {
    display: block;
    padding: 7px 20px;
    clear: both;
    font-weight: 400;
    line-height: 1.42857143;
    color: #67757c;
    white-space: nowrap
}

.bootstrap-select .dropdown-menu li a:focus,
.bootstrap-select .dropdown-menu li a:hover {
    color: #398bf7;
    background: #e9edf2
}

.bootstrap-select .show>.dropdown-menu {
    display: block
}

.select2-container--default .select2-selection--single {
    border-color: #b1b8bb;
    height: 38px
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 38px
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 33px
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    float: right;
    color: #ffffff;
    margin-right: 0px;
    margin-left: 4px
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background: #398bf7;
    color: #ffffff;
    border-color: #398bf7
}

.input-form .btn {
    padding: 8px 12px
}

.form-material .form-group {
    overflow: hidden
}

.form-material .form-control {
    background-color: rgba(0, 0, 0, 0);
    background-position: center bottom, center calc(100% - 1px);
    background-repeat: no-repeat;
    background-size: 0 2px, 100% 1px;
    padding: 0;
    -webkit-transition: background 0s ease-out 0s;
    -o-transition: background 0s ease-out 0s;
    transition: background 0s ease-out 0s
}

.form-material .form-control,
.form-material .form-control.focus,
.form-material .form-control:focus {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#398bf7), to(#398bf7)), -webkit-gradient(linear, left top, left bottom, from(#e9edf2), to(#e9edf2));
    background-image: -webkit-linear-gradient(#398bf7, #398bf7), -webkit-linear-gradient(#e9edf2, #e9edf2);
    background-image: -o-linear-gradient(#398bf7, #398bf7), -o-linear-gradient(#e9edf2, #e9edf2);
    background-image: linear-gradient(#398bf7, #398bf7), linear-gradient(#e9edf2, #e9edf2);
    border: 0 none;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    float: none
}

.form-material .form-control.focus,
.form-material .form-control:focus {
    background-size: 100% 2px, 100% 1px;
    outline: 0 none;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s
}

.form-control-line .form-group {
    overflow: hidden
}

.form-control-line .form-control {
    border: 0px;
    border-radius: 0px;
    padding-left: 0px;
    border-bottom: 1px solid #f6f9ff
}

.form-control-line .form-control:focus {
    border-bottom: 1px solid #398bf7
}

.error .help-block {
    color: #fb3a3a
}

.fileupload {
    overflow: hidden;
    position: relative
}

.fileupload input.upload {
    cursor: pointer;
    filter: alpha(opacity=0);
    font-size: 20px;
    margin: 0;
    opacity: 0;
    padding: 0;
    position: absolute;
    right: 0;
    top: 0
}

[type=radio]:checked,
[type=radio]:not(:checked) {
    position: absolute;
    left: -9999px;
    opacity: 0
}

[type=radio]:checked+label,
[type=radio]:not(:checked)+label {
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    display: inline-block;
    height: 25px;
    line-height: 25px;
    font-size: 1rem;
    -webkit-transition: .28s ease;
    -o-transition: .28s ease;
    transition: .28s ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

[type=radio]+label:after,
[type=radio]+label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    margin: 4px;
    width: 16px;
    height: 16px;
    z-index: 0;
    -webkit-transition: .28s ease;
    -o-transition: .28s ease;
    transition: .28s ease
}

[type=radio].with-gap:checked+label:after,
[type=radio].with-gap:checked+label:before,
[type=radio]:checked+label:after,
[type=radio]:checked+label:before,
[type=radio]:not(:checked)+label:after,
[type=radio]:not(:checked)+label:before {
    border-radius: 50%
}

[type=radio]:not(:checked)+label:after,
[type=radio]:not(:checked)+label:before {
    border: 1px solid #b1b8bb
}

[type=radio]:not(:checked)+label:after {
    z-index: -1;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0)
}

[type=radio]:checked+label:before {
    border: 2px solid transparent;
    -webkit-animation: ripple 0.2s linear forwards;
    animation: ripple 0.2s linear forwards
}

[type=radio].with-gap:checked+label:after,
[type=radio].with-gap:checked+label:before,
[type=radio]:checked+label:after {
    border: 2px solid #26a69a
}

[type=radio].with-gap:checked+label:after,
[type=radio]:checked+label:after {
    background-color: #26a69a;
    z-index: 0
}

[type=radio]:checked+label:after {
    -webkit-transform: scale(1.02);
    -ms-transform: scale(1.02);
    transform: scale(1.02)
}

[type=radio].with-gap:checked+label:after {
    -webkit-transform: scale(0.5);
    -ms-transform: scale(0.5);
    transform: scale(0.5)
}

[type=radio].tabbed:focus+label:before {
    -webkit-box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.1);
    -webkit-animation: ripple 0.2s linear forwards;
    animation: ripple 0.2s linear forwards
}

[type=radio].with-gap:disabled:checked+label:before {
    border: 2px solid rgba(0, 0, 0, 0.26);
    -webkit-animation: ripple 0.2s linear forwards;
    animation: ripple 0.2s linear forwards
}

[type=radio].with-gap:disabled:checked+label:after {
    border: none;
    background-color: rgba(0, 0, 0, 0.26)
}

[type=radio]:disabled:checked+label:before,
[type=radio]:disabled:not(:checked)+label:before {
    background-color: transparent;
    border-color: rgba(0, 0, 0, 0.26);
    -webkit-animation: ripple 0.2s linear forwards;
    animation: ripple 0.2s linear forwards
}

[type=radio]:disabled+label {
    color: rgba(0, 0, 0, 0.26)
}

[type=radio]:disabled:not(:checked)+label:before {
    border-color: rgba(0, 0, 0, 0.26)
}

[type=radio]:disabled:checked+label:after {
    background-color: rgba(0, 0, 0, 0.26);
    border-color: #BDBDBD
}

form p {
    margin-bottom: 10px;
    text-align: left
}

form p:last-child {
    margin-bottom: 0
}

[type=checkbox]:checked,
[type=checkbox]:not(:checked) {
    position: absolute;
    left: -9999px;
    opacity: 0
}

[type=checkbox] {}

[type=checkbox]+label {
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    display: inline-block;
    height: 25px;
    line-height: 25px;
    font-size: 1rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -ms-user-select: none
}

[type=checkbox]+label:before,
[type=checkbox]:not(.filled-in)+label:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    z-index: 0;
    border: 1px solid #b1b8bb;
    border-radius: 1px;
    margin-top: 2px;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s
}

[type=checkbox]:not(.filled-in)+label:after {
    border: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0)
}

[type=checkbox]:not(:checked):disabled+label:before {
    border: none;
    background-color: rgba(0, 0, 0, 0.26)
}

[type=checkbox].tabbed:focus+label:after {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    border: 0;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: rgba(0, 0, 0, 0.1)
}

[type=checkbox]:checked+label:before {
    top: -4px;
    left: -5px;
    width: 12px;
    height: 22px;
    border-top: 2px solid transparent;
    border-left: 2px solid transparent;
    border-right: 2px solid #26a69a;
    border-bottom: 2px solid #26a69a;
    -webkit-transform: rotate(40deg);
    -ms-transform: rotate(40deg);
    transform: rotate(40deg);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform-origin: 100% 100%;
    -ms-transform-origin: 100% 100%;
    transform-origin: 100% 100%
}

[type=checkbox]:checked:disabled+label:before {
    border-right: 2px solid rgba(0, 0, 0, 0.26);
    border-bottom: 2px solid rgba(0, 0, 0, 0.26)
}

[type=checkbox]:indeterminate+label:before {
    top: -11px;
    left: -12px;
    width: 10px;
    height: 22px;
    border-top: none;
    border-left: none;
    border-right: 2px solid #26a69a;
    border-bottom: none;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform-origin: 100% 100%;
    -ms-transform-origin: 100% 100%;
    transform-origin: 100% 100%
}

[type=checkbox]:indeterminate:disabled+label:before {
    border-right: 2px solid rgba(0, 0, 0, 0.26);
    background-color: transparent
}

[type=checkbox].filled-in+label:after {
    border-radius: 2px
}

[type=checkbox].filled-in+label:after,
[type=checkbox].filled-in+label:before {
    content: '';
    left: 0;
    position: absolute;
    -webkit-transition: border .25s, background-color .25s, width .20s .1s, height .20s .1s, top .20s .1s, left .20s .1s;
    -o-transition: border .25s, background-color .25s, width .20s .1s, height .20s .1s, top .20s .1s, left .20s .1s;
    transition: border .25s, background-color .25s, width .20s .1s, height .20s .1s, top .20s .1s, left .20s .1s;
    z-index: 1
}

[type=checkbox].filled-in:not(:checked)+label:before {
    width: 0;
    height: 0;
    border: 3px solid transparent;
    left: 6px;
    top: 10px;
    -webkit-transform: rotateZ(37deg);
    -ms-transform: rotate(37deg);
    transform: rotateZ(37deg);
    -webkit-transform-origin: 20% 40%;
    -ms-transform-origin: 100% 100%;
    transform-origin: 100% 100%
}

[type=checkbox].filled-in:not(:checked)+label:after {
    height: 15px;
    width: 15px;
    background-color: transparent;
    border: 1px solid #b1b8bb;
    top: 0px;
    z-index: 0
}

[type=checkbox].filled-in:checked+label:before {
    top: 0;
    left: 1px;
    width: 6px;
    height: 10px;
    border-top: 2px solid transparent;
    border-left: 2px solid transparent;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    -webkit-transform: rotateZ(37deg);
    -ms-transform: rotate(37deg);
    transform: rotateZ(37deg);
    -webkit-transform-origin: 100% 100%;
    -ms-transform-origin: 100% 100%;
    transform-origin: 100% 100%
}

[type=checkbox].filled-in:checked+label:after {
    top: 0;
    width: 15px;
    height: 15px;
    border: 2px solid #26a69a;
    background-color: #26a69a;
    z-index: 0
}

[type=checkbox].filled-in.tabbed:focus+label:after {
    border-radius: 2px;
    border-color: #5a5a5a;
    background-color: rgba(0, 0, 0, 0.1)
}

[type=checkbox].filled-in.tabbed:checked:focus+label:after {
    border-radius: 2px;
    background-color: #26a69a;
    border-color: #26a69a
}

[type=checkbox].filled-in:disabled:not(:checked)+label:before {
    background-color: transparent;
    border: 2px solid transparent
}

[type=checkbox].filled-in:disabled:not(:checked)+label:after {
    border-color: transparent;
    background-color: #BDBDBD
}

[type=checkbox].filled-in:disabled:checked+label:before {
    background-color: transparent
}

[type=checkbox].filled-in:disabled:checked+label:after {
    background-color: #BDBDBD;
    border-color: #BDBDBD
}

.switch,
.switch * {
    -webkit-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -ms-user-select: none
}

.switch label {
    cursor: pointer
}

.switch label input[type=checkbox] {
    opacity: 0;
    width: 0;
    height: 0
}

.switch label input[type=checkbox]:checked+.lever {
    background-color: #84c7c1
}

.switch label input[type=checkbox]:checked+.lever:after {
    background-color: #26a69a;
    left: 24px
}

.switch label .lever {
    content: "";
    display: inline-block;
    position: relative;
    width: 40px;
    height: 15px;
    background-color: #818181;
    border-radius: 15px;
    margin-right: 10px;
    -webkit-transition: background 0.3s ease;
    -o-transition: background 0.3s ease;
    transition: background 0.3s ease;
    vertical-align: middle;
    margin: 0 16px
}

.switch label .lever:after {
    content: "";
    position: absolute;
    display: inline-block;
    width: 21px;
    height: 21px;
    background-color: #F1F1F1;
    border-radius: 21px;
    -webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4);
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4);
    left: -5px;
    top: -3px;
    -webkit-transition: left 0.3s ease, background .3s ease, -webkit-box-shadow 0.1s ease;
    transition: left 0.3s ease, background .3s ease, -webkit-box-shadow 0.1s ease;
    -o-transition: left 0.3s ease, background .3s ease, box-shadow 0.1s ease;
    transition: left 0.3s ease, background .3s ease, box-shadow 0.1s ease;
    transition: left 0.3s ease, background .3s ease, box-shadow 0.1s ease, -webkit-box-shadow 0.1s ease
}

input[type=checkbox]:checked:not(:disabled).tabbed:focus~.lever:after,
input[type=checkbox]:checked:not(:disabled)~.lever:active:after {
    -webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(38, 166, 154, 0.1);
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(38, 166, 154, 0.1)
}

input[type=checkbox]:not(:disabled).tabbed:focus~.lever:after,
input[type=checkbox]:not(:disabled)~.lever:active:after {
    -webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(0, 0, 0, 0.08);
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(0, 0, 0, 0.08)
}

.switch input[type=checkbox][disabled]+.lever {
    cursor: default
}

.switch label input[type=checkbox][disabled]+.lever:after,
.switch label input[type=checkbox][disabled]:checked+.lever:after {
    background-color: #BDBDBD
}

.scale-up {
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    display: inline-block;
    -webkit-transform-origin: right 0px;
    -ms-transform-origin: right 0px;
    transform-origin: right 0px
}

.scale-up-left {
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    display: inline-block;
    -webkit-transform-origin: left 0px;
    -ms-transform-origin: left 0px;
    transform-origin: left 0px
}

.show>.scale-up {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: right 0px;
    -ms-transform-origin: right 0px;
    transform-origin: right 0px
}

.show>.scale-up-left {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: left 0px;
    -ms-transform-origin: left 0px;
    transform-origin: left 0px
}

.card {
    -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1);
    border-radius: 4px
}

.well,
pre {
    -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1)
}

.page-titles .justify-content-end:last-child .d-flex {
    margin-right: 10px
}

.btn-circle.right-side-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 25px;
    z-index: 10
}

@-webkit-keyframes ripple {
    0% {
        -webkit-box-shadow: 0px 0px 0px 1px transparent;
        box-shadow: 0px 0px 0px 1px transparent
    }
    50% {
        -webkit-box-shadow: 0px 0px 0px 15px rgba(0, 0, 0, 0.1);
        box-shadow: 0px 0px 0px 15px rgba(0, 0, 0, 0.1)
    }
    to {
        -webkit-box-shadow: 0px 0px 0px 15px transparent;
        box-shadow: 0px 0px 0px 15px transparent
    }
}

@keyframes ripple {
    0% {
        -webkit-box-shadow: 0px 0px 0px 1px transparent;
        box-shadow: 0px 0px 0px 1px transparent
    }
    50% {
        -webkit-box-shadow: 0px 0px 0px 15px rgba(0, 0, 0, 0.1);
        box-shadow: 0px 0px 0px 15px rgba(0, 0, 0, 0.1)
    }
    to {
        -webkit-box-shadow: 0px 0px 0px 15px transparent;
        box-shadow: 0px 0px 0px 15px transparent
    }
}

.bootstrap-select.btn-group .dropdown-menu {
    -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1)
}

.demo-checkbox label,
.demo-radio-button label {
    min-width: 200px;
    margin-bottom: 20px
}

.demo-swtich .demo-switch-title,
.demo-swtich .switch {
    width: 150px;
    margin-bottom: 10px;
    display: inline-block
}

[type=checkbox]+label {
    padding-left: 16px;
    height: 15px;
    line-height: 15px;
    font-weight: normal
}

[type=checkbox]:checked+label:before {
    top: -4px;
    left: -2px;
    width: 11px;
    height: 19px
}

[type=checkbox]:checked.chk-col-red+label:before {
    border-right: 2px solid #fb3a3a;
    border-bottom: 2px solid #fb3a3a
}

[type=checkbox]:checked.chk-col-pink+label:before {
    border-right: 2px solid #E91E63;
    border-bottom: 2px solid #E91E63
}

[type=checkbox]:checked.chk-col-purple+label:before {
    border-right: 2px solid #7460ee;
    border-bottom: 2px solid #7460ee
}

[type=checkbox]:checked.chk-col-deep-purple+label:before {
    border-right: 2px solid #673AB7;
    border-bottom: 2px solid #673AB7
}

[type=checkbox]:checked.chk-col-indigo+label:before {
    border-right: 2px solid #3F51B5;
    border-bottom: 2px solid #3F51B5
}

[type=checkbox]:checked.chk-col-blue+label:before {
    border-right: 2px solid #02bec9;
    border-bottom: 2px solid #02bec9
}

[type=checkbox]:checked.chk-col-light-blue+label:before {
    border-right: 2px solid #03A9F4;
    border-bottom: 2px solid #03A9F4
}

[type=checkbox]:checked.chk-col-cyan+label:before {
    border-right: 2px solid #00BCD4;
    border-bottom: 2px solid #00BCD4
}

[type=checkbox]:checked.chk-col-teal+label:before {
    border-right: 2px solid #009688;
    border-bottom: 2px solid #009688
}

[type=checkbox]:checked.chk-col-green+label:before {
    border-right: 2px solid #26c6da;
    border-bottom: 2px solid #26c6da
}

[type=checkbox]:checked.chk-col-light-green+label:before {
    border-right: 2px solid #8BC34A;
    border-bottom: 2px solid #8BC34A
}

[type=checkbox]:checked.chk-col-lime+label:before {
    border-right: 2px solid #CDDC39;
    border-bottom: 2px solid #CDDC39
}

[type=checkbox]:checked.chk-col-yellow+label:before {
    border-right: 2px solid #ffe821;
    border-bottom: 2px solid #ffe821
}

[type=checkbox]:checked.chk-col-amber+label:before {
    border-right: 2px solid #FFC107;
    border-bottom: 2px solid #FFC107
}

[type=checkbox]:checked.chk-col-orange+label:before {
    border-right: 2px solid #FF9800;
    border-bottom: 2px solid #FF9800
}

[type=checkbox]:checked.chk-col-deep-orange+label:before {
    border-right: 2px solid #FF5722;
    border-bottom: 2px solid #FF5722
}

[type=checkbox]:checked.chk-col-brown+label:before {
    border-right: 2px solid #795548;
    border-bottom: 2px solid #795548
}

[type=checkbox]:checked.chk-col-grey+label:before {
    border-right: 2px solid #9E9E9E;
    border-bottom: 2px solid #9E9E9E
}

[type=checkbox]:checked.chk-col-blue-grey+label:before {
    border-right: 2px solid #607D8B;
    border-bottom: 2px solid #607D8B
}

[type=checkbox]:checked.chk-col-black+label:before {
    border-right: 2px solid #000000;
    border-bottom: 2px solid #000000
}

[type=checkbox]:checked.chk-col-white+label:before {
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff
}

[type=checkbox].filled-in:checked+label:after {
    top: 0;
    width: 15px;
    height: 15px;
    border: 2px solid #26a69a;
    background-color: #26a69a;
    z-index: 0
}

[type=checkbox].filled-in:checked+label:before {
    border-right: 2px solid #fff !important;
    border-bottom: 2px solid #fff !important
}

[type=checkbox].filled-in:checked.chk-col-red+label:after {
    border: 2px solid #fb3a3a;
    background-color: #fb3a3a
}

[type=checkbox].filled-in:checked.chk-col-pink+label:after {
    border: 2px solid #E91E63;
    background-color: #E91E63
}

[type=checkbox].filled-in:checked.chk-col-purple+label:after {
    border: 2px solid #7460ee;
    background-color: #7460ee
}

[type=checkbox].filled-in:checked.chk-col-deep-purple+label:after {
    border: 2px solid #673AB7;
    background-color: #673AB7
}

[type=checkbox].filled-in:checked.chk-col-indigo+label:after {
    border: 2px solid #3F51B5;
    background-color: #3F51B5
}

[type=checkbox].filled-in:checked.chk-col-blue+label:after {
    border: 2px solid #02bec9;
    background-color: #02bec9
}

[type=checkbox].filled-in:checked.chk-col-light-blue+label:after {
    border: 2px solid #03A9F4;
    background-color: #03A9F4
}

[type=checkbox].filled-in:checked.chk-col-cyan+label:after {
    border: 2px solid #00BCD4;
    background-color: #00BCD4
}

[type=checkbox].filled-in:checked.chk-col-teal+label:after {
    border: 2px solid #009688;
    background-color: #009688
}

[type=checkbox].filled-in:checked.chk-col-green+label:after {
    border: 2px solid #26c6da;
    background-color: #26c6da
}

[type=checkbox].filled-in:checked.chk-col-light-green+label:after {
    border: 2px solid #8BC34A;
    background-color: #8BC34A
}

[type=checkbox].filled-in:checked.chk-col-lime+label:after {
    border: 2px solid #CDDC39;
    background-color: #CDDC39
}

[type=checkbox].filled-in:checked.chk-col-yellow+label:after {
    border: 2px solid #ffe821;
    background-color: #ffe821
}

[type=checkbox].filled-in:checked.chk-col-amber+label:after {
    border: 2px solid #FFC107;
    background-color: #FFC107
}

[type=checkbox].filled-in:checked.chk-col-orange+label:after {
    border: 2px solid #FF9800;
    background-color: #FF9800
}

[type=checkbox].filled-in:checked.chk-col-deep-orange+label:after {
    border: 2px solid #FF5722;
    background-color: #FF5722
}

[type=checkbox].filled-in:checked.chk-col-brown+label:after {
    border: 2px solid #795548;
    background-color: #795548
}

[type=checkbox].filled-in:checked.chk-col-grey+label:after {
    border: 2px solid #9E9E9E;
    background-color: #9E9E9E
}

[type=checkbox].filled-in:checked.chk-col-blue-grey+label:after {
    border: 2px solid #607D8B;
    background-color: #607D8B
}

[type=checkbox].filled-in:checked.chk-col-black+label:after {
    border: 2px solid #000000;
    background-color: #000000
}

[type=checkbox].filled-in:checked.chk-col-white+label:after {
    border: 2px solid #ffffff;
    background-color: #ffffff
}

[type=radio]:not(:checked)+label {
    padding-left: 26px;
    height: 25px;
    line-height: 25px;
    font-weight: normal
}

[type=radio]:checked+label {
    padding-left: 26px;
    height: 25px;
    line-height: 25px;
    font-weight: normal
}

[type=radio].radio-col-red:checked+label:after {
    background-color: #fb3a3a;
    border-color: #fb3a3a;
    -webkit-animation: ripple 0.2s linear forwards;
    animation: ripple 0.2s linear forwards
}

[type=radio].radio-col-pink:checked+label:after {
    background-color: #E91E63;
    border-color: #E91E63;
    -webkit-animation: ripple 0.2s linear forwards;
    animation: ripple 0.2s linear forwards
}

[type=radio].radio-col-purple:checked+label:after {
    background-color: #7460ee;
    border-color: #7460ee;
    -webkit-animation: ripple 0.2s linear forwards;
    animation: ripple 0.2s linear forwards
}

[type=radio].radio-col-deep-purple:checked+label:after {
    background-color: #673AB7;
    border-color: #673AB7;
    -webkit-animation: ripple 0.2s linear forwards;
    animation: ripple 0.2s linear forwards
}

[type=radio].radio-col-indigo:checked+label:after {
    background-color: #3F51B5;
    border-color: #3F51B5;
    -webkit-animation: ripple 0.2s linear forwards;
    animation: ripple 0.2s linear forwards
}

[type=radio].radio-col-blue:checked+label:after {
    background-color: #02bec9;
    border-color: #02bec9;
    -webkit-animation: ripple 0.2s linear forwards;
    animation: ripple 0.2s linear forwards
}

[type=radio].radio-col-light-blue:checked+label:after {
    background-color: #03A9F4;
    border-color: #03A9F4;
    -webkit-animation: ripple 0.2s linear forwards;
    animation: ripple 0.2s linear forwards
}

[type=radio].radio-col-cyan:checked+label:after {
    background-color: #00BCD4;
    border-color: #00BCD4;
    -webkit-animation: ripple 0.2s linear forwards;
    animation: ripple 0.2s linear forwards
}

[type=radio].radio-col-teal:checked+label:after {
    background-color: #009688;
    border-color: #009688;
    -webkit-animation: ripple 0.2s linear forwards;
    animation: ripple 0.2s linear forwards
}

[type=radio].radio-col-green:checked+label:after {
    background-color: #26c6da;
    border-color: #26c6da;
    -webkit-animation: ripple 0.2s linear forwards;
    animation: ripple 0.2s linear forwards
}

[type=radio].radio-col-light-green:checked+label:after {
    background-color: #8BC34A;
    border-color: #8BC34A;
    -webkit-animation: ripple 0.2s linear forwards;
    animation: ripple 0.2s linear forwards
}

[type=radio].radio-col-lime:checked+label:after {
    background-color: #CDDC39;
    border-color: #CDDC39;
    -webkit-animation: ripple 0.2s linear forwards;
    animation: ripple 0.2s linear forwards
}

[type=radio].radio-col-yellow:checked+label:after {
    background-color: #ffe821;
    border-color: #ffe821;
    -webkit-animation: ripple 0.2s linear forwards;
    animation: ripple 0.2s linear forwards
}

[type=radio].radio-col-amber:checked+label:after {
    background-color: #FFC107;
    border-color: #FFC107;
    -webkit-animation: ripple 0.2s linear forwards;
    animation: ripple 0.2s linear forwards
}

[type=radio].radio-col-orange:checked+label:after {
    background-color: #FF9800;
    border-color: #FF9800;
    -webkit-animation: ripple 0.2s linear forwards;
    animation: ripple 0.2s linear forwards
}

[type=radio].radio-col-deep-orange:checked+label:after {
    background-color: #FF5722;
    border-color: #FF5722;
    -webkit-animation: ripple 0.2s linear forwards;
    animation: ripple 0.2s linear forwards
}

[type=radio].radio-col-brown:checked+label:after {
    background-color: #795548;
    border-color: #795548;
    -webkit-animation: ripple 0.2s linear forwards;
    animation: ripple 0.2s linear forwards
}

[type=radio].radio-col-grey:checked+label:after {
    background-color: #9E9E9E;
    border-color: #9E9E9E;
    -webkit-animation: ripple 0.2s linear forwards;
    animation: ripple 0.2s linear forwards
}

[type=radio].radio-col-blue-grey:checked+label:after {
    background-color: #607D8B;
    border-color: #607D8B;
    -webkit-animation: ripple 0.2s linear forwards;
    animation: ripple 0.2s linear forwards
}

[type=radio].radio-col-black:checked+label:after {
    background-color: #000000;
    border-color: #000000;
    -webkit-animation: ripple 0.2s linear forwards;
    animation: ripple 0.2s linear forwards
}

[type=radio].radio-col-white:checked+label:after {
    background-color: #ffffff;
    border-color: #ffffff;
    -webkit-animation: ripple 0.2s linear forwards;
    animation: ripple 0.2s linear forwards
}

[type=radio].with-gap.radio-col-red:checked+label:before {
    border: 2px solid #fb3a3a;
    -webkit-animation: ripple 0.2s linear forwards;
    animation: ripple 0.2s linear forwards
}

[type=radio].with-gap.radio-col-red:checked+label:after {
    background-color: #fb3a3a;
    border: 2px solid #fb3a3a;
    -webkit-animation: ripple 0.2s linear forwards;
    animation: ripple 0.2s linear forwards
}

[type=radio].with-gap.radio-col-pink:checked+label:before {
    border: 2px solid #E91E63;
    -webkit-animation: ripple 0.2s linear forwards;
    animation: ripple 0.2s linear forwards
}

[type=radio].with-gap.radio-col-pink:checked+label:after {
    background-color: #E91E63;
    border: 2px solid #E91E63;
    -webkit-animation: ripple 0.2s linear forwards;
    animation: ripple 0.2s linear forwards
}

[type=radio].with-gap.radio-col-purple:checked+label:before {
    border: 2px solid #7460ee;
    -webkit-animation: ripple 0.2s linear forwards;
    animation: ripple 0.2s linear forwards
}

[type=radio].with-gap.radio-col-purple:checked+label:after {
    background-color: #7460ee;
    border: 2px solid #7460ee;
    -webkit-animation: ripple 0.2s linear forwards;
    animation: ripple 0.2s linear forwards
}

[type=radio].with-gap.radio-col-deep-purple:checked+label:before {
    border: 2px solid #673AB7;
    -webkit-animation: ripple 0.2s linear forwards;
    animation: ripple 0.2s linear forwards
}

[type=radio].with-gap.radio-col-deep-purple:checked+label:after {
    background-color: #673AB7;
    border: 2px solid #673AB7;
    -webkit-animation: ripple 0.2s linear forwards;
    animation: ripple 0.2s linear forwards
}

[type=radio].with-gap.radio-col-indigo:checked+label:before {
    border: 2px solid #3F51B5;
    -webkit-animation: ripple 0.2s linear forwards;
    animation: ripple 0.2s linear forwards
}

[type=radio].with-gap.radio-col-indigo:checked+label:after {
    background-color: #3F51B5;
    border: 2px solid #3F51B5;
    -webkit-animation: ripple 0.2s linear forwards;
    animation: ripple 0.2s linear forwards
}

[type=radio].with-gap.radio-col-blue:checked+label:before {
    border: 2px solid #02bec9;
    -webkit-animation: ripple 0.2s linear forwards;
    animation: ripple 0.2s linear forwards
}

[type=radio].with-gap.radio-col-blue:checked+label:after {
    background-color: #02bec9;
    border: 2px solid #02bec9;
    -webkit-animation: ripple 0.2s linear forwards;
    animation: ripple 0.2s linear forwards
}

[type=radio].with-gap.radio-col-light-blue:checked+label:before {
    border: 2px solid #03A9F4;
    -webkit-animation: ripple 0.2s linear forwards;
    animation: ripple 0.2s linear forwards
}

[type=radio].with-gap.radio-col-light-blue:checked+label:after {
    background-color: #03A9F4;
    border: 2px solid #03A9F4;
    -webkit-animation: ripple 0.2s linear forwards;
    animation: ripple 0.2s linear forwards
}

[type=radio].with-gap.radio-col-cyan:checked+label:before {
    border: 2px solid #00BCD4;
    -webkit-animation: ripple 0.2s linear forwards;
    animation: ripple 0.2s linear forwards
}

[type=radio].with-gap.radio-col-cyan:checked+label:after {
    background-color: #00BCD4;
    border: 2px solid #00BCD4;
    -webkit-animation: ripple 0.2s linear forwards;
    animation: ripple 0.2s linear forwards
}

[type=radio].with-gap.radio-col-teal:checked+label:before {
    border: 2px solid #009688;
    -webkit-animation: ripple 0.2s linear forwards;
    animation: ripple 0.2s linear forwards
}

[type=radio].with-gap.radio-col-teal:checked+label:after {
    background-color: #009688;
    border: 2px solid #009688;
    -webkit-animation: ripple 0.2s linear forwards;
    animation: ripple 0.2s linear forwards
}

[type=radio].with-gap.radio-col-green:checked+label:before {
    border: 2px solid #26c6da;
    -webkit-animation: ripple 0.2s linear forwards;
    animation: ripple 0.2s linear forwards
}

[type=radio].with-gap.radio-col-green:checked+label:after {
    background-color: #26c6da;
    border: 2px solid #26c6da;
    -webkit-animation: ripple 0.2s linear forwards;
    animation: ripple 0.2s linear forwards
}

[type=radio].with-gap.radio-col-light-green:checked+label:before {
    border: 2px solid #8BC34A;
    -webkit-animation: ripple 0.2s linear forwards;
    animation: ripple 0.2s linear forwards
}

[type=radio].with-gap.radio-col-light-green:checked+label:after {
    background-color: #8BC34A;
    border: 2px solid #8BC34A;
    -webkit-animation: ripple 0.2s linear forwards;
    animation: ripple 0.2s linear forwards
}

[type=radio].with-gap.radio-col-lime:checked+label:before {
    border: 2px solid #CDDC39;
    -webkit-animation: ripple 0.2s linear forwards;
    animation: ripple 0.2s linear forwards
}

[type=radio].with-gap.radio-col-lime:checked+label:after {
    background-color: #CDDC39;
    border: 2px solid #CDDC39;
    -webkit-animation: ripple 0.2s linear forwards;
    animation: ripple 0.2s linear forwards
}

[type=radio].with-gap.radio-col-yellow:checked+label:before {
    border: 2px solid #ffe821;
    -webkit-animation: ripple 0.2s linear forwards;
    animation: ripple 0.2s linear forwards
}

[type=radio].with-gap.radio-col-yellow:checked+label:after {
    background-color: #ffe821;
    border: 2px solid #ffe821;
    -webkit-animation: ripple 0.2s linear forwards;
    animation: ripple 0.2s linear forwards
}

[type=radio].with-gap.radio-col-amber:checked+label:before {
    border: 2px solid #FFC107;
    -webkit-animation: ripple 0.2s linear forwards;
    animation: ripple 0.2s linear forwards
}

[type=radio].with-gap.radio-col-amber:checked+label:after {
    background-color: #FFC107;
    border: 2px solid #FFC107;
    -webkit-animation: ripple 0.2s linear forwards;
    animation: ripple 0.2s linear forwards
}

[type=radio].with-gap.radio-col-orange:checked+label:before {
    border: 2px solid #FF9800;
    -webkit-animation: ripple 0.2s linear forwards;
    animation: ripple 0.2s linear forwards
}

[type=radio].with-gap.radio-col-orange:checked+label:after {
    background-color: #FF9800;
    border: 2px solid #FF9800;
    -webkit-animation: ripple 0.2s linear forwards;
    animation: ripple 0.2s linear forwards
}

[type=radio].with-gap.radio-col-deep-orange:checked+label:before {
    border: 2px solid #FF5722;
    -webkit-animation: ripple 0.2s linear forwards;
    animation: ripple 0.2s linear forwards
}

[type=radio].with-gap.radio-col-deep-orange:checked+label:after {
    background-color: #FF5722;
    border: 2px solid #FF5722;
    -webkit-animation: ripple 0.2s linear forwards;
    animation: ripple 0.2s linear forwards
}

[type=radio].with-gap.radio-col-brown:checked+label:before {
    border: 2px solid #795548;
    -webkit-animation: ripple 0.2s linear forwards;
    animation: ripple 0.2s linear forwards
}

[type=radio].with-gap.radio-col-brown:checked+label:after {
    background-color: #795548;
    border: 2px solid #795548;
    -webkit-animation: ripple 0.2s linear forwards;
    animation: ripple 0.2s linear forwards
}

[type=radio].with-gap.radio-col-grey:checked+label:before {
    border: 2px solid #9E9E9E;
    -webkit-animation: ripple 0.2s linear forwards;
    animation: ripple 0.2s linear forwards
}

[type=radio].with-gap.radio-col-grey:checked+label:after {
    background-color: #9E9E9E;
    border: 2px solid #9E9E9E;
    -webkit-animation: ripple 0.2s linear forwards;
    animation: ripple 0.2s linear forwards
}

[type=radio].with-gap.radio-col-blue-grey:checked+label:before {
    border: 2px solid #607D8B;
    -webkit-animation: ripple 0.2s linear forwards;
    animation: ripple 0.2s linear forwards
}

[type=radio].with-gap.radio-col-blue-grey:checked+label:after {
    background-color: #607D8B;
    border: 2px solid #607D8B;
    -webkit-animation: ripple 0.2s linear forwards;
    animation: ripple 0.2s linear forwards
}

[type=radio].with-gap.radio-col-black:checked+label:before {
    border: 2px solid #000000;
    -webkit-animation: ripple 0.2s linear forwards;
    animation: ripple 0.2s linear forwards
}

[type=radio].with-gap.radio-col-black:checked+label:after {
    background-color: #000000;
    border: 2px solid #000000;
    -webkit-animation: ripple 0.2s linear forwards;
    animation: ripple 0.2s linear forwards
}

[type=radio].with-gap.radio-col-white:checked+label:before {
    border: 2px solid #ffffff;
    -webkit-animation: ripple 0.2s linear forwards;
    animation: ripple 0.2s linear forwards
}

[type=radio].with-gap.radio-col-white:checked+label:after {
    background-color: #ffffff;
    border: 2px solid #ffffff;
    -webkit-animation: ripple 0.2s linear forwards;
    animation: ripple 0.2s linear forwards
}

.switch label {
    font-weight: normal;
    font-size: 13px
}

.switch label .lever {
    margin: 0 14px
}

.switch label input[type=checkbox]:checked:not(:disabled)~.lever.switch-col-red:active:after {
    -webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(251, 58, 58, 0.1);
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(251, 58, 58, 0.1)
}

.switch label input[type=checkbox]:checked+.lever.switch-col-red {
    background-color: rgba(251, 58, 58, 0.5)
}

.switch label input[type=checkbox]:checked+.lever.switch-col-red:after {
    background-color: #fb3a3a
}

.switch label input[type=checkbox]:checked:not(:disabled)~.lever.switch-col-pink:active:after {
    -webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(233, 30, 99, 0.1);
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(233, 30, 99, 0.1)
}

.switch label input[type=checkbox]:checked+.lever.switch-col-pink {
    background-color: rgba(233, 30, 99, 0.5)
}

.switch label input[type=checkbox]:checked+.lever.switch-col-pink:after {
    background-color: #E91E63
}

.switch label input[type=checkbox]:checked:not(:disabled)~.lever.switch-col-purple:active:after {
    -webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(116, 96, 238, 0.1);
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(116, 96, 238, 0.1)
}

.switch label input[type=checkbox]:checked+.lever.switch-col-purple {
    background-color: rgba(116, 96, 238, 0.5)
}

.switch label input[type=checkbox]:checked+.lever.switch-col-purple:after {
    background-color: #7460ee
}

.switch label input[type=checkbox]:checked:not(:disabled)~.lever.switch-col-deep-purple:active:after {
    -webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(103, 58, 183, 0.1);
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(103, 58, 183, 0.1)
}

.switch label input[type=checkbox]:checked+.lever.switch-col-deep-purple {
    background-color: rgba(103, 58, 183, 0.5)
}

.switch label input[type=checkbox]:checked+.lever.switch-col-deep-purple:after {
    background-color: #673AB7
}

.switch label input[type=checkbox]:checked:not(:disabled)~.lever.switch-col-indigo:active:after {
    -webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(63, 81, 181, 0.1);
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(63, 81, 181, 0.1)
}

.switch label input[type=checkbox]:checked+.lever.switch-col-indigo {
    background-color: rgba(63, 81, 181, 0.5)
}

.switch label input[type=checkbox]:checked+.lever.switch-col-indigo:after {
    background-color: #3F51B5
}

.switch label input[type=checkbox]:checked:not(:disabled)~.lever.switch-col-blue:active:after {
    -webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(2, 190, 201, 0.1);
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(2, 190, 201, 0.1)
}

.switch label input[type=checkbox]:checked+.lever.switch-col-blue {
    background-color: rgba(2, 190, 201, 0.5)
}

.switch label input[type=checkbox]:checked+.lever.switch-col-blue:after {
    background-color: #02bec9
}

.switch label input[type=checkbox]:checked:not(:disabled)~.lever.switch-col-light-blue:active:after {
    -webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(3, 169, 244, 0.1);
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(3, 169, 244, 0.1)
}

.switch label input[type=checkbox]:checked+.lever.switch-col-light-blue {
    background-color: rgba(3, 169, 244, 0.5)
}

.switch label input[type=checkbox]:checked+.lever.switch-col-light-blue:after {
    background-color: #03A9F4
}

.switch label input[type=checkbox]:checked:not(:disabled)~.lever.switch-col-cyan:active:after {
    -webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(0, 188, 212, 0.1);
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(0, 188, 212, 0.1)
}

.switch label input[type=checkbox]:checked+.lever.switch-col-cyan {
    background-color: rgba(0, 188, 212, 0.5)
}

.switch label input[type=checkbox]:checked+.lever.switch-col-cyan:after {
    background-color: #00BCD4
}

.switch label input[type=checkbox]:checked:not(:disabled)~.lever.switch-col-teal:active:after {
    -webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(0, 150, 136, 0.1);
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(0, 150, 136, 0.1)
}

.switch label input[type=checkbox]:checked+.lever.switch-col-teal {
    background-color: rgba(0, 150, 136, 0.5)
}

.switch label input[type=checkbox]:checked+.lever.switch-col-teal:after {
    background-color: #009688
}

.switch label input[type=checkbox]:checked:not(:disabled)~.lever.switch-col-green:active:after {
    -webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(38, 198, 218, 0.1);
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(38, 198, 218, 0.1)
}

.switch label input[type=checkbox]:checked+.lever.switch-col-green {
    background-color: rgba(38, 198, 218, 0.5)
}

.switch label input[type=checkbox]:checked+.lever.switch-col-green:after {
    background-color: #26c6da
}

.switch label input[type=checkbox]:checked:not(:disabled)~.lever.switch-col-light-green:active:after {
    -webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(139, 195, 74, 0.1);
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(139, 195, 74, 0.1)
}

.switch label input[type=checkbox]:checked+.lever.switch-col-light-green {
    background-color: rgba(139, 195, 74, 0.5)
}

.switch label input[type=checkbox]:checked+.lever.switch-col-light-green:after {
    background-color: #8BC34A
}

.switch label input[type=checkbox]:checked:not(:disabled)~.lever.switch-col-lime:active:after {
    -webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(205, 250, 57, 0.1);
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(205, 250, 57, 0.1)
}

.switch label input[type=checkbox]:checked+.lever.switch-col-lime {
    background-color: rgba(205, 250, 57, 0.5)
}

.switch label input[type=checkbox]:checked+.lever.switch-col-lime:after {
    background-color: #CDDC39
}

.switch label input[type=checkbox]:checked:not(:disabled)~.lever.switch-col-yellow:active:after {
    -webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(255, 232, 33, 0.1);
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(255, 232, 33, 0.1)
}

.switch label input[type=checkbox]:checked+.lever.switch-col-yellow {
    background-color: rgba(255, 232, 33, 0.5)
}

.switch label input[type=checkbox]:checked+.lever.switch-col-yellow:after {
    background-color: #ffe821
}

.switch label input[type=checkbox]:checked:not(:disabled)~.lever.switch-col-amber:active:after {
    -webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(255, 193, 7, 0.1);
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(255, 193, 7, 0.1)
}

.switch label input[type=checkbox]:checked+.lever.switch-col-amber {
    background-color: rgba(255, 193, 7, 0.5)
}

.switch label input[type=checkbox]:checked+.lever.switch-col-amber:after {
    background-color: #FFC107
}

.switch label input[type=checkbox]:checked:not(:disabled)~.lever.switch-col-orange:active:after {
    -webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(255, 152, 0, 0.1);
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(255, 152, 0, 0.1)
}

.switch label input[type=checkbox]:checked+.lever.switch-col-orange {
    background-color: rgba(255, 152, 0, 0.5)
}

.switch label input[type=checkbox]:checked+.lever.switch-col-orange:after {
    background-color: #FF9800
}

.switch label input[type=checkbox]:checked:not(:disabled)~.lever.switch-col-deep-orange:active:after {
    -webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(255, 87, 34, 0.1);
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(255, 87, 34, 0.1)
}

.switch label input[type=checkbox]:checked+.lever.switch-col-deep-orange {
    background-color: rgba(255, 87, 34, 0.5)
}

.switch label input[type=checkbox]:checked+.lever.switch-col-deep-orange:after {
    background-color: #FF5722
}

.switch label input[type=checkbox]:checked:not(:disabled)~.lever.switch-col-brown:active:after {
    -webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(121, 85, 72, 0.1);
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(121, 85, 72, 0.1)
}

.switch label input[type=checkbox]:checked+.lever.switch-col-brown {
    background-color: rgba(121, 85, 72, 0.5)
}

.switch label input[type=checkbox]:checked+.lever.switch-col-brown:after {
    background-color: #795548
}

.switch label input[type=checkbox]:checked:not(:disabled)~.lever.switch-col-grey:active:after {
    -webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(158, 158, 158, 0.1);
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(158, 158, 158, 0.1)
}

.switch label input[type=checkbox]:checked+.lever.switch-col-grey {
    background-color: rgba(158, 158, 158, 0.5)
}

.switch label input[type=checkbox]:checked+.lever.switch-col-grey:after {
    background-color: #9E9E9E
}

.switch label input[type=checkbox]:checked:not(:disabled)~.lever.switch-col-blue-grey:active:after {
    -webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(96, 125, 139, 0.1);
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(96, 125, 139, 0.1)
}

.switch label input[type=checkbox]:checked+.lever.switch-col-blue-grey {
    background-color: rgba(96, 125, 139, 0.5)
}

.switch label input[type=checkbox]:checked+.lever.switch-col-blue-grey:after {
    background-color: #607D8B
}

.switch label input[type=checkbox]:checked:not(:disabled)~.lever.switch-col-black:active:after {
    -webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(0, 0, 0, 0.1)
}

.switch label input[type=checkbox]:checked+.lever.switch-col-black {
    background-color: rgba(0, 0, 0, 0.5)
}

.switch label input[type=checkbox]:checked+.lever.switch-col-black:after {
    background-color: #000000
}

.switch label input[type=checkbox]:checked:not(:disabled)~.lever.switch-col-white:active:after {
    -webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(255, 255, 255, 0.1);
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(255, 255, 255, 0.1)
}

.switch label input[type=checkbox]:checked+.lever.switch-col-white {
    background-color: rgba(255, 255, 255, 0.5)
}

.switch label input[type=checkbox]:checked+.lever.switch-col-white:after {
    background-color: #ffffff
}

.help-block ul {
    padding: 0px;
    margin: 0px
}

.help-block ul li {
    list-style: none
}

.error .form-control {
    border-color: #f64e60
}

.validate .form-control {
    border-color: #06d79c
}

.docs-buttons .btn,
.docs-data .input-group,
.docs-toggles .btn-group {
    margin-bottom: 5px
}

.twitter-typeahead {
    width: 100%
}

.twitter-typeahead .tt-menu {
    width: 100%;
    background: #ffffff;
    border: 1px solid #99abb4;
    border-radius: 5px;
    padding: .75rem 0
}

.twitter-typeahead .tt-menu .tt-suggestion {
    padding: .25rem .75rem;
    cursor: pointer
}

.twitter-typeahead .tt-menu .tt-suggestion:hover {
    background-color: #8950fc;
    color: #ffffff
}

.twitter-typeahead .empty-message {
    padding: 5px 10px;
    text-align: center
}

.twitter-typeahead .rtl-typeahead .tt-menu {
    text-align: right
}

.twitter-typeahead .league-name {
    margin: 0 10px 5px;
    padding: 7px 5px 10px;
    border-bottom: 1px solid #99abb4
}

.scrollable-dropdown .twitter-typeahead .tt-menu {
    max-height: 80px;
    overflow-y: auto
}

.bootstrap-maxlength {
    margin-top: .5rem
}

.table-box {
    display: table;
    width: 100%
}

.table.no-border tbody td {
    border: 0px
}

.cell {
    display: table-cell;
    vertical-align: middle
}

.table td,
.table th {
   border-top : 1px solid #ebedf3;
}

.table th,
.table thead th {
    font-weight: 600
}

.table-hover tbody tr:hover {
    background: #e9edf2
}

.nowrap {
    white-space: nowrap
}

.lite-padding td {
    padding: 5px
}

.v-middle td,
.v-middle th {
    vertical-align: middle
}

.table th,
.table thead th {
    border: 0px
}

.color-table.primary-table thead th {
    background-color: #8950fc;
    color: #ffffff
}

.table-striped tbody tr:nth-of-type(odd) {
    background: #f1f3f6;
}

.color-table.success-table thead th {
    background-color: #06d79c;
    color: #ffffff
}

.color-table.info-table thead th {
    background-color: #398bf7;
    color: #ffffff
}

.color-table.warning-table thead th {
    background-color: #ffb22b;
    color: #ffffff
}

.color-table.danger-table thead th {
    background-color: #f64e60;
    color: #ffffff
}

.color-table.inverse-table thead th {
    background-color: #2f3d4a;
    color: #ffffff
}

.color-table.dark-table thead th {
    background-color: #263238;
    color: #ffffff
}

.color-table.red-table thead th {
    background-color: #fb3a3a;
    color: #ffffff
}

.color-table.purple-table thead th {
    background-color: #7460ee;
    color: #ffffff
}

.color-table.muted-table thead th {
    background-color: #99abb4;
    color: #ffffff
}

.color-bordered-table.primary-bordered-table {
    border: 2px solid #8950fc
}

.color-bordered-table.primary-bordered-table thead th {
    background-color: #8950fc;
    color: #ffffff
}

.color-bordered-table.success-bordered-table {
    border: 2px solid #06d79c
}

.color-bordered-table.success-bordered-table thead th {
    background-color: #06d79c;
    color: #ffffff
}

.color-bordered-table.info-bordered-table {
    border: 2px solid #398bf7
}

.color-bordered-table.info-bordered-table thead th {
    background-color: #398bf7;
    color: #ffffff
}

.color-bordered-table.warning-bordered-table {
    border: 2px solid #ffb22b
}

.color-bordered-table.warning-bordered-table thead th {
    background-color: #ffb22b;
    color: #ffffff
}

.color-bordered-table.danger-bordered-table {
    border: 2px solid #f64e60
}

.color-bordered-table.danger-bordered-table thead th {
    background-color: #f64e60;
    color: #ffffff
}

.color-bordered-table.inverse-bordered-table {
    border: 2px solid #2f3d4a
}

.color-bordered-table.inverse-bordered-table thead th {
    background-color: #2f3d4a;
    color: #ffffff
}

.color-bordered-table.dark-bordered-table {
    border: 2px solid #263238
}

.color-bordered-table.dark-bordered-table thead th {
    background-color: #263238;
    color: #ffffff
}

.color-bordered-table.red-bordered-table {
    border: 2px solid #fb3a3a
}

.color-bordered-table.red-bordered-table thead th {
    background-color: #fb3a3a;
    color: #ffffff
}

.color-bordered-table.purple-bordered-table {
    border: 2px solid #7460ee
}

.color-bordered-table.purple-bordered-table thead th {
    background-color: #7460ee;
    color: #ffffff
}

.color-bordered-table.muted-bordered-table {
    border: 2px solid #99abb4
}

.color-bordered-table.muted-bordered-table thead th {
    background-color: #99abb4;
    color: #ffffff
}

.full-color-table.full-primary-table {
    background-color: #f1effd
}

.full-color-table.full-primary-table thead th {
    background-color: #8950fc;
    border: 0;
    color: #ffffff
}

.full-color-table.full-primary-table tbody td {
    border: 0
}

.full-color-table.full-primary-table tr:hover {
    background-color: #8950fc;
    color: #ffffff
}

.full-color-table.full-success-table {
    background-color: #e8fdeb
}

.full-color-table.full-success-table thead th {
    background-color: #06d79c;
    border: 0;
    color: #ffffff
}

.full-color-table.full-success-table tbody td {
    border: 0
}

.full-color-table.full-success-table tr:hover {
    background-color: #06d79c;
    color: #ffffff
}

.full-color-table.full-info-table {
    background-color: #cfecfe
}

.full-color-table.full-info-table thead th {
    background-color: #398bf7;
    border: 0;
    color: #ffffff
}

.full-color-table.full-info-table tbody td {
    border: 0
}

.full-color-table.full-info-table tr:hover {
    background-color: #398bf7;
    color: #ffffff
}

.full-color-table.full-warning-table {
    background-color: #fff8ec
}

.full-color-table.full-warning-table thead th {
    background-color: #ffb22b;
    border: 0;
    color: #ffffff
}

.full-color-table.full-warning-table tbody td {
    border: 0
}

.full-color-table.full-warning-table tr:hover {
    background-color: #ffb22b;
    color: #ffffff
}

.full-color-table.full-danger-table {
    background-color: #f9e7eb
}

.full-color-table.full-danger-table thead th {
    background-color: #f64e60;
    border: 0;
    color: #ffffff
}

.full-color-table.full-danger-table tbody td {
    border: 0
}

.full-color-table.full-danger-table tr:hover {
    background-color: #f64e60;
    color: #ffffff
}

.full-color-table.full-inverse-table {
    background-color: #f6f6f6
}

.full-color-table.full-inverse-table thead th {
    background-color: #2f3d4a;
    border: 0;
    color: #ffffff
}

.full-color-table.full-inverse-table tbody td {
    border: 0
}

.full-color-table.full-inverse-table tr:hover {
    background-color: #2f3d4a;
    color: #ffffff
}

.full-color-table.full-dark-table {
    background-color: rgba(43, 43, 43, 0.8)
}

.full-color-table.full-dark-table thead th {
    background-color: #263238;
    border: 0;
    color: #ffffff
}

.full-color-table.full-dark-table tbody td {
    border: 0;
    color: #ffffff
}

.full-color-table.full-dark-table tr:hover {
    background-color: #263238;
    color: #ffffff
}

.full-color-table.full-red-table {
    background-color: #f9e7eb
}

.full-color-table.full-red-table thead th {
    background-color: #fb3a3a;
    border: 0;
    color: #ffffff
}

.full-color-table.full-red-table tbody td {
    border: 0
}

.full-color-table.full-red-table tr:hover {
    background-color: #fb3a3a;
    color: #ffffff
}

.full-color-table.full-purple-table {
    background-color: #f1effd
}

.full-color-table.full-purple-table thead th {
    background-color: #7460ee;
    border: 0;
    color: #ffffff
}

.full-color-table.full-purple-table tbody td {
    border: 0
}

.full-color-table.full-purple-table tr:hover {
    background-color: #7460ee;
    color: #ffffff
}

.full-color-table.full-muted-table {
    background-color: rgba(152, 166, 173, 0.2)
}

.full-color-table.full-muted-table thead th {
    background-color: #99abb4;
    border: 0;
    color: #ffffff
}

.full-color-table.full-muted-table tbody td {
    border: 0
}

.full-color-table.full-muted-table tr:hover {
    background-color: #99abb4;
    color: #ffffff
}

.dataTables_wrapper {
    padding-top: 10px
}

.dt-buttons {
    display: inline-block;
    padding-top: 5px;
    margin-bottom: 15px
}

.dt-buttons .dt-button {
    padding: 5px 15px;
    border-radius: 4px;
    background: #398bf7;
    color: #ffffff;
    margin-right: 3px
}

.dt-buttons .dt-button:hover {
    background: #2f3d4a
}

.dataTables_info,
.dataTables_length {
    display: inline-block
}

.dataTables_length {
    margin-top: 40px;
    margin-left: 10px;
}

.dataTables_length select {
    border: 0;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#398bf7), to(#398bf7)), -webkit-gradient(linear, left top, left bottom, from(#b1b8bb), to(#b1b8bb));
    background-image: -webkit-linear-gradient(#398bf7, #398bf7), -webkit-linear-gradient(#b1b8bb, #b1b8bb);
    background-image: -o-linear-gradient(#398bf7, #398bf7), -o-linear-gradient(#b1b8bb, #b1b8bb);
    background-image: linear-gradient(#398bf7, #398bf7), linear-gradient(#b1b8bb, #b1b8bb);
    background-size: 0 2px, 100% 1px;
    background-repeat: no-repeat;
    background-position: center bottom, center calc(100% - 1px);
    background-color: transparent;
    -webkit-transition: background 0s ease-out;
    -o-transition: background 0s ease-out;
    transition: background 0s ease-out;
    padding-bottom: 5px
}

.dataTables_length select:focus {
    outline: none;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#398bf7), to(#398bf7)), -webkit-gradient(linear, left top, left bottom, from(#b1b8bb), to(#b1b8bb));
    background-image: -webkit-linear-gradient(#398bf7, #398bf7), -webkit-linear-gradient(#b1b8bb, #b1b8bb);
    background-image: -o-linear-gradient(#398bf7, #398bf7), -o-linear-gradient(#b1b8bb, #b1b8bb);
    background-image: linear-gradient(#398bf7, #398bf7), linear-gradient(#b1b8bb, #b1b8bb);
    background-size: 100% 2px, 100% 1px;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s
}

.dataTables_filter {
    float: right;
    margin-top: 10px
}

.dataTables_filter input {
    border: 0;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#398bf7), to(#398bf7)), -webkit-gradient(linear, left top, left bottom, from(#b1b8bb), to(#b1b8bb));
    background-image: -webkit-linear-gradient(#398bf7, #398bf7), -webkit-linear-gradient(#b1b8bb, #b1b8bb);
    background-image: -o-linear-gradient(#398bf7, #398bf7), -o-linear-gradient(#b1b8bb, #b1b8bb);
    background-image: linear-gradient(#398bf7, #398bf7), linear-gradient(#b1b8bb, #b1b8bb);
    background-size: 0 2px, 100% 1px;
    background-repeat: no-repeat;
    background-position: center bottom, center calc(100% - 1px);
    background-color: transparent;
    -webkit-transition: background 0s ease-out;
    -o-transition: background 0s ease-out;
    transition: background 0s ease-out;
    float: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
    margin-left: 10px
}

.dataTables_filter input:focus {
    outline: none;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#398bf7), to(#398bf7)), -webkit-gradient(linear, left top, left bottom, from(#b1b8bb), to(#b1b8bb));
    background-image: -webkit-linear-gradient(#398bf7, #398bf7), -webkit-linear-gradient(#b1b8bb, #b1b8bb);
    background-image: -o-linear-gradient(#398bf7, #398bf7), -o-linear-gradient(#b1b8bb, #b1b8bb);
    background-image: linear-gradient(#398bf7, #398bf7), linear-gradient(#b1b8bb, #b1b8bb);
    background-size: 100% 2px, 100% 1px;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s
}

table.dataTable thead .sorting,
table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_asc_disabled,
table.dataTable thead .sorting_desc,
table.dataTable thead .sorting_desc_disabled {
    background: transparent
}

.dataTables_wrapper .dataTables_paginate {
    float: right;
    text-align: right;
    padding-top: 0.25em;
    width: 100%
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
    min-width: 1.5em;
    padding: 0.5em 1em;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    *cursor: hand;
    color: #67757c;
    border: 1px solid #ddd
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    color: #ffffff !important;
    border: 1px solid #398bf7;
    background-color: #398bf7
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover {
    cursor: default;
    color: #67757c;
    border: 1px solid #ddd;
    background: transparent;
    -webkit-box-shadow: none;
    box-shadow: none
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    color: white;
    border: 1px solid #398bf7;
    background-color: #398bf7
}

.dataTables_wrapper .dataTables_paginate .paginate_button:active {
    outline: none;
    background-color: #67757c
}

.dataTables_wrapper .dataTables_paginate .ellipsis {
    padding: 0 1em
}

.tablesaw-bar .btn-group label {
    color: #67757c !important
}

.dt-bootstrap {
    display: block
}

.paging_simple_numbers .pagination .paginate_button {
    padding: 0px;
    background: #ffffff
}

.paging_simple_numbers .pagination .paginate_button:hover {
    background: #ffffff
}

.paging_simple_numbers .pagination .paginate_button a {
    padding: 3px 10px;
    border: 0px
}

.paging_simple_numbers .pagination .paginate_button.active a,
.paging_simple_numbers .pagination .paginate_button:hover a {
    background: #398bf7;
    color: #ffffff
}

.stylish-table tbody tr {
    border-left: 3px solid transparent
}

.stylish-table tbody tr.active,
.stylish-table tbody tr:hover {
    border-color: #398bf7
}

.tablesaw-columntoggle-popup [type=checkbox]:checked,
.tablesaw-columntoggle-popup [type=checkbox]:not(:checked) {
    position: relative;
    left: 0;
    opacity: 1
}

.jsgrid-pager-current-page,
.jsgrid-pager-nav-button a,
.jsgrid-pager-page a {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
    min-width: 1.5em;
    padding: 0.5em 1em;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    color: #67757c;
    border: 1px solid #ddd
}

.jsgrid-pager-nav-button a:hover,
.jsgrid-pager-page a:hover {
    background-color: #398bf7;
    color: #ffffff
}

.jsgrid-pager-current-page {
    background-color: #398bf7;
    color: #ffffff
}

.jsgrid-pager-nav-button,
.jsgrid-pager-page {
    padding: 0
}

.jsgrid-pager-page.jsgrid-pager-current-page {
    padding: 0.5em 1em !important
}

#demo-foo-accordion .open>.dropdown-menu {
    display: block
}

#demo-foo-accordion2 .open>.dropdown-menu {
    display: block
}

#footable-addrow .open>.dropdown-menu {
    display: block
}

table.footable thead tr.footable-filtering th ul.dropdown-menu li a.checkbox input[type=checkbox] {
    position: relative;
    margin-right: 10px;
    margin-left: -20px;
    left: 0;
    opacity: 1
}

.jsgrid-cell [type=checkbox]:checked,
.jsgrid-cell [type=checkbox]:not(:checked) {
    position: relative;
    left: 0;
    opacity: 1
}

.jsgrid-cell [type=checkbox]:checked,
.jsgrid-cell [type=checkbox]:not(:checked) {
    position: relative;
    left: 0;
    opacity: 1
}

.ps {
    -ms-touch-action: auto;
    touch-action: auto;
    overflow: hidden !important;
    -ms-overflow-style: none
}

@supports (-ms-overflow-style:none) {
    .ps {
        overflow: auto !important
    }
}

@media (-ms-high-contrast:none),
screen and (-ms-high-contrast:active) {
    .ps {
        overflow: auto !important
    }
}

.ps.ps--active-x>.ps__scrollbar-x-rail,
.ps.ps--active-y>.ps__scrollbar-y-rail {
    display: block;
    background-color: transparent
}

.ps.ps--in-scrolling.ps--x>.ps__scrollbar-x-rail {
    background-color: #eee;
    opacity: 0.9
}

.ps.ps--in-scrolling.ps--y>.ps__scrollbar-y-rail>.ps__scrollbar-y {
    background-color: transparent;
    width: 8px
}

.ps>.ps__scrollbar-x-rail {
    display: none;
    position: absolute;
    opacity: 0;
    bottom: 0px;
    height: 6px
}

.ps>.ps__scrollbar-x-rail>.ps__scrollbar-x {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.2);
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    bottom: 2px;
    height: 6px
}

.ps>.ps__scrollbar-x-rail:active>.ps__scrollbar-x,
.ps>.ps__scrollbar-x-rail:hover>.ps__scrollbar-x {
    height: 6px
}

.ps>.ps__scrollbar-y-rail {
    display: none;
    position: absolute;
    opacity: 0;
    right: 0;
    width: 6px
}

.ps>.ps__scrollbar-y-rail>.ps__scrollbar-y {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.2);
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    right: 2px;
    width: 6px
}

.ps>.ps__scrollbar-y-rail:active>.ps__scrollbar-y,
.ps>.ps__scrollbar-y-rail:hover>.ps__scrollbar-y {
    width: 6px
}

.ps:hover.ps--in-scrolling.ps--x>.ps__scrollbar-x-rail {
    background-color: rgba(0, 0, 0, 0.2);
    opacity: 0.9
}

.ps:hover.ps--in-scrolling.ps--x>.ps__scrollbar-x-rail>.ps__scrollbar-x {
    background-color: rgba(0, 0, 0, 0.2);
    height: 6px
}

.ps:hover.ps--in-scrolling.ps--y>.ps__scrollbar-y-rail>.ps__scrollbar-y {
    background-color: rgba(0, 0, 0, 0.2);
    width: 6px
}

.ps:hover>.ps__scrollbar-x-rail,
.ps:hover>.ps__scrollbar-y-rail {
    opacity: 0.6
}

.ps:hover>.ps__scrollbar-x-rail:hover>.ps__scrollbar-x {
    background-color: rgba(0, 0, 0, 0.2)
}

.ps:hover>.ps__scrollbar-y-rail:hover>.ps__scrollbar-y {
    background-color: rgba(0, 0, 0, 0.2)
}

#slimtest3.ps .ps__scrollbar-y-rail {
    left: 3px;
    right: auto
}

#slimtest4.ps>.ps__scrollbar-y-rail>.ps__scrollbar-y {
    background-color: #398bf7
}

#slimtest4.ps:hover.ps--in-scrolling.ps--y>.ps__scrollbar-y-rail>.ps__scrollbar-y {
    background-color: #398bf7
}

#slimtest4.ps:hover>.ps__scrollbar-y-rail:hover>.ps__scrollbar-y {
    background-color: #398bf7
}

/* mailbox / notification */
.topbar .top-navbar .mailbox { width: 320px; }
.topbar .top-navbar .mailbox ul { padding: 0; margin:0; }
.topbar .top-navbar .mailbox ul li { list-style:none; }

.mailbox ul li .drop-title {
    font-weight: 500;
    padding: 11px 20px 15px;
    border-bottom: 1px solid rgba(120, 130, 140, 0.13)
}

.mailbox ul li .nav-link {
    border-top: 1px solid rgba(120, 130, 140, 0.13);
    padding-top: 15px
}

.mailbox .message-center {
    height: 200px;
    overflow: auto;
    position: relative
}

.mailbox .message-center a {
    border-bottom: 1px solid rgba(120, 130, 140, 0.13);
    display: block;
    text-decoration: none;
    padding: 9px 15px
}

.mailbox .message-center a:hover {
    background: #e9edf2
}

.mailbox .message-center a div {
    white-space: normal
}

.mailbox .message-center a .user-img {
    width: 40px;
    position: relative;
    display: inline-block;
    margin: 0 10px 15px 0
}

.mailbox .message-center a .user-img img {
    width: 100%
}

.mailbox .message-center a .user-img .profile-status {
    border: 2px solid #ffffff;
    border-radius: 50%;
    display: inline-block;
    height: 10px;
    left: 30px;
    position: absolute;
    top: 1px;
    width: 10px
}

.mailbox .message-center a .user-img .online {
    background: #06d79c
}

.mailbox .message-center a .user-img .busy {
    background: #f64e60
}

.mailbox .message-center a .user-img .away {
    background: #ffb22b
}

.mailbox .message-center a .user-img .offline {
    background: #ffb22b
}

.mailbox .message-center a .mail-contnet {
    display: inline-block;
    width: 75%;
    vertical-align: middle
}

.mailbox .message-center a .mail-contnet h5 {
    margin: 5px 0px 0
}

.mailbox .message-center a .mail-contnet .mail-desc,
.mailbox .message-center a .mail-contnet .time {
    font-size: 12px;
    display: block;
    margin: 1px 0;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    color: #67757c;
    white-space: nowrap
}

.city-weather-days {
    margin: 0px
}

.city-weather-days li {
    text-align: center;
    padding: 15px 0
}

.city-weather-days li span {
    display: block;
    padding: 10px 0 0;
    color: #99abb4
}

.city-weather-days li i {
    display: block;
    font-size: 20px;
    color: #398bf7
}

.city-weather-days li h3 {
    font-weight: 300;
    margin-top: 5px
}

.weather-small h1 {
    line-height: 30px
}

.weather-small sup {
    font-size: 60%
}

.comment-widgets {
    position: relative;
    margin-bottom: 10px
}

.comment-widgets .comment-row {
    border-bottom: 1px solid rgba(120, 130, 140, 0.13);
    padding: 15px
}

.comment-widgets .comment-row:last-child {
    border-bottom: 0px
}

.comment-widgets .comment-row.active,
.comment-widgets .comment-row:hover {
    background: rgba(0, 0, 0, 0.02)
}

.comment-text {
    padding: 15px 15px 15px 20px;
    width: 80%
}

.comment-text.active .comment-footer .action-icons,
.comment-text:hover .comment-footer .action-icons {
    visibility: visible
}

.comment-text p {
    max-height: 50px;
    width: 100%;
    overflow: hidden
}

.comment-footer .action-icons {
    visibility: hidden
}

.comment-footer .action-icons a {
    padding-left: 7px;
    vertical-align: middle;
    color: #99abb4
}

.comment-footer .action-icons a.active,
.comment-footer .action-icons a:hover {
    color: #398bf7
}

.todo-list li {
    border: 0px;
    margin-bottom: 0px;
    padding: 20px 15px 15px 0px
}

.todo-list li .checkbox {
    width: 100%
}

.todo-list li .checkbox label {
    font-weight: 400;
    color: #455a64;
    width: 100%
}

.todo-list li:last-child {
    border-bottom: 0px
}

.todo-list li .assignedto {
    padding: 0px 0 0 27px;
    margin: 0px
}

.todo-list li .assignedto li {
    list-style: none;
    padding: 0px;
    display: inline-block;
    border: 0px;
    margin-right: 2px
}

.todo-list li .assignedto li img {
    width: 30px;
    border-radius: 100%
}

.todo-list li .item-date {
    padding-left: 25px;
    font-size: 12px;
    display: inline-block
}

.list-task .task-done span {
    text-decoration: line-through
}

.chat-list {
    margin: 0px;
    padding: 0px
}

.chat-list li {
    list-style: none;
    margin-top: 30px
}

.chat-list li .chat-img {
    display: inline-block;
    width: 45px;
    vertical-align: top
}

.chat-list li .chat-img img {
    width: 45px;
    border-radius: 100%
}

.chat-list li .chat-content {
    width: calc(100% - 140px);
    display: inline-block;
    padding-left: 15px
}

.chat-list li .chat-content h5 {
    color: #99abb4
}

.chat-list li .chat-content .box {
    display: inline-block;
    margin-bottom: 10px;
    color: #263238
}

.chat-list li .chat-time {
    display: inline-block;
    text-align: right;
    width: 80px;
    font-size: 13px;
    color: #99abb4
}

.chat-list li.odd .chat-content {
    text-align: right;
    width: calc(100% - 90px)
}

.chat-list li.odd .box {
    clear: both
}

.chat-list li.odd+.odd {
    margin-top: 0px
}

.chat-list li.reverse {
    text-align: right
}

.chat-list li.reverse .chat-time {
    text-align: left
}

.chat-list li.reverse .chat-content {
    padding-left: 0px;
    padding-right: 15px
}

.message-box ul li .drop-title {
    font-weight: 500;
    padding: 11px 20px 15px;
    border-bottom: 1px solid rgba(120, 130, 140, 0.13)
}

.message-box ul li .nav-link {
    border-top: 1px solid rgba(120, 130, 140, 0.13);
    padding-top: 15px
}

.message-box .message-widget {
    position: relative
}

.message-box .message-widget a {
    border-bottom: 1px solid rgba(120, 130, 140, 0.13);
    display: block;
    text-decoration: none;
    padding: 9px 15px
}

.message-box .message-widget a:hover {
    background: #e9edf2
}

.message-box .message-widget a:last-child {
    border-bottom: 0px
}

.message-box .message-widget a div {
    white-space: normal
}

.message-box .message-widget a .user-img {
    width: 45px;
    position: relative;
    display: inline-block;
    margin: 0 10px 15px 0
}

.message-box .message-widget a .user-img img {
    width: 100%
}

.message-box .message-widget a .user-img .profile-status {
    border: 2px solid #ffffff;
    border-radius: 50%;
    display: inline-block;
    height: 10px;
    left: 33px;
    position: absolute;
    top: -1px;
    width: 10px
}

.message-box .message-widget a .user-img .online {
    background: #06d79c
}

.message-box .message-widget a .user-img .busy {
    background: #f64e60
}

.message-box .message-widget a .user-img .away {
    background: #ffb22b
}

.message-box .message-widget a .user-img .offline {
    background: #ffb22b
}

.message-box .message-widget a .mail-contnet {
    display: inline-block;
    width: 70%;
    vertical-align: middle
}

.message-box .message-widget a .mail-contnet h5 {
    margin: 5px 0px 0
}

.message-box .message-widget a .mail-contnet .mail-desc,
.message-box .message-widget a .mail-contnet .time {
    font-size: 12px;
    display: block;
    margin: 1px 0;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    color: #67757c;
    white-space: nowrap
}

.calendar {
    float: left;
    margin-bottom: 0px
}

.fc-view {
    margin-top: 30px
}

.none-border .modal-footer {
    border-top: none
}

.fc-toolbar {
    margin-bottom: 5px;
    margin-top: 15px
}

.fc-toolbar h2 {
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    text-transform: uppercase
}

.fc-day {
    background: #ffffff
}

.fc-toolbar .fc-state-active,
.fc-toolbar .ui-state-active,
.fc-toolbar .ui-state-hover,
.fc-toolbar button:focus,
.fc-toolbar button:hover {
    z-index: 0
}

.fc-widget-header {
    border: 0px !important
}

.fc-widget-content {
    border-color: rgba(120, 130, 140, 0.13) !important
}

.fc th.fc-widget-header {
    color: #67757c;
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    padding: 7px 0px;
    text-transform: uppercase
}

.fc th.fc-sat,
.fc th.fc-sun,
.fc th.fc-thu,
.fc th.fc-tue {
    background: #f2f7f8
}

.fc th.fc-fri,
.fc th.fc-mon,
.fc th.fc-wed {
    background: #f2f7f8
}

.fc-view {
    margin-top: 0px
}

.fc-toolbar {
    margin: 0px;
    padding: 24px 0px
}

.fc-button {
    background: #ffffff;
    border: 1px solid rgba(120, 130, 140, 0.13);
    color: #67757c;
    text-transform: capitalize
}

.fc-button:hover {
    background: #e9edf2;
    opacity: 0.8
}

.fc-text-arrow {
    font-family: inherit;
    font-size: 16px
}

.fc-state-hover {
    background: #F5F5F5
}

.fc-unthemed .fc-today {
    border: 1px solid #f64e60;
    background: #e9edf2 !important
}

.fc-state-highlight {
    background: #f0f0f0
}

.fc-cell-overlay {
    background: #f0f0f0
}

.fc-unthemed .fc-today {
    background: #ffffff
}

.fc-event {
    border-radius: 0px;
    border: none;
    cursor: move;
    color: #ffffff !important;
    font-size: 13px;
    margin: 1px -1px 0 -1px;
    padding: 5px 5px;
    text-align: center;
    background: #398bf7
}

.calendar-event {
    cursor: move;
    margin: 10px 5px 0 0;
    padding: 6px 10px;
    display: inline-block;
    color: #ffffff;
    min-width: 140px;
    text-align: center;
    background: #398bf7
}

.calendar-event a {
    float: right;
    opacity: 0.6;
    font-size: 10px;
    margin: 4px 0 0 10px;
    color: #ffffff
}

.fc-basic-view td.fc-week-number span {
    padding-right: 5px
}

.fc-basic-view .fc-day-number {
    padding: 10px 15px;
    display: inline-block
}

.steamline {
    position: relative;
    border-left: 1px solid rgba(120, 130, 140, 0.13);
    margin-left: 20px
}

.steamline .sl-left {
    float: left;
    margin-left: -20px;
    z-index: 1;
    width: 40px;
    line-height: 40px;
    text-align: center;
    height: 40px;
    border-radius: 100%;
    color: #ffffff;
    background: #263238;
    margin-right: 15px
}

.steamline .sl-left img {
    max-width: 40px
}

.steamline .sl-right {
    padding-left: 50px
}

.steamline .sl-right .desc,
.steamline .sl-right .inline-photos {
    margin-bottom: 30px
}

.steamline .sl-item {
    border-bottom: 1px solid rgba(120, 130, 140, 0.13);
    margin: 20px 0
}

.sl-date {
    font-size: 10px;
    color: #99abb4
}

.time-item {
    border-color: rgba(120, 130, 140, 0.13);
    padding-bottom: 1px;
    position: relative
}

.time-item:before {
    content: " ";
    display: table
}

.time-item:after {
    background-color: #ffffff;
    border-color: rgba(120, 130, 140, 0.13);
    border-radius: 10px;
    border-style: solid;
    border-width: 2px;
    bottom: 0;
    content: '';
    height: 14px;
    left: 0;
    margin-left: -8px;
    position: absolute;
    top: 5px;
    width: 14px
}

.time-item-item:after {
    content: " ";
    display: table
}

.item-info {
    margin-bottom: 15px;
    margin-left: 15px
}

.item-info p {
    margin-bottom: 10px !important
}

.feeds {
    margin: 0px;
    padding: 0px
}

.feeds li {
    list-style: none;
    padding: 10px;
    display: block
}

.feeds li:hover {
    background: #ebf3f5
}

.feeds li>div {
    width: 40px;
    height: 40px;
    margin-right: 5px;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    border-radius: 100%
}

.feeds li>div i {
    line-height: 40px
}

.feeds li span {
    float: right;
    width: auto;
    font-size: 12px
}

.vert .carousel-item-next.carousel-item-left,
.vert .carousel-item-prev.carousel-item-right {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.vert .active.carousel-item-right,
.vert .carousel-item-next {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100% 0)
}

.vert .active.carousel-item-left,
.vert .carousel-item-prev {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0)
}

.social-widget .soc-header {
    padding: 15px;
    text-align: center;
    font-size: 36px;
    color: #fff
}

.social-widget .soc-header.box-facebook {
    background: #3b5998
}

.social-widget .soc-header.box-twitter {
    background: #00aced
}

.social-widget .soc-header.box-google {
    background: #f86c6b
}

.social-widget .soc-header.box-linkedin {
    background: #4875b4
}

.social-widget .soc-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center
}

.social-widget .soc-content div {
    padding: 10px
}

.social-widget .soc-content div h3 {
    margin-bottom: 0px
}

.social-profile-first {
    text-align: center;
    padding-top: 22%;
    margin-bottom: 96px
}

.social-profile-first.bg-over {
    background: rgba(56, 83, 161, 0.7)
}

.social-profile-first .middle {
    vertical-align: middle
}

.profiletimeline {
    position: relative;
    padding-left: 40px;
    margin-right: 10px;
    border-left: 1px solid rgba(120, 130, 140, 0.13);
    margin-left: 30px
}

.profiletimeline .sl-left {
    float: left;
    margin-left: -60px;
    z-index: 1;
    margin-right: 15px
}

.profiletimeline .sl-left img {
    max-width: 40px
}

.profiletimeline .sl-item {
    margin-top: 8px;
    margin-bottom: 30px
}

.profiletimeline .sl-date {
    font-size: 12px;
    color: #99abb4
}

.profiletimeline .time-item {
    border-color: rgba(120, 130, 140, 0.13);
    padding-bottom: 1px;
    position: relative
}

.profiletimeline .time-item:before {
    content: " ";
    display: table
}

.profiletimeline .time-item:after {
    background-color: #ffffff;
    border-color: rgba(120, 130, 140, 0.13);
    border-radius: 10px;
    border-style: solid;
    border-width: 2px;
    bottom: 0;
    content: '';
    height: 14px;
    left: 0;
    margin-left: -8px;
    position: absolute;
    top: 5px;
    width: 14px
}

.profiletimeline .time-item-item:after {
    content: " ";
    display: table
}

.profiletimeline .item-info {
    margin-bottom: 15px;
    margin-left: 15px
}

.profiletimeline .item-info p {
    margin-bottom: 10px !important
}

.little-profile .pro-img {
    margin-bottom: 20px
}

.little-profile .pro-img img {
    width: 128px;
    height: 128px;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    border-radius: 100%
}

.little-profile .soc-pro a {
    color: #99abb4
}

.little-profile .soc-pro a:hover {
    color: #263238
}

.stats-row {
    margin-bottom: 20px
}

.stats-row .stat-item {
    display: inline-block;
    padding-right: 15px
}

.stats-row .stat-item+.stat-item {
    padding-left: 15px;
    border-left: 1px solid rgba(120, 130, 140, 0.13)
}

.gaugejs-box {
    position: relative;
    margin: 0 auto
}

.gaugejs-box canvas.gaugejs {
    width: 100% !important;
    height: auto !important
}

.country-state {
    list-style: none;
    margin: 0;
    padding: 0 0 0 10px
}

.country-state li {
    margin-top: 30px;
    margin-bottom: 10px
}

.country-state h2 {
    margin-bottom: 0px;
    font-weight: 400
}

.contact-box {
    position: relative
}

.contact-box .add-ct-btn {
    position: absolute;
    right: 4px;
    top: -46px
}

.contact-box .contact-widget>a {
    padding: 15px 10px
}

.contact-box .contact-widget>a .user-img {
    margin-bottom: 0px !important
}

.blog-widget {
    margin-top: 30px
}

.blog-widget .blog-image img {
    border-radius: 4px;
    margin-top: -45px;
    margin-bottom: 20px;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2)
}

.msg-item {
    margin-bottom: 20px
}

.msg-body {
    background: #ffffff;
    padding: 15px;
    font-size: 14px;
    position: relative
}

.msg-body .dwn-aro {
    width: 0;
    position: absolute;
    bottom: -8px;
    height: 0;
    left: 10px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #ffffff
}

.m-pic img {
    width: 40px;
    border-radius: 100%
}

.activity-box .date-devider {
    border-top: 2px solid rgba(120, 130, 140, 0.13);
    position: relative
}

.activity-box .date-devider span {
    background: #e9edf2;
    padding: 5px 15px;
    border-radius: 60px;
    font-size: 14px;
    top: -15px;
    position: relative;
    margin-left: 20px
}

.activity-box .activity-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 30px
}

.activity-box .activity-item .image-list>a {
    margin-left: -15px;
    position: relative;
    vertical-align: middle
}

.activity-box .activity-item .image-list>a:first-child,
.activity-box .activity-item .image-list>a:last-child {
    margin-left: 0px
}

.activity-box .activity-item .image-list>a:hover {
    z-index: 10
}

.activity-box .activity-item .image-list>a:hover img {
    -webkit-box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2)
}

@media (min-width:1600px) {
    .col-xlg-1,
    .col-xlg-2,
    .col-xlg-3,
    .col-xlg-4,
    .col-xlg-5,
    .col-xlg-6,
    .col-xlg-7,
    .col-xlg-8,
    .col-xlg-9,
    .col-xlg-10,
    .col-xlg-11,
    .col-xlg-12 {
        float: left
    }
    .col-xlg-12 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }
    .col-xlg-11 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 91.66666667%;
        -ms-flex: 0 0 91.66666667%;
        flex: 0 0 91.66666667%;
        max-width: 91.66666667%
    }
    .col-xlg-10 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 83.33333333%;
        -ms-flex: 0 0 83.33333333%;
        flex: 0 0 83.33333333%;
        max-width: 83.33333333%
    }
    .col-xlg-9 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 75%;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%
    }
    .col-xlg-8 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 66.66666667%;
        -ms-flex: 0 0 66.66666667%;
        flex: 0 0 66.66666667%;
        max-width: 66.66666667%
    }
    .col-xlg-7 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 58.33333333%;
        -ms-flex: 0 0 58.33333333%;
        flex: 0 0 58.33333333%;
        max-width: 58.33333333%
    }
    .col-xlg-6 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }
    .col-xlg-5 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 41.66666667%;
        -ms-flex: 0 0 41.66666667%;
        flex: 0 0 41.66666667%;
        max-width: 41.66666667%
    }
    .col-xlg-4 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 33.33333333%;
        -ms-flex: 0 0 33.33333333%;
        flex: 0 0 33.33333333%;
        max-width: 33.33333333%
    }
    .col-xlg-3 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }
    .col-xlg-2 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 16.66666667%;
        -ms-flex: 0 0 16.66666667%;
        flex: 0 0 16.66666667%;
        max-width: 16.66666667%
    }
    .col-xlg-1 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 8.33333333%;
        -ms-flex: 0 0 8.33333333%;
        flex: 0 0 8.33333333%;
        max-width: 8.33333333%
    }
    .col-xlg-pull-12 {
        right: 100%
    }
    .col-xlg-pull-11 {
        right: 91.66666667%
    }
    .col-xlg-pull-10 {
        right: 83.33333333%
    }
    .col-xlg-pull-9 {
        right: 75%
    }
    .col-xlg-pull-8 {
        right: 66.66666667%
    }
    .col-xlg-pull-7 {
        right: 58.33333333%
    }
    .col-xlg-pull-6 {
        right: 50%
    }
    .col-xlg-pull-5 {
        right: 41.66666667%
    }
    .col-xlg-pull-4 {
        right: 33.33333333%
    }
    .col-xlg-pull-3 {
        right: 25%
    }
    .col-xlg-pull-2 {
        right: 16.66666667%
    }
    .col-xlg-pull-1 {
        right: 8.33333333%
    }
    .col-xlg-pull-0 {
        right: auto
    }
    .col-xlg-push-12 {
        left: 100%
    }
    .col-xlg-push-11 {
        left: 91.66666667%
    }
    .col-xlg-push-10 {
        left: 83.33333333%
    }
    .col-xlg-push-9 {
        left: 75%
    }
    .col-xlg-push-8 {
        left: 66.66666667%
    }
    .col-xlg-push-7 {
        left: 58.33333333%
    }
    .col-xlg-push-6 {
        left: 50%
    }
    .col-xlg-push-5 {
        left: 41.66666667%
    }
    .col-xlg-push-4 {
        left: 33.33333333%
    }
    .col-xlg-push-3 {
        left: 25%
    }
    .col-xlg-push-2 {
        left: 16.66666667%
    }
    .col-xlg-push-1 {
        left: 8.33333333%
    }
    .col-xlg-push-0 {
        left: auto
    }
    .offset-xlg-12 {
        margin-left: 100%
    }
    .offset-xlg-11 {
        margin-left: 91.66666667%
    }
    .offset-xlg-10 {
        margin-left: 83.33333333%
    }
    .offset-xlg-9 {
        margin-left: 75%
    }
    .offset-xlg-8 {
        margin-left: 66.66666667%
    }
    .offset-xlg-7 {
        margin-left: 58.33333333%
    }
    .offset-xlg-6 {
        margin-left: 50%
    }
    .offset-xlg-5 {
        margin-left: 41.66666667%
    }
    .offset-xlg-4 {
        margin-left: 33.33333333%
    }
    .offset-xlg-3 {
        margin-left: 25%
    }
    .offset-xlg-2 {
        margin-left: 16.66666667%
    }
    .offset-xlg-1 {
        margin-left: 8.33333333%
    }
    .offset-xlg-0 {
        margin-left: 0
    }
}

.col-xlg-1,
.col-xlg-2,
.col-xlg-3,
.col-xlg-4,
.col-xlg-5,
.col-xlg-6,
.col-xlg-7,
.col-xlg-8,
.col-xlg-9,
.col-xlg-10,
.col-xlg-11,
.col-xlg-12 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px
}

.bootstrap-touchspin .input-group-btn {
    -webkit-box-align: normal;
    -ms-flex-align: normal;
    align-items: normal
}

.form-control-danger,
.form-control-success,
.form-control-warning {
    padding-right: 2.25rem;
    background-repeat: no-repeat;
    background-position: center right .5625rem;
    -webkit-background-size: 1.125rem 1.125rem;
    background-size: 1.125rem 1.125rem
}

.has-success .col-form-label,
.has-success .custom-control,
.has-success .form-check-label,
.has-success .form-control-feedback,
.has-success .form-control-label {
    color: #06d79c
}

.has-success .form-control-success {
    background-image: url(https://www.wrappixel.com/demos/admin-templates/admin-pro/assets/images/icon/success.svg)
}

.has-success .form-control {
    border-color: #06d79c
}

.has-warning .col-form-label,
.has-warning .custom-control,
.has-warning .form-check-label,
.has-warning .form-control-feedback,
.has-warning .form-control-label {
    color: #ffb22b
}

.has-warning .form-control-warning {
    background-image: url(https://www.wrappixel.com/demos/admin-templates/admin-pro/assets/images/icon/warning.svg)
}

.has-warning .form-control {
    border-color: #ffb22b
}

.has-danger .col-form-label,
.has-danger .custom-control,
.has-danger .form-check-label,
.has-danger .form-control-feedback,
.has-danger .form-control-label {
    color: #f64e60
}

.has-danger .form-control-danger {
    background-image: url(https://www.wrappixel.com/demos/admin-templates/admin-pro/assets/images/icon/danger.svg)
}

.has-danger .form-control {
    border-color: #f64e60
}

.input-group-addon [type=checkbox]:checked,
.input-group-addon [type=checkbox]:not(:checked),
.input-group-addon [type=radio]:checked,
.input-group-addon [type=radio]:not(:checked) {
    position: initial;
    opacity: 1
}

.invisible {
    visibility: hidden !important
}

.hidden-xs-up {
    display: none !important
}

@media (max-width:575px) {
    .hidden-xs-down {
        display: none !important
    }
}

@media (min-width:576px) {
    .hidden-sm-up {
        display: none !important
    }
}

@media (max-width:767px) {
    .hidden-sm-down {
        display: none !important
    }
}

@media (min-width:768px) {
    .hidden-md-up {
        display: none !important
    }
}

@media (max-width:991px) {
    .hidden-md-down {
        display: none !important
    }
}

@media (min-width:992px) {
    .hidden-lg-up {
        display: none !important
    }
}

@media (max-width:1199px) {
    .hidden-lg-down {
        display: none !important
    }
}

@media (min-width:1200px) {
    .hidden-xl-up {
        display: none !important
    }
}

.hidden-xl-down {
    display: none !important
}

.card-inverse .card-blockquote,
.card-inverse .card-footer,
.card-inverse .card-header,
.card-inverse .card-title {
    color: #ffffff
}

.ps-container {
    -ms-touch-action: auto;
    touch-action: auto;
    overflow: hidden !important;
    -ms-overflow-style: none
}

@supports (-ms-overflow-style:none) {
    .ps-container {
        overflow: auto !important
    }
}

@media (-ms-high-contrast:none),
screen and (-ms-high-contrast:active) {
    .ps-container {
        overflow: auto !important
    }
}

.ps-container.ps-active-x>.ps-scrollbar-x-rail,
.ps-container.ps-active-y>.ps-scrollbar-y-rail {
    display: block;
    background-color: transparent
}

.ps-container.ps-in-scrolling.ps-x>.ps-scrollbar-x-rail {
    background-color: transparent;
    opacity: .9
}

.ps-container.ps-in-scrolling.ps-x>.ps-scrollbar-x-rail>.ps-scrollbar-x {
    background-color: rgba(0, 0, 0, 0.2);
    height: 11px
}

.ps-container.ps-in-scrolling.ps-y>.ps-scrollbar-y-rail {
    background-color: transparent;
    opacity: .9
}

.ps-container.ps-in-scrolling.ps-y>.ps-scrollbar-y-rail>.ps-scrollbar-y {
    background-color: rgba(0, 0, 0, 0.2);
    width: 11px
}

.ps-container>.ps-scrollbar-x-rail {
    display: none;
    position: absolute;
    opacity: 0;
    -webkit-transition: background-color .2s linear, opacity .2s linear;
    -o-transition: background-color .2s linear, opacity .2s linear;
    -moz-transition: background-color .2s linear, opacity .2s linear;
    transition: background-color .2s linear, opacity .2s linear;
    bottom: 0;
    height: 15px
}

.ps-container>.ps-scrollbar-x-rail>.ps-scrollbar-x {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.2);
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    -webkit-transition: background-color .2s linear, height .2s linear, width .2s ease-in-out, -webkit-border-radius .2s ease-in-out;
    transition: background-color .2s linear, height .2s linear, width .2s ease-in-out, -webkit-border-radius .2s ease-in-out;
    -o-transition: background-color .2s linear, height .2s linear, width .2s ease-in-out, border-radius .2s ease-in-out;
    -moz-transition: background-color .2s linear, height .2s linear, width .2s ease-in-out, border-radius .2s ease-in-out, -moz-border-radius .2s ease-in-out;
    -webkit-transition: background-color .2s linear, height .2s linear, width .2s ease-in-out, border-radius .2s ease-in-out;
    transition: background-color .2s linear, height .2s linear, width .2s ease-in-out, border-radius .2s ease-in-out;
    transition: background-color .2s linear, height .2s linear, width .2s ease-in-out, border-radius .2s ease-in-out, -webkit-border-radius .2s ease-in-out, -moz-border-radius .2s ease-in-out;
    bottom: 2px;
    height: 6px
}

.ps-container>.ps-scrollbar-x-rail:active>.ps-scrollbar-x,
.ps-container>.ps-scrollbar-x-rail:hover>.ps-scrollbar-x {
    height: 6px
}

.ps-container>.ps-scrollbar-y-rail {
    display: none;
    position: absolute;
    opacity: 0;
    -webkit-transition: background-color .2s linear, opacity .2s linear;
    -o-transition: background-color .2s linear, opacity .2s linear;
    -moz-transition: background-color .2s linear, opacity .2s linear;
    transition: background-color .2s linear, opacity .2s linear;
    right: 0;
    width: 15px
}

.ps-container>.ps-scrollbar-y-rail>.ps-scrollbar-y {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.2);
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    -webkit-transition: background-color .2s linear, height .2s linear, width .2s ease-in-out, -webkit-border-radius .2s ease-in-out;
    transition: background-color .2s linear, height .2s linear, width .2s ease-in-out, -webkit-border-radius .2s ease-in-out;
    -o-transition: background-color .2s linear, height .2s linear, width .2s ease-in-out, border-radius .2s ease-in-out;
    -moz-transition: background-color .2s linear, height .2s linear, width .2s ease-in-out, border-radius .2s ease-in-out, -moz-border-radius .2s ease-in-out;
    -webkit-transition: background-color .2s linear, height .2s linear, width .2s ease-in-out, border-radius .2s ease-in-out;
    transition: background-color .2s linear, height .2s linear, width .2s ease-in-out, border-radius .2s ease-in-out;
    transition: background-color .2s linear, height .2s linear, width .2s ease-in-out, border-radius .2s ease-in-out, -webkit-border-radius .2s ease-in-out, -moz-border-radius .2s ease-in-out;
    right: 2px;
    width: 6px
}

.ps-container>.ps-scrollbar-y-rail:active>.ps-scrollbar-y,
.ps-container>.ps-scrollbar-y-rail:hover>.ps-scrollbar-y {
    width: 6px
}

.ps-container:hover.ps-in-scrolling.ps-x>.ps-scrollbar-x-rail {
    background-color: transparent;
    opacity: .9
}

.ps-container:hover.ps-in-scrolling.ps-x>.ps-scrollbar-x-rail>.ps-scrollbar-x {
    background-color: rgba(0, 0, 0, 0.2);
    height: 6px
}

.ps-container:hover.ps-in-scrolling.ps-y>.ps-scrollbar-y-rail {
    background-color: transparent;
    opacity: .9
}

.ps-container:hover.ps-in-scrolling.ps-y>.ps-scrollbar-y-rail>.ps-scrollbar-y {
    background-color: rgba(0, 0, 0, 0.2);
    width: 6px
}

.ps-container:hover>.ps-scrollbar-x-rail,
.ps-container:hover>.ps-scrollbar-y-rail {
    opacity: .6
}

.ps-container:hover>.ps-scrollbar-x-rail:hover {
    background-color: transparent;
    opacity: .9
}

.ps-container:hover>.ps-scrollbar-x-rail:hover>.ps-scrollbar-x {
    background-color: rgba(0, 0, 0, 0.2)
}

.ps-container:hover>.ps-scrollbar-y-rail:hover {
    background-color: transparent;
    opacity: .9
}

.ps-container:hover>.ps-scrollbar-y-rail:hover>.ps-scrollbar-y {
    background-color: rgba(0, 0, 0, 0.2)
}

.ps-container .ps-scrollbar-y-rail {
    position: absolute;
    right: 3px;
    width: 8px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    opacity: 0;
    filter: alpha(opacity=0);
    -o-transition: background-color .2s linear, opacity .2s linear;
    -webkit-transition: background-color .2s linear, opacity .2s linear;
    -moz-transition: background-color .2s linear, opacity .2s linear;
    transition: background-color .2s linear, opacity .2s linear
}
.toolbar-footer .hidden{
    display: none;
}
@media (min-width:1650px) {
    .widget-app-columns {
        -webkit-column-count: 3;
        column-count: 3
    }
    .campaign {
        height: 365px !important
    }
    .website-visitor {
        height: 445px
    }
    .auto-height {
        max-height: 315px
    }
}

@media (max-width:1600px) {
    .website-visitor {
        height: 333px
    }
    .auto-height {
        min-height: 250px
    }
}

@media (max-width:1370px) {
    .widget-app-columns {
        -webkit-column-count: 2;
        column-count: 2
    }
    .website-visitor {
        height: 370px
    }
}

@media (min-width:1024px) {
    .page-wrapper {
        margin-left: 250px
    }
}

@media (max-width:1023px) {
    .page-wrapper {
        margin-left: 60px;
        -webkit-transition: 0.2s ease-in;
        -o-transition: 0.2s ease-in;
        transition: 0.2s ease-in
    }
    .widget-app-columns {
        -webkit-column-count: 1;
        column-count: 1
    }
    .inbox-center a {
        width: 200px
    }
    .hdr-nav-bar .navbar .navbar-nav>li a {
        padding: 12px 15px;
        border-bottom: 0px solid transparent;
        border-left: 2px solid transparent
    }
    .hdr-nav-bar .navbar .navbar-nav>li:hover a {
        padding: 12px 20px
    }
    .hdr-nav-bar .call-to-act .custom-select {
        margin-bottom: 10px
    }
    .d-flex {
        display: block !important
    }
    .d-flex.no-block {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important
    }
}

@media (min-width:768px) {
    .navbar-header {
        width: 250px;
        -ms-flex-negative: 0;
        flex-shrink: 0
    }
    .navbar-header .navbar-brand {
        padding-top: 0px
    }
    .page-titles .breadcrumb {
        float: right
    }
    .card-group .card:first-child,
    .card-group .card:not(:first-child):not(:last-child) {
        border-right: 1px solid rgba(0, 0, 0, 0.03)
    }
    .material-icon-list-demo .icons div {
        width: 33%;
        padding: 15px;
        display: inline-block;
        line-height: 40px
    }
    .mini-sidebar .page-wrapper {
        margin-left: 60px
    }
    .flex-wrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
        -webkit-flex-wrap: nowrap !important
    }
}
/* flags */
.flag-lang { border-radius:2px; vertical-align:middle; }

@media (max-width:767px) {
  .container-fluid { padding: 25px 15px; }
  .topbar { position: fixed; width: 100%; }
  .topbar .top-navbar { flex-direction: row; align-items:center; }
  .topbar .top-navbar .navbar-collapse { display:flex; width:100%; }
  .topbar .top-navbar .navbar-nav { flex-direction:row; }
  .topbar .top-navbar .navbar-nav>.nav-item.show .dropdown-menu { width:100%; margin-top:0; position: absolute;}
  .topbar .top-navbar .navbar-nav > .nav-item > .nav-link { padding-left:.5rem; padding-right:.5rem; }
    .mega-dropdown .dropdown-menu {
        height: 480px;
        overflow: auto
    }
    .mini-sidebar .page-wrapper {
        margin-left: 0px;
        padding-top: 60px
    }
    .comment-text .comment-footer .action-icons {
        display: block;
        padding: 10px 0
    }
    .vtabs .tabs-vertical {
        width: auto
    }
    .material-icon-list-demo .icons div {
        width: 100%
    }
    .error-page .footer {
        position: fixed;
        bottom: 0px;
        z-index: 10
    }
    .error-box {
        position: relative;
        padding-bottom: 60px
    }
    .error-body {
        padding-top: 10%
    }
    .error-body h1 {
        font-size: 100px;
        font-weight: 600;
        line-height: 100px
    }
    .login-register {
        position: relative;
        overflow: auto;
    }
    .login-box {
        width: 90%
    }
    .login-sidebar {
        padding: 10% 0
    }
    .login-sidebar .login-box {
        position: relative
    }
    .chat-main-box .chat-left-aside {
        left: -250px;
        position: absolute;
        -webkit-transition: 0.5s ease-in;
        -o-transition: 0.5s ease-in;
        transition: 0.5s ease-in;
        background: #ffffff
    }
    .chat-main-box .chat-left-aside.open-pnl {
        left: 0px
    }
    .chat-main-box .chat-left-aside .open-panel {
        display: block
    }
    .chat-main-box .chat-right-aside {
        width: 100%
    }
    ul.timeline:before {
        left: 40px
    }
    ul.timeline>li>.timeline-panel {
        width: calc(100% - 90px)
    }
    ul.timeline>li>.timeline-badge {
        top: 16px;
        left: 15px;
        margin-left: 0
    }
    ul.timeline>li>.timeline-panel {
        float: right
    }
    ul.timeline>li>.timeline-panel:before {
        right: auto;
        left: -15px;
        border-right-width: 15px;
        border-left-width: 0
    }
    ul.timeline>li>.timeline-panel:after {
        right: auto;
        left: -14px;
        border-right-width: 14px;
        border-left-width: 0
    }
    .left-aside {
        width: 100%;
        position: relative;
        border: 0px
    }
    .right-aside {
        margin-left: 0px
    }
    .flex-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
        -webkit-flex-wrap: wrap !important
    }
    .chat-list li .chat-content {
        width: calc(100% - 80px)
    }
    .fc-toolbar .fc-center,
    .fc-toolbar .fc-left,
    .fc-toolbar .fc-right {
        float: none;
        display: block;
        text-align: center;
        margin-top: 10px;
        overflow: hidden
    }
    .dataTables_wrapper .dataTables_paginate {
        width: 100%
    }
    .dataTables_wrapper .dataTables_paginate .paginate_button .page-link {
        padding: 0.5rem 0.6rem
    }
}

.vulnerability-custom-checkbox, .user-custom-checkbox, .client-custom-checkbox, .team-custom-checkbox, .project-custom-checkbox
{
    position: relative !important;
    left: 0px !important;
    opacity: 1 !important;
}

.Critical{
    background-color: #A8353A;
    font-weight: bold;
}

.High{
    background-color: #D34628;
    font-weight: bold;
}

.Medium{
    background-color: #f5b800;
    font-weight: bold;
}
.Low{
    background-color: #009FE0;
    font-weight: bold;
}

.Info{
    background-color: #71974C;
    font-weight: bold;
}

.grid-container {
    display: grid;
    grid-template-columns: auto auto auto;
  }
  .grid-item {
    padding: 0px;
    margin-bottom: 10px;
  }
  .grid-item .btn{
    color: #fff;

  }

/* spinner (keeps same look but lighter) */
.spinner {
  width: 32px;
  height: 32px;
  border: 4px solid rgba(255,255,255,0.14);
  border-top: 4px solid #fff;
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
  display:inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Dashboard main cards */
.dashboard-card {
  border: 1px solid var(--border-weak);
  padding: 16px;
  border-radius: 12px;
  color: var(--title-color);
  box-shadow: 0 2px 10px rgba(3,6,15,0.6);
  min-height: 96px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  transition: transform .18s ease, box-shadow .18s ease;
  margin: 10px;
}
.dashboard-card.dashb-1 {
    background-color: #1E2A78;
}
.dashboard-card.dashb-2 {
    background-color: #5A32A3;
}
.dashboard-card.dashb-3 {
    background-color: #8A2BE2;
}
.dashboard-card.dashb-4 {
    background-color: #f5b800;
}
.dashboard-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(3,6,15,0.75);
}

/* head */
.card-head { display:flex; justify-content:space-between; align-items:center; margin-bottom:6px; }
.head-left { display:flex; align-items:center; gap:10px; }
.icon-small {
  font-size:14px;
  opacity:0.95;
  color: rgba(255,255,255,0.85);
  width:26px; height:26px;
  display:inline-flex; align-items:center; justify-content:center;
}
.head-label {
  color: rgba(255,255,255,0.85);
  font-weight:600;
  font-size:0.87rem;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  margin-left:0px;
}

.shield-bg {
  background: linear-gradient(310deg, #ee090900, #fff);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shield-bg i {
  color: #fff;
  font-size: 20px;
}

/* value */
.card-body .value-wrap { display:flex; align-items:flex-end; gap:8px; }
.card-body .value {
  font-size:1.9rem;
  font-weight:700;
  letter-spacing:-0.02em;
  color: #fff;
  line-height:1;
}

/* delta badges */
.delta { min-width:46px; padding:6px 8px; font-weight:700; font-size:0.82rem; border-radius:12px; display:inline-flex; align-items:center; justify-content:center; box-shadow: 0 2px 8px rgba(0,0,0,0.45); }
.delta-pos { color: var(--accent-green); background: rgba(11,180,93,0.12); border: 1px solid rgba(11,180,93,0.12); }
.delta-neg { color: var(--accent-red); background: rgba(255,77,79,0.10); border: 1px solid rgba(255,77,79,0.08); }

@media (max-width:575.98px){
  .card-body .value{ font-size:1.5rem; }
  .head-label{ font-size:.82rem; }
}

/* compact controls */
.compact-cards { gap:.5rem; }
.control-card {
  background: var(--control-bg);
  border: 1px solid var(--border-weak);
  border-radius: 10px;
  padding: 8px;
  display:flex;
  flex-direction:column;
  gap:6px;
  min-height:56px;
  justify-content:center;
  transition: box-shadow .14s ease, transform .12s ease;
}
.control-card:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(2,6,23,0.28); }
.control-card:focus-within { outline: 2px solid rgba(11,180,93,0.14); box-shadow: 0 8px 20px rgba(11,180,93,0.06); border-color: rgba(11,180,93,0.22); }

.card-label { font-size:0.86rem; font-weight:600; color: rgba(255,255,255,0.9); margin:0; padding:0 2px; }

.theme-toggle-btn {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff; /* white icon + text */
    font-size: 14px;
    cursor: pointer;
}

.theme-toggle-btn svg {
    stroke: #fff;
}

.theme-toggle-btn:hover {
    background: rgba(255,255,255,0.1);
}

.card.fir-card-vul-analy, .card.sec-card-vul-analy, .card.third-card-vul-analy, .card.four-card-vul-analy {
    background-color: rgb(66 73 90 / 85%) !important;
}

.light-mode .card.fir-card-vul-analy {
    background-color: #ffffff !important;
    height: 64px;
}
.light-mode .card.sec-card-vul-analy {
    background-color: #ffffff !important;
     height: 64px;
}
.light-mode .card.third-card-vul-analy {
    background-color: #ffffff !important;
     height: 64px;
}
.light-mode .card.four-card-vul-analy {
    background-color: #ffffff !important;
    height: 64px;
}

/* severity card / inner cards */
.severity-card {
  background: linear-gradient(180deg, rgba(3,7,18,0.9), rgba(6,10,20,0.9));
  border-radius: 12px;
  color: #fff;
  margin-top: 0.5rem !important;
  box-shadow: 0 6px 18px rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.08);
}

/* Light mode only for cards */
.light-mode .severity-card {
  background: #ffffff;
  color: #111;
  border: 1px solid #ddd;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

/* Light mode chart panel (optional brightness) */
.light-mode .chart-panel {
  background: #f8f9fa;
  box-shadow: 0 4px 8px rgba(0,0,0,0.06);
}

/* Light mode title colors */
.light-mode .card-title {
  color: #222;
}

/* titles */
.header-flex { padding-bottom: 0.25rem !important; }
.title-with-icon { display:flex; align-items:center; gap:12px; }
.title-icon { font-size:20px; transform: translateY(-2px); }
.card-title { font-weight:700; font-size:20px; color: var(--title-color); margin:0; }

/* chart panel: make it dark instead of white */
.chart-panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-radius: 12px;
  padding: 12px;
  margin-top: 0.5rem !important;
  box-shadow: 0 6px 16px rgba(0,0,0,0.16);
}
.echarts-legend {
  font-size: 15px;
}
/* ensure chart containers are transparent */
#vulnerability_summary,
#vulnerability_age,
#peakcock_risk_rating,
#cyber_exposure_score,
#target_coverage,
#top_vulnerable_assets,
#remediation_trend,
#vulnerability_status {
  background: transparent !important;
}

/* custom heading (page title) - make it light) */
.custom-heading {
  font-family: 'Poppins,Helvetica,sans-serif';
  font-size: 2rem;
  color: var(--title-color);
  text-shadow: none;
}

.light-mode .custom-heading {
  color: #101011;
}

/* Select2 / dropdowns - dark theme */
.compact-select + .select2-container--default .select2-selection--single {
  background: rgba(255,255,255,0.02) !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  color: var(--title-color, #e6eefc) !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 32px;
  font-size: 15px;
  color: var(--title-color);
}
.select2-container--default .select2-results { background: rgba(8,12,22,0.98); border-radius: 12px; box-shadow: 0 8px 30px rgba(2,6,23,0.6); padding:8px; color: var(--title-color); }
.select2-container--default .select2-results__option { padding: 12px 14px; margin:6px 6px; border-radius:10px; color: var(--muted); font-size:15px; display:flex; align-items:center; gap:12px; background: transparent; }
.select2-container--default .select2-results__option--highlighted { background: rgba(108,92,231,0.08); color: #fff; }
.select2-container--default .select2-results__option[aria-selected="true"] { background: rgba(108,92,231,0.12); color: #fff; font-weight:600; }

/* icon in select options */
.select2-item-icon { width:36px; height:36px; border-radius:8px; display:inline-flex; align-items:center; justify-content:center; font-size:18px; background: rgba(255,255,255,0.03); color: #dbe7ff; flex:0 0 36px; }

/* check mark hidden by default */
.select2-item-check { display:none; }
.select2-results__option[aria-selected="true"] .select2-item-check { display:inline-flex; color: #cfe3ff; font-weight:700; margin-left:8px; }

/* search field in dropdown */
.select2-dropdown .select2-search { padding: 8px 12px 0 12px; }
.select2-container--default .select2-search--dropdown .select2-search__field { width:100%; height:36px; border-radius:10px; padding:6px 10px; border: 1px solid rgba(255,255,255,0.06); background: rgba(255,255,255,0.01); color: var(--title-color); }

/* buttons */
.btn-compact {
  height:36px;
  padding:0 .8rem;
  border-radius:8px;
  font-weight:700;
  font-size:0.92rem;
  display:inline-flex;
  align-items:center;
  gap:8px;
  box-shadow: 0 6px 14px rgba(3,6,15,0.35);
  border: 1px solid rgba(255,255,255,0.04);
  background: linear-gradient(180deg, rgba(220,60,60,0.12), rgba(220,60,60,0.06));
  color: #fff;
  cursor:pointer;
}
.btn-compact .compact-icon { font-size:0.96rem; opacity:0.98; }
.btn-compact:focus { outline:none; box-shadow: 0 8px 18px rgba(11,180,93,0.12); border-color: rgba(11,180,93,0.22); }
.btn-compact:hover { transform: translateY(-1px); }

/* small helpers */
.lstick { width:15px; height:18px; display:inline-block; margin-right:8px; background: linear-gradient(180deg,#6c5ce7,#4f46e5); border-radius:3px; vertical-align:middle; }

/* add subtle separators for card blocks */
.card .card-body { border-top: 1px solid rgba(255,255,255,0.02); }

/* ensure text inside white panels is readable - if any white left, fix it */
.card .card-title, .card .card-body p, .card .card-body h3 { color: var(--title-color) !important; }

.light-mode .card .card-title, .light-mode .card .card-body p, .light-mode .card .card-body h3{
    color: #6e2bff;
    background-image: linear-gradient(45deg, #6e2bff 25%, #3a0fb7 50%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Optional: scrollbar styling */
.scroll-sidebar::-webkit-scrollbar, .stats-card::-webkit-scrollbar { width: 8px; height:8px; }
.scroll-sidebar::-webkit-scrollbar-thumb, .stats-card::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.08); border-radius: 6px; }

/* Responsive tweaks left untouched */
@media (max-width: 576px) {
  .select2-container--default .select2-selection--single { height:44px; }
  .select2-results__option { padding: 10px 12px; }
}

/* ========= Form label + controls (dark theme) ========= */
.form-label-dark {
  display: inline-block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--title-color, #e6eefc); /* uses token if available */
}

/* page title tweaks */
.page-titles .custom-heading {
  color: var(--title-color, #e6eefc);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.05;
}

/* container spacing for the controls row */
.dashboard-controls .form-select,
.dashboard-controls .btn-compact {
  min-height: 44px;
}

/* ensure native form-selects (Bootstrap) match dark style when Select2 not initialized */
.form-select.compact-select {
  /* background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06); */
  color: var(--title-color, #e6eefc);
  padding: 10px 12px;
  border-radius: 10px;
}
/* make select caret and placeholder visible */
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: var(--title-color, #e6eefc) transparent transparent !important;
}
.select2-container--default .select2-selection__rendered {
  color: var(--title-color, #e6eefc) !important;
}

/* small helper: ensure label and control align on very small screens */
@media (max-width: 575.98px) {
  .dashboard-controls .col { margin-bottom: 6px; }
  .page-titles .custom-heading { font-size: 1.25rem; }
}

/* Accessibility: focus ring for keyboard users */
.form-select.compact-select:focus,
.select2-container--default .select2-selection--single:focus {
  outline: 2px solid rgba(108,92,231,0.18);
  box-shadow: 0 6px 18px rgba(108,92,231,0.06);
  border-color: rgba(108,92,231,0.22);
}

/* If legacy inline styles still override, this last-resort rule wins */
label.form-label-dark { color: var(--title-color, #e6eefc) !important; }

/* Container layout */
.dashboard-filters{
  display: flex;
  align-items: flex-end;          /* aligns download button with selects */
  gap: 20px;
  margin: 12px 0 28px;            /* tighter vertical spacing */
  padding-right: 20px;
  flex-wrap: wrap;
}

/* Left group (label + select) */
.filters-left{
  display: flex;
  flex-direction: column;
  min-width: 260px;               /* adjust to fit your layout */
  margin-bottom: 10px;
}

/* Label */
.filter-label{
  font-size: 15px;
  color: rgb(255 255 255 / 74%);
  margin-bottom: 6px;
  font-weight: 600;
}

/* Styled select */
.filter-select{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.06));
  border: 1px solid rgba(255,255,255,0.04);
  padding: 10px 40px 10px 16px;
  border-radius: 8px;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  box-shadow: inset 0 -6px 18px rgba(0,0,0,0.45), 0 2px 0 rgba(255,255,255,0.02);
  outline: none;
  position: relative;
  transition: box-shadow .18s ease, border-color .12s ease, transform .08s ease;
  background-image: linear-gradient(90deg, transparent, transparent), url("data:image/svg+xml,%3Csvg width='14' height='10' viewBox='0 0 14 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23ffffff' stroke-opacity='.7' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  width: 280px;
}
.light-mode .filter-select{
background-image: linear-gradient(90deg, transparent, transparent),url("data:image/svg+xml,%3Csvg width='14' height='10' viewBox='0 0 14 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23000000' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: right 12px center;
}

/* smaller select variant for small screens */
@media (max-width: 880px){
  .filters-left{ min-width: 48%; }
  .dashboard-filters{ gap: 12px; margin-bottom: 14px; }
}

/* Download button styling */
.filters-right{
  margin-left: auto;              /* pushes button to the right side */
  display:flex;
  align-items:center;
}

.btn-download{
  display:inline-flex;
  gap:10px;
  align-items:center;
  background: linear-gradient(180deg, rgba(66,30,120,0.95), rgba(54,15,92,0.95));
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 12px;
  font-weight:700;
  box-shadow: 0 10px 22px rgba(17,10,34,0.6);
  cursor:pointer;
  transition: transform .12s ease, box-shadow .12s ease;
}
.btn-download:hover{ transform: translateY(-3px); box-shadow: 0 16px 34px rgba(17,10,34,0.7); }
.btn-download:active{ transform: translateY(-1px); }

/* small icon inside button */
.btn-icon{
  display:inline-flex;
  width:22px;height:22px;
  align-items:center;justify-content:center;
  background: rgba(255,255,255,0.06);
  border-radius:6px;
  font-size:14px;
}

.filter-select:focus,
.filter-select:active {
  background-color: #232848; /* dark background on open/focus */
  color: #fff;
  border-color: #7d3cff;     /* match your purple accent */
}

.light-mode .filter-select:focus,
.light-mode .filter-select:active {
  background-color: #FFFF; /* dark background on open/focus */
  color: #101011;
  border-color: #FFFF;     /* match your purple accent */
}

/* Optional subtle label underline accent */
.filter-label::after{
  content: "";
  display:block;
  width:36px;
  height:4px;
  border-radius:4px;
  margin-top:6px;
  background: linear-gradient(90deg,#2fd6ff,#ff6fb5);
  opacity:0.9;
}

/* Make dropdown list (options) dark-themed */
.filter-select option {
  background-color: #1b1f38; /* dark navy background */
  color: #fff;               /* white text */
}

.light-mode .filter-select option {
  background-color: #ffffff; /* dark navy background */
  color: #101011;               /* white text */
}

/* For older browsers that ignore option background */
.filter-select optgroup {
  background-color: #1b1f38;
  color: #fff;
}

.gradient-subheading {
  color: #fff; /* ensures text is readable */
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-style: italic;
}

/* Base card styling */
.severity-card-ana {
  border: none;
  border-radius: 12px;
  color: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
}

/* Hover effect */
.severity-card-ana:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.35);
}

/* Severity Colors with radial gradients */
.severity-card-ana.critical {
  background: radial-gradient(circle at 20% 10%, #E84258 0%, #b92f46 70%) !important;
}

.severity-card-ana.high {
  background: radial-gradient(circle at 20% 10%, #F05B2E 0%, #c24a22 70%) !important;
}

.severity-card-ana.medium {
  /* background: radial-gradient(circle at 20% 10%, #f5b800 0%, #f5b800 70%) !important; */
  background: #f5b800 !important;
}

.severity-card-ana.low {
  background: radial-gradient(circle at 20% 10%, #24B5FF 0%, #1d8fd4 70%) !important;
}

/* Icon style consistency */
.font-42 {
  font-size: 42px !important;
}

/* table */
.table-modern thead th {
  color: #6f7b94;
  font-weight: 700;
  font-size: 14px;
  border: none;
  padding: 18px;
}
.table-modern tbody tr {
  border-top: 1px solid rgba(255,255,255,0.03);
  background: transparent;
}
.table-modern tbody tr:hover {
  background: rgba(255,255,255,0.02);
}

/* icon circle */
.vuln-icon i {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:25px;
  height:25px;
  border-radius:10px;
  color:#fff;
  font-size:18px;
}

/* text */
.vuln-name { font-weight:600; color:#FFFF; }
.vuln-sub { color: rgba(230,238,249,0.6); }

/* badges & progress */
.badge-severity { font-weight:700; padding:6px 10px; border-radius:999px; font-size:13px; }

/* severity colours mapped to badges & progress bar */
.badge-severity.badge-critical,
.progress-bar.progress-critical,
.vuln-icon .fa-bolt { background: linear-gradient(135deg,#d9534f,#ff5c5c); }
.badge-severity.badge-high,
.progress-bar.progress-high,
.vuln-icon .fa-exclamation-triangle { background: linear-gradient(135deg,#f0ad4e,#ffb84d); color:#222; }
.badge-severity.badge-medium,
.progress-bar.progress-medium,
.vuln-icon .fa-exclamation-circle { background: linear-gradient(135deg,#f7dc6f,#ffd66b); color:#222; }
.badge-severity.badge-low,
.progress-bar.progress-low,
.vuln-icon .fa-shield { background: linear-gradient(135deg,#5bc0de,#55d0e6); }

/* make the progress bars subtle */
.progress-sm { background: rgba(255,255,255,0.04); border-radius: 10px; }
.progress-bar { box-shadow: none; border-radius: 10px; }


/* container layout */
        .pg-container {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px 20px;
            background-blend-mode: overlay;
            box-sizing: border-box;
        }

        /* card */
        .pg-card {
            width: 100%;
            max-width: 600px;
            border-radius: var(--pg-radius);
            background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
            backdrop-filter: blur(8px) saturate(110%);
            -webkit-backdrop-filter: blur(8px);
            box-shadow: var(--pg-shadow);
            border: 1px solid rgba(255,255,255,0.04);
            overflow: hidden;
            padding: 28px;
        }

        .pg-brand {
            display:flex;
            gap:16px;
            align-items:center;
            justify-content:center;
            margin-bottom: 10px;
        }

        .pg-brand img {
            display:block;
            max-height:72px;
            object-fit:contain;
            border-radius: 8px;
            background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
            padding:6px;
        }

        .pg-title {
            text-align:center;
            margin-bottom: 6px;
            font-weight:700;
            font-size:22px;
            letter-spacing: 0.2px;
        }

        .pg-subtitle {
            text-align:center;
            color: var(--pg-muted);
            font-size:15px;
            margin-bottom: 18px;
        }

        /* ajax loader and messages */
        .pg-ajaxLoading { display:none; text-align:center; margin-bottom:12px; }
        .pg-spinner {
            width:36px; height:36px; border-radius:50%;
            border:4px solid rgba(255,255,255,0.08); border-top-color:var(--pg-accent);
            animation: pg-spin 0.9s linear infinite; display:inline-block;
        }
        @keyframes pg-spin { to { transform: rotate(360deg); } }

        .pg-message { display:none; padding:10px 14px; border-radius:10px; margin-bottom:12px; font-size:14px; }
        .pg-message.alert-success { background: linear-gradient(90deg,#ecfccb,#bbf7d0); color:#064e3b; }
        .pg-message.alert-danger { background:#fee2e2; color:#7f1d1d; }

        /* form elements */
        .pg-form .pg-input {
            width:100%;
            padding:12px 14px;
            border-radius:10px;
            border:15px solid rgba(255,255,255,0.06);
            background: rgba(255,255,255,0.02);
            font-size:14px;
            outline:none;
            box-sizing:border-box;
        }

        .pg-field {
            margin-bottom:14px;
            position:relative;
        }

        .pg-input:focus {
            box-shadow: 0 6px 20px rgba(124,58,237,0.12);
            background: rgba(255,255,255,0.02);
        }

        /* password toggle */
        .pg-toggle {
            position:absolute;
            right:12px; top:50%;
            transform:translateY(-50%);
            background: transparent;
            border: none;
            cursor:pointer;
            line-height:1;
            color: var(--pg-muted);
            font-size:18px;
            padding:6px;
            display:flex;
            align-items:center;
        }
        .pg-toggle:focus{ outline:none; }

        /* row - remember / forgot */
        .pg-row { display:flex; justify-content:space-between; align-items:center; gap:10px; margin-bottom:16px; }
        .pg-remember { display:flex; align-items:center; gap:8px; color:var(--pg-muted); font-size:14px; }

        .pg-forgot { color: rgba(12, 12, 12, 0.9); text-decoration:none; font-size:14px; }

        /* submit */
        .pg-actions { text-align:center; margin-top:6px; }
        .pg-btn {
            padding:10px 18px;
            border-radius:10px;
            border: none;
            cursor:pointer;
            font-weight:600;
            font-size:15px;
            background: linear-gradient(90deg, var(--pg-accent), var(--pg-accent-2));
            color:#fff;
            box-shadow: 0 8px 22px rgba(7,12,34,0.35);
            transition: transform .14s ease, box-shadow .14s ease;
        }
        .pg-btn:hover{ transform: translateY(-3px); box-shadow: 0 14px 36px rgba(7,12,34,0.42); }

        /* social buttons */
        .pg-social { display:flex; justify-content:center; gap:10px; margin-top:12px; }
        .pg-social a{ display:inline-flex; align-items:center; justify-content:center; width:44px; height:44px; border-radius:8px; text-decoration:none; color:#fff; font-size:18px; box-shadow: 0 6px 18px rgba(2,6,23,0.45); }
        .pg-social .fb { background: #1877F2; }
        .pg-social .go { background: #DB4437; }
        .pg-social .tw { background: #1DA1F2; }

        /* parsley error list */
        .pg-error-list { color:#ffd7d7; background: rgba(255,0,0,0.03); padding:10px 12px; border-radius:8px; margin-bottom:12px; display:none; font-size:13px; }

        /* small screens */
        @media (max-width:520px){
            .pg-card { padding:20px; border-radius:12px; }
            .pg-title { font-size:18px; }
        }

        .icon-circle-analy-pag {
            border-radius: 50%;
            padding: 8px;
            display: inline-flex;
            justify-content: center;
            align-items: center;
            }

            .icon-circle-analy-pag img {
            width: 52px;
            height: 52px;
            }

            .icon-circle-analy-pag i {
                font-size: 60px;
                background: #FFFF;
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
            }

           .icon-dash-pag {
            border-radius: 50%;
            padding: 0px;
            display: inline-flex;
            justify-content: center;
            align-items: center;
            height: 40px;
            width: 40px;
            font-size: xx-large;
            }

            .light-mode .icon-dash-pag i {
                background: linear-gradient(45deg, #6e2bff 25%, #3a0fb7 50%);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                display: inline-block; /* important */
            }

            .das-card {
                position: relative;
            }

            .one-card-ic-das {
                position: absolute;
                top: 20px;
                right: 31px;
            }

            .one-card-ic-das i {
                font-size: 55px;
                background: #ffffff;
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
            }

            .two-card-ic-das {
                position: absolute;
                top: 20px;
                right: 25px;
            }
            .two-card-ic-das i {
                font-size: 55px;
                background: #ffffff;
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
            }

            .third-card-ic-das {
                position: absolute;
                top: 20px;
                right: 5px;
            }
            .third-card-ic-das i {
                font-size: 60px;
                background: #ffffff;
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
            }
            .four-card-ic-das {
                position: absolute;
                top: 25px;
                right: 20px;
            }
            .four-card-ic-das i {
                font-size: 55px;
                background: #ffffff;
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
            }

            .nv-page-header h2 {
                font-size: 1.5rem;
                margin-bottom: 0.75rem;
                font-weight: 600;
                color: #111827;
            }

/* --- Card Layout --- */
.nv-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(11,22,40,0.06);
  margin-bottom: 1rem;
  padding-bottom: 2rem;
}
.nv-card-body { padding: 1.25rem 1.5rem; }

/* --- Filter Bar --- */
.nv-filterbar {
  padding: 0 1.5rem 1rem;
}
.nv-filterbar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.nv-filter-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nv-filter-toggle {
  background: transparent;
  border: 1px solid #ddd;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.2s;
  color: #111827;
  font-size: 0.85rem;
}
.nv-filter-toggle:hover {
  background: #f3f4f6;
}
.nv-filter-actions {
  display: flex;
  gap: 0.5rem;
}
.nv-btn {
  padding: 6px 12px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  transition: 0.2s ease-in-out;
}
.nv-btn-primary {
  background: #0d6efd;
  color: #fff;
}
.nv-btn-primary:hover {
  background: #0b5ed7;
}
.nv-btn-danger {
  background: #dc3545;
  color: #fff;
}
.nv-btn-danger:hover {
  background: #bb2d3b;
}

/* --- Table Wrapper: scroll both ways --- */
.nv-table-wrap {
  position: relative;
  padding: 1rem 1.5rem;
  max-height: 65vh;         /* vertical scroll limit */
  overflow-y: auto;
  overflow-x: auto;          /* horizontal scroll */
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  -webkit-overflow-scrolling: touch;
}

/* --- Table --- */
.nv-table {
  width: 100%;
  min-width: 1300px;         /* ensures horizontal scroll */
  border-collapse: separate;
  border-spacing: 0 6px;     /* small vertical spacing between rows */
  table-layout: auto;
  word-wrap: break-word;
  font-size: 0.8rem;         /* reduced font size */
}

/* --- Table Header --- */
.nv-table thead th {
  background: #f9fafb;
  color: #111;
  font-weight: 600;
  text-align: left;
  padding: 10px 14px;        /* compact header padding */
  border-bottom: 2px solid #e5e7eb;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  vertical-align: middle;
  font-size: 0.8rem;         /* smaller header font */
  position: sticky;
  top: 0;
  z-index: 10;
}

/* --- Table Body --- */
.nv-table tbody td {
  color: #111827;
  padding: 10px 14px;        /* reduced padding */
  vertical-align: middle;
  background: #fff;
  border: 1px solid #f0f0f0;
  border-left: none;
  border-right: none;
  white-space: normal;
  transition: background 0.2s ease;
  font-size: 0.8rem;         /* smaller body font */
}

/* --- Hover & Alternating Rows --- */
.nv-table tbody tr:hover {
  background: #f3f6fb;
}
.nv-table-striped tbody tr:nth-child(odd) {
  background-color: #fafbfc;
}

/* --- Row Shape --- */
.nv-table tbody tr {
  border-radius: 6px;
}

/* --- Column Borders --- */
.nv-table td + td,
.nv-table th + th {
  border-left: 1px solid #f1f1f1;
}

/* --- Checkbox & Operation --- */
.nv-checkbox {
  width: 14px;
  height: 14px;
  cursor: pointer;
  position: relative !important;
  left: 0px !important;
  opacity: 100 !important;
}
.nv-ops {
  white-space: nowrap;
  display: flex;
  gap: 4px;
  justify-content: center;
}
.nv-ops .nv-btn-sm {
  padding: 3px 6px;
  font-size: 0.75rem;
}

/* --- Fixed Width Columns --- */
#vulnerabilityTable2 td:first-child,
#vulnerabilityTable2 th:first-child {
  width: 50px;
  text-align: center;
}
.operation-col {
  width: 120px;
  text-align: center;
}

/* --- Text Wrapping Utility --- */


/* --- General Typography --- */
.nv-table td,
.nv-table th,
.nv-card,
.nv-page {
  color: #000 !important;
  line-height: 1.4;
  font-size: 0.8rem;
}

/* Footer container below the table (fixed visual at bottom of card) */
.nv-card-footer {
  position: sticky;          /* keeps it pinned within the card */
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 10px 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.95)); /* slight fade */
  border-top: 1px solid #e6e9ef;
  z-index: 999;               /* above table content */
  backdrop-filter: blur(2px);
  overflow: visible !important; /* allow dropdowns to show */
  pointer-events: auto;
  margin-bottom: -30px;
}

/* left / right layout inside footer */
.nv-card-footer .nv-footer-left,
.nv-card-footer .nv-footer-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ensure table wrapper has bottom padding so its content doesn't hide behind footer */
.nv-table-wrap {
  padding-bottom: 72px; /* >= footer height to avoid overlap */
  cursor: pointer;
}

/* small responsive tweak: stack footer on narrow screens */
@media (max-width: 640px) {
  .nv-card-footer { flex-direction: column; align-items: stretch; gap: 8px; padding: 8px; }
  .nv-table-wrap { padding-bottom: 96px; }
}


/* Vulnerabilty page start*/

.nv-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  background: #fff;
  padding: 0.75rem 1.25rem;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  margin-bottom: 1rem;
}
/* .light-mode .nv-toolbar{
    background: #101011 !important;;
} */
.nv-toolbar-left,
.nv-toolbar-right {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.nv-toolbar-search {
  display: flex;
  align-items: center;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 4px 8px;
}
.nv-input-search {
  border: none;
  outline: none;
  background: transparent;
  padding-left: 6px;
  width: 160px;
  font-size: 0.85rem;
}
.nv-input-search::placeholder {
  color: #9ca3af; /* Tailwind’s gray-400 */
  opacity: 1; /* ensure it’s visible in Firefox too */
}
.nv-btn-icon { background: transparent; border: none; font-size: 0.9rem; cursor: pointer; color: #374151; }
.nv-btn-icon:hover { color: #0d6efd; }
.nv-toolbar-assign { display: flex; align-items: center; gap: 0.5rem; }
.nv-select { border: 1px solid #d1d5db; border-radius: 6px; padding: 4px 8px; font-size: 0.85rem; }
.nv-btn { border: none; border-radius: 6px; padding: 6px 12px; font-size: 0.85rem; cursor: pointer; font-weight: 500; transition: all 0.2s ease-in-out; }
.nv-btn:hover { opacity: 0.9; }
.nv-btn-primary { background: #0d6efd; color: #fff; }
.nv-btn-danger  { background: #dc3545; color: #fff; }
.nv-btn-success { background: #198754; color: #fff; }
.nv-btn-warning { background: #fbbf24; color: #fff; }

/* dropdown styling */
.nv-dropdown { position: relative; }
.nv-dropdown-toggle { background: #dc3545; color: #fff; }
.nv-dropdown-menu {
  position: absolute;
  top: 110%;
  right: 0;
  min-width: 160px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 6px 0;
  display: none;
  z-index: 100;
}
.nv-dropdown:hover .nv-dropdown-menu { display: block; }
.nv-dropdown-menu li { list-style: none; }
.nv-dropdown-menu a { display: block; padding: 8px 12px; color: #111827; text-decoration: none; font-size: 0.85rem; }
.nv-dropdown-menu a:hover { background: #f3f4f6; }

/* ensure moved DataTables length select is visible and clickable */
#nvFooterLeft .dataTables_length { display: flex; align-items: center; gap: 8px; padding-right: 8px; }
#nvFooterLeft .dataTables_length select {
  min-width: 60px;
  padding: 4px 6px;
  font-size: 0.85rem;
  appearance: auto;
  -webkit-appearance: menulist-button;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background: #fff;
  z-index: 2100;
}

/* ensure moved paginate/info/buttons show correctly */
#nvFooterRight .dataTables_paginate,
#nvFooterLeft .dataTables_info,
#nvFooterLeft .dt-buttons { z-index: 2000; }

/* Buttons collection dropdown appearance (for export collection) */
.dt-button-collection {
  display: block !important;
  position: absolute;
  right: 0;
  top: 100%;
  z-index: 3000;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(11,22,40,0.08);
  padding: 6px 0;
  min-width: 160px;
}

/* responsive tweaks */
@media (max-width: 768px) {
  .nv-toolbar {
    flex-direction: column;
    align-items: stretch;
  }
  .nv-toolbar-left, .nv-toolbar-right {
    justify-content: space-between;
    width: 100%;
  }
}
/* Vulnerabilty page End*/

.main-logo {
    width: 213px;
    transition: all 0.3s ease;
    height: 55px;
}

/* When nav collapses */
.logo-collapsed .main-logo {
    width: 220px !important; 
    height: 55px;
}

/* Smaller logo on tablets & mobiles */
@media (max-width: 992px) {
    .main-logo {
        width: 66px; /* adjust as needed */
    }
}

/* Even smaller on small mobile screens */
@media (max-width: 576px) {
    .main-logo {
        width: 33px;  /* adjust as needed */
    }
}

.footer-para{
    text-align: center;
    margin-left:450px;
    position: relative;
    bottom: 0; 
    left: 0; 
    z-index: 10;
}
.light-mode .footer-para{
    color: #101011 !important;
}

/* Grid layout replacing table */
.cyvul-grid { width: 100%; margin: 14px auto; }
.cyvul-grid-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
    align-items: start;
}

/* each item is label+value */
.cyvul-item {
    display: contents; /* allow label & value to place into grid cells while keeping markup semantic */
}
.cyvul-item > .cyvul-label {
    justify-self: start;
    padding: 12px 8px;
    color: #6b7280;
    font-size: 14px;
    font-weight: 600;
    text-align: right;
    border-right: 1px solid rgba(14,20,30,0.04);
}
.cyvul-item > .cyvul-value {
    padding: 12px 14px;
    color: #0f172a;
    font-size: 14.5px;
    text-align: left;
    background: #fff;
    border-radius: 6px;
}

/* span full width for big content */
.cyvul-span > .cyvul-label { align-self: start; padding-top: 14px; }
.cyvul-span > .cyvul-value { padding: 14px; background: inherit; border-radius: 8px; box-shadow: 0 1px 0 rgba(11,22,40,0.02); border: 3px solid #FFFF; }
.light-mode .cyvul-span > .cyvul-value{
    background: #f9fafb;
    border: 3px solid #e5e7eb;
}
/* when using display:contents, we need a wrapper rule for label/value cells */
.cyvul-grid-inner > .cyvul-item > .cyvul-label,
.cyvul-grid-inner > .cyvul-item > .cyvul-value { display: block; }

/* Keep badges & gallery look */
.cyvul-badge{ display:inline-block; padding:6px 10px; border-radius:999px; font-size:12px; font-weight:700; }
.cyvul-badge-severity{ background: linear-gradient(90deg,#ff8a65,#ff5252); color:#fff; }
.cyvul-badge-status{ background:#eef2ff; color:#4f46e5; }

/* Gallery: slightly larger thumbs to fit grid */
.cyvul-gallery { display:flex; gap:12px; flex-wrap:wrap; }
.cyvul-thumb{ width:calc(25% - 12px); min-width:120px; background:#f8fafc; padding:6px; border-radius:8px; text-align:center; box-shadow:0 2px 6px rgba(12,17,39,0.04); }
.cyvul-thumb img{ width:100%; height:110px; object-fit:cover; border-radius:6px; display:block; }

/* small utility tweak */
.text-truncate{ display:inline-block; max-width:420px; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }

/* chips & action icons */
.cyvul-chip {
    display: inline-flex;
    margin-right: 6px;
    margin-bottom: 6px;
    align-items:center;
    gap:8px;
    background: #f3f4f6;
    padding:6px 10px;
    border-radius:999px;
    cursor: pointer;
    user-select: none;
    box-shadow: 0 1px 0 rgba(11,22,40,0.02);
    font-weight:600;
}
.cyvul-chip:hover { background:#eef2ff; }

.cyvul-chip .small-icon { font-size:12px; color:#374151; }
.cyvul-chip-text { font-size:13px; color:#0f172a; max-width:320px; display:inline-block; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }

.cyvul-chip-btn {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-left:8px;
    padding:6px 8px;
    border-radius:8px;
    background: #fff;
    border: 1px solid rgba(14,20,30,0.04);
    text-decoration:none;
    color:#111827;
}
.cyvul-chip-btn:hover { background:#f8fafc; }

/* vulnerability name action area */
.cyvul-vulname-row { display:flex; align-items:center; gap:12px; justify-content:space-between; margin: 20px;}
.cyvul-vulname-text { flex:1; color: white; font-size: 20px;}
.light-mode .cyvul-vulname-text { color: black;}
.cyvul-row {
    display: flex;
    gap:100px;
    align-items: center;               /* vertical alignment */
    width: 100%;
    padding: 10px;
}

.cyvul-vul-head {
    display: inline;
    gap: 10px;                        /* optional spacing */
}

.cyvul-vul-actions {
    display: flex;
    gap: 10px;                        /* spacing between icons */
}
.cyvul-action-icon {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    color:#FFFF;
    text-decoration:none;
    /* border-radius:8px;
    background:#fff;
    border:1px solid rgba(14,20,30,0.04);
    width:36px;
    height:36px; */
}
.light-mode .cyvul-action-icon{
    color:#263238;
}
.cyvul-action-redirect-icon {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    color:#374151;
    text-decoration:none;
    /* border-radius:8px;
    background:#fff;
    border:1px solid rgba(14,20,30,0.04);
    width:36px;
    height:36px; */
}
/* .cyvul-action-icon:hover { background:#eef2ff; color:#fff; } */

.light-mode .cyvul-action-icon:hover { background:#eef2ff; color:#0f172a; }

.command-col-label {
    font-size: 13px;
    color: #FFFF;
    font-weight: bold;
}
.light-mode .command-col-label{
    color: #263238;
}

.zero-col-label {
    font-size: 13px;
    color: #FFFF;
    text-align: center;
    font-weight: bold;
}
.light-mode .zero-col-label{
    color: #263238;
}
.zero-col-value {
    font-size: 14px;
    color: #111827;
    text-align: center;
}

/* 1-column grid */
.cyvul-one-col-row {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 14px;
    background: inherit;
    padding: 16px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    margin-bottom: 10px;
}
.light-mode .cyvul-one-col-row{
    background: #f9fafb;
}
/* Each mini-column inside the row */
.one-col-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.one-col-label {
    font-size: 13px;
    color: #ffffff;
    font-weight: bold;
}
.light-mode .one-col-label{
    color: #263238;
}

.one-col-value {
    font-size: 14px;
    color: #ffffffc9;
}
.light-mode .one-col-value{
    color: #111827;
}
@media(max-width: 767px) {
    .cyvul-one-col-row {
        grid-template-columns: 1fr;
    }
}

/* 2-column grid */
.cyvul-two-col-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    background: inherit;
    padding: 16px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    margin-bottom: 10px;
}
.light-mode .cyvul-two-col-row{
    background: #f9fafb;
}
/* Each mini-column inside the row */
.two-col-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.two-col-label {
    font-size: 13px;
    color: #ffffff;
    font-weight: bold;
}
.light-mode .two-col-label{
    color: #263238;
}

.two-col-value {
    font-size: 14px;
    color: #ffffffc9;
    text-align: justify;
}
.light-mode .two-col-value{
    color: #111827;
}
@media(max-width: 767px) {
    .cyvul-two-col-row {
        grid-template-columns: 1fr;
    }
}

/* 3-column grid */
.cyvul-three-col-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    background: inherit;
    padding: 16px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    margin-bottom: 10px;
}
.light-mode .cyvul-three-col-row{
    background: #c0d7ee;
}
.three-col-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.three-col-label {
    font-size: 13px;
    color: #ffffff;
    text-align: center;
    font-weight: bold;
}
.light-mode .three-col-label{
    color: #263238;
}

.three-col-value {
    font-size: 14px;
    color: #ffffffc9;
    text-align: center;
}
.light-mode .three-col-value{
    color: #111827;
}
@media(max-width: 767px) {
    .cyvul-three-col-row {
        grid-template-columns: 1fr;
    }
}

/* 4-column grid */
.cyvul-four-col-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    background: inherit;
    padding: 16px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    margin-bottom: 10px;
}
.light-mode .cyvul-four-col-row{
    background: #c0d7ee;
}
.four-col-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.four-col-label {
    font-size: 13px;
    color: #ffffff;
    text-align: center;
    font-weight: bold;
}
.light-mode .four-col-label{
    color: #263238;
}

.four-col-value {
    font-size: 14px;
    color: #ffffffc9;
    text-align: center;
}
.light-mode .four-col-value{
    color: #111827;
}
@media(max-width: 767px) {
    .cyvul-four-col-row {
        grid-template-columns: 1fr;
    }
}
/* 5-column grid */
.cyvul-five-col-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    background: inherit;
    padding: 16px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    margin-bottom: 10px;
}

.light-mode .cyvul-five-col-row {
    background: #c0d7ee;
}

/* Each mini-column inside the row */
.five-col-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.five-col-label {
    font-size: 13px;
    color: #ffffff;
    text-align: center;
    font-weight: bold;
}
.light-mode .five-col-label{
    color: #263238;
}

.five-col-value {
    font-size: 14px;
    color: #ffffffc9;
    text-align: center;
}

.light-mode .five-col-value{
    color: #111827;
}

@media(max-width: 767px) {
    .cyvul-five-col-row {
        grid-template-columns: 1fr;
    }
}
/* Responsive: stack on small screens */
@media (max-width: 767px) {
    .cyvul-grid-inner { grid-template-columns: 1fr; }
    .cyvul-item > .cyvul-label { justify-self: start; text-align: left; border-right: none; padding-bottom: 6px; color:#374151; }
    .cyvul-item > .cyvul-value { padding-left: 0; }
    .cyvul-span > .cyvul-value { grid-column: auto; }
    .cyvul-thumb{ width:calc(50% - 12px); }
}

label.control-label.ass-label {
    color: black;
}

.note-editable { color: #333 !important; background: #f8f9fa !important; }
.note-editor .btn{ color: revert-layer; }


.table-card { border-radius:14px; background:#ffffff; padding:12px; box-shadow:0 12px 30px rgba(15,33,55,0.06); }

/* nicer badges */
.badge-yes, .badge-no, .badge-sev {
  display:inline-block;
  padding:.35rem .6rem;
  border-radius:999px;
  font-weight:700;
  font-size:.82rem;
  box-shadow: none;
}

/* action buttons */
.action-btn { width:36px; height:36px; border-radius:8px; display:inline-flex; align-items:center; justify-content:center; border:none; margin-right:6px; }
.action-btn i { font-size:14px; }

/* icons colors */
.action-btn.view { background:#2b8cff; color:#fff; }
.action-btn.delete { background:#ff5b6e; color:#fff; }

/* compact pager style */
.dataTables_wrapper .dataTables_paginate .paginate_button { padding:6px 10px; border-radius:8px; }

/* thin custom scrollbar in the DataTables body */
.dataTables_scrollBody::-webkit-scrollbar { height:8px; }
.dataTables_scrollBody::-webkit-scrollbar-thumb { background: rgba(20,30,40,0.12); border-radius:8px; }

.new-target-btn {
    background: linear-gradient(135deg, #4e73df, #224abe);
    border: none;
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 8px;
    color: #fff;
    transition: 0.3s;
    font-size: 14px;
}
.new-target-btn:hover {
    background: linear-gradient(135deg, #224abe, #1e3a8a);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(34,74,190,0.3);
}
.cyvul-comment-date{
    color: black;
}

/* Container + panel */
.cyvul-wrap { padding:16px; }
.cyvul-panel{
	background: radial-gradient(circle at 20% 10%, #13112b 0%, #3341ae 70%);
	border-radius: 12px;
	box-shadow: 0 6px 18px rgba(11,22,40,0.08);
	overflow: hidden;
	padding: 18px;
}
.light-mode .cyvul-panel{
    background: #fff;
}

/* Toolbar */
.cyvul-toolbar{ padding-bottom:12px; border-bottom:1px solid rgba(0,0,0,0.05); margin-bottom:14px; }
.cyvul-btn{ display:inline-flex; align-items:center; justify-content:center; gap:8px; padding:8px 10px; border-radius:8px; text-decoration:none; font-size:13px; }
.cyvul-btn-nav{ background: linear-gradient(90deg,#476EE6,#7A66FF); color:#fff; border:0; }
.cyvul-btn-close{ background:#F14E4E; color:#fff; border:0; padding-left: 10px; margin-left: 405px;}
.cyvul-action-btn{ display:inline-block; padding:8px 12px; background:#198754; color:#fff; border-radius:8px; text-decoration:none; cursor:pointer; }
.cyvul-action-btn-danger{ background:#d9534f; }

/* Table style */
.cyvul-table {
    width: 100%;
    max-width: 920px;
    margin: 14px auto;
    border-collapse: collapse;
    background: transparent;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    border: 1px solid #e5e7eb; /* outer border */
}

.cyvul-table td {
    padding: 14px 12px;
    vertical-align: middle;
    border: 1px solid #e5e7eb; /* inner cell borders */
}

.cyvul-label {
    width: 36%;
    color: #6b7280;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.cyvul-value {
    width: 64%;
    color: #111827;
    font-size: 14.5px;
    text-align: left;
    padding-left: 18px;
}

/* optional hover effect */
.cyvul-table tbody tr:hover td {
    background: rgba(11, 22, 40, 0.02);
}

.cyvul-table tbody tr{ background: transparent; }

/* Badges */
.cyvul-badge{ display:inline-block; padding:4px 8px; border-radius:999px; font-size:12px; font-weight:600; }
.cyvul-badge-severity{ background: linear-gradient(90deg,#ff8a65,#ff5252); color:#fff; }
.cyvul-badge-status{ background:#eef2ff; color:#4f46e5; }

/* Gallery */
.cyvul-gallery { display:flex; gap:10px; flex-wrap:wrap; }
.cyvul-thumb{ width:calc(25% - 10px); min-width:120px; background:#f8fafc; padding:6px; border-radius:8px; text-align:center; box-shadow:0 2px 6px rgba(12,17,39,0.04); }
.cyvul-thumb img{ width:100%; height:100px; object-fit:cover; border-radius:6px; display:block; }
.cyvul-thumb-caption{ font-size:12px; margin-top:6px; color:#374151; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }

/* Comments */
.cyvul-comment-box{
    margin-top: 0px !important; 
    /* color: black; */
    color: #ffffff;
}
.cyvul-textarea{ min-height:110px; border-radius:8px; padding:10px; }
.cyvul-btn-save{ background:linear-gradient(90deg,#06b6d4,#3b82f6); color:#fff; padding:8px 12px; border-radius:8px; border:0; }

/* Comments list */
.cyvul-comments-title{ font-size:18px; color: #ffffff; }
.cyvul-comments-list{ margin-top:8px; }
.cyvul-comment{ display:flex; gap:10px; align-items:flex-start; background:#fff9f2; padding:12px; border-radius:10px; margin-bottom:10px; box-shadow:0 1px 4px rgba(11,22,40,0.03); }
.cyvul-comment-first{ background:#f1f5ff; }
.cyvul-comment-body{ flex:1; }
.cyvul-comment-text{ margin:0 0 6px 0; font-size:15px; }
.cyvul-comment-user{ margin:0; color:#6b7280; font-size:13px; }
.cyvul-comment-meta{ text-align:right; min-width:120px; }
.cyvul-comment-delete{ display:block; margin-bottom:8px; }

/* small utility */
.text-truncate{ max-width:100%; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }

/* responsive */
@media (max-width:767px){
	.cyvul-thumb{ width:calc(50% - 10px); }
	.cyvul-label{ display:block; width:100%; text-align:left; padding-bottom:6px; }
	.cyvul-value{ display:block; width:100%; }
	.cyvul-comment{ flex-direction:column; }
	.cyvul-comment-meta{ text-align:left; }
}

.light-mode .table-container-new .content-body .card .card-header p{
		    color: #6e2bff;
	}
  .light-mode .table-container-new .content-body .card .card-content .card-body ul{
		    color: #6e2bff;
	}
  .light-mode .table-container-new .content-body .card .card-content .card-body li{
		    color: #6e2bff;
	}
  .page-header .release-tit{
    color: #FFFF;
  }
  .light-mode .page-header .release-tit{
    color: #6e2bff;
  }

.select2-container--default .select2-selection--single .select2-selection__rendered {
    background-color: #e6f0ff !important;
    color: #0a0a0b !important;
}

.asset-card {
    background: #ffffff;
    border: 1px solid var(--asset-card-border);
    border-radius: var(--asset-radius);
    padding: 22px;
    margin-bottom: 28px;
    box-shadow: var(--asset-shadow);
    transition: 0.25s ease;
    color: var(--asset-text);
}

.light-mode .asset-card{
     background: #ffffff;
    color: #080808ff;
    border: 1px solid var(--asset-card-border);
    border-radius: var(--asset-radius);
    padding: 22px;
    margin-bottom: 28px;
    box-shadow: var(--asset-shadow);
    transition: 0.25s ease;
}

.asset-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.35);
}

.asset-card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.asset-view-card {
    background: var(--asset-card-bg);
    border: 1px solid var(--asset-card-border);
    border-radius: var(--asset-radius);
    padding: 22px;
    margin-bottom: 28px;
    box-shadow: var(--asset-shadow);
    transition: 0.25s ease;
    color: var(--asset-text);
}
.light-mode .asset-view-card{
     background: #ffffff;
    color: #080808ff;
    border: 1px solid var(--asset-card-border);
    border-radius: var(--asset-radius);
    padding: 22px;
    margin-bottom: 28px;
    box-shadow: var(--asset-shadow);
    transition: 0.25s ease;
}

.asset-view-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.35);
}

.asset-view-card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.asset-info-label {
    font-size: 14px;
    color: var(--asset-muted);
    margin-bottom: 6px;
    display: block;
}
.light-mode .asset-info-label{
    font-size: 14px;
    color: #080808ff;
    margin-bottom: 6px;
    display: block;
}
.asset-info-box {
    background: #1c2448;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 16px;
    margin-bottom: 16px;
}
.light-mode .asset-info-box {
    background: #e5e6ea;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 16px;
    margin-bottom: 16px;
}
.asset-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 14px;
}

.asset-grid-item button {
    width: 100%;
    border-radius: 10px;
    padding: 10px 14px;
    font-weight: 600;
    font-size: 15px;
}

.asset-findings-scroll {
    max-height: 380px;
    overflow-y: auto;
    padding-right: 5px;
    display: grid;
}

.asset-findings-scroll::-webkit-scrollbar {
    width: 8px;
}
.asset-findings-scroll::-webkit-scrollbar-thumb {
    background: #3a416f;
    border-radius: 10px;
}
.asset-findings-scroll::-webkit-scrollbar-thumb:hover {
    background: #4b56b0;
}

/* Findings Rows */
.asset-row {
    border-bottom: 1px solid #1c244d;
}

.asset-vuln-name {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
}

.light-mode .asset-vuln-name {
    font-size: 15px;
    font-weight: 500;
    color: #080808ff;
}

.asset-table-card {
  /* background: radial-gradient(circle at 20% 10%, #13112b 0%, #3341ae 70%); */
  /* color: #ffffff; */
   background: #ffffff;
  border-radius: 8px;
  border: 1px solid rgba(20,20,20,0.04);
  overflow: hidden;
}

.light-mode .asset-table-card {
  background: #ffffff;
  color: #080808;
}

#assetsTable thead th {
  background: radial-gradient(circle at 20% 10%, #13112b 0%, #3341ae 70%);
  color: #ffffff;
  background: #ffffff;
  font-weight: 700;
  font-size: 13px;
  padding: 18px 16px;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  white-space: nowrap;
}

.light-mode #assetsTable thead th {
  background: #ffffff;
  color: #080808;
}

#assetsTable tbody td {
  /* background: radial-gradient(circle at 20% 10%, #13112b 0%, #3341ae 70%); */
  background: #ffffff;
  /* color: #ffffff; */
  padding: 20px 16px;
  vertical-align: middle;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-sizing: border-box;
  font-weight: 500;
  cursor: pointer;
}

.light-mode #assetsTable tbody td {
  background: #ffffff;
  color: #080808;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.asset-ellipsis-wrap {
  display: block;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  overflow-wrap: break-word;
}
#assetsTable_wrapper .dataTables_info{
    color: #080808;
}
 .asset-scan-info-row {
    display: flex;
    gap: 20px;
    align-items: center;
}

.asset-scan-info-item {
    flex: 1;
}

.asset-scan-info-label {
    font-size: 12px;
    color: #6c757d;
    display: block;
    margin-bottom: 6px;
}

.asset-scan-info-box {
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
}

.asset-scan-progress-container {
    width: 100%;
    background: #e9ecef;
    border-radius: 6px;
    height: 26px;
    overflow: hidden;
}

.asset-scan-progress-bar {
    height: 100%;
    background: #28a745;
    color: #ffffff;
    text-align: center;
    line-height: 26px;
    font-size: 13px;
    font-weight: 600;
}

tr.vulnerability-row {
    cursor: pointer;
}

.light-mode .cyberone-form legend {
    border-bottom: solid 1px #eee;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 600;
    color: #101011;
}

.light-mode .cyberone-form label.control-label {
    color: #101011;
}