/*!
 * jQuery contextMenu - Plugin for simple contextMenu handling
 *
 * Version: v2.2.4
 *
 * Authors: Björn Brala (SWIS.nl), Rodney Rehm, Addy Osmani (patches for FF)
 * Web: http://swisnl.github.io/jQuery-contextMenu/
 *
 * Copyright (c) 2011-2016 SWIS BV and contributors
 *
 * Licensed under
 *   MIT License http://www.opensource.org/licenses/mit-license
 *
 * Date: 2016-08-26T13:44:56.092Z
 */
@font-face {
  font-family: "context-menu-icons";
  font-style: normal;
  font-weight: normal;
  src: url("font/context-menu-icons.eot?2cl8a");
  src: url("font/context-menu-icons.eot?2cl8a#iefix") format("embedded-opentype"), url("font/context-menu-icons.woff2?2cl8a") format("woff2"), url("font/context-menu-icons.woff?2cl8a") format("woff"), url("font/context-menu-icons.ttf?2cl8a") format("truetype");
}
.context-menu-icon-add:before {
  content: "\EA01";
}
.context-menu-icon-copy:before {
  content: "\EA02";
}
.context-menu-icon-cut:before {
  content: "\EA03";
}
.context-menu-icon-delete:before {
  content: "\EA04";
}
.context-menu-icon-edit:before {
  content: "\EA05";
}
.context-menu-icon-paste:before {
  content: "\EA06";
}
.context-menu-icon-quit:before {
  content: "\EA07";
}
.context-menu-icon::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 2em;
  font-family: "context-menu-icons";
  font-size: 1em;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  color: #2980b9;
  text-align: center;
  transform: translateY(-50%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.context-menu-icon.context-menu-hover:before {
  color: #fff;
}
.context-menu-icon.context-menu-disabled::before {
  color: #bbb;
}
.context-menu-icon.context-menu-icon--fa {
  display: list-item;
}
.context-menu-icon.context-menu-icon--fa::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 2em;
  font-family: FontAwesome;
  font-size: 1em;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  color: #2980b9;
  text-align: center;
  transform: translateY(-50%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.context-menu-icon.context-menu-icon--fa.context-menu-hover:before {
  color: #fff;
}
.context-menu-icon.context-menu-icon--fa.context-menu-disabled::before {
  color: #bbb;
}
.context-menu-list {
  position: absolute;
  display: inline-block;
  min-width: 13em;
  max-width: 26em;
  padding: 0.25em 0;
  margin: 0.3em;
  font-family: inherit;
  font-size: inherit;
  list-style-type: none;
  background: #fff;
  border: 1px solid #bebebe;
  border-radius: 0.2em;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}
.context-menu-item {
  position: relative;
  padding: 0.2em 2em;
  color: #2f2f2f;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: #fff;
}
.context-menu-separator {
  padding: 0;
  margin: 0.35em 0;
  border-bottom: 1px solid #e6e6e6;
}
.context-menu-item > label > input,
.context-menu-item > label > textarea {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}
.context-menu-item.context-menu-hover {
  color: #fff;
  cursor: pointer;
  background-color: #2980b9;
}
.context-menu-item.context-menu-disabled {
  color: #bbb;
  cursor: default;
  background-color: #fff;
}
.context-menu-input.context-menu-hover {
  cursor: default;
}
.context-menu-submenu:after {
  position: absolute;
  top: 50%;
  right: 0.5em;
  z-index: 1;
  width: 0;
  height: 0;
  content: '';
  border-color: transparent transparent transparent #2f2f2f;
  border-style: solid;
  border-width: 0.25em 0 0.25em 0.25em;
  transform: translateY(-50%);
}
/**
 * Inputs
 */
.context-menu-item.context-menu-input {
  padding: 0.3em 0.6em;
}
/* vertically align inside labels */
.context-menu-input > label > * {
  vertical-align: top;
}
/* position checkboxes and radios as icons */
.context-menu-input > label > input[type="checkbox"],
.context-menu-input > label > input[type="radio"] {
  position: relative;
  top: 0.12em;
  margin-right: 0.4em;
}
.context-menu-input > label {
  margin: 0;
}
.context-menu-input > label,
.context-menu-input > label > input[type="text"],
.context-menu-input > label > textarea,
.context-menu-input > label > select {
  display: block;
  width: 100%;
  box-sizing: border-box;
}
.context-menu-input > label > textarea {
  height: 7em;
}
.context-menu-item > .context-menu-list {
  top: 0.3em;
  /* re-positioned by js */
  right: -0.3em;
  display: none;
}
.context-menu-item.context-menu-visible > .context-menu-list {
  display: block;
}
.context-menu-accesskey {
  text-decoration: underline;
}
.context-title:before {
  content: "Add component to:";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  background: #DDD;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: bold;
}
.context-title.license-item:before {
  content: "Add license to:";
}
.context-title :first-child {
  margin-top: 20px;
}
.wizard {
  padding: 20px 0;
}
.wizard > .steps {
  position: relative;
  overflow: hidden;
  background-color: #f9f9f9;
  border: 1px solid #d4d4d4;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
  margin-bottom: 20px;
}
.wizard > .steps > ul {
  width: 4000px;
  padding: 0;
  margin: 0;
  list-style: none outside none;
}
.wizard > .steps > ul li:first-child {
  padding-left: 20px;
  border-radius: 4px 0 0 4px;
}
@media (max-width: 767px) {
  .wizard > .steps > ul li:first-child {
    padding-left: 5px;
    padding-right: 0;
  }
}
.wizard > .steps > ul li.active {
  color: #3a87ad;
  background: #f1f6fc;
}
.wizard > .steps > ul li:hover {
  background: #D4E3F5;
}
.wizard > .steps > ul li,
.wizard > .steps > ul li {
  position: relative;
  float: left;
  height: 46px;
  padding: 0 15px 0 20px;
  margin: 0;
  font-size: 14px;
  line-height: 46px;
  color: #999999;
  cursor: default;
  background: #ededed;
}
.wizard ul li.complete {
  color: #468847;
  background: #f3f4f5;
}
.wizard ul li .chevron {
  position: absolute;
  top: 0;
  right: -14px;
  z-index: 1;
  display: block;
  border: 24px solid transparent;
  border-right: 0;
  border-left: 14px solid #d4d4d4;
}
.wizard ul li.complete .chevron:before {
  border-left: 14px solid #f3f4f5;
}
.wizard ul li.active .chevron:before {
  border-left: 14px solid #f1f6fc;
}
.wizard ul li.active:hover .chevron:before,
.wizard ul li.complete:hover .chevron:before {
  border-left: 14px solid #D4E3F5;
}
.wizard ul li .chevron:before {
  position: absolute;
  top: -24px;
  right: 1px;
  display: block;
  border: 24px solid transparent;
  border-right: 0;
  border-left: 14px solid #ededed;
  content: "";
}
.wizard ul li:hover .chevron:before {
  border-left: 14px solid #D4E3F5;
}
.wizard ul li .badge {
  margin-right: 8px;
}
@media (max-width: 767px) {
  .wizard ul li .badge {
    margin-right: 1px;
  }
}
.wizard .badge {
  padding: 2px 4px;
  padding-right: 9px;
  padding-left: 9px;
  border-radius: 9px;
  display: inline-block;
  font-size: 11.844px;
  font-weight: bold;
  line-height: 14px;
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  white-space: nowrap;
  vertical-align: baseline;
  background-color: #999999;
}
.wizard .badge-success {
  background-color: #468847;
}
.wizard .badge-info {
  background-color: #3a87ad;
}
.wizard-content {
  padding-top: 5px!important;
  padding-bottom: 0!important;
}
.wizard-content .wizard {
  padding: 0;
}
.wizard-content .wizard > .steps {
  margin-bottom: 0;
}
.integration-icon {
  display: inline-block;
  width: 0.8em;
  height: 0.8em;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  top: 2px;
  left: 0;
  vertical-align: baseline;
}
.integration-icon.leanix {
  background-image: url('../images/leanix.png');
}
.integration-icon.leanix-disabled {
  background-image: url('../images/leanix-disabled.png');
}
.integration-icon.jira {
  background-image: url('../images/jira.png');
}
.integration-icon.jira-disabled {
  background-image: url('../images/jira-disabled.png');
}
.integration-icon.jira-highlighted {
  background-image: url('../images/jira-highlighted.png');
}
.integration-icon.issue-highlighted {
  background-image: url('../images/issue-highlighted.png');
}
.integration-icon.tfs {
  background-image: url('../images/tfs.png');
}
.integration-icon.tfs-disabled {
  background-image: url('../images/tfs-disabled.png');
}
.integration-icon.tfs-highlighted {
  background-image: url('../images/tfs-highlighted.png');
}
.integration-icon.github {
  background-image: url('../images/github.png');
}
.integration-icon.github-disabled {
  background-image: url('../images/github-disabled.png');
}
.integration-icon.github-highlighted {
  background-image: url('../images/github-highlighted.png');
}
.integration-icon.copy {
  cursor: pointer;
}
.integration-icon.copy .fa {
  font-size: 1em;
  color: #000;
}
.integration-icon.integration-lg {
  width: 1.3em;
  height: 1.3em;
}
.integration-icon .fa {
  position: absolute;
  right: 4px;
  bottom: 3px;
  font-size: 0.6em;
  color: #fff;
}
.introjs-tooltip {
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
}
.introjs-button,
.introjs-button:hover,
.introjs-button:focus,
.introjs-button:active,
.introjs-disabled,
.introjs-disabled:focus,
.introjs-disabled:hover {
  outline: none;
  background-image: none;
  background-color: transparent;
  color: #fff;
  border: 1px solid transparent;
  border-radius: 50px;
  box-shadow: none;
  border-shadow: none;
  text-shadow: none;
}
.introjs-button:hover,
.introjs-button:focus,
.introjs-button:active {
  border: 1px solid #fff;
}
.introjs-disabled,
.introjs-disabled:focus,
.introjs-disabled:hover {
  color: #ccc;
  border: 1px solid transparent;
}
.introjs-arrow {
  border: 10px solid #fff;
}
.introjs-arrow.top,
.introjs-arrow.top-middle,
.introjs-arrow.top-right {
  border-color: transparent transparent rgba(0, 0, 0, 0.5);
  top: -20px;
  left: 20px;
}
.introjs-arrow.bottom,
.introjs-arrow.bottom-middle,
.introjs-arrow.bottom-right {
  border-color: rgba(0, 0, 0, 0.5) transparent transparent;
  bottom: -20px;
  left: 20px;
}
.introjs-arrow.left,
.introjs-arrow.right {
  top: 20px;
}
.introjs-arrow.left-bottom,
.introjs-arrow.right-bottom {
  bottom: 20px;
}
.introjs-arrow.left,
.introjs-arrow.left-bottom {
  left: -20px;
  border-color: transparent rgba(0, 0, 0, 0.5) transparent transparent;
}
.introjs-arrow.right,
.introjs-arrow.right-bottom {
  right: -20px;
  border-color: transparent transparent transparent rgba(0, 0, 0, 0.5);
}
.introjs-tooltip {
  min-width: 300px;
}
.introjs-tooltiptext {
  font-size: 1.2em;
}
.introjs-helperNumberLayer {
  width: 27px;
  height: 27px;
  background: #cf4747;
}
body.introjs-open #menu:not(.introjs-showElement),
body.introjs-open #right-bar:not(.introjs-showElement),
body.introjs-open #header:not(.introjs-showElement) {
  z-index: auto !important;
  transition: none !important;
}
body.introjs-open.fixed-sidebar #menu {
  position: absolute !important;
}
body.introjs-open.fixed-navbar #header {
  position: absolute !important;
}
body.introjs-open.fixed-navbar #right-bar {
  position: absolute !important;
}
body.introjs-open .introjs-showElement {
  position: relative !important;
}
body.introjs-open .introjs-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
}
/* module-key = 'com.atlassian.plugins.issue-status-plugin:issue-status-resources', location = '/css/issue-status-plugin.css' */
.jira-issue-status-lozenge {
  vertical-align: text-bottom;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 12em;
  word-wrap: normal;
  word-break: normal;
}
.jira-issue-status-render-error {
  color: #d04437;
}
.aui-lozenge.jira-issue-status-lozenge-green {
  background-color: #14892c;
  border-color: #14892c;
  color: #fff;
}
.aui-lozenge.aui-lozenge-subtle.jira-issue-status-lozenge-green {
  background-color: #fff;
  border-color: #b2d8b9;
  color: #14892c;
}
.aui-lozenge.jira-issue-status-lozenge-yellow {
  background-color: #ffd351;
  border-color: #ffd351;
  color: #594300;
}
.aui-lozenge.aui-lozenge-subtle.jira-issue-status-lozenge-yellow {
  background-color: #fff;
  border-color: #ffe28c;
  color: #594300;
}
.aui-lozenge.jira-issue-status-lozenge-brown {
  background-color: #815b3a;
  border-color: #815b3a;
  color: #fff;
}
.aui-lozenge.aui-lozenge-subtle.jira-issue-status-lozenge-brown {
  background-color: #fff;
  border-color: #ece7e2;
  color: #815b3a;
}
.aui-lozenge.jira-issue-status-lozenge-warm-red {
  background-color: #d04437;
  border-color: #d04437;
  color: #fff;
}
.aui-lozenge.aui-lozenge-subtle.jira-issue-status-lozenge-warm-red {
  background-color: #fff;
  border-color: #f8d3d1;
  color: #d04437;
}
.aui-lozenge.jira-issue-status-lozenge-blue-gray {
  background-color: #4a6785;
  border-color: #4a6785;
  color: #fff;
}
.aui-lozenge.aui-lozenge-subtle.jira-issue-status-lozenge-blue-gray {
  background-color: #fff;
  border-color: #e4e8ed;
  color: #4a6785;
}
.aui-lozenge.jira-issue-status-lozenge-medium-gray {
  background-color: #ccc;
  border-color: #ccc;
  color: #333;
}
.aui-lozenge.aui-lozenge-subtle.jira-issue-status-lozenge-medium-gray {
  background-color: #fff;
  border-color: #ccc;
  color: #333;
}
.aui-lozenge.jira-issue-status-lozenge-compact {
  width: 4px;
  text-align: left;
  text-indent: -9999px;
}
.jira-issue-status-tooltip .tipsy-inner {
  text-align: left;
}
.jira-issue-status-tooltip .jira-issue-status-tooltip-title {
  text-transform: uppercase;
}
.jira-issue-status-tooltip .jira-issue-status-tooltip-desc {
  color: #ccc;
}
.jira-issue-status-lozenge-max-width-short {
  max-width: 8em;
}
.jira-issue-status-lozenge-max-width-medium {
  max-width: 12em;
}
.jira-issue-status-lozenge-max-width-long {
  max-width: 20em;
}
.sq-24 {
  display: inline-block;
  font-size: 12px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  width: 24px;
}
.circle {
  border-radius: 50%;
}
.timeline {
  display: table;
  width: 100%;
  padding-left: 0;
  margin-bottom: 0;
}
.timeline-item {
  border-collapse: collapse;
  display: table-row;
}
.timeline-segment {
  background-color: transparent;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 1' fill='%23efefef'%3E%3Cpath d='M0 0h4v1H0z'/%3E%3C/svg%3E");
  background-position: center bottom;
  background-repeat: repeat-y;
  background-size: 4px 1px;
  display: table-cell;
  padding-bottom: 15px;
  text-align: center;
  vertical-align: top;
  white-space: nowrap;
  width: 1%;
}
.timeline-dots {
  background-color: transparent;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 8' fill='%23efefef'%3E%3Ccircle cx='2' cy='2' r='2'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: repeat-y;
  background-size: 4px 8px;
  display: table-cell;
  padding-bottom: 15px;
  text-align: center;
  vertical-align: top;
  white-space: nowrap;
  width: 1%;
}
.timeline-content {
  display: table-cell;
  padding-bottom: 15px;
  padding-left: 15px;
  vertical-align: middle;
  width: 99%;
}
.timeline-divider {
  background-color: #efefef;
  border-radius: 50%;
  display: block;
  height: 10px;
  margin-left: auto;
  margin-right: auto;
  width: 10px;
}
.timeline-media {
  border: none;
  box-sizing: content-box;
  display: inline-block;
}
.timeline-title {
  margin-bottom: 5px;
  margin-top: 0;
}
.timeline-meta {
  float: right;
  line-height: 1;
  margin-left: 10px;
}
/* Slider */
.slick-loading .slick-list {
  background: #fff url('./ajax-loader.gif') center center no-repeat;
}
/* Icons */
@font-face {
  font-family: 'slick';
  font-weight: normal;
  font-style: normal;
  src: url('/fonts/slick.eot');
  src: url('/fonts/slick.eot?#iefix') format('embedded-opentype'), url('/fonts/slick.woff') format('woff'), url('/fonts/slick.ttf') format('truetype'), url('/fonts/slick.svg#slick') format('svg');
}
/* Arrows */
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  z-index: 2;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: 'slick';
  font-size: 30px;
  line-height: 1;
  opacity: 0.75;
  color: #324F82;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-prev {
  left: -22px;
}
[dir='rtl'] .slick-prev {
  right: -12px;
  left: auto;
}
.slick-prev:before {
  content: '←';
}
[dir='rtl'] .slick-prev:before {
  content: '→';
}
.slick-next {
  right: -12px;
}
[dir='rtl'] .slick-next {
  right: auto;
  left: -22px;
}
.slick-next:before {
  content: '→';
}
[dir='rtl'] .slick-next:before {
  content: '←';
}
/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}
.slick-dots {
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 1px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  font-family: 'slick';
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: '•';
  text-align: center;
  opacity: 0.25;
  color: #324F82;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  opacity: 0.75;
  color: #324F82;
}
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir='rtl'] .slick-slide {
  float: right;
}
.slick-slide img {
  display: inline-block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}
.ecs-components .hpanel .panel-body,
.ecs-projects .hpanel .panel-body {
  border-top: none;
}
.ecs-components .table-collapse,
.ecs-projects .table-collapse {
  display: none;
  margin-top: 20px;
}
.ecs-components .table-header,
.ecs-projects .table-header {
  margin-bottom: 0;
}
.ecs-components .expand-table,
.ecs-projects .expand-table {
  cursor: pointer;
  width: 50px;
}
.ecs-components .version,
.ecs-projects .version {
  padding-left: 1em;
}
.ecs-components .componentName,
.ecs-projects .componentName {
  width: 30%;
}
.ecs-components .description,
.ecs-projects .description {
  width: 40%;
  font-size: smaller;
}
.ecs-components h4,
.ecs-projects h4 {
  margin-bottom: 3px;
  font-weight: 600;
  margin-top: 5px;
  display: inline;
}
.ecs-components .component-list .img-responsive,
.ecs-projects .component-list .img-responsive {
  display: block;
  width: auto;
  max-height: 20px;
}
.components-content .reactive-table tbody tr,
.algorithms-content .reactive-table tbody tr,
.cots-content .reactive-table tbody tr,
.infrastructure-content .reactive-table tbody tr {
  cursor: pointer;
}
.components-content .reactive-table tbody tr:hover,
.algorithms-content .reactive-table tbody tr:hover,
.cots-content .reactive-table tbody tr:hover,
.infrastructure-content .reactive-table tbody tr:hover {
  background-color: rgba(42, 148, 162, 0.04);
}
.component-detail .img-responsive {
  display: block;
  width: auto;
  max-height: 20px;
}
.component-detail .img-responsive .component-version .panel-body {
  border-bottom: none;
}
.component-detail .img-responsive .component-version pre {
  font-size: small;
  max-height: 20em;
}
.comp-edit-version.danger {
  color: red;
}
.comp-vulnerability .row.vulnerabiliy:not(:first-child) {
  margin-top: 15px;
}
.dashboard-welcome {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  margin: 10px 0 15px 0;
  background: linear-gradient(135deg, rgba(42, 148, 162, 0.06) 0%, rgba(42, 148, 162, 0.12) 100%);
  border: 1px solid rgba(42, 148, 162, 0.2);
  border-radius: 8px;
}
.dashboard-welcome-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(42, 148, 162, 0.15);
  color: #2a94a2;
  font-size: 22px;
}
.dashboard-welcome-text {
  flex: 1;
  min-width: 0;
}
.dashboard-welcome-text h4 {
  margin: 0 0 4px 0;
  font-size: 15px;
  font-weight: 600;
  color: #040f18;
}
.dashboard-welcome-text p {
  margin: 0;
  font-size: 13px;
  color: #6b7a87;
  line-height: 1.4;
}
.dashboard-welcome-actions {
  flex-shrink: 0;
  display: flex;
  gap: 8px;
  align-items: center;
}
.dashboard-welcome-actions .btn-primary {
  background: #2a94a2;
  border-color: #2a94a2;
  color: #fff;
}
.dashboard-welcome-actions .btn-primary:hover {
  background: #227682;
  border-color: #227682;
}
.dashboard-welcome-actions .btn-primary .fa {
  margin-right: 4px;
}
.dashboard-welcome-actions .btn-default {
  border-color: rgba(42, 148, 162, 0.4);
  color: #2a94a2;
}
.dashboard-welcome-actions .btn-default:hover {
  background: rgba(42, 148, 162, 0.08);
}
@media (max-width: 768px) {
  .dashboard-welcome {
    flex-direction: column;
    text-align: center;
  }
  .dashboard-welcome-actions {
    flex-direction: column;
    width: 100%;
  }
  .dashboard-welcome-actions .btn {
    width: 100%;
  }
}
.theme-dark .dashboard-welcome {
  background: linear-gradient(135deg, rgba(42, 148, 162, 0.04) 0%, rgba(42, 148, 162, 0.08) 100%);
  border-color: rgba(42, 148, 162, 0.15);
}
.theme-dark .dashboard-welcome .dashboard-welcome-text h4 {
  color: #fff;
}
.theme-dark .dashboard-welcome .dashboard-welcome-text p {
  color: #b3b3b4;
}
#dashboard .hpanel > .panel-heading {
  background: transparent;
  color: #2a94a2;
  border: none;
  border-bottom: 1px solid #2a94a2;
  border-radius: 5px 5px 0 0;
  padding: 0 12px;
  height: 44px;
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
}
#dashboard .hpanel > .panel-heading .panel-heading-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  margin-left: 8px;
  border-radius: 11px;
  background: rgba(42, 148, 162, 0.15);
  color: #2a94a2;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}
#dashboard .hpanel > .panel-heading .change-view {
  order: 1;
  margin-left: auto;
  height: 30px;
  max-width: 50%;
  font-size: 12px;
  font-weight: 400;
  width: auto;
  border: 1px solid rgba(42, 148, 162, 0.4);
  background: rgba(42, 148, 162, 0.08);
  color: #2a94a2;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
#dashboard .hpanel > .panel-heading .change-view option {
  color: #040f18;
  background: #fff;
}
#dashboard .hpanel > .panel-heading .panel-tools {
  float: none;
  display: flex;
  align-items: center;
  order: 2;
  margin-left: auto;
}
#dashboard .hpanel > .panel-heading .panel-tools a {
  color: #2a94a2;
  opacity: 0.8;
}
#dashboard .hpanel > .panel-heading .panel-tools a:hover {
  opacity: 1;
}
#dashboard .hpanel > .panel-heading:has(.change-view) .panel-tools {
  margin-left: 8px;
}
.dashboard-overview table tbody td {
  vertical-align: middle;
}
.dashboard-overview table tbody tr {
  cursor: pointer;
}
.dashboard-overview .show-more {
  font-size: x-large;
}
.ecs-status-bar {
  margin-bottom: 20px;
}
@media (min-width: 1600px) {
  .ecs-status-bar {
    margin-top: 15px;
    margin-bottom: 15px;
  }
}
@media (min-width: 1900px) {
  .ecs-status-bar {
    margin-top: 15px;
    margin-bottom: 29px;
  }
}
.ecs-vulnerability-feed {
  height: 360px;
}
@media (min-width: 1600px) {
  .ecs-vulnerability-feed {
    height: 400px;
  }
}
@media (min-width: 1900px) {
  .ecs-vulnerability-feed {
    height: 430px;
  }
}
.list .ecs-history .list-item {
  margin-top: 8px;
  padding-top: 0;
}
.ecs-history-delta {
  margin-top: 26px;
}
.doughnut-chart {
  padding-left: 0;
}
.doughnut-legend li span {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 5px;
}
.doughnut-legend ul {
  list-style-type: none;
  padding-inline-start: 0px;
}
.bar-legend li span {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: -50px;
  margin-right: 5px;
}
.bar-legend ul {
  list-style-type: none;
  padding-inline-start: 0px;
}
.breadcrumb-box {
  max-width: 60%;
  display: inline-block;
}
.breadcrumb-box .breadcrumb {
  font-size: 12px;
  letter-spacing: 0.02em;
  color: #040f18;
}
.breadcrumb-box .breadcrumb > li > a {
  color: #040f18;
}
.breadcrumb-box .breadcrumb > li > a:hover {
  color: #063d50;
  text-decoration: underline;
}
.breadcrumb-box .breadcrumb > li + li:before {
  color: #217cc7;
}
@media (max-width: 768px) {
  .breadcrumb-box {
    display: none;
  }
}
#wrapper .breadcrumb-box .breadcrumb {
  padding: 15px 25px 10px 25px;
  min-width: 320px;
}
#wrapper .normalheader {
  padding-top: 0;
}
.ecs-licenses .hpanel .panel-body,
.ecs-components .hpanel .panel-body {
  border-top: none;
}
.ecs-licenses .table-collapse,
.ecs-components .table-collapse {
  display: none;
  margin-top: 20px;
}
.ecs-licenses .table-header,
.ecs-components .table-header {
  margin-bottom: 0;
}
.ecs-licenses .expand-table,
.ecs-components .expand-table {
  cursor: pointer;
  width: 20px;
  padding: 0 2px;
}
.ecs-licenses .description,
.ecs-components .description {
  margin-top: 2px;
  display: none;
}
.ecs-licenses .panel-body h4,
.ecs-components .panel-body h4 {
  margin-bottom: 3px;
  font-weight: 300;
  margin-top: 5px;
  display: inline;
}
.ecs-licenses h4 b,
.ecs-components h4 b {
  font-weight: 600;
}
.ecs-components h4 {
  margin-bottom: 3px;
  font-weight: 600;
  margin-top: 5px;
  display: inline;
}
.ecs-components .hpanel .panel-body {
  border-top: none;
}
.ecs-components .table-collapse {
  display: none;
  margin-top: 20px;
}
.ecs-components .table-header {
  margin-bottom: 0;
}
.ecs-components .expand-table {
  cursor: pointer;
  width: 50px;
}
.ecs-components .version {
  padding-left: 1em;
}
.ecs-components .description {
  font-size: smaller;
  margin-top: 2px;
  display: none;
}
.ecs-components td.path {
  line-height: 0.5;
  font-size: smaller;
  border-top: none;
  border-bottom: 1px solid #ddd;
}
.ecs-components .componentName {
  width: auto;
}
.ecs-components .path-list tr.path {
  display: none;
}
.ecs-components .path-list .version + .path {
  display: table-row;
}
.ecs-components .path-line {
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
}
#moduleLicenses h4 {
  margin-bottom: 3px;
  font-weight: 600;
  margin-top: 5px;
  display: inline;
}
#moduleLicenses .licenseName {
  width: 80%;
}
.active-tab:after {
  position: absolute;
  right: 1px;
  bottom: 1px;
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f058";
}
.module-details {
  cursor: pointer;
}
body.flex-fill-page .normalheader {
  flex-shrink: 0;
}
body.flex-fill-page .scans {
  flex: 1 1 0%;
  min-height: 0;
}
body.flex-fill-page .scans .reactive-table tbody tr {
  cursor: pointer;
}
body.flex-fill-page .scans .reactive-table tbody tr:hover {
  background-color: rgba(42, 148, 162, 0.04);
}
body.flex-fill-page .scans > [class*="col-"] {
  flex: 1 1 0%;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
body.flex-fill-page .scans > [class*="col-"] > .hpanel {
  flex: 1 1 0%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}
body.flex-fill-page .scans > [class*="col-"] > .hpanel > .panel-body {
  flex: 1 1 0%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
body.flex-fill-page .reactiveTableServerSide {
  flex: 1 1 0%;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
body.flex-fill-page .reactiveTableServerSide > .clearfix.m-b-md {
  flex-shrink: 0;
}
body.flex-fill-page .reactiveTableServerSide > .table-responsive {
  flex: 1 1 0%;
  min-height: 0;
  overflow-y: auto;
  width: 100%;
}
body.flex-fill-page .reactiveTableServerSide > .clearfix:last-of-type {
  flex-shrink: 0;
}
body.flex-fill-page .scanDetail {
  flex: 1 1 0%;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
body.flex-fill-page .scanContent {
  flex: 1 1 0%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
body.flex-fill-page .scanContent > .hpanel {
  flex: 1 1 0%;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
body.flex-fill-page .scanContent > .hpanel > .panel-body {
  flex: 1 1 0%;
  min-height: 0;
  overflow: auto;
}
body.flex-fill-page .scanContent > .row[data-sticky-container] {
  flex: 1 1 0%;
  min-height: 0;
  display: flex;
  flex-direction: row;
}
body.flex-fill-page .scanContent > .row[data-sticky-container] > .col-md-7 {
  flex: 1 1 0%;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
body.flex-fill-page .scanContent > .row[data-sticky-container] > .col-md-7 > .hpanel {
  flex: 1 1 0%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}
body.flex-fill-page .scanContent > .row[data-sticky-container] > .col-md-7 > .hpanel > .panel-heading {
  flex-shrink: 0;
}
body.flex-fill-page .scanContent > .row[data-sticky-container] > .col-md-7 > .hpanel > .panel-heading ~ div {
  flex: 1 1 0%;
  min-height: 0;
  overflow-y: auto;
}
body.flex-fill-page .scanContent > .row[data-sticky-container] > .col-md-5.scanDetailSideInfo {
  flex: 0 0 auto;
  min-height: 0;
  overflow-y: auto;
}
.scan-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  flex-shrink: 0;
}
.scan-detail-actions > .btn,
.scan-detail-actions > .scan-notices-wrapper .btn,
.scan-detail-actions > a.btn {
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 12px;
  padding: 5px 12px;
  transition: all 0.15s ease;
}
.scan-detail-actions > .btn:hover,
.scan-detail-actions > .scan-notices-wrapper .btn:hover,
.scan-detail-actions > a.btn:hover,
.scan-detail-actions > .btn:focus,
.scan-detail-actions > .scan-notices-wrapper .btn:focus,
.scan-detail-actions > a.btn:focus {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}
.scan-detail-actions > .btn .fa,
.scan-detail-actions > .scan-notices-wrapper .btn .fa,
.scan-detail-actions > a.btn .fa {
  margin-right: 3px;
}
.scan-detail-actions .scan-notices-wrapper {
  position: relative;
}
.scan-detail-actions .scan-notices-wrapper .btn.active {
  background: rgba(254, 186, 73, 0.25);
  border-color: rgba(254, 186, 73, 0.45);
  color: #feba49;
}
.scan-detail-actions .scan-notices-popover {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  width: 360px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  padding: 16px;
  z-index: 20;
  color: #040f18;
  font-size: 13px;
}
.scan-detail-actions .scan-notices-popover:before {
  content: '';
  position: absolute;
  top: -6px;
  right: 16px;
  width: 12px;
  height: 12px;
  background: #fff;
  transform: rotate(45deg);
  box-shadow: -2px -2px 4px rgba(0, 0, 0, 0.05);
}
.scan-detail-actions .scan-notices-popover h6 {
  font-weight: 600;
  color: #063d50;
  margin: 0 0 8px;
  font-size: 12px;
}
.scan-detail-actions .scan-notices-popover ul {
  padding-left: 18px;
  margin: 0 0 10px;
}
.scan-detail-actions .scan-notices-popover ul li {
  margin-bottom: 4px;
  line-height: 1.4;
}
.scan-detail-actions > .btn.btn-warning,
.scan-detail-actions > a.btn.btn-warning {
  background: rgba(254, 186, 73, 0.2);
  border-color: rgba(254, 186, 73, 0.4);
  color: #feba49;
}
.scan-detail-actions > .btn.btn-warning:hover,
.scan-detail-actions > a.btn.btn-warning:hover,
.scan-detail-actions > .btn.btn-warning:focus,
.scan-detail-actions > a.btn.btn-warning:focus {
  background: rgba(254, 186, 73, 0.3);
  border-color: rgba(254, 186, 73, 0.55);
  color: #feba49;
}
.scanDetail .normalheader h2.font-light {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 0 !important;
  margin-top: 4px;
}
.scanDetail .normalheader h2.font-light > span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
  vertical-align: middle;
}
.scanDetail .normalheader h2.font-light > span small {
  font-size: 12px;
  color: inherit;
}
.scanDetail .normalheader h2.font-light > span .fa {
  font-size: 11px;
}
.scanDetail .normalheader p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0;
  white-space: nowrap;
}
.scanDetailSideInfo {
  container-type: inline-size;
  container-name: scan-sidebar;
}
.scanDetailSideInfo .hpanel {
  border-radius: 8px;
  overflow: hidden;
}
.scanDetailSideInfo .hpanel > .panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  color: #063d50;
  letter-spacing: 0.3px;
  padding: 0 11px;
  height: 50px;
  border-bottom: 2px solid #2a94a2;
}
.scanDetailSideInfo .hpanel > .panel-heading .scan-side-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}
.scanDetailSideInfo .hpanel > .panel-heading .btn {
  padding: 4px 8px;
  font-size: 12px;
  border-radius: 4px;
  border-color: #d3d4d7;
  float: none !important;
}
.scanDetailSideInfo .hpanel > .panel-heading .btn-label {
  display: none;
}
@media (min-width: 1600px) {
  .scanDetailSideInfo .hpanel > .panel-heading .btn-label {
    display: inline;
  }
}
.scanDetailSideInfo .dl-horizontal dt {
  width: 140px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: #6b7280;
  font-weight: 600;
  padding-top: 2px;
}
.scanDetailSideInfo .dl-horizontal dd {
  margin-left: 150px;
  word-wrap: break-word;
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 1.5;
}
@container scan-sidebar (max-width: 300px) {
  .dl-horizontal dt {
    width: auto !important;
    float: none !important;
    text-align: left !important;
    padding-bottom: 2px;
    font-weight: 700 !important;
  }
  .dl-horizontal dd {
    margin-left: 0 !important;
    margin-bottom: 14px;
  }
}
.scanDetailSideInfo .scan-aside-breadcrumb {
  background: rgba(42, 148, 162, 0.06);
  border-radius: 0;
  padding: 8px 14px;
  font-size: 12px;
  margin-bottom: 12px;
  border: none;
  color: #040f18;
}
.scanDetailSideInfo .scan-aside-breadcrumb > li {
  color: #040f18;
}
.scanDetailSideInfo .scan-aside-breadcrumb > li + li:before {
  color: #999;
}
.scan-list-actions .btn {
  border-radius: 6px;
}
.scanContent .hpanel,
.ecs-dependencies-with-details.hpanel,
.ecs-licenses.hpanel,
.ecs-deepscans.hpanel,
.ecs-tests.hpanel {
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.scanContent .hpanel > .panel-heading,
.ecs-dependencies-with-details.hpanel > .panel-heading,
.ecs-licenses.hpanel > .panel-heading,
.ecs-deepscans.hpanel > .panel-heading,
.ecs-tests.hpanel > .panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  color: #063d50;
  padding: 10px 11px;
  letter-spacing: 0.3px;
  border-bottom: 2px solid #2a94a2;
}
.scanContent .hpanel > .panel-heading .scan-panel-actions,
.ecs-dependencies-with-details.hpanel > .panel-heading .scan-panel-actions,
.ecs-licenses.hpanel > .panel-heading .scan-panel-actions,
.ecs-deepscans.hpanel > .panel-heading .scan-panel-actions,
.ecs-tests.hpanel > .panel-heading .scan-panel-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}
.scanContent .hpanel > .panel-heading .scan-panel-actions .btn-label,
.ecs-dependencies-with-details.hpanel > .panel-heading .scan-panel-actions .btn-label,
.ecs-licenses.hpanel > .panel-heading .scan-panel-actions .btn-label,
.ecs-deepscans.hpanel > .panel-heading .scan-panel-actions .btn-label,
.ecs-tests.hpanel > .panel-heading .scan-panel-actions .btn-label {
  display: none;
}
@media (min-width: 1600px) {
  .scanContent .hpanel > .panel-heading .scan-panel-actions .btn-label,
  .ecs-dependencies-with-details.hpanel > .panel-heading .scan-panel-actions .btn-label,
  .ecs-licenses.hpanel > .panel-heading .scan-panel-actions .btn-label,
  .ecs-deepscans.hpanel > .panel-heading .scan-panel-actions .btn-label,
  .ecs-tests.hpanel > .panel-heading .scan-panel-actions .btn-label {
    display: inline;
  }
}
.scanContent .hpanel > .panel-heading .scan-panel-actions .btn-group .btn,
.ecs-dependencies-with-details.hpanel > .panel-heading .scan-panel-actions .btn-group .btn,
.ecs-licenses.hpanel > .panel-heading .scan-panel-actions .btn-group .btn,
.ecs-deepscans.hpanel > .panel-heading .scan-panel-actions .btn-group .btn,
.ecs-tests.hpanel > .panel-heading .scan-panel-actions .btn-group .btn {
  padding: 4px 8px;
  font-size: 12px;
  border-radius: 0;
  border-color: #d3d4d7;
}
.scanContent .hpanel > .panel-heading .scan-panel-actions .btn-group .btn:first-child,
.ecs-dependencies-with-details.hpanel > .panel-heading .scan-panel-actions .btn-group .btn:first-child,
.ecs-licenses.hpanel > .panel-heading .scan-panel-actions .btn-group .btn:first-child,
.ecs-deepscans.hpanel > .panel-heading .scan-panel-actions .btn-group .btn:first-child,
.ecs-tests.hpanel > .panel-heading .scan-panel-actions .btn-group .btn:first-child {
  border-radius: 4px 0 0 4px;
}
.scanContent .hpanel > .panel-heading .scan-panel-actions .btn-group .btn:last-child,
.ecs-dependencies-with-details.hpanel > .panel-heading .scan-panel-actions .btn-group .btn:last-child,
.ecs-licenses.hpanel > .panel-heading .scan-panel-actions .btn-group .btn:last-child,
.ecs-deepscans.hpanel > .panel-heading .scan-panel-actions .btn-group .btn:last-child,
.ecs-tests.hpanel > .panel-heading .scan-panel-actions .btn-group .btn:last-child {
  border-radius: 0 4px 4px 0;
}
.scanContent .hpanel > .panel-heading .scan-panel-actions .btn-group .btn.active,
.ecs-dependencies-with-details.hpanel > .panel-heading .scan-panel-actions .btn-group .btn.active,
.ecs-licenses.hpanel > .panel-heading .scan-panel-actions .btn-group .btn.active,
.ecs-deepscans.hpanel > .panel-heading .scan-panel-actions .btn-group .btn.active,
.ecs-tests.hpanel > .panel-heading .scan-panel-actions .btn-group .btn.active {
  background: #2a94a2;
  border-color: #2a94a2;
  color: #fff;
}
#tree .list-group-item {
  display: flex;
  align-items: center;
  overflow: hidden;
}
#tree .list-group-item,
#tree .node-tree {
  border: none;
  border-left: 3px solid transparent;
  border-radius: 0;
  padding: 8px 12px;
  margin-bottom: 0;
  transition: all 0.15s ease;
  font-size: 13px;
}
#tree .list-group-item:not(.node-disabled):hover,
#tree .node-tree:not(.node-disabled):hover {
  background-color: rgba(42, 148, 162, 0.04);
  border-left-color: #2a94a2;
}
#tree .list-group-item.node-selected,
#tree .node-tree.node-selected {
  background-color: rgba(42, 148, 162, 0.08) !important;
  color: #063d50 !important;
  border-left-color: #2a94a2;
  font-weight: 500;
}
#tree .list-group-item .indent,
#tree .node-tree .indent {
  flex-shrink: 0;
}
#tree .list-group-item .icon.expand-icon,
#tree .node-tree .icon.expand-icon,
#tree .list-group-item .icon.node-icon,
#tree .node-tree .icon.node-icon,
#tree .list-group-item .glyphicon,
#tree .node-tree .glyphicon {
  flex-shrink: 0;
  color: #9ca3af;
  font-size: 11px;
  transition: color 0.15s ease;
}
#tree .list-group-item:hover .icon.expand-icon,
#tree .node-tree:hover .icon.expand-icon,
#tree .list-group-item:hover .glyphicon,
#tree .node-tree:hover .glyphicon {
  color: #2a94a2;
}
#tree .list-group-item .badge,
#tree .node-tree .badge {
  background: #2a94a2;
  color: #fff;
  border-radius: 12px;
  font-size: 11px;
  padding: 2px 8px;
  font-weight: 500;
  flex-shrink: 0;
  margin-left: auto;
}
#tree .list-group-item.dependency-root,
#tree .node-tree.dependency-root {
  background: #063d50;
  color: #fff;
  border-left-color: #063d50;
  border-radius: 4px;
  margin-bottom: 2px;
}
#tree .list-group-item.dependency-active,
#tree .node-tree.dependency-active {
  background: rgba(42, 148, 162, 0.1);
  color: #2a94a2;
  border-left-color: #2a94a2;
}
#tree .list-group-item:nth-child(even):not(.node-selected):not(.dependency-root):not(:hover) {
  background-color: rgba(0, 0, 0, 0.015);
}
#navigation {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.nav-user {
  padding: 10px;
  text-align: center;
}
.nav-user-icon {
  font-size: 62px;
}
.nav-user-name,
.nav-user-role,
.nav-user-company,
.nav-company-trial {
  font-size: 11px;
  margin-bottom: 5px;
}
.nav-user-name {
  text-transform: uppercase;
  font-weight: 700;
}
.nav-company-trial {
  text-transform: uppercase;
}
.sidebar-link {
  font-size: 12px;
  padding: 9px 28px 9px 12px!important;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.02em;
  transition: background 0.15s, color 0.15s;
}
.sidebar-item {
  display: block;
}
.sidebar-link.text-muted {
  color: #999 !important;
}
.sidebar-dropdown .sidebar-link {
  padding: 8px 5px 8px 36px!important;
  background: #fff;
  font-size: 11.5px;
}
.sidebar-link.active,
#side-menu.nav > .active > a:hover,
#side-menu.nav > .active > a:focus {
  background: #063d50 !important;
  color: #fff !important;
}
.sidebar-icon {
  min-width: 18px;
  width: auto;
  font-size: 14px;
  text-align: center;
  flex-shrink: 0;
  opacity: 0.7;
}
.sidebar-icon:not(.fa):not([class*="pe-"]) {
  display: none;
}
.sidebar-link.active .sidebar-icon,
.sidebar-link:hover .sidebar-icon {
  opacity: 1;
}
.sidebar-icon-collapsed {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-40%);
  font-size: 1.4em;
  color: #aaa;
  line-height: 1;
}
.sidebar-icon-soon {
  float: right;
  height: 20px;
  vertical-align: middle;
  margin-top: -3px;
  font-size: 2em;
  text-align: center;
}
.sidebar-link .sidebar-icon-collapsed:before {
  content: "\f106";
}
.sidebar-link.collapsed .sidebar-icon-collapsed:before {
  content: "\f107";
}
body.flex-fill-page .content-area > .content > .row.scanners-grid {
  flex: 1 1 0%;
  min-height: 0;
  overflow-y: auto;
  flex-wrap: wrap;
}
.scanners-grid .panel {
  border: none;
  box-shadow: none;
}
.scanner-logo {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
.scanner-logo-holder {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.scanner-title {
  margin: 10px 0 20px;
}
.scanner-details {
  margin: 10px 0 20px;
}
.scanner-links-buffer {
  min-height: 18px;
}
.training-logo {
  width: auto;
  text-align: center;
  height: 200px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.training-title {
  min-height: 40px;
}
/* basic typeahead styles */
.tt-query,
.tt-hint {
  outline: none;
}
.tt-query {
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.tt-hint {
  color: #999;
}
.tt-menu {
  width: 422px;
  max-width: 100%;
  margin: 4px 0;
  padding: 8px 0;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.tt-suggestion {
  padding: 3px 20px;
  font-size: 14px;
  line-height: 16px;
}
.tt-suggestion:hover {
  cursor: pointer;
  color: #fff;
  background-color: #0097cf;
}
.tt-suggestion.tt-cursor {
  color: #fff;
  background-color: #0097cf;
}
.tt-suggestion p {
  margin: 0;
}
.str-tag-input,
.str-tag-input * {
  box-sizing: border-box;
}
.str-tag-input {
  display: inline-block;
  width: 100%;
  max-width: 100%;
  min-height: 34px;
  height: auto;
  margin: 0;
  padding: 3px 8px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  position: relative;
  overflow: visible;
  white-space: nowrap;
}
.str-tag-input > div {
  overflow: hidden;
}
.str-tag-input > div > div {
  display: flex;
  height: auto;
  padding: 2px 3px;
  overflow: hidden;
  align-items: center;
  justify-content: flex-start;
}
.str-tag-input input {
  margin: 0 2px 0 2px;
  padding: 0;
  border: none !important;
  background-color: none !important;
  flex-grow: 1;
  flex-shrink: 0;
}
.str-tag-input input:focus {
  outline: none !important;
}
.str-tags-each {
  height: auto;
  flex-grow: 0;
  flex-shrink: 0;
}
.js-click-tag {
  cursor: pointer;
}
.str-tags-each.invisible {
  opacity: 0 !important;
}
.str-tag-input .str-tag {
  margin: 0 1px;
  padding: 3px 5px;
  color: #6D6D6D;
  border: 1px solid #6D6D6D;
  background-color: #E0E0E0;
  transition: all 0.25s ease-in-out;
}
.str-tag-input .str-tag:focus,
.str-tag-input .str-tag:hover {
  color: #E0E0E0;
  background-color: #6D6D6D;
}
.str-tag-input .typeahead {
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: #fff;
  list-style: none;
  list-style-type: none;
  position: absolute;
  top: 100%;
  left: 0;
  max-width: 100%;
  z-index: 1000;
  border: none;
}
.str-tag-input .typeahead > li {
  padding: 2px 10px;
  border: 1px solid #ccc;
  border-bottom: none;
  cursor: pointer;
}
.str-tag-input .typeahead > li:last-child {
  border-bottom: 1px solid #ccc;
}
.str-tag-input .typeahead > li:hover {
  background-color: #E0E0E0;
}
.chat-wrapper {
  margin: 0 auto;
  max-width: min(1200px, 90%);
  display: flex;
  flex-direction: column;
  font: 14px -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.chat-wrapper .log {
  flex: 1;
  padding: 20px 0 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.chat-wrapper .user,
.chat-wrapper .assistant {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.chat-wrapper .user {
  align-items: flex-end;
}
.chat-wrapper .assistant {
  align-items: flex-start;
}
.chat-wrapper .bubble {
  width: 90%;
  padding: 16px 24px;
  border-radius: 6px;
  line-height: 1.5;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.chat-wrapper .bubble.formatted {
  white-space: normal;
}
.chat-wrapper .bubble .chat-text {
  margin: 0 0 4px;
}
.chat-wrapper .bubble .chat-text:last-child {
  margin-bottom: 0;
}
.chat-wrapper .bubble .code-block {
  position: relative;
  margin: 6px 0 2px;
  border-radius: 6px;
  overflow: hidden;
  background: #1e1e1e;
  white-space: normal;
}
.chat-wrapper .bubble .code-block .code-copy-btn {
  position: absolute;
  top: 6px;
  right: 6px;
  background: rgba(45, 45, 45, 0.85);
  border: 1px solid #555;
  color: #ccc;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 4px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.15s, background 0.15s, border-color 0.15s;
  -webkit-user-select: none;
  user-select: none;
}
.chat-wrapper .bubble .code-block .code-copy-btn:hover {
  background: #444;
  border-color: #888;
  color: #fff;
}
.chat-wrapper .bubble .code-block:hover .code-copy-btn {
  opacity: 1;
}
.chat-wrapper .bubble .code-block pre {
  margin: 0;
  padding: 8px 12px;
  overflow-x: auto;
  white-space: pre;
}
.chat-wrapper .bubble .code-block pre code {
  color: #0A0A0A;
  font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
  font-size: 13px;
  line-height: 1.5;
  background: none;
  padding: 0;
  border: none;
}
.chat-wrapper .bubble .inline-code {
  background: rgba(0, 0, 0, 0.06);
  padding: 1px 5px;
  border-radius: 3px;
  font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
  font-size: 13px;
}
.chat-wrapper .bubble.typing {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: auto;
  background: transparent;
  border: none;
}
.chat-wrapper .bubble.typing .dot {
  width: 6px;
  height: 6px;
  background: #9e9e9e;
  border-radius: 50%;
  animation: blink 1.2s infinite ease-in-out;
}
.chat-wrapper .bubble.typing .dot:nth-child(2) {
  animation-delay: 0.2s;
}
.chat-wrapper .bubble.typing .dot:nth-child(3) {
  animation-delay: 0.4s;
}
.chat-wrapper .user .bubble {
  background: rgba(6, 61, 80, 0.7);
  color: #ffffff;
  border: 1px solid #e5e5ea;
}
.chat-wrapper .assistant .bubble {
  background: rgba(200, 200, 200, 0.2);
  color: #202123;
  border: 1px solid #f0f0f3;
}
.chat-wrapper .input-bar {
  position: sticky;
  bottom: 0;
  display: flex;
  gap: 12px;
  padding: 12px 16px;
  width: 100%;
  background: #FFFFFF;
  border-top: 1px solid #e5e5ea;
  z-index: 2;
}
.chat-wrapper .input-bar textarea {
  flex: 1;
  resize: none;
  padding: 10px 12px;
  border: 1px solid #e5e5ea;
  border-radius: 6px;
  background: #fff;
  max-height: 160px;
  outline: none;
}
.chat-wrapper .input-bar .submit {
  padding: 0 20px;
  border: none;
  border-radius: 6px;
  background: #063d50;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}
.chat-wrapper .input-bar .submit[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
}
.chat-wrapper .input-bar .power-actions {
  position: absolute;
  right: 10px;
  bottom: calc(100% + 10px);
}
.chat-wrapper .actions {
  width: 90%;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 2px 0 0;
}
.chat-wrapper .actions .action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.9;
  transition: transform 0.05s ease, background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s;
}
.chat-wrapper .actions .action-btn svg {
  pointer-events: none;
}
.chat-wrapper .actions .action-btn:active {
  transform: translateY(1px);
}
@media (max-width: 780px) {
  .chat-wrapper .input-bar {
    padding: 12px 8px;
  }
}
@keyframes blink {
  0%,
  80%,
  100% {
    opacity: 0.3;
    transform: translateY(0);
  }
  40% {
    opacity: 1;
    transform: translateY(-2px);
  }
}
/* Full-page /chat layout */
.chat-page-content {
  flex: 1 1 0%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding: 0 20px;
}
.chat-page-content .chat-wrapper {
  flex: 1 1 0%;
  min-height: 0;
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
}
.chat-page-content .chat-wrapper .log {
  flex: 1 1 0%;
  min-height: 0;
  overflow-y: auto;
  width: 100%;
}
.chat-page-content .chat-wrapper .input-bar {
  position: static;
  flex-shrink: 0;
  background: #f4f4f2;
  border-top: 1px solid #e5e5ea;
  padding: 9px 0 8px;
  border-radius: 0 0 10px 10px;
}
.chat-page-content .chat-wrapper .power-actions {
  display: none;
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  font-stretch: normal;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsiH0B4gaVc.ttf) format('truetype');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4gaVc.ttf) format('truetype');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  font-stretch: normal;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsgH1x4gaVc.ttf) format('truetype');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  font-stretch: normal;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1x4gaVc.ttf) format('truetype');
}
/* MARGINS & PADDINGS */
.p-xxs {
  padding: 5px !important;
}
.p-xs {
  padding: 10px !important;
}
.p-sm {
  padding: 15px !important;
}
.p-m {
  padding: 20px !important;
}
.p-md {
  padding: 25px !important;
}
.p-lg {
  padding: 30px !important;
}
.p-xl {
  padding: 40px !important;
}
.m-xxs {
  margin: 2px 4px;
}
.m-xs {
  margin: 5px;
}
.m-sm {
  margin: 10px;
}
.m {
  margin: 15px;
}
.m-md {
  margin: 20px;
}
.m-lg {
  margin: 30px;
}
.m-xl {
  margin: 50px;
}
.m-n {
  margin: 0 !important;
}
.m-l-none {
  margin-left: 0;
}
.m-l-xs {
  margin-left: 5px;
}
.m-l-sm {
  margin-left: 10px;
}
.m-l {
  margin-left: 15px;
}
.m-l-md {
  margin-left: 20px;
}
.m-l-lg {
  margin-left: 30px;
}
.m-l-xl {
  margin-left: 40px;
}
.m-l-n-xxs {
  margin-left: -1px;
}
.m-l-n-xs {
  margin-left: -5px;
}
.m-l-n-sm {
  margin-left: -10px;
}
.m-l-n {
  margin-left: -15px;
}
.m-l-n-md {
  margin-left: -20px;
}
.m-l-n-lg {
  margin-left: -30px;
}
.m-l-n-xl {
  margin-left: -40px;
}
.m-t-none {
  margin-top: 0;
}
.m-t-xxs {
  margin-top: 1px;
}
.m-t-xs {
  margin-top: 5px;
}
.m-t-sm {
  margin-top: 10px;
}
.m-t {
  margin-top: 15px;
}
.m-t-md {
  margin-top: 20px;
}
.m-t-lg {
  margin-top: 30px;
}
.m-t-xl {
  margin-top: 40px;
}
.m-t-xxl {
  margin-top: 50px;
}
.m-t-xxxl {
  margin-top: 60px;
}
.m-t-n-xxs {
  margin-top: -1px;
}
.m-t-n-xs {
  margin-top: -5px;
}
.m-t-n-sm {
  margin-top: -10px;
}
.m-t-n {
  margin-top: -15px;
}
.m-t-n-md {
  margin-top: -20px;
}
.m-t-n-lg {
  margin-top: -30px;
}
.m-t-n-xl {
  margin-top: -40px;
}
.m-r-none {
  margin-right: 0;
}
.m-r-xxs {
  margin-right: 1px;
}
.m-r-xs {
  margin-right: 5px;
}
.m-r-sm {
  margin-right: 10px;
}
.m-r {
  margin-right: 15px;
}
.m-r-md {
  margin-right: 20px;
}
.m-r-lg {
  margin-right: 30px;
}
.m-r-xl {
  margin-right: 40px;
}
.m-r-n-xxs {
  margin-right: -1px;
}
.m-r-n-xs {
  margin-right: -5px;
}
.m-r-n-sm {
  margin-right: -10px;
}
.m-r-n {
  margin-right: -15px;
}
.m-r-n-md {
  margin-right: -20px;
}
.m-r-n-lg {
  margin-right: -30px;
}
.m-r-n-xl {
  margin-right: -40px;
}
.m-b-none {
  margin-bottom: 0;
}
.m-b-xxs {
  margin-bottom: 1px;
}
.m-b-xs {
  margin-bottom: 5px;
}
.m-b-sm {
  margin-bottom: 10px;
}
.m-b {
  margin-bottom: 15px;
}
.m-b-md {
  margin-bottom: 20px;
}
.m-b-lg {
  margin-bottom: 30px;
}
.m-b-xl {
  margin-bottom: 40px;
}
.m-b-n-xxs {
  margin-bottom: -1px;
}
.m-b-n-xs {
  margin-bottom: -5px;
}
.m-b-n-sm {
  margin-bottom: -10px;
}
.m-b-n {
  margin-bottom: -15px;
}
.m-b-n-md {
  margin-bottom: -20px;
}
.m-b-n-lg {
  margin-bottom: -30px;
}
.m-b-n-xl {
  margin-bottom: -40px;
}
.space-15 {
  margin: 15px 0;
}
.space-20 {
  margin: 20px 0;
}
.space-25 {
  margin: 25px 0;
}
.space-30 {
  margin: 30px 0;
}
.sweet-alert button {
  background-color: #34495e;
  color: white;
  border: none;
  box-shadow: none;
  font-size: 17px;
  font-weight: 500;
  border-radius: 5px;
  padding: 10px 32px;
  margin: 26px 5px 0 5px;
  cursor: pointer;
}
.sweet-alert button:focus {
  outline: none;
  box-shadow: 0 0 2px rgba(128, 179, 235, 0.5), inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}
.sweet-alert button:hover {
  background-color: #a1d9f2;
}
.sweet-alert button:active {
  background-color: #81ccee;
}
.sweet-alert button.cancel {
  background-color: #D0D0D0;
}
.sweet-alert button.cancel:hover {
  background-color: #c8c8c8;
}
.sweet-alert button.cancel:active {
  background-color: #b6b6b6;
}
.sweet-alert p {
  font-size: 14px;
  font-weight: 400;
}
.sweet-alert h2 {
  font-size: 26px;
}
.sweet-alert {
  padding: 25px;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.2);
}
.table > thead > tr > th {
  border-bottom: 1px solid #ddd;
}
.cg-notify-message.homer-notify {
  background: #fff;
  padding: 0;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.2);
  border: none;
  margin-top: 30px;
  color: inherit;
}
.homer-notify.alert-warning {
  border-left: 6px solid #feba49;
}
.homer-notify.alert-success {
  border-left: 6px solid #2a94a2;
}
.homer-notify.alert-danger {
  border-left: 6px solid #cf4747;
}
.homer-notify.alert-info {
  border-left: 6px solid #4381b8;
}
.h-modal-icon {
  font-size: 66px;
}
.inmodal .color-line {
  border-radius: 4px 4px 0 0;
}
.modal-content {
  border-radius: 5px;
  border: none;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.2);
}
.modal-backdrop.in {
  opacity: 0.4;
}
.modal-backdrop {
  position: fixed;
  bottom: 0;
}
.modal-dialog {
  margin-top: 80px;
}
.modal-title {
  font-size: 30px;
  font-weight: 300;
}
.modal-header {
  padding: 40px 30px;
  background: #f7f9fa;
}
.modal-body {
  padding: 20px 30px;
}
.modal-header small {
  color: #13466f;
}
.modal-footer {
  background: #f7f9fa;
}
.hmodal-info .color-line {
  background: #4381b8;
}
.hmodal-warning .color-line {
  background: #feba49;
}
.hmodal-success .color-line {
  background: #2a94a2;
}
.hmodal-danger .color-line {
  background: #cf4747;
}
.hmodal-info h4.modal-title {
  color: #4381b8;
}
.hmodal-warning h4.modal-title {
  color: #feba49;
}
.hmodal-success h4.modal-title {
  color: #2a94a2;
}
.hmodal-danger h4.modal-title {
  color: #cf4747;
}
/* Fix body padding when modal is open */
body.modal-open {
  padding-right: 0 !important;
}
/* Progress bar */
.progress {
  border-radius: 2px;
  margin-bottom: 10px;
  display: flex;
}
.progress-bar {
  background-color: #f4f4f2;
  text-align: center;
  color: #040f18;
}
.progress-small,
.progress-small .progress-bar {
  height: 10px;
}
.full .progress-bar-success {
  background-color: #2a94a2;
}
.full .progress-bar-info {
  background-color: #4381b8;
}
.full .progress-bar-warning {
  background-color: #feba49;
}
.full .progress-bar-danger {
  background-color: #cf4747;
}
.full .progress-bar {
  color: #ffffff;
}
body.blank {
  background-color: #f4f4f2;
}
.login-container {
  max-width: 560px;
  margin: auto;
  padding-top: 6%;
}
.register-container {
  max-width: 800px;
  margin: auto;
  padding-top: 6%;
}
.lock-container {
  max-width: 420px;
  margin: auto;
  padding-top: 6%;
}
.verifyEmail-container {
  max-width: 420px;
  margin: auto;
  padding-top: 6%;
}
.signup-container {
  max-width: 420px;
  margin: auto;
  padding-top: 6%;
}
.error-container {
  max-width: 620px;
  margin: auto;
  padding-top: 6%;
}
.big-icon {
  font-size: 120px;
}
.error-container h1 {
  font-size: 44px;
}
.back-link {
  float: left;
  width: 100%;
  margin: 10px;
}
.mid-line {
  position: absolute;
  left: 50%;
  width: 1px;
  height: 100%;
  margin: auto;
  overflow: hidden;
}
.mid-line-300 {
  top: -51px;
  width: 1px;
  height: 300px;
  margin: auto;
  overflow: hidden;
}
.mid-line-inner {
  position: absolute;
  width: 100%;
  height: 40%;
  background: grey;
  top: 10%;
  box-shadow: 0 0 30px 20px grey;
}
.login-offset-top {
  padding-top: 23px;
}
.errors-below .form-group {
  position: relative;
}
.errors-below label span.error {
  position: absolute;
  right: 0;
  top: 50px;
  font-size: 0.8em;
}
.errors-below .checkbox-error span.error {
  top: 12px;
}
.login_bg {
  position: absolute;
  left: 0;
  top: 0;
  background: url('/images/login-bg.jpg') no-repeat center top;
  background-size: 100% auto;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.login_bg:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: ' ';
  display: block;
  background: rgba(244, 244, 244, 0.9);
}
@media (max-width: 991px) {
  .login-offset-top {
    padding-top: 0;
  }
}
@media (max-width: 420px) {
  .login-container,
  .lock-container {
    margin: auto 10px;
  }
}
@media (max-width: 720px) {
  .register-container {
    margin: auto 10px;
  }
  .verifyEmil-container {
    margin: auto 10px;
  }
  .signup-container {
    margin: auto 10px;
  }
  .lock-container {
    padding-top: 15%;
  }
}
@media (max-width: 620px) {
  .error-container {
    margin: auto 10px;
  }
}
.vertical-container {
  /* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
  width: 98%;
  margin: 0 auto;
}
.vertical-container::after {
  /* clearfix */
  content: '';
  display: table;
  clear: both;
}
.v-timeline {
  position: relative;
  padding: 0;
  margin-top: 2em;
  margin-bottom: 2em;
}
.v-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 18px;
  height: 100%;
  width: 4px;
  background: #ededea;
}
.vertical-timeline-content .btn {
  float: right;
}
.vertical-timeline-block {
  position: relative;
  margin: 2em 0;
}
.vertical-timeline-block:after {
  content: "";
  display: table;
  clear: both;
}
.vertical-timeline-block:first-child {
  margin-top: 0;
}
.vertical-timeline-block:last-child {
  margin-bottom: 0;
}
.vertical-timeline-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 16px;
  border: 1px solid #e0e1e3;
  text-align: center;
  background: #fff;
}
.vertical-timeline-icon i {
  display: block;
  width: 24px;
  height: 24px;
  position: relative;
  left: 50%;
  top: 50%;
  margin-left: -12px;
  margin-top: -9px;
}
.vertical-timeline-content {
  position: relative;
  margin-left: 60px;
  background: white;
  border-radius: 0.25em;
  border: 1px solid #e0e1e3;
}
.vertical-timeline-content:after {
  content: "";
  display: table;
  clear: both;
}
.vertical-timeline-content h2 {
  font-weight: 400;
  margin-top: 4px;
}
.vertical-timeline-content p {
  margin: 1em 0 0 0;
  line-height: 1.6;
}
.vertical-timeline-content .vertical-date {
  font-weight: 500;
  text-align: right;
  font-size: 13px;
}
.vertical-date small {
  color: #2a94a2;
  font-weight: 400;
}
.vertical-timeline-content:after,
.vertical-timeline-content:before {
  right: 100%;
  top: 20px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.vertical-timeline-content:after {
  border-color: transparent;
  border-right-color: #fff;
  border-width: 10px;
  margin-top: -10px;
}
.vertical-timeline-content:before {
  border-color: transparent;
  border-right-color: #e0e1e3;
  border-width: 11px;
  margin-top: -11px;
}
@media only screen and (min-width: 768px) {
  .vertical-timeline-content h2 {
    font-size: 18px;
  }
  .vertical-timeline-content p {
    font-size: 13px;
  }
}
.contact-panel h3 {
  margin-bottom: 2px;
}
.contact-panel h3 a {
  color: inherit;
}
.contact-panel p {
  font-size: 11px;
  line-height: 16px;
  margin-bottom: 0;
}
.contact-panel img {
  width: 76px;
  height: 76px;
}
.contact-footer {
  padding: 0 15px;
}
.contact-stat span {
  font-size: 10px;
  font-weight: 500;
  display: block;
  color: #13466f;
  text-transform: uppercase;
}
.contact-stat {
  padding: 8px 0px;
  text-align: center;
}
.contact-panel:hover .panel-body {
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-name: pulse;
  z-index: 1;
}
.note-editor {
  border: 1px solid #e0e1e3;
}
.note-editor .note-toolbar {
  border-bottom: 1px solid #e0e1e3;
}
.note-editor .btn-default {
  border-color: #e0e1e3;
}
.ngH eaderCell {
  border-right: none;
  border-bottom: 1px solid #e0e1e3;
}
.ngCell {
  border-right: none;
}
.ngTopPanel {
  background: #fff;
}
.ngRow.even {
  background: #f9f9f9;
}
.ngRow.selected {
  background: #ebebe7;
}
.ngRow {
  border-bottom: 1px solid #e0e1e3;
}
.ngCell {
  background-color: transparent;
}
.ngHeaderCell {
  border-right: none;
}
.gridStyle {
  border: 1px solid #e0e1e3;
  height: 400px;
}
.show-grid [class^="col-"] {
  background-color: #f4f4f2 !important;
  border: 1px solid #ddd;
  padding-bottom: 10px;
  padding-top: 10px;
}
.show-grid {
  margin: 15px 0;
}
.nav > li.active {
  background: #f4f4f2;
}
.dropdown-menu.hdropdown {
  padding: 0;
  z-index: 1060;
}
.dropdown-menu.hdropdown .title {
  padding: 12px 12px;
  text-align: center;
  border-bottom: 1px solid #e0e1e3;
}
.dropdown-menu.hdropdown li {
  padding: 6px 12px;
  text-align: left;
  background: #fbfbfa;
  border-bottom: 1px solid #e0e1e3;
}
.dropdown-menu.hdropdown li.active > a,
.dropdown-menu.hdropdown li:hover > a {
  background-color: inherit;
  color: inherit;
}
.dropdown-menu.hdropdown li.active,
.dropdown-menu.hdropdown li:hover {
  background: #f4f4f2;
}
.dropdown-menu.filedropdown li {
  padding: 6px 6px;
  text-align: left;
  background: #fbfbfa;
  border-bottom: 1px solid #e0e1e3;
}
.dropdown-menu.filedropdown li i {
  margin-right: 10px;
}
.dropdown-menu.hdropdown.notification li {
  padding: 12px 12px;
}
.dropdown-menu.hdropdown.notification li .label {
  margin-right: 10px;
}
.dropdown-menu.hdropdown li > a:hover,
.dropdown-menu.filedropdown li > a:hover {
  background: inherit;
}
.dropdown-menu.hdropdown li:hover,
.dropdown-menu.filedropdown li:hover {
  background: #f4f4f2;
}
.dropdown-menu.hdropdown li.summary {
  padding: 6px 12px;
  text-align: center;
  background: #fff;
}
.navbar-nav > li > a:hover,
.navbar-nav > li > a:focus,
.navbar-nav .open > a,
.navbar-nav .open > a:hover,
.navbar-nav .open > a:focus {
  color: inherit;
  background: transparent;
  border-bottom: none;
}
.chat-avatar {
  width: 36px;
  height: 36px;
  float: left;
  margin-right: 10px;
  border-radius: 50%;
}
.chat-user-name {
  padding: 10px;
}
.chat-user {
  padding: 8px 10px;
  border-bottom: 1px solid #e7eaec;
}
.chat-user a {
  color: inherit;
}
.chat-view {
  z-index: 1070;
}
.chat-users,
.chat-statistic {
  margin-left: -30px;
}
@media (max-width: 992px) {
  .chat-users,
  .chat-statistic {
    margin-left: 0px;
  }
}
.chat-view .ibox-content {
  padding: 0;
}
.chat-message {
  padding: 10px 20px;
}
.message-avatar {
  height: 36px;
  width: 36px;
  border-radius: 50%;
  margin-top: 1px;
}
.chat-discussion .chat-message .message-avatar {
  float: left;
  margin-right: 10px;
}
.chat-discussion .message {
  background-color: #f9f9f8;
  text-align: left;
  display: block;
  padding: 10px 20px;
  position: relative;
  border-radius: 4px;
}
.chat-discussion .chat-message .message-date {
  float: right;
}
.chat-discussion .chat-message .message {
  text-align: left;
  margin-left: 55px;
}
.message-date {
  font-size: 10px;
  color: #888888;
}
.message-content {
  display: block;
}
.chat-users,
.chat-discussion {
  overflow-y: auto;
  height: 500px;
}
.chat-discussion .chat-message.left .message-date {
  float: right;
}
.chat-discussion .chat-message.right .message-date {
  float: left;
}
.chat-discussion .chat-message.left .message {
  text-align: left;
  margin-left: 55px;
}
.chat-discussion .chat-message.right .message {
  text-align: right;
  margin-right: 55px;
}
.chat-discussion .chat-message.left .message-avatar {
  float: left;
  margin-right: 10px;
}
.chat-discussion .chat-message.right .message-avatar {
  float: right;
  margin-left: 10px;
}
.chat-discussion {
  padding: 15px 10px;
}
.header-line.extreme-color {
  width: 20%;
}
.header-line {
  height: 6px;
  width: 10%;
  float: left;
  margin: 0;
  position: relative;
}
.header-line div {
  position: absolute;
  top: 70px;
  left: 15px;
  font-weight: 600;
  color: #fff;
}
.header-line div span {
  font-weight: 400;
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}
.color-demo .header-line {
  height: 118px;
}
.color-demo .header-line:after {
  display: block;
  position: absolute;
  top: 0;
  background: rgba(0, 0, 0, 0.2);
  content: '';
  height: 10px;
  width: 100%;
}
/* Buttons */
.btn {
  border-radius: 3px;
  font-family: inherit;
}
.float-e-margins .btn {
  margin-bottom: 5px;
}
.btn-primary.btn-outline {
  color: #063d50;
}
.btn-primary2.btn-outline {
  color: #4a8090;
}
.btn-success.btn-outline {
  color: #2a94a2;
}
.btn-info.btn-outline {
  color: #4381b8;
}
.btn-warning.btn-outline {
  color: #feba49;
}
.btn-warning2.btn-outline {
  color: #f35f34;
}
.btn-danger.btn-outline {
  color: #f14646;
}
.btn-danger2.btn-outline {
  color: #cf4747;
}
.btn-primary.btn-outline:hover,
.btn-success.btn-outline:hover,
.btn-info.btn-outline:hover,
.btn-warning.btn-outline:hover,
.btn-danger.btn-outline:hover {
  color: #fff;
}
.btn-primary {
  background-color: #063d50;
  border-color: #063d50;
  color: #FFFFFF;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
  background-color: #0d85af;
  border-color: #0d85af;
  color: #FFFFFF;
}
.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
  background-image: none;
}
.btn-primary.disabled,
.btn-primary.disabled:hover,
.btn-primary.disabled:focus,
.btn-primary.disabled:active,
.btn-primary.disabled.active,
.btn-primary[disabled],
.btn-primary[disabled]:hover,
.btn-primary[disabled]:focus,
.btn-primary[disabled]:active,
.btn-primary.active[disabled],
fieldset[disabled] .btn-primary,
fieldset[disabled] .btn-primary:hover,
fieldset[disabled] .btn-primary:focus,
fieldset[disabled] .btn-primary:active,
fieldset[disabled] .btn-primary.active {
  background-color: #042734;
  border-color: #042734;
}
.btn-primary2 {
  background-color: #4a8090;
  border-color: #4a8090;
  color: #FFFFFF;
}
.btn-primary2:hover,
.btn-primary2:focus,
.btn-primary2:active,
.btn-primary2.active,
.open .dropdown-toggle.btn-primary2 {
  background-color: #5492a4;
  border-color: #5492a4;
  color: #FFFFFF;
}
.btn-primary2:active,
.btn-primary2.active,
.open .dropdown-toggle.btn-primary2 {
  background-image: none;
}
.btn-primary2.disabled,
.btn-primary2.disabled:hover,
.btn-primary2.disabled:focus,
.btn-primary2.disabled:active,
.btn-primary2.disabled.active,
.btn-primary2[disabled],
.btn-primary2[disabled]:hover,
.btn-primary2[disabled]:focus,
.btn-primary2[disabled]:active,
.btn-primary2.active[disabled],
fieldset[disabled] .btn-primary2,
fieldset[disabled] .btn-primary2:hover,
fieldset[disabled] .btn-primary2:focus,
fieldset[disabled] .btn-primary2:active,
fieldset[disabled] .btn-primary2.active {
  background-color: #406e7c;
  border-color: #406e7c;
}
.btn-success {
  background-color: #2a94a2;
  border-color: #2a94a2;
  color: #FFFFFF;
}
.btn-success:hover,
.btn-success:focus,
.btn-success:active,
.btn-success.active:focus,
.btn-success:active:focus,
.btn-success:active:hover,
.open .dropdown-toggle.btn-success {
  background-color: #30aaba;
  border-color: #30aaba;
  color: #FFFFFF;
}
.btn-success:active,
.btn-success.active,
.open .dropdown-toggle.btn-success {
  background-image: none;
  background-color: #247e8a;
  border-color: #247e8a;
}
.btn-success.active:hover {
  background-color: #268592;
  border-color: #268592;
}
.btn-success.disabled,
.btn-success.disabled:hover,
.btn-success.disabled:focus,
.btn-success.disabled:active,
.btn-success.disabled.active,
.btn-success[disabled],
.btn-success[disabled]:hover,
.btn-success[disabled]:focus,
.btn-success[disabled]:active,
.btn-success.active[disabled],
fieldset[disabled] .btn-success,
fieldset[disabled] .btn-success:hover,
fieldset[disabled] .btn-success:focus,
fieldset[disabled] .btn-success:active,
fieldset[disabled] .btn-success.active {
  background-color: #247e8a;
  border-color: #247e8a;
}
.btn-info {
  background-color: #4381b8;
  border-color: #4381b8;
  color: #FFFFFF;
}
.btn-info:hover,
.btn-info:focus,
.btn-info:active,
.btn-info.active,
.open .dropdown-toggle.btn-info {
  background-color: #5890c2;
  border-color: #5890c2;
  color: #FFFFFF;
}
.btn-info:active,
.btn-info.active,
.open .dropdown-toggle.btn-info {
  background-image: none;
}
.btn-info.disabled,
.btn-info.disabled:hover,
.btn-info.disabled:focus,
.btn-info.disabled:active,
.btn-info.disabled.active,
.btn-info[disabled],
.btn-info[disabled]:hover,
.btn-info[disabled]:focus,
.btn-info[disabled]:active,
.btn-info.active[disabled],
fieldset[disabled] .btn-info,
fieldset[disabled] .btn-info:hover,
fieldset[disabled] .btn-info:focus,
fieldset[disabled] .btn-info:active,
fieldset[disabled] .btn-info.active {
  background-color: #3b71a2;
  border-color: #3b71a2;
}
.btn-default {
  background-color: #fff;
  border-color: #e0e1e3;
  color: #040f18;
}
.btn-default:hover,
.btn-default:focus,
.btn-default:active,
.btn-default.active,
.open .dropdown-toggle.btn-default {
  background-color: #fff;
  border-color: #d5d7d9;
  color: #010407;
}
.btn-default:active,
.btn-default.active,
.open .dropdown-toggle.btn-default {
  background-image: none;
}
.btn-default.disabled,
.btn-default.disabled:hover,
.btn-default.disabled:focus,
.btn-default.disabled:active,
.btn-default.disabled.active,
.btn-default[disabled],
.btn-default[disabled]:hover,
.btn-default[disabled]:focus,
.btn-default[disabled]:active,
.btn-default.active[disabled],
fieldset[disabled] .btn-default,
fieldset[disabled] .btn-default:hover,
fieldset[disabled] .btn-default:focus,
fieldset[disabled] .btn-default:active,
fieldset[disabled] .btn-default.active {
  background-color: #e4ebee;
  border-color: #e4ebee;
}
.btn-warning {
  background-color: #feba49;
  border-color: #feba49;
  color: #FFFFFF;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active,
.btn-warning.active,
.open .dropdown-toggle.btn-warning {
  background-color: #fec667;
  border-color: #fec667;
  color: #FFFFFF;
}
.btn-warning:active,
.btn-warning.active,
.open .dropdown-toggle.btn-warning {
  background-image: none;
}
.btn-warning.disabled,
.btn-warning.disabled:hover,
.btn-warning.disabled:focus,
.btn-warning.disabled:active,
.btn-warning.disabled.active,
.btn-warning[disabled],
.btn-warning[disabled]:hover,
.btn-warning[disabled]:focus,
.btn-warning[disabled]:active,
.btn-warning.active[disabled],
fieldset[disabled] .btn-warning,
fieldset[disabled] .btn-warning:hover,
fieldset[disabled] .btn-warning:focus,
fieldset[disabled] .btn-warning:active,
fieldset[disabled] .btn-warning.active {
  background-color: #feae2b;
  border-color: #feae2b;
}
.btn-warning2 {
  background-color: #f35f34;
  border-color: #f35f34;
  color: #FFFFFF;
}
.btn-warning2:hover,
.btn-warning2:focus,
.btn-warning2:active,
.btn-warning2.active,
.open .dropdown-toggle.btn-warning2 {
  background-color: #f57651;
  border-color: #f57651;
  color: #FFFFFF;
}
.btn-warning2:active,
.btn-warning2.active,
.open .dropdown-toggle.btn-warning2 {
  background-image: none;
}
.btn-warning2.disabled,
.btn-warning2.disabled:hover,
.btn-warning2.disabled:focus,
.btn-warning2.disabled:active,
.btn-warning2.disabled.active,
.btn-warning2[disabled],
.btn-warning2[disabled]:hover,
.btn-warning2[disabled]:focus,
.btn-warning2[disabled]:active,
.btn-warning2.active[disabled],
fieldset[disabled] .btn-warning2,
fieldset[disabled] .btn-warning2:hover,
fieldset[disabled] .btn-warning2:focus,
fieldset[disabled] .btn-warning2:active,
fieldset[disabled] .btn-warning2.active {
  background-color: #f14817;
  border-color: #f14817;
}
.btn-danger {
  background-color: #f14646;
  border-color: #f14646;
  color: #FFFFFF;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active,
.btn-danger.active,
.open .dropdown-toggle.btn-danger {
  background-color: #f36262;
  border-color: #f36262;
  color: #FFFFFF;
}
.btn-danger:active,
.btn-danger.active,
.open .dropdown-toggle.btn-danger {
  background-image: none;
}
.btn-danger.disabled,
.btn-danger.disabled:hover,
.btn-danger.disabled:focus,
.btn-danger.disabled:active,
.btn-danger.disabled.active,
.btn-danger[disabled],
.btn-danger[disabled]:hover,
.btn-danger[disabled]:focus,
.btn-danger[disabled]:active,
.btn-danger.active[disabled],
fieldset[disabled] .btn-danger,
fieldset[disabled] .btn-danger:hover,
fieldset[disabled] .btn-danger:focus,
fieldset[disabled] .btn-danger:active,
fieldset[disabled] .btn-danger.active {
  background-color: #ef2a2a;
  border-color: #ef2a2a;
}
.btn-danger2 {
  background-color: #cf4747;
  border-color: #cf4747;
  color: #FFFFFF;
}
.btn-danger2:hover,
.btn-danger2:focus,
.btn-danger2:active,
.btn-danger2.active,
.open .dropdown-toggle.btn-danger2 {
  background-color: #d55f5f;
  border-color: #d55f5f;
  color: #FFFFFF;
}
.btn-danger2:active,
.btn-danger2.active,
.open .dropdown-toggle.btn-danger2 {
  background-image: none;
}
.btn-danger2.disabled,
.btn-danger2.disabled:hover,
.btn-danger2.disabled:focus,
.btn-danger2.disabled:active,
.btn-danger2.disabled.active,
.btn-danger2[disabled],
.btn-danger2[disabled]:hover,
.btn-danger2[disabled]:focus,
.btn-danger2[disabled]:active,
.btn-danger2.active[disabled],
fieldset[disabled] .btn-danger2,
fieldset[disabled] .btn-danger2:hover,
fieldset[disabled] .btn-danger2:focus,
fieldset[disabled] .btn-danger2:active,
fieldset[disabled] .btn-danger2.active {
  background-color: #c43333;
  border-color: #c43333;
}
.btn-link {
  color: inherit;
}
.btn-link:hover,
.btn-link:focus,
.btn-link:active,
.btn-link.active,
.open .dropdown-toggle.btn-link {
  color: #040f18;
}
.btn-link:active,
.btn-link.active,
.open .dropdown-toggle.btn-link {
  background-image: none;
}
.btn-link.disabled,
.btn-link.disabled:hover,
.btn-link.disabled:focus,
.btn-link.disabled:active,
.btn-link.disabled.active,
.btn-link[disabled],
.btn-link[disabled]:hover,
.btn-link[disabled]:focus,
.btn-link[disabled]:active,
.btn-link.active[disabled],
fieldset[disabled] .btn-link,
fieldset[disabled] .btn-link:hover,
fieldset[disabled] .btn-link:focus,
fieldset[disabled] .btn-link:active,
fieldset[disabled] .btn-link.active {
  color: #13466f;
}
.btn-outline {
  color: inherit;
  background-color: transparent;
  transition: all 0.5s;
}
.btn-xs {
  border-radius: 3px;
  font-size: 11px;
  line-height: 1.5;
  padding: 1px 7px;
}
.btn-circle {
  width: 30px;
  height: 30px;
  padding: 6px 0;
  border-radius: 15px;
  text-align: center;
  font-size: 12px;
  line-height: 1.42857143;
}
.btn-circle.btn-xs {
  width: 20px;
  height: 20px;
  padding: 4px 8px;
  border-radius: 25px;
  font-size: 10px;
  line-height: 1;
}
.btn-circle.btn-lg {
  width: 50px;
  height: 50px;
  padding: 10px 16px;
  border-radius: 25px;
  font-size: 18px;
  line-height: 1.33;
}
.btn-circle.btn-xl {
  width: 70px;
  height: 70px;
  padding: 10px 16px;
  border-radius: 35px;
  font-size: 24px;
  line-height: 1.33;
}
/* Fonts */
.font-light {
  font-weight: 300;
}
.font-normal {
  font-weight: 400;
}
.font-bold {
  font-weight: 600;
}
.font-extra-bold {
  font-weight: 700;
}
.font-uppercase {
  text-transform: uppercase;
}
.font-trans {
  opacity: 0.5 !important;
}
.text-big {
  font-size: 60px;
}
h1,
.h1,
h2,
.h2,
h3,
.h3 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: 200;
}
.btn-file {
  position: relative;
  overflow: hidden;
}
.btn-file input[type=file] {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 100%;
  min-height: 100%;
  font-size: 100px;
  text-align: right;
  filter: alpha(opacity=0);
  opacity: 0;
  outline: none;
  background: white;
  cursor: inherit;
  display: block;
}
.input-group-file > input[readonly] {
  background-color: white !important;
  cursor: text !important;
}
/* iCheck plugin Square skin, green
----------------------------------- */
.icheckbox_square-green,
.iradio_square-green {
  display: inline-block;
  *display: inline;
  vertical-align: middle;
  margin: 0;
  padding: 0;
  width: 22px;
  height: 22px;
  background: url(/iCheck/green.png) no-repeat;
  border: none;
  cursor: pointer;
}
.icheckbox_square-green {
  background-position: 0 0;
}
.icheckbox_square-green.hover {
  background-position: -24px 0;
}
.icheckbox_square-green.checked {
  background-position: -48px 0;
}
.icheckbox_square-green.disabled {
  background-position: -72px 0;
  cursor: default;
}
.icheckbox_square-green.checked.disabled {
  background-position: -96px 0;
}
.iradio_square-green {
  background-position: -120px 0;
}
.iradio_square-green.hover {
  background-position: -144px 0;
}
.iradio_square-green.checked {
  background-position: -168px 0;
}
.iradio_square-green.disabled {
  background-position: -192px 0;
  cursor: default;
}
.iradio_square-green.checked.disabled {
  background-position: -216px 0;
}
/* HiDPI support */
@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
  .icheckbox_square-green,
  .iradio_square-green {
    background-image: url(/iCheck/green@2x.png);
    background-size: 240px 24px;
  }
}
/* Layout */
/* Styled scrollbar mixin */
html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
}
body {
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: #fff;
  font-size: 13px;
  color: #040f18;
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
}
#header {
  background-color: #fff;
  display: block;
  height: 62px;
  margin: 0;
  padding: 0;
  position: relative;
}
#menu {
  width: 203px;
  bottom: 0;
  float: left;
  left: 0;
  position: absolute;
  top: 62px;
  transition: all 0.4s ease 0s;
  background: #fff;
  display: flex;
  flex-direction: column;
}
#navigation {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}
#side-menu {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding-top: 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.15) transparent;
}
#side-menu::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
#side-menu::-webkit-scrollbar-track {
  background: transparent;
}
#side-menu::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 6px / 2;
}
#side-menu::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.25);
}
.nav-footer {
  padding: 10px 12px;
  border-top: 1px solid #e0e1e3;
  text-align: center;
}
.nav-footer small {
  display: block;
  font-size: 10px;
  color: #999;
  line-height: 1.5;
}
.nav-footer small strong {
  font-weight: 600;
  color: #777;
}
#wrapper {
  margin: 0 48px 0 203px;
  padding: 8px;
  background: #fff;
  transition: margin 0.4s ease 0s;
  position: absolute;
  top: 62px;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}
.content-area {
  background: #f4f4f2;
  border-radius: 10px;
  height: 100%;
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
  padding-top: 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.15) transparent;
}
.content-area::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.content-area::-webkit-scrollbar-track {
  background: transparent;
}
.content-area::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 6px / 2;
}
.content-area::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.25);
}
@media (max-width: 768px) {
  #wrapper {
    padding-bottom: 70px;
  }
}
.content {
  padding: 10px;
  min-width: 320px;
}
@media (max-width: 768px) {
  .content {
    padding: 15px 15px 15px 15px;
    min-width: 320px;
  }
}
.content-boxed {
  max-width: 1100px;
  margin: auto;
  padding-top: 60px;
}
#page-header {
  padding: 15px 25px;
}
.color-line {
  background: #f7f9fa;
  height: 6px;
  background-image: linear-gradient(to right, #063d50, #063d50 25%, #4a8090 25%, #4a8090 35%, #4381b8 35%, #4381b8 45%, #2a94a2 45%, #2a94a2 55%, #feba49 55%, #feba49 65%, #f35f34 65%, #f35f34 75%, #f14646 85%, #f14646 85%, #cf4747 85%, #cf4747 100%);
  background-size: 100% 6px;
  background-position: 50% 100%;
  background-repeat: no-repeat;
}
.fixed-navbar #header {
  width: 100%;
  position: fixed;
  z-index: 1000;
}
.fixed-navbar #right-bar {
  top: 62px;
}
.fixed-sidebar #menu {
  position: fixed;
  overflow-x: hidden;
  overflow-y: auto;
  width: 203px;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.15) transparent;
  z-index: 1001;
}
.fixed-sidebar #menu::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.fixed-sidebar #menu::-webkit-scrollbar-track {
  background: transparent;
}
.fixed-sidebar #menu::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 6px / 2;
}
.fixed-sidebar #menu::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.25);
}
.fixed-sidebar.show-sidebar #menu {
  width: 203px;
}
.fixed-footer .footer {
  position: fixed;
  z-index: 1001;
  bottom: 0;
  left: 203px;
  right: 0;
}
.fixed-footer.hide-sidebar .footer {
  left: 0;
}
@media (max-width: 768px) {
  .fixed-footer .footer {
    left: 0;
  }
  .fixed-footer.show-sidebar .footer {
    left: 181px;
  }
}
.fixed-small-header .small-header {
  position: fixed;
  top: 62px;
  left: 0;
  right: 0;
  margin-left: 181px;
  z-index: 1001;
}
.fixed-small-header .content {
  padding-top: 80px;
}
.fixed-small-header.hide-sidebar .small-header {
  margin-left: 0;
}
.fixed-small-header.page-small .small-header {
  margin-left: 0;
}
.fixed-small-header.page-small .content {
  padding-top: 120px;
}
.fixed-small-header.page-small.show-sidebar .small-header {
  margin-left: 181px;
  overflow: hidden;
}
/* Right bar */
#right-bar {
  position: absolute;
  top: 62px;
  right: 0;
  bottom: 0;
  width: 48px;
  background: #fff;
  z-index: 1002;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.fixed-navbar #right-bar {
  position: fixed;
}
.right-bar-nav {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  width: 100%;
  height: 100%;
}
.right-bar-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  color: #777;
  font-size: 22px;
  transition: color 0.2s, background 0.2s;
  position: relative;
  cursor: pointer;
}
.right-bar-link:hover,
.right-bar-link:focus {
  color: #063d50;
  background: rgba(6, 61, 80, 0.06);
  text-decoration: none;
}
.right-bar-nav .active .right-bar-link,
.right-bar-nav li.active .right-bar-link {
  color: #063d50;
  background: rgba(6, 61, 80, 0.08);
}
.right-bar-nav .notification-dot {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f14646;
}
.right-bar-spacer {
  flex: 1;
}
.right-bar-icon-li {
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  #right-bar {
    display: none;
  }
  #wrapper {
    margin-right: 0;
  }
}
/* Flex-fill utilities for "top area + scrollable bottom" layout pattern.
 *
 * Eliminates JS-based dynamic height calculations ($(window).height() - offset).
 *
 * Activation: add 'flex-fill-page' class to <body> in onRendered/onDestroyed.
 * Follows existing body-class pattern: show-chat-panel, hide-sidebar, fixed-navbar.
 *
 * Usage (generic utility classes):
 *   .flex-fill-container  — flex column, children stack vertically
 *   .flex-fill            — grows to fill remaining space
 *   .flex-fill-scroll     — grows + overflow-y: auto
 *   .flex-fill-row        — flex row for side-by-side columns
 */
.flex-fill-container {
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.flex-fill {
  flex: 1 1 0%;
  min-height: 0;
}
.flex-fill-scroll {
  flex: 1 1 0%;
  min-height: 0;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.15) transparent;
}
.flex-fill-scroll::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.flex-fill-scroll::-webkit-scrollbar-track {
  background: transparent;
}
.flex-fill-scroll::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 6px / 2;
}
.flex-fill-scroll::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.25);
}
.flex-fill-row {
  display: flex;
  flex-direction: row;
  min-height: 0;
}
/* Layout chain: body.flex-fill-page activates flex on content-area → .content → .hpanel */
body.flex-fill-page {
  /* Layout template: .content wraps rows/panels that need to flex-fill */
  /* autoForm wrapping .hpanel and .ecs-dependencies-box */
  /* Panels that should fill remaining space */
  /* Form panels with scrollable content (csaf-create) */
  /* Chat page: .chat-page-content fills remaining space */
  /* Messages page: .content > .mail-style > .row > col > .panel > .panel-body */
  /* scrollable_middle and scrollable_middle_right: fill remaining space */
}
body.flex-fill-page .content-area {
  display: flex;
  flex-direction: column;
  overflow-y: hidden;
}
body.flex-fill-page .content-area > .content {
  flex: 1 1 0%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
body.flex-fill-page .content-area > .content > .hpanel[role="tabpanel"] {
  flex: 1 1 0%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
  /* substateLayout tab content: form or div wrapping .panel > .scrollable_middle */
}
body.flex-fill-page .content-area > .content > .hpanel[role="tabpanel"] > form,
body.flex-fill-page .content-area > .content > .hpanel[role="tabpanel"] > div:not(.ecs-dependencies-box) {
  flex: 1 1 0%;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
body.flex-fill-page .content-area > .content > .hpanel[role="tabpanel"] > form > .panel,
body.flex-fill-page .content-area > .content > .hpanel[role="tabpanel"] > div > .panel {
  flex: 1 1 0%;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
body.flex-fill-page .content-area > .content > .hpanel[role="tabpanel"] > form > .panel > .panel-heading,
body.flex-fill-page .content-area > .content > .hpanel[role="tabpanel"] > div > .panel > .panel-heading {
  flex-shrink: 0;
}
body.flex-fill-page .content-area > .content > .hpanel[role="tabpanel"] > form > .panel > .panel-body,
body.flex-fill-page .content-area > .content > .hpanel[role="tabpanel"] > div > .panel > .panel-body {
  flex: 1 1 0%;
  min-height: 0;
  overflow-y: auto;
}
body.flex-fill-page .content-area > .content > .row {
  flex: 1 1 0%;
  min-height: 0;
  display: flex;
  flex-direction: row;
}
body.flex-fill-page .content-area > .content > .row > [class*="col-"] {
  display: flex;
  flex-direction: column;
  min-height: 0;
}
body.flex-fill-page .content-area > .content > .row > [class*="col-"] > .panel {
  flex: 1 1 0%;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
body.flex-fill-page .content-area > .content > .row > [class*="col-"] > .panel > .panel-body {
  flex: 1 1 0%;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
body.flex-fill-page .content-area > .content > form,
body.flex-fill-page .content-area > .content > [data-meteor-autoform] {
  flex: 1 1 0%;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
body.flex-fill-page .content-area > .content > .panel {
  flex: 1 1 0%;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
body.flex-fill-page .content-area > .content > .panel > .panel-body {
  flex: 1 1 0%;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
body.flex-fill-page .content-area > .content > form > .panel {
  flex: 1 1 0%;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
body.flex-fill-page .content-area > .content > form > .panel > .panel-body {
  flex: 1 1 0%;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
body.flex-fill-page .content-area > .content > form > .panel > .panel-heading {
  flex-shrink: 0;
}
body.flex-fill-page .content-area > .content > .chat-page-content {
  flex: 1 1 0%;
  min-height: 0;
}
body.flex-fill-page .content-area > .content > .mail-style {
  flex: 1 1 0%;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
body.flex-fill-page .content-area > .content > .mail-style > .row {
  flex: 1 1 0%;
  min-height: 0;
  display: flex;
  flex-direction: row;
}
body.flex-fill-page .content-area > .content > .mail-style > .row > [class*="col-"] {
  display: flex;
  flex-direction: column;
  min-height: 0;
  width: 100%;
}
body.flex-fill-page .content-area > .content > .mail-style > .row > [class*="col-"] > .panel {
  flex: 1 1 0%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}
body.flex-fill-page .content-area > .content > .mail-style > .row > [class*="col-"] > .panel > .panel-body {
  flex: 1 1 0%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
body.flex-fill-page .content-area > .content > .mail-style > .row > [class*="col-"] > .panel > .panel-body > .clearfix {
  flex-shrink: 0;
}
body.flex-fill-page .content-area > .content > .mail-style > .row > [class*="col-"] > .panel > .panel-body > .reactive-table-body {
  flex: 1 1 0%;
  min-height: 0;
  overflow-y: auto;
}
body.flex-fill-page .content-area > .content > .mail-style > .row > [class*="col-"] > .panel > .panel-body > .reactive-table-navigation {
  flex-shrink: 0;
}
body.flex-fill-page .scrollable_middle {
  flex: 1 1 0%;
  min-height: 0;
  overflow-y: auto;
  height: auto !important;
}
body.flex-fill-page .scrollable_middle_right {
  flex: 1 1 0%;
  min-height: 0;
  overflow-y: auto;
  height: auto !important;
}
.reactive-table,
.table {
  width: 100%;
}
.reactive-table > thead > tr > th,
.table > thead > tr > th {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #6b7280;
  border-bottom: 2px solid #2a94a2 !important;
  border-top: none;
  padding: 10px 16px;
  white-space: nowrap;
}
.reactive-table > thead > tr > th.sortable,
.table > thead > tr > th.sortable {
  cursor: pointer;
  transition: color 0.15s ease;
}
.reactive-table > thead > tr > th.sortable:hover,
.table > thead > tr > th.sortable:hover {
  color: #2a94a2;
}
.reactive-table > tbody > tr,
.table > tbody > tr {
  transition: background-color 0.15s ease;
}
.reactive-table > tbody > tr > td,
.table > tbody > tr > td {
  padding: 12px 16px;
  border-top: none;
  border-bottom: 1px solid #e0e1e3;
  vertical-align: middle;
}
.reactive-table > tbody > tr:hover,
.table > tbody > tr:hover {
  background-color: rgba(42, 148, 162, 0.04);
}
.reactive-table > tbody > tr:last-child > td,
.table > tbody > tr:last-child > td {
  border-bottom: none;
}
.reactive-table > tbody > tr > td.col-date,
.table > tbody > tr > td.col-date {
  white-space: nowrap;
}
.reactive-table > tbody > tr.active > td,
.table > tbody > tr.active > td,
.reactive-table > tbody > tr.selected > td,
.table > tbody > tr.selected > td,
.reactive-table > tbody > tr.highlight > td,
.table > tbody > tr.highlight > td {
  background-color: rgba(42, 148, 162, 0.06) !important;
}
.reactive-table > tbody > tr.active > td:first-child,
.table > tbody > tr.active > td:first-child,
.reactive-table > tbody > tr.selected > td:first-child,
.table > tbody > tr.selected > td:first-child,
.reactive-table > tbody > tr.highlight > td:first-child,
.table > tbody > tr.highlight > td:first-child {
  border-left: 3px solid #2a94a2;
  padding-left: 13px;
}
.reactive-table > tbody > tr.from-upper,
.table > tbody > tr.from-upper {
  cursor: default;
  opacity: 0.7;
}
.reactive-table.table-striped > tbody > tr:nth-of-type(odd),
.table.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: transparent;
}
.reactive-table .badge,
.table .badge {
  background: #2a94a2;
  color: #fff;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 500;
  padding: 2px 8px;
}
.reactive-table .label,
.table .label {
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
  padding: 3px 10px;
}
.reactive-table a.label.label-info.pull-right,
.table a.label.label-info.pull-right {
  float: none !important;
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  padding: 1px 6px;
  border-radius: 8px;
  margin-left: 6px;
  vertical-align: middle;
  white-space: nowrap;
}
.reactive-table .progress,
.table .progress {
  margin: 0;
}
.col-date {
  min-width: 120px;
}
.reactive-table-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 13px;
  color: #6b7280;
  border-top: 1px solid #e0e1e3;
  margin-top: 4px;
}
.reactive-table-navigation .rows-per-page {
  margin: 0;
}
.reactive-table-navigation .rows-per-page label {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0;
  font-weight: normal;
}
.reactive-table-navigation .rows-per-page .form-control {
  width: 48px;
  text-align: center;
  padding: 4px 6px;
  font-size: 13px;
  border-radius: 6px;
  border: 1px solid #e0e1e3;
  height: auto;
  min-height: 28px;
}
.reactive-table-navigation .page-number {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}
.reactive-table-navigation .page-number label {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0;
  font-weight: normal;
}
.reactive-table-navigation .page-number .form-control {
  width: 44px;
  text-align: center;
  padding: 4px 6px;
  font-size: 13px;
  border-radius: 6px;
  border: 1px solid #e0e1e3;
  height: auto;
  min-height: 28px;
}
.reactive-table-navigation .previous-page,
.reactive-table-navigation .next-page {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: 1px solid #e0e1e3;
  color: #040f18;
  font-size: 14px;
  transition: all 0.15s ease;
}
.reactive-table-navigation .previous-page:hover,
.reactive-table-navigation .next-page:hover {
  background-color: rgba(42, 148, 162, 0.06);
  border-color: #2a94a2;
  color: #2a94a2;
}
.reactive-table-options {
  margin-bottom: 0;
  padding: 0;
  width: 100%;
  float: none;
}
.reactive-table-options .reactive-table-filter {
  width: 100%;
  margin-bottom: 12px;
  float: none;
}
.reactive-table-options .reactive-table-filter .input-group .input-group-addon {
  background: transparent;
  border: none;
  color: #040f18;
  padding-right: 10px;
}
.reactive-table-options .reactive-table-filter .input-group .form-control {
  border-radius: 8px !important;
  border: 1px solid #e0e1e3;
  padding: 8px 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.reactive-table-options .reactive-table-filter .input-group .form-control:focus {
  border-color: #2a94a2;
  box-shadow: 0 0 0 3px rgba(42, 148, 162, 0.1);
  outline: none;
}
.reactiveTableServerSide .reactive-table-options.col-sm-8 {
  padding: 0;
  margin: 0;
  height: 0;
  overflow: hidden;
}
.reactiveTableServerSide > .table-responsive {
  overflow-x: auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.reactiveTableServerSide > .clearfix.m-b-md {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px !important;
}
.reactiveTableServerSide > .clearfix.m-b-md > .pull-left,
.reactiveTableServerSide > .clearfix.m-b-md > .pull-right {
  float: none !important;
}
.reactiveTableServerSide > .clearfix.m-b-md > .pull-left.form-inline {
  flex: 1 1 300px;
  min-width: 0;
}
.reactiveTableServerSide > .clearfix.m-b-md > .pull-left.form-inline .form-group:last-child {
  flex: 1;
  width: auto !important;
  min-width: 200px;
}
.reactiveTableServerSide > .clearfix.m-b-md > .pull-right.form-inline {
  flex: 0 0 auto;
  margin-left: auto;
}
.reactiveTableServerSide > .clearfix.m-b-md .search-field {
  border-radius: 8px !important;
  border: 1px solid #e0e1e3;
  padding: 8px 14px;
  font-size: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.reactiveTableServerSide > .clearfix.m-b-md .search-field:focus {
  border-color: #2a94a2;
  box-shadow: 0 0 0 3px rgba(42, 148, 162, 0.1);
  outline: none;
}
.reactiveTableServerSide > .clearfix.m-b-md .input-group .form-control {
  border-radius: 8px 0 0 8px;
}
.reactiveTableServerSide > .clearfix.m-b-md .input-group .input-group-btn .btn {
  border-radius: 0 8px 8px 0;
  border-left: none;
  height: 100%;
}
.reactiveTableServerSide > .clearfix.m-b-md .sort-field {
  border-radius: 8px;
  border: 1px solid #e0e1e3;
  padding: 6px 12px;
  font-size: 14px;
}
.reactiveTableServerSide > .clearfix.m-b-md .sort-field:focus {
  border-color: #2a94a2;
  box-shadow: 0 0 0 3px rgba(42, 148, 162, 0.1);
}
.reactiveTableServerSide > .clearfix.m-b-md .toggle-order {
  border-radius: 8px;
}
.reactiveTableServerSide > .pagination-full > .pull-left.pinner-t-8 {
  font-size: 13px;
  color: #6b7280;
}
.reactiveTableServerSide > .pagination-compact {
  display: none;
}
@media (max-width: 1499px) {
  .reactiveTableServerSide > .pagination-full {
    display: none;
  }
  .reactiveTableServerSide > .pagination-compact {
    display: flex;
  }
}
.pagination-compact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 13px;
  color: #6b7280;
  border-top: 1px solid #e0e1e3;
  margin-top: 4px;
}
.pagination-compact .pagination-compact-rows,
.pagination-compact .pagination-compact-pages {
  display: flex;
  align-items: center;
  gap: 5px;
}
.pagination-compact .form-control {
  width: 48px;
  text-align: center;
  padding: 4px 6px;
  font-size: 13px;
  border-radius: 6px;
  border: 1px solid #e0e1e3;
  height: auto;
  min-height: 28px;
}
.pagination-compact .compact-prev,
.pagination-compact .compact-next {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: 1px solid #e0e1e3;
  color: #040f18;
  font-size: 14px;
  transition: all 0.15s ease;
}
.pagination-compact .compact-prev:hover,
.pagination-compact .compact-next:hover {
  background-color: rgba(42, 148, 162, 0.06);
  border-color: #2a94a2;
  color: #2a94a2;
}
.hpanel > .pagination-compact,
.panel-body > .pagination-compact {
  display: none;
}
@media (max-width: 1499px) {
  .hpanel > .pagination-full,
  .panel-body > .pagination-full {
    display: none;
  }
  .hpanel > .pagination-compact,
  .panel-body > .pagination-compact {
    display: flex;
  }
}
.hpanel > .panel-body > .reactiveTableServerSide > .pagination-full {
  bottom: -20px;
  z-index: 2;
  background: #fff;
  border-top: 1px solid #e0e1e3;
  padding: 10px 0;
  margin: 0 -20px -20px;
  padding-left: 20px;
  padding-right: 20px;
}
.hpanel > .panel-body > .reactiveTableServerSide > .pagination-compact {
  z-index: 2;
  background: #fff;
  margin: 0 -20px -20px;
  padding-left: 20px;
  padding-right: 20px;
}
.pagination {
  flex-wrap: wrap;
}
.pagination > li > a,
.pagination > li > span {
  border-radius: 6px !important;
  margin: 0 2px;
  border: 1px solid #e0e1e3;
  color: #040f18;
  font-size: 13px;
  padding: 6px 12px;
  transition: all 0.15s ease;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  background-color: rgba(42, 148, 162, 0.06);
  border-color: #2a94a2;
  color: #2a94a2;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  background-color: #2a94a2 !important;
  border-color: #2a94a2 !important;
  color: #fff !important;
}
.pagination > .disabled > a,
.pagination > .disabled > span {
  opacity: 0.4;
}
.pagination.toggle-size > li > a {
  padding: 6px 12px;
  font-size: 13px;
}
.reactive-table td .btn-xs,
.table td .btn-xs,
.reactive-table td .btn-sm,
.table td .btn-sm {
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 12px;
  border: 1px solid #e0e1e3;
  transition: all 0.15s ease;
}
.reactive-table td .btn-primary,
.table td .btn-primary {
  background-color: transparent;
  border-color: #2a94a2;
  color: #2a94a2;
}
.reactive-table td .btn-primary:hover,
.table td .btn-primary:hover,
.reactive-table td .btn-primary:focus,
.table td .btn-primary:focus {
  background-color: #2a94a2;
  border-color: #2a94a2;
  color: #fff;
}
.reactive-table td .btn-default:hover,
.table td .btn-default:hover,
.reactive-table td .btn-default:focus,
.table td .btn-default:focus {
  border-color: #2a94a2;
  color: #2a94a2;
}
.btn {
  border-radius: 6px;
  transition: all 0.15s ease;
}
.btn-primary {
  box-shadow: 0 1px 2px rgba(42, 148, 162, 0.15);
}
.hpanel > .panel-body > .reactive-table,
.hpanel > .panel-body > .reactiveTableServerSide > .reactive-table,
.hpanel > .panel-body > .table {
  margin-bottom: 0;
}
.form-control {
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 14px;
  height: auto;
  min-height: 36px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-control:focus {
  border-color: #2a94a2 !important;
  box-shadow: 0 0 0 3px rgba(42, 148, 162, 0.1);
}
input[type="date"].form-control,
input[type="datetime-local"].form-control,
input[type="time"].form-control,
input[type="month"].form-control,
input[type="week"].form-control,
input[type="number"].form-control,
input[type="color"].form-control {
  height: 36px;
  width: 100%;
}
.navbar-form-custom .form-control {
  border-radius: 0;
  padding: 0;
  min-height: auto;
  height: 52px;
}
.form-inline .form-control {
  min-height: auto;
  height: 34px;
  padding: 6px 12px;
  font-size: 13px;
  border-radius: 4px;
}
.form-inline select.form-control {
  min-height: auto;
  height: 34px;
  padding: 6px 12px;
  padding-right: 28px;
  font-size: 13px;
  border-radius: 4px;
}
.form-inline .form-group-sm .form-control,
.form-inline .form-group-sm select.form-control {
  min-height: auto;
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
}
.form-inline .form-group-sm select.form-control {
  padding-right: 28px;
  line-height: normal;
}
.input-group .form-control {
  border-radius: 6px 0 0 6px;
}
.input-group .form-control:focus {
  z-index: 3;
}
.input-group .input-group-addon {
  border-radius: 0 6px 6px 0;
  border-color: #e0e1e3;
  background: #f7f9fa;
  font-size: 14px;
  padding: 8px 12px;
}
.input-group .input-group-addon:first-child {
  border-radius: 6px 0 0 6px;
}
.input-group .input-group-btn .btn {
  border-radius: 0 6px 6px 0;
  min-height: 36px;
}
.input-group .input-group-btn:first-child .btn {
  border-radius: 6px 0 0 6px;
}
select.form-control {
  padding-right: 28px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
}
.v3-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.v3-header-left {
  flex: 1;
  min-width: 0;
}
.tests-header,
.check-header,
.scan-detail-header,
.deepscan-header,
.messages-header,
.projects-header,
.modules-header,
.reports-header,
.csaf-header,
.threat-modelling-header,
.releases-header,
.approves-header,
.risks-header,
.vulnerability-activity-header,
.components-header,
.vulnerability-lake-header,
.infrastructure-header,
.cots-header,
.licenses-header,
.algorithms-header,
.policy-header,
.copyright-header,
.enterprise-header,
.documents-header,
.logs-header,
.logins-header,
.legal-header,
.legal-templates-header,
.trademarks-header,
.integrations-header,
.settings-header,
.module-header,
.license-detail-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.tests-header-left,
.check-header-left,
.scan-detail-header-left,
.deepscan-header-left,
.messages-header-left,
.projects-header-left,
.modules-header-left,
.reports-header-left,
.csaf-header-left,
.threat-modelling-header-left,
.releases-header-left,
.approves-header-left,
.risks-header-left,
.vulnerability-activity-header-left,
.components-header-left,
.vulnerability-lake-header-left,
.infrastructure-header-left,
.cots-header-left,
.licenses-header-left,
.algorithms-header-left,
.policy-header-left,
.copyright-header-left,
.enterprise-header-left,
.documents-header-left,
.logs-header-left,
.logins-header-left,
.legal-header-left,
.legal-templates-header-left,
.trademarks-header-left,
.integrations-header-left,
.settings-header-left,
.module-header-left,
.license-detail-header-left {
  flex: 1;
  min-width: 0;
}
.v3-header-actions,
.tests-header-actions,
.check-header-actions,
.deepscan-header-actions,
.messages-header-actions,
.projects-header-actions,
.modules-header-actions,
.reports-header-actions,
.csaf-header-actions,
.threat-modelling-header-actions,
.releases-header-actions,
.approves-header-actions,
.risks-header-actions,
.vulnerability-activity-header-actions,
.components-header-actions,
.vulnerability-lake-header-actions,
.infrastructure-header-actions,
.cots-header-actions,
.licenses-header-actions,
.algorithms-header-actions,
.policy-header-actions,
.copyright-header-actions,
.logs-header-actions,
.logins-header-actions,
.legal-header-actions,
.legal-templates-header-actions,
.trademarks-header-actions,
.settings-header-actions,
.module-header-actions,
.license-detail-header-actions,
.approves-detail-header-actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 8px;
  margin-top: 4px;
}
.v3-header-actions > .btn,
.tests-header-actions > .btn,
.check-header-actions > .btn,
.deepscan-header-actions > .btn,
.messages-header-actions > .btn,
.projects-header-actions > .btn,
.modules-header-actions > .btn,
.reports-header-actions > .btn,
.csaf-header-actions > .btn,
.threat-modelling-header-actions > .btn,
.releases-header-actions > .btn,
.approves-header-actions > .btn,
.risks-header-actions > .btn,
.vulnerability-activity-header-actions > .btn,
.components-header-actions > .btn,
.vulnerability-lake-header-actions > .btn,
.infrastructure-header-actions > .btn,
.cots-header-actions > .btn,
.licenses-header-actions > .btn,
.algorithms-header-actions > .btn,
.policy-header-actions > .btn,
.copyright-header-actions > .btn,
.logs-header-actions > .btn,
.logins-header-actions > .btn,
.legal-header-actions > .btn,
.legal-templates-header-actions > .btn,
.trademarks-header-actions > .btn,
.settings-header-actions > .btn,
.module-header-actions > .btn,
.license-detail-header-actions > .btn,
.approves-detail-header-actions > .btn,
.v3-header-actions > a.btn,
.tests-header-actions > a.btn,
.check-header-actions > a.btn,
.deepscan-header-actions > a.btn,
.messages-header-actions > a.btn,
.projects-header-actions > a.btn,
.modules-header-actions > a.btn,
.reports-header-actions > a.btn,
.csaf-header-actions > a.btn,
.threat-modelling-header-actions > a.btn,
.releases-header-actions > a.btn,
.approves-header-actions > a.btn,
.risks-header-actions > a.btn,
.vulnerability-activity-header-actions > a.btn,
.components-header-actions > a.btn,
.vulnerability-lake-header-actions > a.btn,
.infrastructure-header-actions > a.btn,
.cots-header-actions > a.btn,
.licenses-header-actions > a.btn,
.algorithms-header-actions > a.btn,
.policy-header-actions > a.btn,
.copyright-header-actions > a.btn,
.logs-header-actions > a.btn,
.logins-header-actions > a.btn,
.legal-header-actions > a.btn,
.legal-templates-header-actions > a.btn,
.trademarks-header-actions > a.btn,
.settings-header-actions > a.btn,
.module-header-actions > a.btn,
.license-detail-header-actions > a.btn,
.approves-detail-header-actions > a.btn,
.v3-header-actions > .dropdown > .btn,
.tests-header-actions > .dropdown > .btn,
.check-header-actions > .dropdown > .btn,
.deepscan-header-actions > .dropdown > .btn,
.messages-header-actions > .dropdown > .btn,
.projects-header-actions > .dropdown > .btn,
.modules-header-actions > .dropdown > .btn,
.reports-header-actions > .dropdown > .btn,
.csaf-header-actions > .dropdown > .btn,
.threat-modelling-header-actions > .dropdown > .btn,
.releases-header-actions > .dropdown > .btn,
.approves-header-actions > .dropdown > .btn,
.risks-header-actions > .dropdown > .btn,
.vulnerability-activity-header-actions > .dropdown > .btn,
.components-header-actions > .dropdown > .btn,
.vulnerability-lake-header-actions > .dropdown > .btn,
.infrastructure-header-actions > .dropdown > .btn,
.cots-header-actions > .dropdown > .btn,
.licenses-header-actions > .dropdown > .btn,
.algorithms-header-actions > .dropdown > .btn,
.policy-header-actions > .dropdown > .btn,
.copyright-header-actions > .dropdown > .btn,
.logs-header-actions > .dropdown > .btn,
.logins-header-actions > .dropdown > .btn,
.legal-header-actions > .dropdown > .btn,
.legal-templates-header-actions > .dropdown > .btn,
.trademarks-header-actions > .dropdown > .btn,
.settings-header-actions > .dropdown > .btn,
.module-header-actions > .dropdown > .btn,
.license-detail-header-actions > .dropdown > .btn,
.approves-detail-header-actions > .dropdown > .btn,
.v3-header-actions > span > .btn,
.tests-header-actions > span > .btn,
.check-header-actions > span > .btn,
.deepscan-header-actions > span > .btn,
.messages-header-actions > span > .btn,
.projects-header-actions > span > .btn,
.modules-header-actions > span > .btn,
.reports-header-actions > span > .btn,
.csaf-header-actions > span > .btn,
.threat-modelling-header-actions > span > .btn,
.releases-header-actions > span > .btn,
.approves-header-actions > span > .btn,
.risks-header-actions > span > .btn,
.vulnerability-activity-header-actions > span > .btn,
.components-header-actions > span > .btn,
.vulnerability-lake-header-actions > span > .btn,
.infrastructure-header-actions > span > .btn,
.cots-header-actions > span > .btn,
.licenses-header-actions > span > .btn,
.algorithms-header-actions > span > .btn,
.policy-header-actions > span > .btn,
.copyright-header-actions > span > .btn,
.logs-header-actions > span > .btn,
.logins-header-actions > span > .btn,
.legal-header-actions > span > .btn,
.legal-templates-header-actions > span > .btn,
.trademarks-header-actions > span > .btn,
.settings-header-actions > span > .btn,
.module-header-actions > span > .btn,
.license-detail-header-actions > span > .btn,
.approves-detail-header-actions > span > .btn,
.v3-header-actions > span > a.btn,
.tests-header-actions > span > a.btn,
.check-header-actions > span > a.btn,
.deepscan-header-actions > span > a.btn,
.messages-header-actions > span > a.btn,
.projects-header-actions > span > a.btn,
.modules-header-actions > span > a.btn,
.reports-header-actions > span > a.btn,
.csaf-header-actions > span > a.btn,
.threat-modelling-header-actions > span > a.btn,
.releases-header-actions > span > a.btn,
.approves-header-actions > span > a.btn,
.risks-header-actions > span > a.btn,
.vulnerability-activity-header-actions > span > a.btn,
.components-header-actions > span > a.btn,
.vulnerability-lake-header-actions > span > a.btn,
.infrastructure-header-actions > span > a.btn,
.cots-header-actions > span > a.btn,
.licenses-header-actions > span > a.btn,
.algorithms-header-actions > span > a.btn,
.policy-header-actions > span > a.btn,
.copyright-header-actions > span > a.btn,
.logs-header-actions > span > a.btn,
.logins-header-actions > span > a.btn,
.legal-header-actions > span > a.btn,
.legal-templates-header-actions > span > a.btn,
.trademarks-header-actions > span > a.btn,
.settings-header-actions > span > a.btn,
.module-header-actions > span > a.btn,
.license-detail-header-actions > span > a.btn,
.approves-detail-header-actions > span > a.btn {
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 12px;
  padding: 5px 12px;
  transition: all 0.15s ease;
}
.v3-header-actions > .btn:hover,
.tests-header-actions > .btn:hover,
.check-header-actions > .btn:hover,
.deepscan-header-actions > .btn:hover,
.messages-header-actions > .btn:hover,
.projects-header-actions > .btn:hover,
.modules-header-actions > .btn:hover,
.reports-header-actions > .btn:hover,
.csaf-header-actions > .btn:hover,
.threat-modelling-header-actions > .btn:hover,
.releases-header-actions > .btn:hover,
.approves-header-actions > .btn:hover,
.risks-header-actions > .btn:hover,
.vulnerability-activity-header-actions > .btn:hover,
.components-header-actions > .btn:hover,
.vulnerability-lake-header-actions > .btn:hover,
.infrastructure-header-actions > .btn:hover,
.cots-header-actions > .btn:hover,
.licenses-header-actions > .btn:hover,
.algorithms-header-actions > .btn:hover,
.policy-header-actions > .btn:hover,
.copyright-header-actions > .btn:hover,
.logs-header-actions > .btn:hover,
.logins-header-actions > .btn:hover,
.legal-header-actions > .btn:hover,
.legal-templates-header-actions > .btn:hover,
.trademarks-header-actions > .btn:hover,
.settings-header-actions > .btn:hover,
.module-header-actions > .btn:hover,
.license-detail-header-actions > .btn:hover,
.approves-detail-header-actions > .btn:hover,
.v3-header-actions > a.btn:hover,
.tests-header-actions > a.btn:hover,
.check-header-actions > a.btn:hover,
.deepscan-header-actions > a.btn:hover,
.messages-header-actions > a.btn:hover,
.projects-header-actions > a.btn:hover,
.modules-header-actions > a.btn:hover,
.reports-header-actions > a.btn:hover,
.csaf-header-actions > a.btn:hover,
.threat-modelling-header-actions > a.btn:hover,
.releases-header-actions > a.btn:hover,
.approves-header-actions > a.btn:hover,
.risks-header-actions > a.btn:hover,
.vulnerability-activity-header-actions > a.btn:hover,
.components-header-actions > a.btn:hover,
.vulnerability-lake-header-actions > a.btn:hover,
.infrastructure-header-actions > a.btn:hover,
.cots-header-actions > a.btn:hover,
.licenses-header-actions > a.btn:hover,
.algorithms-header-actions > a.btn:hover,
.policy-header-actions > a.btn:hover,
.copyright-header-actions > a.btn:hover,
.logs-header-actions > a.btn:hover,
.logins-header-actions > a.btn:hover,
.legal-header-actions > a.btn:hover,
.legal-templates-header-actions > a.btn:hover,
.trademarks-header-actions > a.btn:hover,
.settings-header-actions > a.btn:hover,
.module-header-actions > a.btn:hover,
.license-detail-header-actions > a.btn:hover,
.approves-detail-header-actions > a.btn:hover,
.v3-header-actions > .dropdown > .btn:hover,
.tests-header-actions > .dropdown > .btn:hover,
.check-header-actions > .dropdown > .btn:hover,
.deepscan-header-actions > .dropdown > .btn:hover,
.messages-header-actions > .dropdown > .btn:hover,
.projects-header-actions > .dropdown > .btn:hover,
.modules-header-actions > .dropdown > .btn:hover,
.reports-header-actions > .dropdown > .btn:hover,
.csaf-header-actions > .dropdown > .btn:hover,
.threat-modelling-header-actions > .dropdown > .btn:hover,
.releases-header-actions > .dropdown > .btn:hover,
.approves-header-actions > .dropdown > .btn:hover,
.risks-header-actions > .dropdown > .btn:hover,
.vulnerability-activity-header-actions > .dropdown > .btn:hover,
.components-header-actions > .dropdown > .btn:hover,
.vulnerability-lake-header-actions > .dropdown > .btn:hover,
.infrastructure-header-actions > .dropdown > .btn:hover,
.cots-header-actions > .dropdown > .btn:hover,
.licenses-header-actions > .dropdown > .btn:hover,
.algorithms-header-actions > .dropdown > .btn:hover,
.policy-header-actions > .dropdown > .btn:hover,
.copyright-header-actions > .dropdown > .btn:hover,
.logs-header-actions > .dropdown > .btn:hover,
.logins-header-actions > .dropdown > .btn:hover,
.legal-header-actions > .dropdown > .btn:hover,
.legal-templates-header-actions > .dropdown > .btn:hover,
.trademarks-header-actions > .dropdown > .btn:hover,
.settings-header-actions > .dropdown > .btn:hover,
.module-header-actions > .dropdown > .btn:hover,
.license-detail-header-actions > .dropdown > .btn:hover,
.approves-detail-header-actions > .dropdown > .btn:hover,
.v3-header-actions > span > .btn:hover,
.tests-header-actions > span > .btn:hover,
.check-header-actions > span > .btn:hover,
.deepscan-header-actions > span > .btn:hover,
.messages-header-actions > span > .btn:hover,
.projects-header-actions > span > .btn:hover,
.modules-header-actions > span > .btn:hover,
.reports-header-actions > span > .btn:hover,
.csaf-header-actions > span > .btn:hover,
.threat-modelling-header-actions > span > .btn:hover,
.releases-header-actions > span > .btn:hover,
.approves-header-actions > span > .btn:hover,
.risks-header-actions > span > .btn:hover,
.vulnerability-activity-header-actions > span > .btn:hover,
.components-header-actions > span > .btn:hover,
.vulnerability-lake-header-actions > span > .btn:hover,
.infrastructure-header-actions > span > .btn:hover,
.cots-header-actions > span > .btn:hover,
.licenses-header-actions > span > .btn:hover,
.algorithms-header-actions > span > .btn:hover,
.policy-header-actions > span > .btn:hover,
.copyright-header-actions > span > .btn:hover,
.logs-header-actions > span > .btn:hover,
.logins-header-actions > span > .btn:hover,
.legal-header-actions > span > .btn:hover,
.legal-templates-header-actions > span > .btn:hover,
.trademarks-header-actions > span > .btn:hover,
.settings-header-actions > span > .btn:hover,
.module-header-actions > span > .btn:hover,
.license-detail-header-actions > span > .btn:hover,
.approves-detail-header-actions > span > .btn:hover,
.v3-header-actions > span > a.btn:hover,
.tests-header-actions > span > a.btn:hover,
.check-header-actions > span > a.btn:hover,
.deepscan-header-actions > span > a.btn:hover,
.messages-header-actions > span > a.btn:hover,
.projects-header-actions > span > a.btn:hover,
.modules-header-actions > span > a.btn:hover,
.reports-header-actions > span > a.btn:hover,
.csaf-header-actions > span > a.btn:hover,
.threat-modelling-header-actions > span > a.btn:hover,
.releases-header-actions > span > a.btn:hover,
.approves-header-actions > span > a.btn:hover,
.risks-header-actions > span > a.btn:hover,
.vulnerability-activity-header-actions > span > a.btn:hover,
.components-header-actions > span > a.btn:hover,
.vulnerability-lake-header-actions > span > a.btn:hover,
.infrastructure-header-actions > span > a.btn:hover,
.cots-header-actions > span > a.btn:hover,
.licenses-header-actions > span > a.btn:hover,
.algorithms-header-actions > span > a.btn:hover,
.policy-header-actions > span > a.btn:hover,
.copyright-header-actions > span > a.btn:hover,
.logs-header-actions > span > a.btn:hover,
.logins-header-actions > span > a.btn:hover,
.legal-header-actions > span > a.btn:hover,
.legal-templates-header-actions > span > a.btn:hover,
.trademarks-header-actions > span > a.btn:hover,
.settings-header-actions > span > a.btn:hover,
.module-header-actions > span > a.btn:hover,
.license-detail-header-actions > span > a.btn:hover,
.approves-detail-header-actions > span > a.btn:hover,
.v3-header-actions > .btn:focus,
.tests-header-actions > .btn:focus,
.check-header-actions > .btn:focus,
.deepscan-header-actions > .btn:focus,
.messages-header-actions > .btn:focus,
.projects-header-actions > .btn:focus,
.modules-header-actions > .btn:focus,
.reports-header-actions > .btn:focus,
.csaf-header-actions > .btn:focus,
.threat-modelling-header-actions > .btn:focus,
.releases-header-actions > .btn:focus,
.approves-header-actions > .btn:focus,
.risks-header-actions > .btn:focus,
.vulnerability-activity-header-actions > .btn:focus,
.components-header-actions > .btn:focus,
.vulnerability-lake-header-actions > .btn:focus,
.infrastructure-header-actions > .btn:focus,
.cots-header-actions > .btn:focus,
.licenses-header-actions > .btn:focus,
.algorithms-header-actions > .btn:focus,
.policy-header-actions > .btn:focus,
.copyright-header-actions > .btn:focus,
.logs-header-actions > .btn:focus,
.logins-header-actions > .btn:focus,
.legal-header-actions > .btn:focus,
.legal-templates-header-actions > .btn:focus,
.trademarks-header-actions > .btn:focus,
.settings-header-actions > .btn:focus,
.module-header-actions > .btn:focus,
.license-detail-header-actions > .btn:focus,
.approves-detail-header-actions > .btn:focus,
.v3-header-actions > a.btn:focus,
.tests-header-actions > a.btn:focus,
.check-header-actions > a.btn:focus,
.deepscan-header-actions > a.btn:focus,
.messages-header-actions > a.btn:focus,
.projects-header-actions > a.btn:focus,
.modules-header-actions > a.btn:focus,
.reports-header-actions > a.btn:focus,
.csaf-header-actions > a.btn:focus,
.threat-modelling-header-actions > a.btn:focus,
.releases-header-actions > a.btn:focus,
.approves-header-actions > a.btn:focus,
.risks-header-actions > a.btn:focus,
.vulnerability-activity-header-actions > a.btn:focus,
.components-header-actions > a.btn:focus,
.vulnerability-lake-header-actions > a.btn:focus,
.infrastructure-header-actions > a.btn:focus,
.cots-header-actions > a.btn:focus,
.licenses-header-actions > a.btn:focus,
.algorithms-header-actions > a.btn:focus,
.policy-header-actions > a.btn:focus,
.copyright-header-actions > a.btn:focus,
.logs-header-actions > a.btn:focus,
.logins-header-actions > a.btn:focus,
.legal-header-actions > a.btn:focus,
.legal-templates-header-actions > a.btn:focus,
.trademarks-header-actions > a.btn:focus,
.settings-header-actions > a.btn:focus,
.module-header-actions > a.btn:focus,
.license-detail-header-actions > a.btn:focus,
.approves-detail-header-actions > a.btn:focus,
.v3-header-actions > .dropdown > .btn:focus,
.tests-header-actions > .dropdown > .btn:focus,
.check-header-actions > .dropdown > .btn:focus,
.deepscan-header-actions > .dropdown > .btn:focus,
.messages-header-actions > .dropdown > .btn:focus,
.projects-header-actions > .dropdown > .btn:focus,
.modules-header-actions > .dropdown > .btn:focus,
.reports-header-actions > .dropdown > .btn:focus,
.csaf-header-actions > .dropdown > .btn:focus,
.threat-modelling-header-actions > .dropdown > .btn:focus,
.releases-header-actions > .dropdown > .btn:focus,
.approves-header-actions > .dropdown > .btn:focus,
.risks-header-actions > .dropdown > .btn:focus,
.vulnerability-activity-header-actions > .dropdown > .btn:focus,
.components-header-actions > .dropdown > .btn:focus,
.vulnerability-lake-header-actions > .dropdown > .btn:focus,
.infrastructure-header-actions > .dropdown > .btn:focus,
.cots-header-actions > .dropdown > .btn:focus,
.licenses-header-actions > .dropdown > .btn:focus,
.algorithms-header-actions > .dropdown > .btn:focus,
.policy-header-actions > .dropdown > .btn:focus,
.copyright-header-actions > .dropdown > .btn:focus,
.logs-header-actions > .dropdown > .btn:focus,
.logins-header-actions > .dropdown > .btn:focus,
.legal-header-actions > .dropdown > .btn:focus,
.legal-templates-header-actions > .dropdown > .btn:focus,
.trademarks-header-actions > .dropdown > .btn:focus,
.settings-header-actions > .dropdown > .btn:focus,
.module-header-actions > .dropdown > .btn:focus,
.license-detail-header-actions > .dropdown > .btn:focus,
.approves-detail-header-actions > .dropdown > .btn:focus,
.v3-header-actions > span > .btn:focus,
.tests-header-actions > span > .btn:focus,
.check-header-actions > span > .btn:focus,
.deepscan-header-actions > span > .btn:focus,
.messages-header-actions > span > .btn:focus,
.projects-header-actions > span > .btn:focus,
.modules-header-actions > span > .btn:focus,
.reports-header-actions > span > .btn:focus,
.csaf-header-actions > span > .btn:focus,
.threat-modelling-header-actions > span > .btn:focus,
.releases-header-actions > span > .btn:focus,
.approves-header-actions > span > .btn:focus,
.risks-header-actions > span > .btn:focus,
.vulnerability-activity-header-actions > span > .btn:focus,
.components-header-actions > span > .btn:focus,
.vulnerability-lake-header-actions > span > .btn:focus,
.infrastructure-header-actions > span > .btn:focus,
.cots-header-actions > span > .btn:focus,
.licenses-header-actions > span > .btn:focus,
.algorithms-header-actions > span > .btn:focus,
.policy-header-actions > span > .btn:focus,
.copyright-header-actions > span > .btn:focus,
.logs-header-actions > span > .btn:focus,
.logins-header-actions > span > .btn:focus,
.legal-header-actions > span > .btn:focus,
.legal-templates-header-actions > span > .btn:focus,
.trademarks-header-actions > span > .btn:focus,
.settings-header-actions > span > .btn:focus,
.module-header-actions > span > .btn:focus,
.license-detail-header-actions > span > .btn:focus,
.approves-detail-header-actions > span > .btn:focus,
.v3-header-actions > span > a.btn:focus,
.tests-header-actions > span > a.btn:focus,
.check-header-actions > span > a.btn:focus,
.deepscan-header-actions > span > a.btn:focus,
.messages-header-actions > span > a.btn:focus,
.projects-header-actions > span > a.btn:focus,
.modules-header-actions > span > a.btn:focus,
.reports-header-actions > span > a.btn:focus,
.csaf-header-actions > span > a.btn:focus,
.threat-modelling-header-actions > span > a.btn:focus,
.releases-header-actions > span > a.btn:focus,
.approves-header-actions > span > a.btn:focus,
.risks-header-actions > span > a.btn:focus,
.vulnerability-activity-header-actions > span > a.btn:focus,
.components-header-actions > span > a.btn:focus,
.vulnerability-lake-header-actions > span > a.btn:focus,
.infrastructure-header-actions > span > a.btn:focus,
.cots-header-actions > span > a.btn:focus,
.licenses-header-actions > span > a.btn:focus,
.algorithms-header-actions > span > a.btn:focus,
.policy-header-actions > span > a.btn:focus,
.copyright-header-actions > span > a.btn:focus,
.logs-header-actions > span > a.btn:focus,
.logins-header-actions > span > a.btn:focus,
.legal-header-actions > span > a.btn:focus,
.legal-templates-header-actions > span > a.btn:focus,
.trademarks-header-actions > span > a.btn:focus,
.settings-header-actions > span > a.btn:focus,
.module-header-actions > span > a.btn:focus,
.license-detail-header-actions > span > a.btn:focus,
.approves-detail-header-actions > span > a.btn:focus {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}
.v3-header-actions > .btn .fa,
.tests-header-actions > .btn .fa,
.check-header-actions > .btn .fa,
.deepscan-header-actions > .btn .fa,
.messages-header-actions > .btn .fa,
.projects-header-actions > .btn .fa,
.modules-header-actions > .btn .fa,
.reports-header-actions > .btn .fa,
.csaf-header-actions > .btn .fa,
.threat-modelling-header-actions > .btn .fa,
.releases-header-actions > .btn .fa,
.approves-header-actions > .btn .fa,
.risks-header-actions > .btn .fa,
.vulnerability-activity-header-actions > .btn .fa,
.components-header-actions > .btn .fa,
.vulnerability-lake-header-actions > .btn .fa,
.infrastructure-header-actions > .btn .fa,
.cots-header-actions > .btn .fa,
.licenses-header-actions > .btn .fa,
.algorithms-header-actions > .btn .fa,
.policy-header-actions > .btn .fa,
.copyright-header-actions > .btn .fa,
.logs-header-actions > .btn .fa,
.logins-header-actions > .btn .fa,
.legal-header-actions > .btn .fa,
.legal-templates-header-actions > .btn .fa,
.trademarks-header-actions > .btn .fa,
.settings-header-actions > .btn .fa,
.module-header-actions > .btn .fa,
.license-detail-header-actions > .btn .fa,
.approves-detail-header-actions > .btn .fa,
.v3-header-actions > a.btn .fa,
.tests-header-actions > a.btn .fa,
.check-header-actions > a.btn .fa,
.deepscan-header-actions > a.btn .fa,
.messages-header-actions > a.btn .fa,
.projects-header-actions > a.btn .fa,
.modules-header-actions > a.btn .fa,
.reports-header-actions > a.btn .fa,
.csaf-header-actions > a.btn .fa,
.threat-modelling-header-actions > a.btn .fa,
.releases-header-actions > a.btn .fa,
.approves-header-actions > a.btn .fa,
.risks-header-actions > a.btn .fa,
.vulnerability-activity-header-actions > a.btn .fa,
.components-header-actions > a.btn .fa,
.vulnerability-lake-header-actions > a.btn .fa,
.infrastructure-header-actions > a.btn .fa,
.cots-header-actions > a.btn .fa,
.licenses-header-actions > a.btn .fa,
.algorithms-header-actions > a.btn .fa,
.policy-header-actions > a.btn .fa,
.copyright-header-actions > a.btn .fa,
.logs-header-actions > a.btn .fa,
.logins-header-actions > a.btn .fa,
.legal-header-actions > a.btn .fa,
.legal-templates-header-actions > a.btn .fa,
.trademarks-header-actions > a.btn .fa,
.settings-header-actions > a.btn .fa,
.module-header-actions > a.btn .fa,
.license-detail-header-actions > a.btn .fa,
.approves-detail-header-actions > a.btn .fa,
.v3-header-actions > .dropdown > .btn .fa,
.tests-header-actions > .dropdown > .btn .fa,
.check-header-actions > .dropdown > .btn .fa,
.deepscan-header-actions > .dropdown > .btn .fa,
.messages-header-actions > .dropdown > .btn .fa,
.projects-header-actions > .dropdown > .btn .fa,
.modules-header-actions > .dropdown > .btn .fa,
.reports-header-actions > .dropdown > .btn .fa,
.csaf-header-actions > .dropdown > .btn .fa,
.threat-modelling-header-actions > .dropdown > .btn .fa,
.releases-header-actions > .dropdown > .btn .fa,
.approves-header-actions > .dropdown > .btn .fa,
.risks-header-actions > .dropdown > .btn .fa,
.vulnerability-activity-header-actions > .dropdown > .btn .fa,
.components-header-actions > .dropdown > .btn .fa,
.vulnerability-lake-header-actions > .dropdown > .btn .fa,
.infrastructure-header-actions > .dropdown > .btn .fa,
.cots-header-actions > .dropdown > .btn .fa,
.licenses-header-actions > .dropdown > .btn .fa,
.algorithms-header-actions > .dropdown > .btn .fa,
.policy-header-actions > .dropdown > .btn .fa,
.copyright-header-actions > .dropdown > .btn .fa,
.logs-header-actions > .dropdown > .btn .fa,
.logins-header-actions > .dropdown > .btn .fa,
.legal-header-actions > .dropdown > .btn .fa,
.legal-templates-header-actions > .dropdown > .btn .fa,
.trademarks-header-actions > .dropdown > .btn .fa,
.settings-header-actions > .dropdown > .btn .fa,
.module-header-actions > .dropdown > .btn .fa,
.license-detail-header-actions > .dropdown > .btn .fa,
.approves-detail-header-actions > .dropdown > .btn .fa,
.v3-header-actions > span > .btn .fa,
.tests-header-actions > span > .btn .fa,
.check-header-actions > span > .btn .fa,
.deepscan-header-actions > span > .btn .fa,
.messages-header-actions > span > .btn .fa,
.projects-header-actions > span > .btn .fa,
.modules-header-actions > span > .btn .fa,
.reports-header-actions > span > .btn .fa,
.csaf-header-actions > span > .btn .fa,
.threat-modelling-header-actions > span > .btn .fa,
.releases-header-actions > span > .btn .fa,
.approves-header-actions > span > .btn .fa,
.risks-header-actions > span > .btn .fa,
.vulnerability-activity-header-actions > span > .btn .fa,
.components-header-actions > span > .btn .fa,
.vulnerability-lake-header-actions > span > .btn .fa,
.infrastructure-header-actions > span > .btn .fa,
.cots-header-actions > span > .btn .fa,
.licenses-header-actions > span > .btn .fa,
.algorithms-header-actions > span > .btn .fa,
.policy-header-actions > span > .btn .fa,
.copyright-header-actions > span > .btn .fa,
.logs-header-actions > span > .btn .fa,
.logins-header-actions > span > .btn .fa,
.legal-header-actions > span > .btn .fa,
.legal-templates-header-actions > span > .btn .fa,
.trademarks-header-actions > span > .btn .fa,
.settings-header-actions > span > .btn .fa,
.module-header-actions > span > .btn .fa,
.license-detail-header-actions > span > .btn .fa,
.approves-detail-header-actions > span > .btn .fa,
.v3-header-actions > span > a.btn .fa,
.tests-header-actions > span > a.btn .fa,
.check-header-actions > span > a.btn .fa,
.deepscan-header-actions > span > a.btn .fa,
.messages-header-actions > span > a.btn .fa,
.projects-header-actions > span > a.btn .fa,
.modules-header-actions > span > a.btn .fa,
.reports-header-actions > span > a.btn .fa,
.csaf-header-actions > span > a.btn .fa,
.threat-modelling-header-actions > span > a.btn .fa,
.releases-header-actions > span > a.btn .fa,
.approves-header-actions > span > a.btn .fa,
.risks-header-actions > span > a.btn .fa,
.vulnerability-activity-header-actions > span > a.btn .fa,
.components-header-actions > span > a.btn .fa,
.vulnerability-lake-header-actions > span > a.btn .fa,
.infrastructure-header-actions > span > a.btn .fa,
.cots-header-actions > span > a.btn .fa,
.licenses-header-actions > span > a.btn .fa,
.algorithms-header-actions > span > a.btn .fa,
.policy-header-actions > span > a.btn .fa,
.copyright-header-actions > span > a.btn .fa,
.logs-header-actions > span > a.btn .fa,
.logins-header-actions > span > a.btn .fa,
.legal-header-actions > span > a.btn .fa,
.legal-templates-header-actions > span > a.btn .fa,
.trademarks-header-actions > span > a.btn .fa,
.settings-header-actions > span > a.btn .fa,
.module-header-actions > span > a.btn .fa,
.license-detail-header-actions > span > a.btn .fa,
.approves-detail-header-actions > span > a.btn .fa {
  margin-right: 3px;
}
.v3-header-actions .btn-group .btn,
.tests-header-actions .btn-group .btn,
.check-header-actions .btn-group .btn,
.deepscan-header-actions .btn-group .btn,
.messages-header-actions .btn-group .btn,
.projects-header-actions .btn-group .btn,
.modules-header-actions .btn-group .btn,
.reports-header-actions .btn-group .btn,
.csaf-header-actions .btn-group .btn,
.threat-modelling-header-actions .btn-group .btn,
.releases-header-actions .btn-group .btn,
.approves-header-actions .btn-group .btn,
.risks-header-actions .btn-group .btn,
.vulnerability-activity-header-actions .btn-group .btn,
.components-header-actions .btn-group .btn,
.vulnerability-lake-header-actions .btn-group .btn,
.infrastructure-header-actions .btn-group .btn,
.cots-header-actions .btn-group .btn,
.licenses-header-actions .btn-group .btn,
.algorithms-header-actions .btn-group .btn,
.policy-header-actions .btn-group .btn,
.copyright-header-actions .btn-group .btn,
.logs-header-actions .btn-group .btn,
.logins-header-actions .btn-group .btn,
.legal-header-actions .btn-group .btn,
.legal-templates-header-actions .btn-group .btn,
.trademarks-header-actions .btn-group .btn,
.settings-header-actions .btn-group .btn,
.module-header-actions .btn-group .btn,
.license-detail-header-actions .btn-group .btn,
.approves-detail-header-actions .btn-group .btn {
  border-radius: 0;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 12px;
  padding: 5px 12px;
  transition: all 0.15s ease;
}
.v3-header-actions .btn-group .btn:first-child,
.tests-header-actions .btn-group .btn:first-child,
.check-header-actions .btn-group .btn:first-child,
.deepscan-header-actions .btn-group .btn:first-child,
.messages-header-actions .btn-group .btn:first-child,
.projects-header-actions .btn-group .btn:first-child,
.modules-header-actions .btn-group .btn:first-child,
.reports-header-actions .btn-group .btn:first-child,
.csaf-header-actions .btn-group .btn:first-child,
.threat-modelling-header-actions .btn-group .btn:first-child,
.releases-header-actions .btn-group .btn:first-child,
.approves-header-actions .btn-group .btn:first-child,
.risks-header-actions .btn-group .btn:first-child,
.vulnerability-activity-header-actions .btn-group .btn:first-child,
.components-header-actions .btn-group .btn:first-child,
.vulnerability-lake-header-actions .btn-group .btn:first-child,
.infrastructure-header-actions .btn-group .btn:first-child,
.cots-header-actions .btn-group .btn:first-child,
.licenses-header-actions .btn-group .btn:first-child,
.algorithms-header-actions .btn-group .btn:first-child,
.policy-header-actions .btn-group .btn:first-child,
.copyright-header-actions .btn-group .btn:first-child,
.logs-header-actions .btn-group .btn:first-child,
.logins-header-actions .btn-group .btn:first-child,
.legal-header-actions .btn-group .btn:first-child,
.legal-templates-header-actions .btn-group .btn:first-child,
.trademarks-header-actions .btn-group .btn:first-child,
.settings-header-actions .btn-group .btn:first-child,
.module-header-actions .btn-group .btn:first-child,
.license-detail-header-actions .btn-group .btn:first-child,
.approves-detail-header-actions .btn-group .btn:first-child {
  border-radius: 4px 0 0 4px;
}
.v3-header-actions .btn-group .btn:last-child,
.tests-header-actions .btn-group .btn:last-child,
.check-header-actions .btn-group .btn:last-child,
.deepscan-header-actions .btn-group .btn:last-child,
.messages-header-actions .btn-group .btn:last-child,
.projects-header-actions .btn-group .btn:last-child,
.modules-header-actions .btn-group .btn:last-child,
.reports-header-actions .btn-group .btn:last-child,
.csaf-header-actions .btn-group .btn:last-child,
.threat-modelling-header-actions .btn-group .btn:last-child,
.releases-header-actions .btn-group .btn:last-child,
.approves-header-actions .btn-group .btn:last-child,
.risks-header-actions .btn-group .btn:last-child,
.vulnerability-activity-header-actions .btn-group .btn:last-child,
.components-header-actions .btn-group .btn:last-child,
.vulnerability-lake-header-actions .btn-group .btn:last-child,
.infrastructure-header-actions .btn-group .btn:last-child,
.cots-header-actions .btn-group .btn:last-child,
.licenses-header-actions .btn-group .btn:last-child,
.algorithms-header-actions .btn-group .btn:last-child,
.policy-header-actions .btn-group .btn:last-child,
.copyright-header-actions .btn-group .btn:last-child,
.logs-header-actions .btn-group .btn:last-child,
.logins-header-actions .btn-group .btn:last-child,
.legal-header-actions .btn-group .btn:last-child,
.legal-templates-header-actions .btn-group .btn:last-child,
.trademarks-header-actions .btn-group .btn:last-child,
.settings-header-actions .btn-group .btn:last-child,
.module-header-actions .btn-group .btn:last-child,
.license-detail-header-actions .btn-group .btn:last-child,
.approves-detail-header-actions .btn-group .btn:last-child {
  border-radius: 0 4px 4px 0;
}
.v3-header-actions .btn-group .btn:hover,
.tests-header-actions .btn-group .btn:hover,
.check-header-actions .btn-group .btn:hover,
.deepscan-header-actions .btn-group .btn:hover,
.messages-header-actions .btn-group .btn:hover,
.projects-header-actions .btn-group .btn:hover,
.modules-header-actions .btn-group .btn:hover,
.reports-header-actions .btn-group .btn:hover,
.csaf-header-actions .btn-group .btn:hover,
.threat-modelling-header-actions .btn-group .btn:hover,
.releases-header-actions .btn-group .btn:hover,
.approves-header-actions .btn-group .btn:hover,
.risks-header-actions .btn-group .btn:hover,
.vulnerability-activity-header-actions .btn-group .btn:hover,
.components-header-actions .btn-group .btn:hover,
.vulnerability-lake-header-actions .btn-group .btn:hover,
.infrastructure-header-actions .btn-group .btn:hover,
.cots-header-actions .btn-group .btn:hover,
.licenses-header-actions .btn-group .btn:hover,
.algorithms-header-actions .btn-group .btn:hover,
.policy-header-actions .btn-group .btn:hover,
.copyright-header-actions .btn-group .btn:hover,
.logs-header-actions .btn-group .btn:hover,
.logins-header-actions .btn-group .btn:hover,
.legal-header-actions .btn-group .btn:hover,
.legal-templates-header-actions .btn-group .btn:hover,
.trademarks-header-actions .btn-group .btn:hover,
.settings-header-actions .btn-group .btn:hover,
.module-header-actions .btn-group .btn:hover,
.license-detail-header-actions .btn-group .btn:hover,
.approves-detail-header-actions .btn-group .btn:hover,
.v3-header-actions .btn-group .btn:focus,
.tests-header-actions .btn-group .btn:focus,
.check-header-actions .btn-group .btn:focus,
.deepscan-header-actions .btn-group .btn:focus,
.messages-header-actions .btn-group .btn:focus,
.projects-header-actions .btn-group .btn:focus,
.modules-header-actions .btn-group .btn:focus,
.reports-header-actions .btn-group .btn:focus,
.csaf-header-actions .btn-group .btn:focus,
.threat-modelling-header-actions .btn-group .btn:focus,
.releases-header-actions .btn-group .btn:focus,
.approves-header-actions .btn-group .btn:focus,
.risks-header-actions .btn-group .btn:focus,
.vulnerability-activity-header-actions .btn-group .btn:focus,
.components-header-actions .btn-group .btn:focus,
.vulnerability-lake-header-actions .btn-group .btn:focus,
.infrastructure-header-actions .btn-group .btn:focus,
.cots-header-actions .btn-group .btn:focus,
.licenses-header-actions .btn-group .btn:focus,
.algorithms-header-actions .btn-group .btn:focus,
.policy-header-actions .btn-group .btn:focus,
.copyright-header-actions .btn-group .btn:focus,
.logs-header-actions .btn-group .btn:focus,
.logins-header-actions .btn-group .btn:focus,
.legal-header-actions .btn-group .btn:focus,
.legal-templates-header-actions .btn-group .btn:focus,
.trademarks-header-actions .btn-group .btn:focus,
.settings-header-actions .btn-group .btn:focus,
.module-header-actions .btn-group .btn:focus,
.license-detail-header-actions .btn-group .btn:focus,
.approves-detail-header-actions .btn-group .btn:focus {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}
.v3-header-actions .btn-group .btn.active-tab,
.tests-header-actions .btn-group .btn.active-tab,
.check-header-actions .btn-group .btn.active-tab,
.deepscan-header-actions .btn-group .btn.active-tab,
.messages-header-actions .btn-group .btn.active-tab,
.projects-header-actions .btn-group .btn.active-tab,
.modules-header-actions .btn-group .btn.active-tab,
.reports-header-actions .btn-group .btn.active-tab,
.csaf-header-actions .btn-group .btn.active-tab,
.threat-modelling-header-actions .btn-group .btn.active-tab,
.releases-header-actions .btn-group .btn.active-tab,
.approves-header-actions .btn-group .btn.active-tab,
.risks-header-actions .btn-group .btn.active-tab,
.vulnerability-activity-header-actions .btn-group .btn.active-tab,
.components-header-actions .btn-group .btn.active-tab,
.vulnerability-lake-header-actions .btn-group .btn.active-tab,
.infrastructure-header-actions .btn-group .btn.active-tab,
.cots-header-actions .btn-group .btn.active-tab,
.licenses-header-actions .btn-group .btn.active-tab,
.algorithms-header-actions .btn-group .btn.active-tab,
.policy-header-actions .btn-group .btn.active-tab,
.copyright-header-actions .btn-group .btn.active-tab,
.logs-header-actions .btn-group .btn.active-tab,
.logins-header-actions .btn-group .btn.active-tab,
.legal-header-actions .btn-group .btn.active-tab,
.legal-templates-header-actions .btn-group .btn.active-tab,
.trademarks-header-actions .btn-group .btn.active-tab,
.settings-header-actions .btn-group .btn.active-tab,
.module-header-actions .btn-group .btn.active-tab,
.license-detail-header-actions .btn-group .btn.active-tab,
.approves-detail-header-actions .btn-group .btn.active-tab,
.v3-header-actions .btn-group .btn.active,
.tests-header-actions .btn-group .btn.active,
.check-header-actions .btn-group .btn.active,
.deepscan-header-actions .btn-group .btn.active,
.messages-header-actions .btn-group .btn.active,
.projects-header-actions .btn-group .btn.active,
.modules-header-actions .btn-group .btn.active,
.reports-header-actions .btn-group .btn.active,
.csaf-header-actions .btn-group .btn.active,
.threat-modelling-header-actions .btn-group .btn.active,
.releases-header-actions .btn-group .btn.active,
.approves-header-actions .btn-group .btn.active,
.risks-header-actions .btn-group .btn.active,
.vulnerability-activity-header-actions .btn-group .btn.active,
.components-header-actions .btn-group .btn.active,
.vulnerability-lake-header-actions .btn-group .btn.active,
.infrastructure-header-actions .btn-group .btn.active,
.cots-header-actions .btn-group .btn.active,
.licenses-header-actions .btn-group .btn.active,
.algorithms-header-actions .btn-group .btn.active,
.policy-header-actions .btn-group .btn.active,
.copyright-header-actions .btn-group .btn.active,
.logs-header-actions .btn-group .btn.active,
.logins-header-actions .btn-group .btn.active,
.legal-header-actions .btn-group .btn.active,
.legal-templates-header-actions .btn-group .btn.active,
.trademarks-header-actions .btn-group .btn.active,
.settings-header-actions .btn-group .btn.active,
.module-header-actions .btn-group .btn.active,
.license-detail-header-actions .btn-group .btn.active,
.approves-detail-header-actions .btn-group .btn.active {
  background: #2a94a2;
  border-color: #2a94a2;
  color: #fff;
}
.v3-header-actions .btn-group .btn .fa,
.tests-header-actions .btn-group .btn .fa,
.check-header-actions .btn-group .btn .fa,
.deepscan-header-actions .btn-group .btn .fa,
.messages-header-actions .btn-group .btn .fa,
.projects-header-actions .btn-group .btn .fa,
.modules-header-actions .btn-group .btn .fa,
.reports-header-actions .btn-group .btn .fa,
.csaf-header-actions .btn-group .btn .fa,
.threat-modelling-header-actions .btn-group .btn .fa,
.releases-header-actions .btn-group .btn .fa,
.approves-header-actions .btn-group .btn .fa,
.risks-header-actions .btn-group .btn .fa,
.vulnerability-activity-header-actions .btn-group .btn .fa,
.components-header-actions .btn-group .btn .fa,
.vulnerability-lake-header-actions .btn-group .btn .fa,
.infrastructure-header-actions .btn-group .btn .fa,
.cots-header-actions .btn-group .btn .fa,
.licenses-header-actions .btn-group .btn .fa,
.algorithms-header-actions .btn-group .btn .fa,
.policy-header-actions .btn-group .btn .fa,
.copyright-header-actions .btn-group .btn .fa,
.logs-header-actions .btn-group .btn .fa,
.logins-header-actions .btn-group .btn .fa,
.legal-header-actions .btn-group .btn .fa,
.legal-templates-header-actions .btn-group .btn .fa,
.trademarks-header-actions .btn-group .btn .fa,
.settings-header-actions .btn-group .btn .fa,
.module-header-actions .btn-group .btn .fa,
.license-detail-header-actions .btn-group .btn .fa,
.approves-detail-header-actions .btn-group .btn .fa {
  margin-right: 3px;
}
.v3-header-actions > .dropdown:hover > .dropdown-menu,
.tests-header-actions > .dropdown:hover > .dropdown-menu,
.check-header-actions > .dropdown:hover > .dropdown-menu,
.deepscan-header-actions > .dropdown:hover > .dropdown-menu,
.messages-header-actions > .dropdown:hover > .dropdown-menu,
.projects-header-actions > .dropdown:hover > .dropdown-menu,
.modules-header-actions > .dropdown:hover > .dropdown-menu,
.reports-header-actions > .dropdown:hover > .dropdown-menu,
.csaf-header-actions > .dropdown:hover > .dropdown-menu,
.threat-modelling-header-actions > .dropdown:hover > .dropdown-menu,
.releases-header-actions > .dropdown:hover > .dropdown-menu,
.approves-header-actions > .dropdown:hover > .dropdown-menu,
.risks-header-actions > .dropdown:hover > .dropdown-menu,
.vulnerability-activity-header-actions > .dropdown:hover > .dropdown-menu,
.components-header-actions > .dropdown:hover > .dropdown-menu,
.vulnerability-lake-header-actions > .dropdown:hover > .dropdown-menu,
.infrastructure-header-actions > .dropdown:hover > .dropdown-menu,
.cots-header-actions > .dropdown:hover > .dropdown-menu,
.licenses-header-actions > .dropdown:hover > .dropdown-menu,
.algorithms-header-actions > .dropdown:hover > .dropdown-menu,
.policy-header-actions > .dropdown:hover > .dropdown-menu,
.copyright-header-actions > .dropdown:hover > .dropdown-menu,
.logs-header-actions > .dropdown:hover > .dropdown-menu,
.logins-header-actions > .dropdown:hover > .dropdown-menu,
.legal-header-actions > .dropdown:hover > .dropdown-menu,
.legal-templates-header-actions > .dropdown:hover > .dropdown-menu,
.trademarks-header-actions > .dropdown:hover > .dropdown-menu,
.settings-header-actions > .dropdown:hover > .dropdown-menu,
.module-header-actions > .dropdown:hover > .dropdown-menu,
.license-detail-header-actions > .dropdown:hover > .dropdown-menu,
.approves-detail-header-actions > .dropdown:hover > .dropdown-menu,
.v3-header-actions > .dropdown:hover > .btn + .dropdown-menu,
.tests-header-actions > .dropdown:hover > .btn + .dropdown-menu,
.check-header-actions > .dropdown:hover > .btn + .dropdown-menu,
.deepscan-header-actions > .dropdown:hover > .btn + .dropdown-menu,
.messages-header-actions > .dropdown:hover > .btn + .dropdown-menu,
.projects-header-actions > .dropdown:hover > .btn + .dropdown-menu,
.modules-header-actions > .dropdown:hover > .btn + .dropdown-menu,
.reports-header-actions > .dropdown:hover > .btn + .dropdown-menu,
.csaf-header-actions > .dropdown:hover > .btn + .dropdown-menu,
.threat-modelling-header-actions > .dropdown:hover > .btn + .dropdown-menu,
.releases-header-actions > .dropdown:hover > .btn + .dropdown-menu,
.approves-header-actions > .dropdown:hover > .btn + .dropdown-menu,
.risks-header-actions > .dropdown:hover > .btn + .dropdown-menu,
.vulnerability-activity-header-actions > .dropdown:hover > .btn + .dropdown-menu,
.components-header-actions > .dropdown:hover > .btn + .dropdown-menu,
.vulnerability-lake-header-actions > .dropdown:hover > .btn + .dropdown-menu,
.infrastructure-header-actions > .dropdown:hover > .btn + .dropdown-menu,
.cots-header-actions > .dropdown:hover > .btn + .dropdown-menu,
.licenses-header-actions > .dropdown:hover > .btn + .dropdown-menu,
.algorithms-header-actions > .dropdown:hover > .btn + .dropdown-menu,
.policy-header-actions > .dropdown:hover > .btn + .dropdown-menu,
.copyright-header-actions > .dropdown:hover > .btn + .dropdown-menu,
.logs-header-actions > .dropdown:hover > .btn + .dropdown-menu,
.logins-header-actions > .dropdown:hover > .btn + .dropdown-menu,
.legal-header-actions > .dropdown:hover > .btn + .dropdown-menu,
.legal-templates-header-actions > .dropdown:hover > .btn + .dropdown-menu,
.trademarks-header-actions > .dropdown:hover > .btn + .dropdown-menu,
.settings-header-actions > .dropdown:hover > .btn + .dropdown-menu,
.module-header-actions > .dropdown:hover > .btn + .dropdown-menu,
.license-detail-header-actions > .dropdown:hover > .btn + .dropdown-menu,
.approves-detail-header-actions > .dropdown:hover > .btn + .dropdown-menu {
  display: block;
}
.v3-header-actions .btn-group .btn.btn-success.active,
.tests-header-actions .btn-group .btn.btn-success.active,
.check-header-actions .btn-group .btn.btn-success.active,
.deepscan-header-actions .btn-group .btn.btn-success.active,
.messages-header-actions .btn-group .btn.btn-success.active,
.projects-header-actions .btn-group .btn.btn-success.active,
.modules-header-actions .btn-group .btn.btn-success.active,
.reports-header-actions .btn-group .btn.btn-success.active,
.csaf-header-actions .btn-group .btn.btn-success.active,
.threat-modelling-header-actions .btn-group .btn.btn-success.active,
.releases-header-actions .btn-group .btn.btn-success.active,
.approves-header-actions .btn-group .btn.btn-success.active,
.risks-header-actions .btn-group .btn.btn-success.active,
.vulnerability-activity-header-actions .btn-group .btn.btn-success.active,
.components-header-actions .btn-group .btn.btn-success.active,
.vulnerability-lake-header-actions .btn-group .btn.btn-success.active,
.infrastructure-header-actions .btn-group .btn.btn-success.active,
.cots-header-actions .btn-group .btn.btn-success.active,
.licenses-header-actions .btn-group .btn.btn-success.active,
.algorithms-header-actions .btn-group .btn.btn-success.active,
.policy-header-actions .btn-group .btn.btn-success.active,
.copyright-header-actions .btn-group .btn.btn-success.active,
.logs-header-actions .btn-group .btn.btn-success.active,
.logins-header-actions .btn-group .btn.btn-success.active,
.legal-header-actions .btn-group .btn.btn-success.active,
.legal-templates-header-actions .btn-group .btn.btn-success.active,
.trademarks-header-actions .btn-group .btn.btn-success.active,
.settings-header-actions .btn-group .btn.btn-success.active,
.module-header-actions .btn-group .btn.btn-success.active,
.license-detail-header-actions .btn-group .btn.btn-success.active,
.approves-detail-header-actions .btn-group .btn.btn-success.active {
  background: #2a94a2;
  border-color: #2a94a2;
}
.v3-header-actions .btn-group .btn.btn-warning.active,
.tests-header-actions .btn-group .btn.btn-warning.active,
.check-header-actions .btn-group .btn.btn-warning.active,
.deepscan-header-actions .btn-group .btn.btn-warning.active,
.messages-header-actions .btn-group .btn.btn-warning.active,
.projects-header-actions .btn-group .btn.btn-warning.active,
.modules-header-actions .btn-group .btn.btn-warning.active,
.reports-header-actions .btn-group .btn.btn-warning.active,
.csaf-header-actions .btn-group .btn.btn-warning.active,
.threat-modelling-header-actions .btn-group .btn.btn-warning.active,
.releases-header-actions .btn-group .btn.btn-warning.active,
.approves-header-actions .btn-group .btn.btn-warning.active,
.risks-header-actions .btn-group .btn.btn-warning.active,
.vulnerability-activity-header-actions .btn-group .btn.btn-warning.active,
.components-header-actions .btn-group .btn.btn-warning.active,
.vulnerability-lake-header-actions .btn-group .btn.btn-warning.active,
.infrastructure-header-actions .btn-group .btn.btn-warning.active,
.cots-header-actions .btn-group .btn.btn-warning.active,
.licenses-header-actions .btn-group .btn.btn-warning.active,
.algorithms-header-actions .btn-group .btn.btn-warning.active,
.policy-header-actions .btn-group .btn.btn-warning.active,
.copyright-header-actions .btn-group .btn.btn-warning.active,
.logs-header-actions .btn-group .btn.btn-warning.active,
.logins-header-actions .btn-group .btn.btn-warning.active,
.legal-header-actions .btn-group .btn.btn-warning.active,
.legal-templates-header-actions .btn-group .btn.btn-warning.active,
.trademarks-header-actions .btn-group .btn.btn-warning.active,
.settings-header-actions .btn-group .btn.btn-warning.active,
.module-header-actions .btn-group .btn.btn-warning.active,
.license-detail-header-actions .btn-group .btn.btn-warning.active,
.approves-detail-header-actions .btn-group .btn.btn-warning.active {
  background: #feba49;
  border-color: #feba49;
}
.v3-header-actions .btn-group .btn.btn-danger.active,
.tests-header-actions .btn-group .btn.btn-danger.active,
.check-header-actions .btn-group .btn.btn-danger.active,
.deepscan-header-actions .btn-group .btn.btn-danger.active,
.messages-header-actions .btn-group .btn.btn-danger.active,
.projects-header-actions .btn-group .btn.btn-danger.active,
.modules-header-actions .btn-group .btn.btn-danger.active,
.reports-header-actions .btn-group .btn.btn-danger.active,
.csaf-header-actions .btn-group .btn.btn-danger.active,
.threat-modelling-header-actions .btn-group .btn.btn-danger.active,
.releases-header-actions .btn-group .btn.btn-danger.active,
.approves-header-actions .btn-group .btn.btn-danger.active,
.risks-header-actions .btn-group .btn.btn-danger.active,
.vulnerability-activity-header-actions .btn-group .btn.btn-danger.active,
.components-header-actions .btn-group .btn.btn-danger.active,
.vulnerability-lake-header-actions .btn-group .btn.btn-danger.active,
.infrastructure-header-actions .btn-group .btn.btn-danger.active,
.cots-header-actions .btn-group .btn.btn-danger.active,
.licenses-header-actions .btn-group .btn.btn-danger.active,
.algorithms-header-actions .btn-group .btn.btn-danger.active,
.policy-header-actions .btn-group .btn.btn-danger.active,
.copyright-header-actions .btn-group .btn.btn-danger.active,
.logs-header-actions .btn-group .btn.btn-danger.active,
.logins-header-actions .btn-group .btn.btn-danger.active,
.legal-header-actions .btn-group .btn.btn-danger.active,
.legal-templates-header-actions .btn-group .btn.btn-danger.active,
.trademarks-header-actions .btn-group .btn.btn-danger.active,
.settings-header-actions .btn-group .btn.btn-danger.active,
.module-header-actions .btn-group .btn.btn-danger.active,
.license-detail-header-actions .btn-group .btn.btn-danger.active,
.approves-detail-header-actions .btn-group .btn.btn-danger.active,
.v3-header-actions .btn-group .btn.btn-danger2.active,
.tests-header-actions .btn-group .btn.btn-danger2.active,
.check-header-actions .btn-group .btn.btn-danger2.active,
.deepscan-header-actions .btn-group .btn.btn-danger2.active,
.messages-header-actions .btn-group .btn.btn-danger2.active,
.projects-header-actions .btn-group .btn.btn-danger2.active,
.modules-header-actions .btn-group .btn.btn-danger2.active,
.reports-header-actions .btn-group .btn.btn-danger2.active,
.csaf-header-actions .btn-group .btn.btn-danger2.active,
.threat-modelling-header-actions .btn-group .btn.btn-danger2.active,
.releases-header-actions .btn-group .btn.btn-danger2.active,
.approves-header-actions .btn-group .btn.btn-danger2.active,
.risks-header-actions .btn-group .btn.btn-danger2.active,
.vulnerability-activity-header-actions .btn-group .btn.btn-danger2.active,
.components-header-actions .btn-group .btn.btn-danger2.active,
.vulnerability-lake-header-actions .btn-group .btn.btn-danger2.active,
.infrastructure-header-actions .btn-group .btn.btn-danger2.active,
.cots-header-actions .btn-group .btn.btn-danger2.active,
.licenses-header-actions .btn-group .btn.btn-danger2.active,
.algorithms-header-actions .btn-group .btn.btn-danger2.active,
.policy-header-actions .btn-group .btn.btn-danger2.active,
.copyright-header-actions .btn-group .btn.btn-danger2.active,
.logs-header-actions .btn-group .btn.btn-danger2.active,
.logins-header-actions .btn-group .btn.btn-danger2.active,
.legal-header-actions .btn-group .btn.btn-danger2.active,
.legal-templates-header-actions .btn-group .btn.btn-danger2.active,
.trademarks-header-actions .btn-group .btn.btn-danger2.active,
.settings-header-actions .btn-group .btn.btn-danger2.active,
.module-header-actions .btn-group .btn.btn-danger2.active,
.license-detail-header-actions .btn-group .btn.btn-danger2.active,
.approves-detail-header-actions .btn-group .btn.btn-danger2.active {
  background: #cf4747;
  border-color: #cf4747;
}
.v3-header-actions .btn-group .btn.btn-default.active,
.tests-header-actions .btn-group .btn.btn-default.active,
.check-header-actions .btn-group .btn.btn-default.active,
.deepscan-header-actions .btn-group .btn.btn-default.active,
.messages-header-actions .btn-group .btn.btn-default.active,
.projects-header-actions .btn-group .btn.btn-default.active,
.modules-header-actions .btn-group .btn.btn-default.active,
.reports-header-actions .btn-group .btn.btn-default.active,
.csaf-header-actions .btn-group .btn.btn-default.active,
.threat-modelling-header-actions .btn-group .btn.btn-default.active,
.releases-header-actions .btn-group .btn.btn-default.active,
.approves-header-actions .btn-group .btn.btn-default.active,
.risks-header-actions .btn-group .btn.btn-default.active,
.vulnerability-activity-header-actions .btn-group .btn.btn-default.active,
.components-header-actions .btn-group .btn.btn-default.active,
.vulnerability-lake-header-actions .btn-group .btn.btn-default.active,
.infrastructure-header-actions .btn-group .btn.btn-default.active,
.cots-header-actions .btn-group .btn.btn-default.active,
.licenses-header-actions .btn-group .btn.btn-default.active,
.algorithms-header-actions .btn-group .btn.btn-default.active,
.policy-header-actions .btn-group .btn.btn-default.active,
.copyright-header-actions .btn-group .btn.btn-default.active,
.logs-header-actions .btn-group .btn.btn-default.active,
.logins-header-actions .btn-group .btn.btn-default.active,
.legal-header-actions .btn-group .btn.btn-default.active,
.legal-templates-header-actions .btn-group .btn.btn-default.active,
.trademarks-header-actions .btn-group .btn.btn-default.active,
.settings-header-actions .btn-group .btn.btn-default.active,
.module-header-actions .btn-group .btn.btn-default.active,
.license-detail-header-actions .btn-group .btn.btn-default.active,
.approves-detail-header-actions .btn-group .btn.btn-default.active {
  background: rgba(255, 255, 255, 0.45);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}
.v3-header-actions > select.form-control,
.tests-header-actions > select.form-control,
.check-header-actions > select.form-control,
.deepscan-header-actions > select.form-control,
.messages-header-actions > select.form-control,
.projects-header-actions > select.form-control,
.modules-header-actions > select.form-control,
.reports-header-actions > select.form-control,
.csaf-header-actions > select.form-control,
.threat-modelling-header-actions > select.form-control,
.releases-header-actions > select.form-control,
.approves-header-actions > select.form-control,
.risks-header-actions > select.form-control,
.vulnerability-activity-header-actions > select.form-control,
.components-header-actions > select.form-control,
.vulnerability-lake-header-actions > select.form-control,
.infrastructure-header-actions > select.form-control,
.cots-header-actions > select.form-control,
.licenses-header-actions > select.form-control,
.algorithms-header-actions > select.form-control,
.policy-header-actions > select.form-control,
.copyright-header-actions > select.form-control,
.logs-header-actions > select.form-control,
.logins-header-actions > select.form-control,
.legal-header-actions > select.form-control,
.legal-templates-header-actions > select.form-control,
.trademarks-header-actions > select.form-control,
.settings-header-actions > select.form-control,
.module-header-actions > select.form-control,
.license-detail-header-actions > select.form-control,
.approves-detail-header-actions > select.form-control,
.v3-header-actions > .form-control,
.tests-header-actions > .form-control,
.check-header-actions > .form-control,
.deepscan-header-actions > .form-control,
.messages-header-actions > .form-control,
.projects-header-actions > .form-control,
.modules-header-actions > .form-control,
.reports-header-actions > .form-control,
.csaf-header-actions > .form-control,
.threat-modelling-header-actions > .form-control,
.releases-header-actions > .form-control,
.approves-header-actions > .form-control,
.risks-header-actions > .form-control,
.vulnerability-activity-header-actions > .form-control,
.components-header-actions > .form-control,
.vulnerability-lake-header-actions > .form-control,
.infrastructure-header-actions > .form-control,
.cots-header-actions > .form-control,
.licenses-header-actions > .form-control,
.algorithms-header-actions > .form-control,
.policy-header-actions > .form-control,
.copyright-header-actions > .form-control,
.logs-header-actions > .form-control,
.logins-header-actions > .form-control,
.legal-header-actions > .form-control,
.legal-templates-header-actions > .form-control,
.trademarks-header-actions > .form-control,
.settings-header-actions > .form-control,
.module-header-actions > .form-control,
.license-detail-header-actions > .form-control,
.approves-detail-header-actions > .form-control {
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 12px;
  padding: 5px 12px;
  min-height: auto;
  height: auto;
  width: auto;
  min-width: 220px;
  max-width: 300px;
  transition: all 0.15s ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
}
.v3-header-actions > select.form-control:focus,
.tests-header-actions > select.form-control:focus,
.check-header-actions > select.form-control:focus,
.deepscan-header-actions > select.form-control:focus,
.messages-header-actions > select.form-control:focus,
.projects-header-actions > select.form-control:focus,
.modules-header-actions > select.form-control:focus,
.reports-header-actions > select.form-control:focus,
.csaf-header-actions > select.form-control:focus,
.threat-modelling-header-actions > select.form-control:focus,
.releases-header-actions > select.form-control:focus,
.approves-header-actions > select.form-control:focus,
.risks-header-actions > select.form-control:focus,
.vulnerability-activity-header-actions > select.form-control:focus,
.components-header-actions > select.form-control:focus,
.vulnerability-lake-header-actions > select.form-control:focus,
.infrastructure-header-actions > select.form-control:focus,
.cots-header-actions > select.form-control:focus,
.licenses-header-actions > select.form-control:focus,
.algorithms-header-actions > select.form-control:focus,
.policy-header-actions > select.form-control:focus,
.copyright-header-actions > select.form-control:focus,
.logs-header-actions > select.form-control:focus,
.logins-header-actions > select.form-control:focus,
.legal-header-actions > select.form-control:focus,
.legal-templates-header-actions > select.form-control:focus,
.trademarks-header-actions > select.form-control:focus,
.settings-header-actions > select.form-control:focus,
.module-header-actions > select.form-control:focus,
.license-detail-header-actions > select.form-control:focus,
.approves-detail-header-actions > select.form-control:focus,
.v3-header-actions > .form-control:focus,
.tests-header-actions > .form-control:focus,
.check-header-actions > .form-control:focus,
.deepscan-header-actions > .form-control:focus,
.messages-header-actions > .form-control:focus,
.projects-header-actions > .form-control:focus,
.modules-header-actions > .form-control:focus,
.reports-header-actions > .form-control:focus,
.csaf-header-actions > .form-control:focus,
.threat-modelling-header-actions > .form-control:focus,
.releases-header-actions > .form-control:focus,
.approves-header-actions > .form-control:focus,
.risks-header-actions > .form-control:focus,
.vulnerability-activity-header-actions > .form-control:focus,
.components-header-actions > .form-control:focus,
.vulnerability-lake-header-actions > .form-control:focus,
.infrastructure-header-actions > .form-control:focus,
.cots-header-actions > .form-control:focus,
.licenses-header-actions > .form-control:focus,
.algorithms-header-actions > .form-control:focus,
.policy-header-actions > .form-control:focus,
.copyright-header-actions > .form-control:focus,
.logs-header-actions > .form-control:focus,
.logins-header-actions > .form-control:focus,
.legal-header-actions > .form-control:focus,
.legal-templates-header-actions > .form-control:focus,
.trademarks-header-actions > .form-control:focus,
.settings-header-actions > .form-control:focus,
.module-header-actions > .form-control:focus,
.license-detail-header-actions > .form-control:focus,
.approves-detail-header-actions > .form-control:focus {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  box-shadow: none;
}
.v3-header-actions > select.form-control option,
.tests-header-actions > select.form-control option,
.check-header-actions > select.form-control option,
.deepscan-header-actions > select.form-control option,
.messages-header-actions > select.form-control option,
.projects-header-actions > select.form-control option,
.modules-header-actions > select.form-control option,
.reports-header-actions > select.form-control option,
.csaf-header-actions > select.form-control option,
.threat-modelling-header-actions > select.form-control option,
.releases-header-actions > select.form-control option,
.approves-header-actions > select.form-control option,
.risks-header-actions > select.form-control option,
.vulnerability-activity-header-actions > select.form-control option,
.components-header-actions > select.form-control option,
.vulnerability-lake-header-actions > select.form-control option,
.infrastructure-header-actions > select.form-control option,
.cots-header-actions > select.form-control option,
.licenses-header-actions > select.form-control option,
.algorithms-header-actions > select.form-control option,
.policy-header-actions > select.form-control option,
.copyright-header-actions > select.form-control option,
.logs-header-actions > select.form-control option,
.logins-header-actions > select.form-control option,
.legal-header-actions > select.form-control option,
.legal-templates-header-actions > select.form-control option,
.trademarks-header-actions > select.form-control option,
.settings-header-actions > select.form-control option,
.module-header-actions > select.form-control option,
.license-detail-header-actions > select.form-control option,
.approves-detail-header-actions > select.form-control option,
.v3-header-actions > .form-control option,
.tests-header-actions > .form-control option,
.check-header-actions > .form-control option,
.deepscan-header-actions > .form-control option,
.messages-header-actions > .form-control option,
.projects-header-actions > .form-control option,
.modules-header-actions > .form-control option,
.reports-header-actions > .form-control option,
.csaf-header-actions > .form-control option,
.threat-modelling-header-actions > .form-control option,
.releases-header-actions > .form-control option,
.approves-header-actions > .form-control option,
.risks-header-actions > .form-control option,
.vulnerability-activity-header-actions > .form-control option,
.components-header-actions > .form-control option,
.vulnerability-lake-header-actions > .form-control option,
.infrastructure-header-actions > .form-control option,
.cots-header-actions > .form-control option,
.licenses-header-actions > .form-control option,
.algorithms-header-actions > .form-control option,
.policy-header-actions > .form-control option,
.copyright-header-actions > .form-control option,
.logs-header-actions > .form-control option,
.logins-header-actions > .form-control option,
.legal-header-actions > .form-control option,
.legal-templates-header-actions > .form-control option,
.trademarks-header-actions > .form-control option,
.settings-header-actions > .form-control option,
.module-header-actions > .form-control option,
.license-detail-header-actions > .form-control option,
.approves-detail-header-actions > .form-control option,
.v3-header-actions > select.form-control optgroup,
.tests-header-actions > select.form-control optgroup,
.check-header-actions > select.form-control optgroup,
.deepscan-header-actions > select.form-control optgroup,
.messages-header-actions > select.form-control optgroup,
.projects-header-actions > select.form-control optgroup,
.modules-header-actions > select.form-control optgroup,
.reports-header-actions > select.form-control optgroup,
.csaf-header-actions > select.form-control optgroup,
.threat-modelling-header-actions > select.form-control optgroup,
.releases-header-actions > select.form-control optgroup,
.approves-header-actions > select.form-control optgroup,
.risks-header-actions > select.form-control optgroup,
.vulnerability-activity-header-actions > select.form-control optgroup,
.components-header-actions > select.form-control optgroup,
.vulnerability-lake-header-actions > select.form-control optgroup,
.infrastructure-header-actions > select.form-control optgroup,
.cots-header-actions > select.form-control optgroup,
.licenses-header-actions > select.form-control optgroup,
.algorithms-header-actions > select.form-control optgroup,
.policy-header-actions > select.form-control optgroup,
.copyright-header-actions > select.form-control optgroup,
.logs-header-actions > select.form-control optgroup,
.logins-header-actions > select.form-control optgroup,
.legal-header-actions > select.form-control optgroup,
.legal-templates-header-actions > select.form-control optgroup,
.trademarks-header-actions > select.form-control optgroup,
.settings-header-actions > select.form-control optgroup,
.module-header-actions > select.form-control optgroup,
.license-detail-header-actions > select.form-control optgroup,
.approves-detail-header-actions > select.form-control optgroup,
.v3-header-actions > .form-control optgroup,
.tests-header-actions > .form-control optgroup,
.check-header-actions > .form-control optgroup,
.deepscan-header-actions > .form-control optgroup,
.messages-header-actions > .form-control optgroup,
.projects-header-actions > .form-control optgroup,
.modules-header-actions > .form-control optgroup,
.reports-header-actions > .form-control optgroup,
.csaf-header-actions > .form-control optgroup,
.threat-modelling-header-actions > .form-control optgroup,
.releases-header-actions > .form-control optgroup,
.approves-header-actions > .form-control optgroup,
.risks-header-actions > .form-control optgroup,
.vulnerability-activity-header-actions > .form-control optgroup,
.components-header-actions > .form-control optgroup,
.vulnerability-lake-header-actions > .form-control optgroup,
.infrastructure-header-actions > .form-control optgroup,
.cots-header-actions > .form-control optgroup,
.licenses-header-actions > .form-control optgroup,
.algorithms-header-actions > .form-control optgroup,
.policy-header-actions > .form-control optgroup,
.copyright-header-actions > .form-control optgroup,
.logs-header-actions > .form-control optgroup,
.logins-header-actions > .form-control optgroup,
.legal-header-actions > .form-control optgroup,
.legal-templates-header-actions > .form-control optgroup,
.trademarks-header-actions > .form-control optgroup,
.settings-header-actions > .form-control optgroup,
.module-header-actions > .form-control optgroup,
.license-detail-header-actions > .form-control optgroup,
.approves-detail-header-actions > .form-control optgroup {
  color: #333;
  background: #fff;
}
.v3-header-actions .select2-container,
.tests-header-actions .select2-container,
.check-header-actions .select2-container,
.deepscan-header-actions .select2-container,
.messages-header-actions .select2-container,
.projects-header-actions .select2-container,
.modules-header-actions .select2-container,
.reports-header-actions .select2-container,
.csaf-header-actions .select2-container,
.threat-modelling-header-actions .select2-container,
.releases-header-actions .select2-container,
.approves-header-actions .select2-container,
.risks-header-actions .select2-container,
.vulnerability-activity-header-actions .select2-container,
.components-header-actions .select2-container,
.vulnerability-lake-header-actions .select2-container,
.infrastructure-header-actions .select2-container,
.cots-header-actions .select2-container,
.licenses-header-actions .select2-container,
.algorithms-header-actions .select2-container,
.policy-header-actions .select2-container,
.copyright-header-actions .select2-container,
.logs-header-actions .select2-container,
.logins-header-actions .select2-container,
.legal-header-actions .select2-container,
.legal-templates-header-actions .select2-container,
.trademarks-header-actions .select2-container,
.settings-header-actions .select2-container,
.module-header-actions .select2-container,
.license-detail-header-actions .select2-container,
.approves-detail-header-actions .select2-container {
  width: 250px !important;
  min-width: 220px;
}
.v3-header-actions .select2-container .select2-choice,
.tests-header-actions .select2-container .select2-choice,
.check-header-actions .select2-container .select2-choice,
.deepscan-header-actions .select2-container .select2-choice,
.messages-header-actions .select2-container .select2-choice,
.projects-header-actions .select2-container .select2-choice,
.modules-header-actions .select2-container .select2-choice,
.reports-header-actions .select2-container .select2-choice,
.csaf-header-actions .select2-container .select2-choice,
.threat-modelling-header-actions .select2-container .select2-choice,
.releases-header-actions .select2-container .select2-choice,
.approves-header-actions .select2-container .select2-choice,
.risks-header-actions .select2-container .select2-choice,
.vulnerability-activity-header-actions .select2-container .select2-choice,
.components-header-actions .select2-container .select2-choice,
.vulnerability-lake-header-actions .select2-container .select2-choice,
.infrastructure-header-actions .select2-container .select2-choice,
.cots-header-actions .select2-container .select2-choice,
.licenses-header-actions .select2-container .select2-choice,
.algorithms-header-actions .select2-container .select2-choice,
.policy-header-actions .select2-container .select2-choice,
.copyright-header-actions .select2-container .select2-choice,
.logs-header-actions .select2-container .select2-choice,
.logins-header-actions .select2-container .select2-choice,
.legal-header-actions .select2-container .select2-choice,
.legal-templates-header-actions .select2-container .select2-choice,
.trademarks-header-actions .select2-container .select2-choice,
.settings-header-actions .select2-container .select2-choice,
.module-header-actions .select2-container .select2-choice,
.license-detail-header-actions .select2-container .select2-choice,
.approves-detail-header-actions .select2-container .select2-choice {
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 12px;
  padding: 3px 12px;
  height: auto;
  line-height: 1.6;
}
.v3-header-actions .select2-container .select2-choice .select2-chosen,
.tests-header-actions .select2-container .select2-choice .select2-chosen,
.check-header-actions .select2-container .select2-choice .select2-chosen,
.deepscan-header-actions .select2-container .select2-choice .select2-chosen,
.messages-header-actions .select2-container .select2-choice .select2-chosen,
.projects-header-actions .select2-container .select2-choice .select2-chosen,
.modules-header-actions .select2-container .select2-choice .select2-chosen,
.reports-header-actions .select2-container .select2-choice .select2-chosen,
.csaf-header-actions .select2-container .select2-choice .select2-chosen,
.threat-modelling-header-actions .select2-container .select2-choice .select2-chosen,
.releases-header-actions .select2-container .select2-choice .select2-chosen,
.approves-header-actions .select2-container .select2-choice .select2-chosen,
.risks-header-actions .select2-container .select2-choice .select2-chosen,
.vulnerability-activity-header-actions .select2-container .select2-choice .select2-chosen,
.components-header-actions .select2-container .select2-choice .select2-chosen,
.vulnerability-lake-header-actions .select2-container .select2-choice .select2-chosen,
.infrastructure-header-actions .select2-container .select2-choice .select2-chosen,
.cots-header-actions .select2-container .select2-choice .select2-chosen,
.licenses-header-actions .select2-container .select2-choice .select2-chosen,
.algorithms-header-actions .select2-container .select2-choice .select2-chosen,
.policy-header-actions .select2-container .select2-choice .select2-chosen,
.copyright-header-actions .select2-container .select2-choice .select2-chosen,
.logs-header-actions .select2-container .select2-choice .select2-chosen,
.logins-header-actions .select2-container .select2-choice .select2-chosen,
.legal-header-actions .select2-container .select2-choice .select2-chosen,
.legal-templates-header-actions .select2-container .select2-choice .select2-chosen,
.trademarks-header-actions .select2-container .select2-choice .select2-chosen,
.settings-header-actions .select2-container .select2-choice .select2-chosen,
.module-header-actions .select2-container .select2-choice .select2-chosen,
.license-detail-header-actions .select2-container .select2-choice .select2-chosen,
.approves-detail-header-actions .select2-container .select2-choice .select2-chosen {
  color: #fff;
}
.v3-header-actions .select2-container .select2-choice .select2-arrow,
.tests-header-actions .select2-container .select2-choice .select2-arrow,
.check-header-actions .select2-container .select2-choice .select2-arrow,
.deepscan-header-actions .select2-container .select2-choice .select2-arrow,
.messages-header-actions .select2-container .select2-choice .select2-arrow,
.projects-header-actions .select2-container .select2-choice .select2-arrow,
.modules-header-actions .select2-container .select2-choice .select2-arrow,
.reports-header-actions .select2-container .select2-choice .select2-arrow,
.csaf-header-actions .select2-container .select2-choice .select2-arrow,
.threat-modelling-header-actions .select2-container .select2-choice .select2-arrow,
.releases-header-actions .select2-container .select2-choice .select2-arrow,
.approves-header-actions .select2-container .select2-choice .select2-arrow,
.risks-header-actions .select2-container .select2-choice .select2-arrow,
.vulnerability-activity-header-actions .select2-container .select2-choice .select2-arrow,
.components-header-actions .select2-container .select2-choice .select2-arrow,
.vulnerability-lake-header-actions .select2-container .select2-choice .select2-arrow,
.infrastructure-header-actions .select2-container .select2-choice .select2-arrow,
.cots-header-actions .select2-container .select2-choice .select2-arrow,
.licenses-header-actions .select2-container .select2-choice .select2-arrow,
.algorithms-header-actions .select2-container .select2-choice .select2-arrow,
.policy-header-actions .select2-container .select2-choice .select2-arrow,
.copyright-header-actions .select2-container .select2-choice .select2-arrow,
.logs-header-actions .select2-container .select2-choice .select2-arrow,
.logins-header-actions .select2-container .select2-choice .select2-arrow,
.legal-header-actions .select2-container .select2-choice .select2-arrow,
.legal-templates-header-actions .select2-container .select2-choice .select2-arrow,
.trademarks-header-actions .select2-container .select2-choice .select2-arrow,
.settings-header-actions .select2-container .select2-choice .select2-arrow,
.module-header-actions .select2-container .select2-choice .select2-arrow,
.license-detail-header-actions .select2-container .select2-choice .select2-arrow,
.approves-detail-header-actions .select2-container .select2-choice .select2-arrow {
  background: transparent;
  border-left: none;
}
.v3-header-actions .select2-container .select2-choice .select2-arrow b,
.tests-header-actions .select2-container .select2-choice .select2-arrow b,
.check-header-actions .select2-container .select2-choice .select2-arrow b,
.deepscan-header-actions .select2-container .select2-choice .select2-arrow b,
.messages-header-actions .select2-container .select2-choice .select2-arrow b,
.projects-header-actions .select2-container .select2-choice .select2-arrow b,
.modules-header-actions .select2-container .select2-choice .select2-arrow b,
.reports-header-actions .select2-container .select2-choice .select2-arrow b,
.csaf-header-actions .select2-container .select2-choice .select2-arrow b,
.threat-modelling-header-actions .select2-container .select2-choice .select2-arrow b,
.releases-header-actions .select2-container .select2-choice .select2-arrow b,
.approves-header-actions .select2-container .select2-choice .select2-arrow b,
.risks-header-actions .select2-container .select2-choice .select2-arrow b,
.vulnerability-activity-header-actions .select2-container .select2-choice .select2-arrow b,
.components-header-actions .select2-container .select2-choice .select2-arrow b,
.vulnerability-lake-header-actions .select2-container .select2-choice .select2-arrow b,
.infrastructure-header-actions .select2-container .select2-choice .select2-arrow b,
.cots-header-actions .select2-container .select2-choice .select2-arrow b,
.licenses-header-actions .select2-container .select2-choice .select2-arrow b,
.algorithms-header-actions .select2-container .select2-choice .select2-arrow b,
.policy-header-actions .select2-container .select2-choice .select2-arrow b,
.copyright-header-actions .select2-container .select2-choice .select2-arrow b,
.logs-header-actions .select2-container .select2-choice .select2-arrow b,
.logins-header-actions .select2-container .select2-choice .select2-arrow b,
.legal-header-actions .select2-container .select2-choice .select2-arrow b,
.legal-templates-header-actions .select2-container .select2-choice .select2-arrow b,
.trademarks-header-actions .select2-container .select2-choice .select2-arrow b,
.settings-header-actions .select2-container .select2-choice .select2-arrow b,
.module-header-actions .select2-container .select2-choice .select2-arrow b,
.license-detail-header-actions .select2-container .select2-choice .select2-arrow b,
.approves-detail-header-actions .select2-container .select2-choice .select2-arrow b {
  background-position: 0 3px;
  filter: brightness(0) invert(1);
}
.search-by-type .btn {
  min-width: 100px;
}
.search-by-type .filter-check {
  display: none;
  font-size: 10px;
  margin-right: 3px;
}
.search-by-type .btn.active .filter-check {
  display: inline;
}
.search-by-type .filter-icon {
  display: none;
  margin-right: 0;
}
@media (max-width: 1500px) {
  .search-by-type .btn {
    min-width: 36px;
  }
  .search-by-type .filter-label {
    display: none;
  }
  .search-by-type .filter-icon {
    display: inline;
  }
  .search-by-type .filter-check {
    display: none !important;
  }
}
.projects-panel .reactive-table tbody tr,
.modules-panel .reactive-table tbody tr {
  cursor: pointer;
}
.projects-panel .col-actions .btn,
.modules-panel .col-actions .btn {
  margin-top: -5px;
  margin-bottom: -5px;
}
.projects-panel,
.modules-panel {
  flex: 1 1 0%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  margin-bottom: 0!important;
}
.projects-panel > .panel-body,
.modules-panel > .panel-body {
  flex: 1 1 0%;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
.projects-panel > .panel-body > .deepscan-filter-bar,
.modules-panel > .panel-body > .deepscan-filter-bar {
  flex-shrink: 0;
  background: transparent;
  border-bottom: none;
  padding: 0 0 8px;
}
.projects-panel > .panel-body > .table-responsive,
.modules-panel > .panel-body > .table-responsive {
  flex: 1 1 0%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.projects-panel > .panel-body > .table-responsive > .clearfix,
.modules-panel > .panel-body > .table-responsive > .clearfix {
  flex-shrink: 0;
}
.projects-panel > .panel-body > .table-responsive > .reactive-table-body,
.modules-panel > .panel-body > .table-responsive > .reactive-table-body {
  flex: 1 1 0%;
  min-height: 0;
  overflow-y: auto;
}
.projects-panel > .panel-body > .table-responsive > .reactive-table-navigation,
.modules-panel > .panel-body > .table-responsive > .reactive-table-navigation {
  flex-shrink: 0;
}
.projects-panel > .panel-body > .modules,
.modules-panel > .panel-body > .modules {
  flex: 1 1 0%;
  min-height: 0;
  overflow-y: auto;
}
.version-dropdown {
  display: inline;
  position: static;
}
.version-dropdown .version-dropdown-toggle {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dashed currentColor;
  padding-bottom: 1px;
  cursor: pointer;
}
.version-dropdown .version-dropdown-toggle:hover,
.version-dropdown .version-dropdown-toggle:focus {
  text-decoration: none;
  opacity: 0.8;
}
.version-dropdown .version-dropdown-toggle .caret {
  margin-left: 3px;
}
.version-dropdown .dropdown-menu {
  min-width: 260px;
  max-height: 300px;
  overflow-y: auto;
}
.version-dropdown:hover > .dropdown-menu {
  display: block;
}
.projects-tags-filter .select2-container {
  flex: 1 1 0%;
  min-width: 0;
}
.projects-tags-filter .select2-container .select2-choice,
.projects-tags-filter .select2-container--default .select2-selection--multiple {
  font-size: 12px;
  min-height: 30px;
  border-radius: 4px !important;
  border-color: #ccc;
}
.projects-view-label {
  display: none;
  margin-left: 4px;
}
@media (min-width: 1500px) {
  .projects-view-label {
    display: inline;
  }
}
.ds-service-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: 10px;
  font-size: 11px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 10px;
  vertical-align: middle;
}
.ds-service-status .fa-circle {
  font-size: 7px;
}
.ds-service-status.ds-status-low {
  background: rgba(91, 192, 222, 0.2);
  color: #9bd8eb;
}
.ds-service-status.ds-status-medium {
  background: rgba(254, 186, 73, 0.2);
  color: #feba49;
}
.ds-service-status.ds-status-high {
  background: rgba(207, 71, 71, 0.2);
  color: #df8484;
}
.normalheader {
  background: #063d50;
  margin: 0;
  padding: 18px 40px;
  min-height: 44px;
  min-width: auto;
  position: sticky;
  top: 0;
  z-index: 10;
}
@media (max-width: 768px) {
  .normalheader {
    margin: -15px -15px 0 -15px;
    padding: 18px 25px;
  }
}
.normalheader h2,
.normalheader h2.font-light {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin: 4px 0 0;
  line-height: 1.4;
}
.normalheader small {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.3;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.normalheader .hpanel {
  margin-bottom: 0;
}
.normalheader .hpanel.top-full-panel > .panel-body {
  border: none;
  background: transparent;
  padding: 0;
}
.content > .row .hpanel > .panel-body {
  border: none;
}
.products-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.products-header-left {
  flex: 1;
  min-width: 0;
}
.products-header-actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 8px;
  margin-top: 4px;
}
.products-header-actions > .btn,
.products-header-actions > a.btn,
.products-header-actions > .dropdown > .btn {
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 12px;
  padding: 5px 12px;
  transition: all 0.15s ease;
}
.products-header-actions > .btn:hover,
.products-header-actions > a.btn:hover,
.products-header-actions > .dropdown > .btn:hover,
.products-header-actions > .btn:focus,
.products-header-actions > a.btn:focus,
.products-header-actions > .dropdown > .btn:focus {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}
.products-header-actions > .btn .fa,
.products-header-actions > a.btn .fa,
.products-header-actions > .dropdown > .btn .fa {
  margin-right: 3px;
}
.products-header-actions > .dropdown:hover > .dropdown-menu {
  display: block;
}
.products-stats-dropdown {
  padding: 15px;
  min-width: 200px;
}
.products-stats-dropdown .products-stats-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 0;
}
.products-stats-dropdown .products-stats-row .products-stats-value {
  font-size: 18px;
  font-weight: 600;
}
.products-stats-dropdown .products-stats-row .products-stats-label {
  font-size: 13px;
  color: #6b7280;
}
.product-panel-heading {
  border-bottom: 2px solid #2a94a2 !important;
}
.product-tree-panel,
.product-edit-panel {
  border: none;
  box-shadow: none;
}
.product-tree-panel > .panel-body {
  padding: 0;
}
.integrations-content .panel.panel-default {
  border: none;
  box-shadow: none;
}
@media (max-width: 1499px) {
  .product-tree-btn-label {
    display: none;
  }
}
.product-tree {
  margin: 0;
  padding: 0;
}
.product-tree .product-tree-item {
  cursor: pointer;
  border-left: 3px solid transparent;
  padding: 8px 12px;
  font-size: 13px;
  transition: all 0.15s ease;
}
.product-tree .product-tree-item:hover {
  background-color: rgba(42, 148, 162, 0.04);
  border-left-color: #2a94a2;
}
.product-tree .product-tree-item.active {
  background-color: rgba(42, 148, 162, 0.08) !important;
  color: #063d50 !important;
  border-left-color: #2a94a2;
  font-weight: 500;
}
.product-tree .product-tree-item.active:hover {
  background-color: rgba(42, 148, 162, 0.12) !important;
}
.product-tree .product-tree-item .fa-plus,
.product-tree .product-tree-item .fa-minus {
  color: #9ca3af;
  font-size: 11px;
  transition: color 0.15s ease;
}
.product-tree .product-tree-item:hover .fa-plus,
.product-tree .product-tree-item:hover .fa-minus {
  color: #2a94a2;
}
.product-tree .product-tree-item .label {
  background: #2a94a2;
  color: #fff;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 500;
  padding: 2px 8px;
}
.product-tree .product-tree-item .product-retired {
  text-decoration: line-through;
  background-color: rgba(255, 152, 0, 0.1);
  border-radius: 4px;
  padding: 2px 6px;
  margin: -2px -6px;
}
.product-tree .product-tree-item:nth-child(even):not(.active):not(:hover) {
  background-color: rgba(0, 0, 0, 0.015);
}
body.flex-fill-page .logs-content > .panel {
  border: none;
  box-shadow: none;
}
body.flex-fill-page .logs-content > .panel > .panel-body {
  padding: 20px;
}
body.flex-fill-page .content > .panel.panel-default {
  border: none;
  box-shadow: none;
}
body.flex-fill-page .content > .panel.panel-default > .panel-body {
  padding: 20px;
  overflow: hidden;
}
body.flex-fill-page .content > .panel.panel-default > .panel-body > .clearfix {
  flex-shrink: 0;
}
body.flex-fill-page .content > .panel.panel-default > .panel-body > .reactive-table-body {
  flex: 1 1 0%;
  min-height: 0;
  overflow-y: auto;
}
body.flex-fill-page .content > .panel.panel-default > .panel-body > .reactive-table-navigation {
  flex-shrink: 0;
}
.content > .panel.panel-default .reactive-table tbody tr {
  cursor: pointer;
}
.content > .panel.panel-default .reactive-table tbody tr:hover {
  background-color: rgba(42, 148, 162, 0.04);
}
.content > .panel.panel-default .reactive-table tbody tr .col-actions .btn {
  margin-top: -5px;
  margin-bottom: -5px;
}
.copyright-intro {
  display: flex;
  gap: 16px;
  padding: 16px 20px;
  margin-bottom: 15px;
  background: rgba(42, 148, 162, 0.06);
  border-left: 3px solid #2a94a2;
  border-radius: 4px;
  color: #555;
  font-size: 13px;
  line-height: 1.6;
}
.copyright-intro p {
  margin-bottom: 6px;
}
.copyright-intro-icon {
  flex-shrink: 0;
  font-size: 18px;
  color: #2a94a2;
  margin-top: 2px;
}
.trademarks-content .reactive-table tbody tr,
.legal-templates-content .reactive-table tbody tr,
.legal-management-content .reactive-table tbody tr {
  cursor: pointer;
}
.trademarks-content .reactive-table tbody tr:hover,
.legal-templates-content .reactive-table tbody tr:hover,
.legal-management-content .reactive-table tbody tr:hover {
  background-color: rgba(42, 148, 162, 0.04);
}
.trademarks-content .reactive-table tbody tr .col-actions .btn,
.legal-templates-content .reactive-table tbody tr .col-actions .btn,
.legal-management-content .reactive-table tbody tr .col-actions .btn {
  margin-top: -5px;
  margin-bottom: -5px;
}
body.flex-fill-page .critical-components-content > .panel,
body.flex-fill-page .legal-templates-content > .panel,
body.flex-fill-page .legal-management-content > .panel,
body.flex-fill-page .trademarks-content > .panel {
  border: none;
  box-shadow: none;
}
body.flex-fill-page .critical-components-content > .panel > .panel-body,
body.flex-fill-page .legal-templates-content > .panel > .panel-body,
body.flex-fill-page .legal-management-content > .panel > .panel-body,
body.flex-fill-page .trademarks-content > .panel > .panel-body {
  padding: 20px;
  overflow-y: auto;
}
.critical-components-content .reactive-table tbody tr {
  cursor: pointer;
}
.critical-components-content .reactive-table tbody tr:hover {
  background-color: rgba(42, 148, 162, 0.04);
}
/* Lists */
.list .list-item-container {
  float: left;
}
.list-item-container div:first-child {
  border-top: none;
}
.list .list-item .list-item-content p {
  margin-bottom: 3px;
  margin-top: 0;
}
.list .list-item-date {
  color: #AAAAAA;
  font-size: 10px;
  text-align: center;
}
.list .list-item {
  float: left;
  overflow-x: hidden;
  position: relative;
  width: 100%;
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px solid #e0e1e3;
}
.list .list-item-container-small {
  min-width: 80px;
  text-align: center;
}
.list .list-item .list-item-content .list-item-right {
  height: 100%;
  padding: 0 10px;
  position: absolute;
  right: 0;
  top: 0;
}
.list .list-item .list-item-content h1,
.list .list-item .list-item-content h2,
.list .list-item .list-item-content h3,
.list .list-item .list-item-content h4,
.list .list-item .list-item-content h5,
.list .list-item .list-item-content h6,
.list .list-item .list-item-content .list-item-title {
  font-size: 12px;
  font-weight: 600;
  line-height: 20px;
  margin: 0;
}
/* Panels */
.hpanel > .panel-heading {
  color: inherit;
  font-weight: 600;
  padding: 10px 4px;
  transition: all 0.3s;
  border: 1px solid transparent;
}
.hpanel > .panel-heading:has(.panel-tools) {
  border: none;
  border-bottom: 1px solid #2a94a2;
}
.hpanel > .panel-heading.no-top {
  padding-top: 0;
}
.hpanel .hbuilt.panel-heading {
  border-bottom: none;
}
.hpanel > .panel-footer {
  color: inherit;
  border: 1px solid #e0e1e3;
  border-top: none;
  font-size: 90%;
  background: #f7f9fa;
}
.hpanel.panel-collapse > .panel-heading,
.hpanel .hbuilt {
  background: #fff;
  border-color: #e0e1e3;
  border: 1px solid #e0e1e3;
  padding: 10px 10px;
  border-radius: 2px;
}
.hpanel .panel-body {
  background: #fff;
  border: none;
  box-shadow: none;
  border-radius: 2px;
  padding: 20px;
  position: relative;
}
.hpanel .panel-compact {
  background: #fff;
  border: 1px solid #e0e1e3;
  border-radius: 2px;
  padding: 5px;
  position: relative;
}
.panel-collapse .panel-body {
  border: none;
}
.hpanel {
  background-color: none;
  border: none;
  box-shadow: none;
  margin-bottom: 25px;
}
.panel-tools {
  display: inline-block;
  float: right;
  margin-top: 0;
  padding: 0;
  position: relative;
}
.hpanel .alert {
  margin-bottom: 0;
  border-radius: 0;
  border: 1px solid #e0e1e3;
}
.panel-tools a {
  margin-left: 5px;
  color: #13466f;
  cursor: pointer;
}
.hpanel.hgreen .panel-body {
  border-top: 2px solid #2a94a2;
}
.hpanel.hblue .panel-body {
  border-top: 2px solid #4381b8;
}
.hpanel.hyellow .panel-body {
  border-top: 2px solid #feba49;
}
.hpanel.hviolet .panel-body {
  border-top: 2px solid #4a8090;
}
.hpanel.horange .panel-body {
  border-top: 2px solid #f35f34;
}
.hpanel.hred .panel-body {
  border-top: 2px solid #f14646;
}
.hpanel.hreddeep .panel-body {
  border-top: 2px solid #cf4747;
}
.hpanel.hnavyblue .panel-body {
  border-top: 2px solid #063d50;
}
.hpanel.hbggreen .panel-body {
  background: #2a94a2;
  color: #fff;
  border: none;
}
.hpanel.hbgblue .panel-body {
  background: #4381b8;
  color: #fff;
  border: none;
}
.hpanel.hbgyellow .panel-body {
  background: #feba49;
  color: #fff;
  border: none;
}
.hpanel.hbgviolet .panel-body {
  background: #4a8090;
  color: #fff;
  border: none;
}
.hpanel.hbgorange .panel-body {
  background: #f35f34;
  color: #fff;
  border: none;
}
.hpanel.hbgred .panel-body {
  background: #f14646;
  color: #fff;
  border: none;
}
.hpanel.hbgreddeep .panel-body {
  background: #cf4747;
  color: #fff;
  border: none;
}
.hpanel.hbgnavyblue .panel-body {
  background: #063d50;
  color: #fff;
  border: none;
}
.panel-group .panel-heading {
  background-color: #f7f9fa;
}
.small-header .hpanel {
  margin-bottom: 0;
}
.small-header {
  padding: 0 !important;
}
.small-header .panel-body {
  padding: 15px 25px;
  border-right: none;
  border-left: none;
  border-top: none;
  border-radius: 0;
}
.panel-body h5,
.panel-body h4 {
  font-weight: 600;
}
.small-header .panel-body h2 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 0 0;
}
.small-header .panel-body small {
  color: #0b2a44;
}
.hbreadcrumb {
  padding: 2px 0px;
  margin-top: 6px;
  margin-bottom: 0px;
  list-style: none;
  background-color: #fff;
  border-radius: #fff;
  font-size: 11px;
}
.hbreadcrumb > li {
  display: inline-block;
}
.hbreadcrumb > li + li:before {
  padding: 0 5px;
  color: #063d50;
}
.hbreadcrumb > .active {
  color: #13466f;
}
.wrapper {
  padding: 10px 20px;
}
.nav-tabs > li > a {
  border: none;
  border-bottom: 2px solid transparent;
  color: #6b7280;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 16px;
  margin-right: 0;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  border: none;
  border-bottom: 2px solid #2a94a2;
  color: #2a94a2;
  background: transparent;
}
.nav-tabs > li > a:hover,
.nav-tabs > li > a:focus {
  border: none;
  border-bottom: 2px solid rgba(42, 148, 162, 0.4);
  color: #2a94a2;
  background: transparent;
}
.nav-tabs {
  border-bottom: 1px solid #e0e1e3;
}
.tab-pane .panel-body {
  border-top: none;
}
.tabs-left .tab-pane .panel-body,
.tabs-right .tab-pane .panel-body {
  border-top: 1px solid #e0e1e3;
}
.tabs-below > .nav-tabs,
.tabs-right > .nav-tabs,
.tabs-left > .nav-tabs {
  border-bottom: 0;
}
.tabs-left .panel-body {
  position: static;
}
.tabs-left > .nav-tabs,
.tabs-right > .nav-tabs {
  width: 20%;
}
.tabs-left .panel-body {
  width: 80%;
  margin-left: 20%;
}
.tabs-right .panel-body {
  width: 80%;
  margin-right: 20%;
}
.tab-content > .tab-pane,
.pill-content > .pill-pane {
  display: none;
}
.tab-content > .active,
.pill-content > .active {
  display: block;
}
.tabs-below > .nav-tabs {
  border-top: 1px solid #e0e1e3;
}
.tabs-below > .nav-tabs > li {
  margin-top: -1px;
  margin-bottom: 0;
}
.tabs-below > .nav-tabs > li > a {
  border-radius: 0 0 4px 4px;
}
.tabs-below > .nav-tabs > li > a:hover,
.tabs-below > .nav-tabs > li > a:focus {
  border-top-color: #e0e1e3;
  border-bottom-color: transparent;
}
.tabs-left > .nav-tabs > li,
.tabs-right > .nav-tabs > li {
  float: none;
}
.tabs-left > .nav-tabs > li > a,
.tabs-right > .nav-tabs > li > a {
  min-width: 74px;
  margin-right: 0;
  margin-bottom: 3px;
}
.tabs-left > .nav-tabs {
  float: left;
  margin-right: 19px;
}
.tabs-left > .nav-tabs > li > a {
  margin-right: -1px;
  border-radius: 4px 0 0 4px;
}
.tabs-left > .nav-tabs .active > a,
.tabs-left > .nav-tabs .active > a:hover,
.tabs-left > .nav-tabs .active > a:focus {
  border-color: #e0e1e3 transparent #e0e1e3 #e0e1e3;
  *border-right-color: #ffffff;
}
.tabs-right > .nav-tabs {
  float: right;
  margin-left: 19px;
}
.tabs-right > .nav-tabs > li > a {
  margin-left: -1px;
  border-radius: 0 4px 4px 0;
}
.tabs-right > .nav-tabs > li > a:hover,
.tabs-right > .nav-tabs > li > a:focus {
  border-color: #eeeeee #eeeeee #eeeeee #dddddd;
}
.tabs-right > .nav-tabs .active > a,
.tabs-right > .nav-tabs .active > a:hover,
.tabs-right > .nav-tabs .active > a:focus {
  border-color: #e0e1e3 #e0e1e3 #e0e1e3 transparent;
  *border-left-color: #ffffff;
  z-index: 1;
}
.nav-tabs-scrollable {
  position: relative;
}
.nav-tabs-scrollable > .nav-tabs {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.nav-tabs-scrollable > .nav-tabs::-webkit-scrollbar {
  display: none;
}
.nav-tabs-scrollable > .nav-tabs > li {
  flex: 0 0 auto;
  white-space: nowrap;
}
.nav-tabs-scrollable::before,
.nav-tabs-scrollable::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 1;
}
.nav-tabs-scrollable::before {
  left: 0;
  background: linear-gradient(to right, #fff 0%, transparent 100%);
}
.nav-tabs-scrollable::after {
  right: 0;
  background: linear-gradient(to left, #fff 0%, transparent 100%);
}
.nav-tabs-scrollable.can-scroll-left::before {
  opacity: 1;
}
.nav-tabs-scrollable.can-scroll-right::after {
  opacity: 1;
}
.nav-tabs-scrollable .nav-tabs-arrow {
  position: absolute;
  top: 0;
  bottom: 1px;
  width: 28px;
  z-index: 2;
  background: #fff;
  border: 1px solid #e0e1e3;
  border-bottom: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #888;
  font-size: 12px;
}
.nav-tabs-scrollable .nav-tabs-arrow:hover {
  color: #333;
  background: #f5f5f5;
}
.nav-tabs-scrollable .nav-tabs-arrow-left {
  left: 0;
  border-radius: 4px 0 0 0;
}
.nav-tabs-scrollable .nav-tabs-arrow-right {
  right: 0;
  border-radius: 0 4px 0 0;
}
.nav-tabs-scrollable.can-scroll-left .nav-tabs-arrow-left,
.nav-tabs-scrollable.can-scroll-right .nav-tabs-arrow-right {
  display: flex;
}
.nav-tabs-scrollable.can-scroll-left > .nav-tabs {
  padding-left: 28px;
}
.nav-tabs-scrollable.can-scroll-right > .nav-tabs {
  padding-right: 28px;
}
.nav-tabs-scrollable.can-scroll-left::before {
  left: 28px;
}
.tooltip-inner {
  background-color: #063d50;
}
.tooltip.top .tooltip-arrow {
  border-top-color: #063d50;
}
.tooltip.right .tooltip-arrow {
  border-right-color: #063d50;
}
.tooltip.bottom .tooltip-arrow {
  border-bottom-color: #063d50;
}
.tooltip.left .tooltip-arrow {
  border-left-color: #063d50;
}
/* Slider */
#logo {
  float: left;
  width: 203px;
  background-color: #063d50;
  padding: 18px 10px 18px 18px;
  height: 56px;
  text-align: center;
}
#logo span {
  font-weight: 600;
  color: #fff;
  font-size: 14px;
}
#logo.light-version {
  background-color: #fff;
  text-align: left;
}
#logo.light-version span {
  font-weight: 600;
  color: #063d50;
  font-size: 14px;
}
.stats-box div {
  display: inline-block;
  vertical-align: middle;
}
.stats-label {
  line-height: 1.2;
}
.stats-label small {
  font-size: 80%;
  line-height: 1;
}
.stats-box-value {
  background: #ffffff;
}
.stats-box-detail {
  background: #063d50;
  color: #fff;
  position: relative;
}
/* Labels */
.label-menu-corner .label {
  font-size: 10px;
  line-height: 12px;
  padding: 2px 5px;
  position: absolute;
  right: 18px;
  top: 12px;
}
/* Menu */
#side-menu {
  background: #fff;
}
#side-menu li a {
  color: #040f18;
  text-transform: uppercase;
  font-weight: 600;
  padding: 15px 20px;
}
#side-menu li {
  border: none;
}
#side-menu li:first-child {
  border: none;
}
#side-menu li.active a,
#side-menu li:hover a {
  color: #063d50;
}
#side-menu li .nav-second-level li a {
  padding: 10px 10px 10px 30px;
  color: #040f18;
  text-transform: none;
  font-weight: 500;
}
#side-menu li .nav-second-level li.active a {
  color: #063d50;
  background-color: #f7f9fa;
}
#side-menu.nav > li > a:hover,
#side-menu.nav > li > a:focus {
  background: #f8f8f8;
}
#side-menu li.active {
  background: #f8f8f8;
}
#navigation {
  height: 100%;
  min-height: 100%;
  overflow-y: auto;
}
.arrow {
  float: right;
}
.fa.arrow:before {
  content: "\f104";
}
.active > a > .fa.arrow:before {
  content: "\f107";
}
#top-navigation {
  height: 56px;
  position: relative;
  float: left;
}
.navbar-static-top {
  margin: 0 0 0 203px;
}
.navbar.navbar-static-top a,
.nav.navbar-nav li a {
  color: #13466f;
}
.header-link {
  padding: 18px 26px 17px 26px;
  font-size: 14px;
  float: left;
  background: #fff;
  cursor: pointer;
}
.header-link:hover {
  background: #f7f7f7;
}
.navbar-nav > li,
.navbar-nav > li > a {
  height: 56px;
}
.navbar-nav > li > a {
  padding: 15px 25px;
  font-size: 25px;
}
.navbar-nav > li:last-child > a {
  padding-right: 35px;
}
.navbar.navbar-static-top .hide-menu {
  color: #13466f;
}
.panel-title {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}
/* Box */
.box {
  padding: 40px;
}
.box-rb-border {
  border-right: 1px solid #e0e1e3;
  border-bottom: 1px solid #e0e1e3;
}
.box-b-border {
  border-bottom: 1px solid #e0e1e3;
}
.box-r-border {
  border-right: 1px solid #e0e1e3;
}
/* Height */
.h-100 {
  min-height: 100px;
}
.h-150 {
  min-height: 150px;
}
.h-200 {
  min-height: 200px;
}
.h-300 {
  min-height: 300px;
}
.h-400 {
  min-height: 400px;
}
.h-500 {
  min-height: 500px;
}
.h-600 {
  min-height: 600px;
}
/* Sidebar Hide */
body.hide-sidebar #menu {
  margin-left: -203px;
}
body.hide-sidebar #wrapper {
  margin-left: 0;
}
body.page-small #menu {
  margin-left: -203px;
}
body.page-small #wrapper {
  margin-left: 0;
}
body.page-small.show-sidebar #menu {
  margin-left: 0;
}
body.page-small.show-sidebar #wrapper {
  margin-left: 203px;
}
a {
  cursor: pointer;
  color: #063d50;
}
a:hover,
a:focus {
  color: #063d50;
  text-decoration: none;
}
.no-padding {
  padding: 0 !important;
}
.no-borders {
  border: none !important;
}
.no-margins {
  margin: 0 !important;
}
.no-background {
  background: transparent !important;
}
.navbar-form-custom {
  float: left;
  height: 52px;
  padding: 0;
  width: 200px;
}
.navbar-form-custom .form-control {
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
  border: medium none;
  font-size: 13px;
  height: 52px;
  margin: 0;
  z-index: 1060;
  padding: 0;
}
.form-control,
.form-control:focus,
.has-error .form-control:focus,
.has-success .form-control:focus,
.has-warning .form-control:focus,
.navbar-collapse,
.navbar-form,
.navbar-form-custom .form-control:focus,
.navbar-form-custom .form-control:hover,
.open .btn.dropdown-toggle,
.panel,
.popover,
.progress,
.progress-bar {
  box-shadow: none;
}
.progress-bar {
  transition: none;
}
.vertical-mid {
  display: table;
}
.vertical-mid * {
  display: table-cell;
  vertical-align: middle;
}
/* Header right area: user info + logo */
.navbar-right {
  display: flex;
  align-items: center;
  height: 56px;
  float: right;
  margin: 0;
  padding: 0 12px 0 0;
  gap: 12px;
}
.header-user-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  color: #040f18;
  text-decoration: none;
}
.header-user-link:hover,
.header-user-link:focus {
  color: #063d50;
  text-decoration: none;
}
.header-user-text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  max-width: 180px;
}
.header-user-icon {
  font-size: 28px;
  color: #2a94a2;
}
.header-user-name {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 180px;
}
.header-user-role {
  font-size: 10px;
  color: #999;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 180px;
}
.header-superuser-warning {
  display: flex;
  align-items: center;
  font-size: 22px;
  position: relative;
}
.header-superuser-warning:hover .navbar-attention {
  display: inline-block;
}
.small-logo {
  display: none;
  text-align: center;
  padding-top: 18px;
  font-size: 14px;
  font-weight: 800;
}
.img-small {
  width: 62px;
  height: 62px;
}
@media (max-width: 768px) {
  .navbar-form-custom,
  .navbar-right,
  #logo {
    display: none;
  }
  .navbar-static-top {
    margin: 0;
  }
  .small-logo {
    display: block;
    float: left;
  }
  .header-line div {
    display: none;
  }
  .color-demo .header-line {
    height: 48px;
  }
  #hbreadcrumb {
    float: none !important;
    margin-bottom: 10px;
    margin-top: 0;
  }
}
@media (max-width: 320px) {
  #wrapper {
    overflow: hidden;
  }
}
.splash {
  position: absolute;
  z-index: 2000;
  background: white;
  color: gray;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
/* Once app has loaded, keep splash hidden even if layout re-renders */
body.app-loaded #splash {
  display: none !important;
}
.splash-title {
  text-align: center;
  max-width: 500px;
  margin: 15% auto;
  padding: 20px;
}
.splash-title.splash-title-mini {
  text-align: center;
  margin: 5% auto;
  padding: 10px;
}
.splash-title h1 {
  font-size: 26px;
}
/* Checkbox styles */
.checkbox-primary input[type="checkbox"]:checked + label::before {
  background-color: #063d50;
  border-color: #063d50;
}
.checkbox-primary input[type="checkbox"]:checked + label::after {
  color: #fff;
}
.checkbox-danger input[type="checkbox"]:checked + label::before {
  background-color: #f14646;
  border-color: #f14646;
}
.checkbox-danger input[type="checkbox"]:checked + label::after {
  color: #fff;
}
.checkbox-info input[type="checkbox"]:checked + label::before {
  background-color: #4381b8;
  border-color: #4381b8;
}
.checkbox-info input[type="checkbox"]:checked + label::after {
  color: #fff;
}
.checkbox-warning input[type="checkbox"]:checked + label::before {
  background-color: #feba49;
  border-color: #feba49;
}
.checkbox-warning input[type="checkbox"]:checked + label::after {
  color: #fff;
}
.checkbox-success input[type="checkbox"]:checked + label::before {
  background-color: #2a94a2;
  border-color: #2a94a2;
}
.checkbox-success input[type="checkbox"]:checked + label::after {
  color: #fff;
}
.radio-primary input[type="radio"] + label::after {
  background-color: #063d50;
}
.radio-primary input[type="radio"]:checked + label::before {
  border-color: #063d50;
}
.radio-primary input[type="radio"]:checked + label::after {
  background-color: #063d50;
}
.radio-danger input[type="radio"] + label::after {
  background-color: #f14646;
}
.radio-danger input[type="radio"]:checked + label::before {
  border-color: #f14646;
}
.radio-danger input[type="radio"]:checked + label::after {
  background-color: #f14646;
}
.radio-info input[type="radio"] + label::after {
  background-color: #4381b8;
}
.radio-info input[type="radio"]:checked + label::before {
  border-color: #4381b8;
}
.radio-info input[type="radio"]:checked + label::after {
  background-color: #4381b8;
}
.radio-warning input[type="radio"] + label::after {
  background-color: #feba49;
}
.radio-warning input[type="radio"]:checked + label::before {
  border-color: #feba49;
}
.radio-warning input[type="radio"]:checked + label::after {
  background-color: #feba49;
}
.radio-success input[type="radio"] + label::after {
  background-color: #2a94a2;
}
.radio-success input[type="radio"]:checked + label::before {
  border-color: #2a94a2;
}
.radio-success input[type="radio"]:checked + label::after {
  background-color: #2a94a2;
}
.checkbox input:hover,
.radio input:hover {
  cursor: pointer;
}
/* Validation */
.form-control.error {
  border-color: #f14646 !important;
}
label.error,
label span.error {
  color: #f14646;
  margin: 5px 0 0 0;
  font-weight: 400;
}
label span.error {
  margin-left: 5px;
}
label.error:before {
  content: "\f071";
  font-family: 'FontAwesome';
  margin: 0 4px;
}
/* Toastr custom styles*/
#toast-container.toast-bottom-center > div,
#toast-container.toast-top-center > div {
  margin: 10px auto 0;
}
#toast-container > .toast-info,
#toast-container > .toast-error,
#toast-container > .toast-warning,
#toast-container > .toast-success {
  background-image: none !important;
}
#toast-container > div {
  background: #fff;
  padding: 20px !important;
  color: #6a6c6f !important;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.2);
  opacity: 1;
}
#toast-container > div:hover {
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.2);
}
.toast-close-button {
  color: #000;
  opacity: 0.2;
}
.toast-info {
  background: #fff;
  border-left: 6px solid #3498db;
}
.toast-success {
  background: #fff;
  border-left: 6px solid #62cb31;
}
.toast-warning {
  background: #fff;
  border-left: 6px solid #ffb606;
}
.toast-error {
  background: #fff;
  border-left: 6px solid #e74c3c;
}
.toast-progress {
  opacity: 0.6;
}
.toast-info .toast-progress {
  background-color: #3498db;
}
.toast-success .toast-progress {
  background-color: #62cb31;
}
.toast-warning .toast-progress {
  background-color: #ffb606;
}
.toast-error .toast-progress {
  background-color: #e74c3c;
}
.select2-container.form-control {
  background: transparent;
  border: none;
  box-shadow: none;
  display: block;
  padding: 0;
  height: auto;
}
.select2-container--default .select2-selection--single {
  height: 38px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fff;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 38px;
  color: #555;
  padding-left: 12px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 38px;
}
.select2-container--default .select2-selection--multiple {
  min-height: 38px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fff;
  padding: 3px 8px;
}
.input-group-sm .select2-container--default .select2-selection--multiple {
  min-height: 30px;
}
.input-group-sm .select2-container--default .select2-selection--multiple .select2-selection__choice {
  margin-top: 3px;
  font-size: 12px;
}
.input-group-sm .select2-container--default .select2-selection--multiple .select2-search--inline .select2-search__field {
  margin-top: 3px;
}
.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default.select2-container--focus .select2-selection--multiple,
.select2-container--default.select2-container--open .select2-selection--single,
.select2-container--default.select2-container--open .select2-selection--multiple {
  border-color: #66afe9;
  outline: 0;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.select2-dropdown {
  border-color: #66afe9;
  border-radius: 4px;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #337ab7;
}
.select2-container--default .select2-results__option[aria-selected=true] {
  display: none;
}
/* Opacity */
.opacity-0 {
  opacity: 0;
}
.opacity-1 {
  opacity: 1;
}
/* Mixin */
.animated-panel {
  animation-duration: 0.5s;
  animation-fill-mode: both;
}
/* Color */
.h-bg-navy-blue {
  background: #063d50;
}
.h-bg-violet {
  background: #4a8090;
}
.h-bg-blue {
  background: #4381b8;
}
.h-bg-green {
  background: #2a94a2;
}
.h-bg-yellow {
  background: #feba49;
}
.h-bg-orange {
  background: #f35f34;
}
.h-bg-red {
  background: #f14646;
}
.h-bg-red-deep {
  background: #cf4747;
}
.text-primary {
  color: #063d50;
}
.text-primary-2 {
  color: #4a8090;
}
.text-info {
  color: #4381b8;
}
.text-success {
  color: #2a94a2;
}
.text-warning {
  color: #feba49;
}
.text-danger {
  color: #f14646;
}
.text-danger-i {
  color: #f14646 !important;
}
.text-white {
  color: #fff;
}
.border-top {
  border-top: 1px solid #e0e1e3;
}
.border-bottom {
  border-bottom: 1px solid #e0e1e3;
}
.border-right {
  border-right: 1px solid #e0e1e3;
}
.border-left {
  border-left: 1px solid #e0e1e3;
}
.jqstooltip {
  box-sizing: content-box;
}
/* Inputs */
.has-warning .form-control,
.has-error .form-control,
.has-success .form-control {
  box-shadow: none;
}
.has-error .form-control {
  border-color: #ed1717 !important;
}
.has-warning .form-control {
  border-color: #fea716 !important;
}
.has-success .form-control {
  border-color: #1f6f79 !important;
}
.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error.radio label,
.has-error.checkbox label,
.has-error.radio-inline label,
.has-error.checkbox-inline label {
  color: #ed1717;
}
.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline,
.has-warning.radio label,
.has-warning.checkbox label,
.has-warning.radio-inline label,
.has-warning.checkbox-inline label {
  color: #fea716;
}
.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline,
.has-success.radio label,
.has-success.checkbox label,
.has-success.radio-inline label,
.has-success.checkbox-inline label {
  color: #1f6f79;
}
/* Backgrounds */
.bg-white {
  background-color: #fff;
}
.bg-light {
  background-color: #f7f9fa;
}
/* Labels */
.label-success {
  background-color: #2a94a2;
  color: #FFFFFF !important;
}
/* LIST GROUP */
a.list-group-item.active,
a.list-group-item.active:hover,
a.list-group-item.active:focus {
  background-color: #063d50;
  border-color: #063d50;
  color: #FFFFFF !important;
}
.list-group-item-heading {
  margin-top: 10px;
}
.list-group-item-text {
  margin: 0 0 10px;
  color: inherit;
  line-height: inherit;
}
.border-none {
  border: none!important;
}
.list-group-item {
  background-color: inherit;
  border: 1px solid #e0e1e3;
  display: block;
  margin-bottom: -1px;
  padding: 10px 15px;
  position: relative;
}
.list-group-item.active {
  color: #FFFFFF;
}
.list-group-item.active .pointer:hover {
  color: #FFFFFF;
}
.no-padding .list-group-item {
  border-left: none;
  border-right: none;
  border-bottom: none;
}
.no-padding .list-group-item:first-child {
  border-left: none;
  border-right: none;
  border-bottom: none;
  border-top: none;
}
.no-padding .list-group {
  margin-bottom: 0;
}
.well {
  background: #f7f9fa;
  box-shadow: none;
}
/* Stats */
.stats h4,
h5,
h6 {
  margin: 5px 0;
}
.stats-title h4 {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
}
/* Widths */
.w-xs {
  min-width: 100px;
}
.w-sm {
  min-width: 120px;
}
.w-m {
  min-width: 140px;
}
.w-lg {
  min-width: 160px;
}
.w-xl {
  min-width: 180px;
}
.w-xxl {
  min-width: 200px;
}
/* Charts */
.flot-chart {
  display: block;
  height: 300px;
  position: relative;
}
.flot-chart-content {
  width: 100%;
  height: 100%;
}
.stats .flot-chart {
  height: 60px;
}
/* Messages */
.feed-activity-list .feed-element {
  border-bottom: 1px solid #E7EAEC;
}
.feed-element:first-child {
  margin-top: 0;
}
.feed-element {
  padding-bottom: 15px;
}
.feed-element,
.feed-element .media {
  margin-top: 15px;
}
.feed-element,
.media-body {
  overflow: hidden;
}
.feed-element > .pull-left {
  margin-right: 10px;
}
.feed-element img.img-circle,
.dropdown-messages-box img.img-circle {
  width: 38px;
  height: 38px;
}
.feed-element .well {
  border: 1px solid #E7EAEC;
  box-shadow: none;
  margin-top: 10px;
  margin-bottom: 5px;
  padding: 10px 20px;
  font-size: 11px;
  line-height: 16px;
}
.feed-element .actions {
  margin-top: 10px;
}
.feed-element .photos {
  margin: 10px 0;
}
.feed-photo {
  max-height: 180px;
  border-radius: 4px;
  overflow: hidden;
  margin-right: 10px;
  margin-bottom: 10px;
}
.feed-element img {
  filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
  /* Firefox 10+, Firefox on Android */
  filter: gray;
  /* IE6-9 */
  -webkit-filter: grayscale(100%);
  /* Chrome 19+, Safari 6+, Safari 6+ iOS */
}
.canvass {
  transition: width 0.01s, height 0.01s;
}
.module-list table tr td {
  border-top: none;
  border-bottom: 1px solid #e7eaec;
  padding: 10px 10px;
  vertical-align: middle;
}
.icons-box {
  padding: 20px;
}
.icons-box h3 {
  margin-top: 10px;
  margin-bottom: 10px;
}
.icons-box .infont {
  text-align: center;
  margin-bottom: 25px;
}
.icons-box .infont i {
  font-size: 35px;
  display: block;
  color: #676a6c;
}
.icons-box .infont span {
  color: #a6a8a9;
}
.icons-box .infont span {
  margin: 1px;
  display: block;
}
.fullpanel {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1070;
  overflow-x: scroll;
  transition: all 2s;
}
.transition {
  transition: all 0.5s;
}
.normalheader .hpanel {
  margin-bottom: 0;
}
.normalheader {
  min-width: 320px;
  padding: 15px 25px 0px 25px;
}
@media (max-width: 768px) {
  .normalheader {
    padding: 15px 15px 0px 15px;
  }
}
.normalheader h2 {
  margin-top: 0px;
}
.input-xs {
  height: 20px;
  padding: 2px 10px;
  font-size: 10px;
  line-height: 1.5;
  border-radius: 3px;
  font-weight: 500;
}
.clip-header i {
  display: inline-block;
  transform: rotate(45deg);
}
.clip-header {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 8px;
  background: #f7f9fa;
  padding: 4px 5px;
  border-left: 1px solid #e0e1e3;
  border-bottom: 1px solid #e0e1e3;
}
.dropdown-menu {
  font-size: 13px;
  border-radius: 3px;
}
.dropdown-example {
  display: inline-block;
  margin: 0px 10px 10px 10px;
}
.dropdown-example .dropdown-menu {
  position: static;
  display: block;
}
.pagination-example .pagination {
  margin: 0 0 10px 0;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  background-color: #4381b8;
  border-color: #3c74a5;
  color: #fff;
  cursor: default;
  z-index: 2;
}
.hbreadcrumb a.active {
  color: #9d9fa2;
}
.form-control {
  border-color: #e0e1e3 !important;
}
.input-group-addon {
  background: #fbfbfa;
  border-color: #e0e1e3 !important;
}
.sidebar-button {
  padding: 4px 10px 0 10px;
}
.sidebar-button i {
  font-size: 20px;
}
/* UI Sortable */
.ui-sortable .panel-body {
  cursor: move;
}
.ui-sortable-placeholder {
  border: 1px dashed #cecece !important;
  visibility: visible !important;
  background: #f7f9fa;
}
.ibox.ui-sortable-placeholder {
  margin: 0px 0px 23px !important;
}
/* Badge colors */
.badge.badge-success {
  background-color: #2a94a2;
}
.badge.badge-info {
  background-color: #4381b8;
}
.badge.badge-danger {
  background-color: #f14646;
}
.badge.badge-warning {
  background-color: #feba49;
}
.badge.badge-primary {
  background-color: #063d50;
}
/* Nestable list */
.dd {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  line-height: 20px;
}
.dd-list {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}
.dd-list .dd-list {
  padding-left: 30px;
}
.dd-collapsed .dd-list {
  display: none;
}
.dd-item,
.dd-empty,
.dd-placeholder {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  min-height: 20px;
  font-size: 13px;
  line-height: 20px;
}
.dd-handle {
  display: block;
  margin: 5px 0;
  padding: 5px 10px;
  color: #333;
  text-decoration: none;
  border: 1px solid #e4e5e7;
  background: #f7f9fa;
  border-radius: 3px;
  box-sizing: border-box;
}
.dd-handle span {
  font-weight: bold;
}
.dd-handle:hover {
  background: #f0f0f0;
  cursor: pointer;
  font-weight: bold;
}
.dd-item > button {
  display: block;
  position: relative;
  cursor: pointer;
  float: left;
  width: 25px;
  height: 20px;
  margin: 5px 0;
  padding: 0;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  border: 0;
  background: transparent;
  font-size: 12px;
  line-height: 1;
  text-align: center;
  font-weight: bold;
}
.dd-item > button:before {
  content: '+';
  display: block;
  position: absolute;
  width: 100%;
  text-align: center;
  text-indent: 0;
}
.dd-item > button[data-action="collapse"]:before {
  content: '-';
}
#nestable2 .dd-item > button {
  font-family: FontAwesome;
  height: 34px;
  width: 33px;
  color: #c1c1c1;
}
#nestable2 .dd-item > button:before {
  content: "\f067";
}
#nestable2 .dd-item > button[data-action="collapse"]:before {
  content: "\f068";
}
.dd-placeholder,
.dd-empty {
  margin: 5px 0;
  padding: 0;
  min-height: 30px;
  background: #f2fbff;
  border: 1px dashed #e4e5e7;
  box-sizing: border-box;
}
.dd-empty {
  border: 1px dashed #bbb;
  min-height: 100px;
  background-color: #e5e5e5;
  background-image: linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff), linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff);
  background-size: 60px 60px;
  background-position: 0 0, 30px 30px;
}
.dd-dragel {
  position: absolute;
  z-index: 9999;
  pointer-events: none;
}
.dd-dragel > .dd-item .dd-handle {
  margin-top: 0;
}
.dd-dragel .dd-handle {
  box-shadow: 2px 4px 6px 0 rgba(0, 0, 0, 0.1);
}
/**
* Nestable Extras
*/
.nestable-lists {
  display: block;
  clear: both;
  padding: 30px 0;
  width: 100%;
  border: 0;
  border-top: 2px solid #e4e5e7;
  border-bottom: 2px solid #e4e5e7;
}
#nestable-menu {
  padding: 0;
  margin: 10px 0 20px 0;
}
#nestable-output,
#nestable2-output {
  width: 100%;
  font-size: 0.75em;
  line-height: 1.333333em;
  font-family: open sans, lucida grande, lucida sans unicode, helvetica, arial, sans-serif;
  padding: 5px;
  box-sizing: border-box;
}
#nestable2 .dd-handle {
  color: inherit;
  border: 1px dashed #e4e5e7;
  background: #f7f9fa;
  padding: 10px;
}
#nestable2 .dd-handle:hover {
  /*background: #bbb;*/
}
#nestable2 span.label {
  margin-right: 10px;
}
#nestable-output,
#nestable2-output {
  font-size: 12px;
  padding: 25px;
  box-sizing: border-box;
}
/* Tables */
.table > thead > tr > th {
  border-bottom: none;
}
.no-padding table {
  margin-bottom: 0;
}
/* File manager */
.hpanel .panel-body.file-body {
  padding: 30px 0;
  text-align: center;
}
.file-body i.fa {
  font-size: 56px;
}
/* Filter search */
.filter-item {
  margin-bottom: 0;
}
.filter-item .panel-body {
  padding: 10px 20px;
  border-bottom: none;
}
.filter-item a {
  color: #040f18;
}
.filter-item:last-child {
  border-bottom: 1px solid #e0e1e3;
}
.filter-item:hover .panel-body,
.filter-item.active .panel-body {
  background: #fafcfd;
  z-index: 100;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.175);
}
.filter-item::selection .panel-body {
  background: #fafcfd;
}
.filter-item h4 {
  margin-bottom: 5px;
}
/* Big menu */
.hdropdown.bigmenu {
  padding: 30px 30px 0px 30px;
}
.bigmenu a i {
  font-size: 46px;
}
.bigmenu a {
  display: block;
  text-align: center;
  margin: 0 10px 30px 0;
  min-width: 100px;
}
.bigmenu h5 {
  font-size: 13px;
  margin-top: 10px;
}
.modules .module-label {
  font-weight: 600;
}
.modules .hpanel .panel-body {
  border-bottom: none;
}
.modules .hpanel:last-child .panel-body {
  border-bottom: 1px solid #e0e1e3;
}
.modules .hpanel:last-child .panel-body {
  border-bottom: 1px solid #e0e1e3;
}
.modules .hpanel h4 a {
  color: #040f18;
}
.modules .module-people img {
  width: 28px;
  height: 28px;
  margin-left: 2px;
  margin-bottom: 4px;
}
.modules .module-info {
  text-align: right;
}
@media (max-width: 768px) {
  .modules .module-info {
    text-align: left;
  }
}
.angular-ui-tree-handle {
  background: none repeat scroll 0 0 #f7f9fa;
  border: 1px dashed #e0e1e3;
  color: inherit;
  padding: 10px;
  font-weight: normal;
}
.angular-ui-tree-handle:hover {
  font-weight: bold;
  cursor: pointer;
}
.angular-ui-tree-placeholder {
  background: #f0f9ff;
  border: 1px dashed #e0e1e3;
  box-sizing: border-box;
}
.group-title {
  background-color: #687074 !important;
  color: #FFF !important;
}
.tree-node {
  background: none repeat scroll 0 0 #f7f9fa;
  border: 1px dashed #e0e1e3;
  color: inherit;
  padding: 10px;
  border-radius: 3px;
}
.tree-node .btn {
  min-width: 22px;
  margin-right: 4px;
}
.tree-node-content {
  margin: 5px 5px 5px 0;
}
.tree-handle {
  background: none repeat scroll 0 0 #f7f9fa;
  border: 1px dashed #e0e1e3;
  color: inherit;
  padding: 10px;
}
.angular-ui-tree-placeholder {
  background: #f0f9ff;
  border: 1px dashed #e0e1e3;
  box-sizing: border-box;
}
.tour-backdrop {
  opacity: 0.5;
}
.landing-page .navbar-form-custom,
.landing-page .navbar-right,
.landing-page #logo {
  display: block;
}
.landing-page .navbar-default {
  background: #fff;
}
.landing-page .navbar .navbar-brand {
  font-size: 12px;
  height: auto;
  margin-top: 8px;
  padding: 9px 15px;
  font-weight: 700;
  border-radius: 5px;
  color: #fff;
  display: block;
  background-color: #2a94a2;
  margin-left: 0;
}
.landing-page .navbar-default .navbar-toggle:hover,
.landing-page .navbar-default .navbar-toggle:focus {
  background: #2a94a2;
}
.landing-page .navbar-default .navbar-toggle:hover .icon-bar,
.landing-page .navbar-default .navbar-toggle:focus .icon-bar {
  background-color: #fff !important;
}
.landing-page .navbar-default .navbar-nav > .active > a,
.landing-page .navbar-default .navbar-nav > .active > a:hover,
.landing-page .navbar-default .navbar-nav > .active > a:focus {
  background-color: transparent;
  color: #2a94a2;
  border: none;
}
.landing-page .navbar-default li a:hover {
  border-bottom: none;
}
.landing-page .brand-desc {
  color: #455463;
  margin: 17px 10px 0 90px;
  width: 180px;
}
.landing-page .navbar-nav > li > a {
  font-size: 14px;
  font-weight: 600;
  padding: 15px 15px;
  color: #455463;
}
.landing-page .navbar-nav > li,
.landing-page .navbar-nav > li > a {
  height: 55px;
}
.landing-page header {
  background: url('../images/landing/header.jpg') 50% 0 no-repeat;
  height: 480px;
  padding-top: 50px;
  margin-bottom: 30px;
}
.landing-page section {
  padding: 50px 0 50px 0;
  border-bottom: 1px solid #e0e1e3;
}
.landing-page section h2 {
  margin-top: 0;
}
.landing-page section p {
  margin-top: 0px;
}
.landing-page header .container {
  position: relative;
}
.landing-page .heading {
  margin-top: 60px;
  color: #edf0f5;
}
.landing-page .heading h1 {
  font-weight: 600;
  font-size: 34px;
  margin-bottom: 5px;
  letter-spacing: -0.5px;
}
.landing-page h4 {
  font-weight: 600;
}
.landing-page p {
  color: #a7afb8;
}
.landing-page .heading span {
  font-size: 13px;
  font-weight: 600;
}
.landing-page .heading p.small {
  margin-top: 10px;
  color: #cccccc;
  max-width: 260px;
}
.landing-page .heading-image {
  position: absolute;
  right: 60px;
  top: 120px;
  text-align: right;
}
.landing-page .heading-image p {
  color: #cccccc;
  margin-bottom: 5px;
}
.landing-page .heading-image img {
  box-shadow: 0px 0px 8px 0px #333333;
  margin-left: 12px;
  margin-top: 12px;
  width: 180px;
  border-radius: 1px;
}
.landing-page .navy-link {
  background: #455463;
  color: #fff;
}
.landing-page .icon-big {
  font-size: 70px;
}
.landing-page .team-member img {
  height: 72px;
}
.landing-page .social-icon a {
  background: #2a94a2;
  color: #fff;
  text-align: center;
  padding: 4px 8px;
  height: 28px;
  width: 28px;
  display: block;
  border-radius: 4px;
}
.landing-page .list-inline > li {
  padding: 0;
}
.landing-page .social-icon a:hover {
  background: #268592;
}
.landing-page .pricing-plan {
  margin: 20px 10px 0 10px;
  border-radius: 4px;
  padding-bottom: 20px;
  background: #fff;
  border: 1px solid #e0e1e3;
}
.landing-page .pricing-plan li {
  padding: 10px 16px;
  text-align: center;
  color: #aeaeae;
}
.landing-page .pricing-plan .pricing-price span {
  font-weight: 700;
  font-size: 30px;
  color: #2a94a2;
}
.landing-page .pricing-plan .pricing-price {
  min-height: 110px;
}
.landing-page .pricing-title .label {
  font-size: 12px;
}
.landing-page li.pricing-desc {
  font-size: 13px;
  border-top: none;
  padding: 20px 16px 0px 16px;
}
.landing-page li.pricing-title {
  color: #455463;
  padding: 25px 10px 0px 10px;
  border-radius: 4px 4px 0 0;
  font-size: 22px;
  font-weight: 600;
  width: 100%;
}
.landing-page .client {
  color: #a7afb8;
  background: #f7f9fa;
  padding: 30px 10px;
  margin: 0px 0 20px 0;
  text-transform: uppercase;
  font-weight: 600;
}
@media (max-width: 1200px) {
  .landing-page .heading-image {
    display: none;
  }
  .landing-page .heading {
    text-align: center;
  }
  .landing-page .heading p.small {
    margin: 10px auto;
  }
  .landing-page .brand-desc {
    display: none;
  }
  .landing-page .navbar .navbar-brand {
    margin-left: 10px;
  }
}
/* Panels */
.pointer {
  cursor: pointer;
}
.pointer:hover {
  color: #2a94a2;
}
.disabled {
  cursor: not-allowed;
  color: #777;
}
.disabled-icon {
  cursor: help;
  color: #ccc;
}
.multi-license {
  cursor: not-allowed;
  color: #777;
}
.relative {
  position: relative;
}
.active-spinner {
  position: absolute;
  left: 4px;
  top: 6px;
  font-size: 18px;
}
.hpanel.ok .panel-body {
  border-top: 2px solid #2a94a2;
}
.hpanel.warnings .panel-body {
  border-top: 2px solid #feba49;
}
.hpanel.violations .panel-body {
  border-top: 2px solid #cf4747;
}
.text-violations {
  color: #cf4747;
}
.hpanel.ok .prevent-top-border .panel-body {
  border-top: 1px solid #e0e1e3;
}
.hpanel.warnings .prevent-top-border .panel-body {
  border-top: 1px solid #e0e1e3;
}
.hpanel.violations .prevent-top-border .panel-body {
  border-top: 1px solid #e0e1e3;
}
.top-full-panel.ok > .panel-body {
  border-top: 6px solid #2a94a2;
}
.top-full-panel.warnings > .panel-body {
  border-top: 6px solid #feba49;
}
.top-full-panel.violations > .panel-body {
  border-top: 6px solid #cf4747;
}
.panel-body.ok {
  border-left: 2px solid #2a94a2;
}
.panel-body.warnings {
  border-left: 2px solid #feba49;
}
.panel-body.violations {
  border-left: 2px solid #cf4747;
}
.panel-heading.ok {
  border-left: 2px solid #2a94a2;
}
.panel-heading.warnings {
  border-left: 2px solid #feba49;
}
.panel-heading.violations {
  border-left: 2px solid #cf4747;
}
.side-border-panel.ok {
  border-left: 6px solid #2a94a2;
}
.side-border-panel.warnings {
  border-left: 6px solid #feba49;
}
.side-border-panel.violations {
  border-left: 6px solid #cf4747;
}
.panel-body.attention {
  background-color: #f6d59d;
}
.label.ok,
.ecs-label.ok,
.ribbon.ok {
  background-color: #2a94a2;
}
.label.disabled,
.ecs-label.disabled,
.ribbon.disabled,
.label.multi-license {
  background-color: #f4f4f2;
}
.label.warnings,
.ecs-label.warnings,
.ribbon.warnings {
  background-color: #feba49;
}
.label.violations,
.ecs-label.violations,
.ribbon.violations {
  background-color: #cf4747;
}
.status-color.ok {
  background-color: #2a94a2;
  color: #ffffff;
}
.status-color.warnings {
  background-color: #feba49;
  color: #000000;
}
.status-color.disabled {
  color: #ffffff;
}
.status-color.violations {
  background-color: #cf4747;
  color: #ffffff;
}
/* landing page enhancements */
.landing-page dl {
  color: #a7afb8;
}
.landing-page .col-lg-6 .pricing-plan {
  margin-left: 80px;
  margin-right: 80px;
}
.landing-page #pricing .text-center p {
  margin-right: 80px;
  margin-left: 80px;
}
.landing-page .read-more-container h4 + p {
  min-height: 100px;
}
.landing-page li.pricing-desc {
  min-height: 80px;
}
.landing-page section#footer {
  padding: 5px 0 5px 0;
}
.landing-page section#footer p {
  margin-bottom: 4px;
}
.badge-beta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #60BFAD;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  position: relative;
  top: -1px;
  margin-left: 4px;
}
/* mark differences in checksums */
mark.diff {
  background-color: #ff0;
  padding: 0em;
}
.json-key {
  color: brown;
}
.json-value {
  color: navy;
}
.json-string {
  color: olive;
}
/* resize avatar in navbar */
.avatar {
  width: 50px;
  height: 50px;
  vertical-align: text-top;
}
div.checkbox-CLARIFICATION_NEEDED:before {
  content: "\f12a";
  font-family: FontAwesome;
  color: red;
}
div.checkbox-PACKAGE_META:before {
  content: "\f046";
  font-family: FontAwesome;
  color: orange;
}
div.checkbox-REPO_CRAWLER:before {
  content: "\f046";
  font-family: FontAwesome;
  color: green;
}
div.checkbox-HUMAN:before {
  content: "\f046\f046";
  font-family: FontAwesome;
  color: green;
}
div.checkbox-NOT_CHECKED:before {
  content: "\f096";
  font-family: FontAwesome;
  color: red;
}
/* allow 5px space between buttons in a button group */
.btn-blocks .btn {
  margin-right: 5px;
}
/* ecs-bar */
.ecs-label {
  min-width: 120px;
  margin-top: 0.3em;
  display: inline-block;
  text-align: center;
  height: 1.6em;
  padding-top: 0.3em;
}
.large-label .cvss-label {
  min-width: 120px;
  margin-top: 0.3em;
  display: inline-block;
  text-align: center;
  height: 1.6em;
  padding-top: 0.3em;
}
/* state-filter */
.i-checks + .ecs-label {
  margin-left: 2px;
}
.popover {
  max-width: 100%;
  /* Max Width of the popover (depending on the container!) */
}
/*corner ribbon*/
.ribbon-wrapper {
  width: 85px;
  height: 88px;
  overflow: hidden;
  position: absolute;
  top: -3px;
  right: -3px;
  z-index: 1;
}
.ribbon {
  font: bold 15px Sans-Serif;
  text-align: center;
  text-shadow: rgba(255, 255, 255, 0.5) 0px 1px 0px;
  transform: rotate(45deg);
  position: relative;
  padding: 7px 0;
  left: -5px;
  top: 15px;
  width: 120px;
  background-color: #aaa;
  color: #fff;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
}
.ribbon:before,
.ribbon:after {
  content: "";
  border-top: 3px solid #aaa;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  position: absolute;
  bottom: -3px;
}
.ribbon:before {
  left: 0;
}
.ribbon:after {
  right: 0;
}
.form-horizontal .checkbox-inline {
  padding-top: 0;
}
@media (max-width: 1500px) {
  .input-group-sm > .form-control,
  .input-group-sm > .input-group-addon,
  .input-group-sm > .input-group-btn > .btn,
  .btn-sm,
  .btn-group-sm > .btn {
    font-size: 10px;
  }
}
.truncate {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: top;
  white-space: nowrap;
}
.vat {
  vertical-align: top;
}
.inner-0 {
  margin: 0 !important;
}
.inner-b-20 {
  margin-bottom: 20px !important;
}
.inner-b-40 {
  margin-bottom: 40px !important;
}
.inner-t-1 {
  margin-top: 1px !important;
}
.inner-t-5 {
  margin-top: 5px !important;
}
.inner-t-8 {
  margin-top: 8px !important;
}
.inner-t-10 {
  margin-top: 10px !important;
}
.inner-t-15 {
  margin-top: 15px !important;
}
.inner-t-20 {
  margin-top: 20px !important;
}
.inner-t-40 {
  margin-top: 40px !important;
}
.inner-t-25 {
  margin-top: 25px !important;
}
.inner-tb-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.inner-t-0 {
  margin-top: 0 !important;
}
.inner-tb-5 {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}
.inner-b-5 {
  margin-bottom: 5px;
}
.inner-b-5i {
  margin-bottom: 5px!important;
}
.inner-b-10 {
  margin-bottom: 10px;
}
.inner-b-8 {
  margin-bottom: 8px!important;
}
.inner-r-5 {
  margin-right: 5px;
}
.inner-r-10i {
  margin-right: 10px!important;
}
.inner-r-0 {
  margin-right: 0!important;
}
.inner-r-10 {
  margin-right: 10px;
}
.inner-l-1 {
  margin-left: 1px;
}
.inner-l-2 {
  margin-left: 2px;
}
.inner-l-5 {
  margin-left: 5px;
}
.inner-l-21 {
  margin-left: 21px;
}
.inner-l-10 {
  margin-left: 10px;
}
.inner-l-16 {
  margin-left: 16px;
}
.inner-l-20 {
  margin-left: 20px;
}
.inner-l-21 {
  margin-left: 21px;
}
.inner-b-0 {
  margin-bottom: 0;
}
.pinner-l-5 {
  padding-left: 5px;
}
.pinner-l-10 {
  padding-left: 10px!important;
}
.pinner-l-3 {
  padding-left: 3px;
}
.pinner-l-0 {
  padding-left: 0;
}
.pinner-r-20 {
  padding-right: 20px!important;
}
.pinner-r-10 {
  padding-right: 10px!important;
}
.pinner-r-40 {
  padding-right: 40px;
}
.pinner-r-0 {
  padding-right: 0!important;
}
.pinner-r-3 {
  padding-right: 3px;
}
.pinner-l-20 {
  padding-left: 20px!important;
}
.pinner-l-15 {
  padding-left: 15px;
}
.pinner-l-30 {
  padding-left: 30px;
}
.pinner-b-0 {
  padding-bottom: 0;
}
.pinner-b-10 {
  padding-bottom: 10px;
}
.pinner-b-10i {
  padding-bottom: 10px!important;
}
.pinner-b-20i {
  padding-bottom: 20px!important;
}
.pinner-0i {
  padding: 0!important;
}
.pinner-5i {
  padding: 5px!important;
}
.pinner-t-0 {
  padding-top: 0 !important;
}
.pinner-t-2 {
  padding-top: 2px !important;
}
.pinner-t-5 {
  padding-top: 5px !important;
}
.pinner-t-10 {
  padding-top: 10px;
}
.pinner-t-30 {
  padding-top: 30px;
}
.pinner-l-40 {
  padding-left: 40px;
}
.pinner-l-45 {
  padding-left: 45px;
}
.pinner-t-8 {
  padding-top: 8px;
}
.pinner-t-4 {
  padding-top: 4px;
}
.pinner-20 {
  padding: 20px;
}
.uppercase {
  text-transform: uppercase;
}
.autoform-array-item .form-group {
  display: inline-block;
  width: 30%;
  margin-bottom: 0;
}
.autoform-array-item label {
  margin-right: 5px;
}
.autoform-array-item input {
  width: 70%;
  display: inline-block;
}
.autoform-array-item .help-block {
  margin: 0;
}
.action-in-progress {
  position: relative;
}
.action-in-progress:before {
  content: ' ';
  display: block;
  position: absolute;
  width: 100%;
  height: 120%;
  background: rgba(255, 255, 255, 0.5) url('/images/loading-bars.svg') center center no-repeat;
  left: 0;
  top: -10%;
  z-index: 2;
  cursor: progress;
}
.big-icon {
  font-size: 6em;
  text-align: center;
  color: #2a94a2;
  width: 100%;
  padding: 10px 0;
  min-height: 100px;
  background-size: auto 90%;
  float: left;
}
.reactive-table .message {
  word-break: break-all;
  word-break: break-word;
}
/* Emails */
.unread {
  background: rgba(0, 0, 0, 0.1);
  font-weight: 700;
}
.square-20 {
  display: inline-block;
  width: 20px;
  height: 20px;
}
.square-20 .fa {
  width: 100%;
  height: 100%;
  vertical-align: middle;
  text-align: center;
  display: inline-block;
}
.col-30 {
  width: 30px;
}
.col-40 {
  width: 40px;
}
.col-50 {
  width: 50px;
}
.col-60 {
  width: 60px;
}
.col-70 {
  width: 70px;
}
.col-100 {
  width: 100px;
}
.col-80 {
  width: 80px;
}
.col-120 {
  width: 120px;
  white-space: nowrap;
}
.col-170 {
  width: 170px;
}
.col-180 {
  width: 180px;
}
.col-200 {
  width: 200px;
}
.col-240 {
  width: 240px;
}
.col-300 {
  width: 300px;
}
.col-330 {
  width: 330px;
}
.col-m-200 {
  min-width: 200px;
}
.col-state {
  width: 80px;
}
.col-marked {
  width: 30px;
}
.col-trash {
  width: 30px;
}
.mail-style .reactive-table tbody tr {
  cursor: pointer;
}
.mail-style .reactive-table tbody tr:hover {
  background-color: rgba(42, 148, 162, 0.04);
}
.col-type {
  width: 30px;
}
.col-tool {
  width: 150px;
}
.col-date {
  width: 110px;
  white-space: nowrap;
}
.col-flex {
  width: auto;
}
.col-sender {
  width: 180px;
}
.col-actions {
  width: 170px;
  white-space: nowrap;
}
.col-actions-fixed {
  width: 170px!important;
  white-space: nowrap;
}
.col-key {
  width: 60px;
}
.col-url {
  width: 380px;
}
.col-actions-big {
  width: 250px;
  white-space: nowrap;
}
.col-actions-small {
  width: 90px;
}
.pinner-tb-10 {
  padding-top: 10px!important;
  padding-bottom: 10px!important;
}
.w100 {
  width: 100%;
}
.w100i {
  width: 100%!important;
}
.label-block {
  display: inline-block;
  width: 100%;
}
.border-top-none {
  border-top: none!important;
}
.label-version {
  text-align: left;
  font-size: 1em;
}
.max-w-80 {
  max-width: 80%;
}
.max-w-70 {
  max-width: 70%;
}
.max-w-30 {
  max-width: 30%;
}
.max-w-400px {
  max-width: 400px;
}
.max-w-900px {
  max-width: 900px;
}
.w-70 {
  width: 70%;
}
.w-50 {
  width: 50%;
}
.w-30 {
  width: 30%;
}
.w-20px {
  width: 20px;
}
.mw-35px {
  min-width: 35px;
}
.table-layout-fixed {
  width: 100%;
  table-layout: fixed;
}
.inline-block {
  display: inline-block;
}
.w-100 {
  width: 100% !important;
}
.w-90 {
  width: 90% !important;
}
.w-80 {
  width: 80% !important;
}
.w-100px {
  width: 100px !important;
}
.w-150px {
  width: 150px !important;
}
.w-200px {
  width: 200px !important;
}
.w-400px {
  width: 400px !important;
}
.w-450px {
  width: 450px !important;
}
.w-11px {
  width: 11px !important;
}
.w-18px {
  width: 18px !important;
}
.w-30px {
  width: 30px !important;
}
/* Prevent page jump when modal open */
body.modal-open {
  overflow: visible !important;
  position: static !important;
  height: auto !important;
  padding-right: 0 !important;
}
.modal {
  overflow-y: auto !important;
  position: fixed !important;
  top: 0;
  /* Adjust as needed */
  height: auto;
}
.fw4 {
  font-weight: 400;
}
.fw6 {
  font-weight: 600;
}
.border-only-left {
  border-bottom: none!important;
  border-top: none!important;
  border-right: none!important;
}
.actions-on-top {
  position: absolute;
  top: 10px;
  right: 20px;
}
.text-left-i {
  text-align: left!important;
}
.text-crossed {
  text-decoration: line-through;
}
.list-group > .border-only-left:last-child {
  border-bottom: 1px solid #e0e1e3 !important;
  border-top: none!important;
  border-right: none!important;
}
.links-offest-top > .btn {
  margin-top: 3px;
}
.d-flex {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: flex-start;
  align-items: baseline;
}
.styled-checkbox {
  width: 20px;
  height: 20px;
  background-color: #4a8090;
  border-color: #4a8090;
  color: #FFFFFF;
  accent-color: #4a8090;
}
.grid-with-check {
  display: grid;
  grid-template-columns: 30px auto;
  grid-template-rows: auto;
  grid-template-areas: "check-list ";
}
.grid-with-check .check-list {
  grid-area: check-list;
}
.pagination-like-btn {
  font-size: 14px;
}
.cvss-label {
  color: #ffffff;
}
.cvss-label.red {
  background-color: #cf4747;
}
.cvss-label.orange {
  background-color: #f35f34;
}
.cvss-label.yellow {
  background-color: #feba49;
  color: #000000;
}
.cvss-label.green-yellow {
  background-color: #94a776;
}
.cvss-label.green {
  background-color: #2a94a2;
}
.cvss-label.grey {
  background-color: grey;
}
.cvss-text {
  color: #ffffff;
}
.cvss-text.red {
  color: #cf4747;
}
.cvss-text.orange {
  color: #f35f34;
}
.cvss-text.yellow {
  color: #feba49;
}
.cvss-text.green-yellow {
  color: #94a776;
}
.cvss-text.green {
  color: #2a94a2;
}
.cvss-text.grey {
  color: grey;
}
.cvss-label-compact {
  display: inline-block;
  width: 36px;
}
.label-fw {
  width: 100%;
  display: inline-block;
}
circle.node {
  cursor: pointer;
  stroke: #000;
  stroke-width: 0.5px;
}
circle.node.directory {
  stroke: #ddd;
  stroke-width: 2px;
}
circle.node.collapsed {
  stroke: #000;
}
.nodetext {
  fill: #333;
  stroke: #000;
  stroke-width: 0.1px;
  font-weight: bold;
}
line.link {
  fill: none;
  stroke: #666;
  stroke-width: 1.5px;
}
.ossf-score-box {
  background-image: url('../images/openssf-security-scorecards.png');
  width: 65px;
  height: 40px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  display: inline-block;
  top: -8px;
  margin-bottom: -20px;
}
.ossf-score-box-2lines {
  width: 97px;
  height: 60px;
  top: -8px;
  margin-bottom: -20px;
}
.ossf-score-box-2lines .ossf-score-score {
  width: 90px;
  height: 60px;
  left: 14px;
  top: 6px;
  font-size: 22px;
  line-height: 42px;
}
.ossf-score-score {
  width: 30px;
  height: 20px;
  position: absolute;
  left: 23px;
  top: 9px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  color: #000000;
}
.ossf-score-large {
  width: 195px;
  height: 120px;
  top: 0;
}
.ossf-score-large .ossf-score-score {
  width: 90px;
  height: 60px;
  left: 72px;
  top: 27px;
  font-size: 42px;
  line-height: 56px;
}
.ossf-score-number {
  display: inline-block;
  width: 27px;
  text-align: center;
  height: 27px;
  border-radius: 50%;
  float: left;
  margin-right: 5px;
  line-height: 25px;
  border: 1px solid #cccccc;
  background: #FFFFFF;
  color: #cccccc;
}
.ossf-score-color-10,
.ossf-score-color-9,
.ossf-score-color-8 {
  background: #2a94a2;
  border-color: #2a94a2;
  color: #FFFFFF;
}
.ossf-score-color-7,
.ossf-score-color-6,
.ossf-score-color-5,
.ossf-score-color-4 {
  background: #feba49;
  border-color: #feba49;
  color: #FFFFFF;
}
.ossf-score-color-3,
.ossf-score-color-2,
.ossf-score-color-1,
.ossf-score-color-undefined,
.ossf-score-color-0 {
  background: #cf4747;
  border-color: #cf4747;
  color: #FFFFFF;
}
.ossf-score-color- {
  display: inline-block;
  width: 23px;
  text-align: center;
}
.ossf-score-name {
  font-weight: 700;
}
.ossf-score-reason {
  padding-left: 31px;
  text-align: left;
  font-size: 80%;
  margin-bottom: 3px;
  word-break: break-word;
}
.confidence-label {
  border-radius: 50%;
  text-align: center;
  padding: 0;
  width: 15px;
  height: 15px;
  display: inline-block;
  line-height: 13px;
  margin-right: 3px;
  position: relative;
  vertical-align: middle;
  color: #0A0A0A;
}
.confidence-label:after {
  position: absolute;
  z-index: 1;
  background: #FFFFFF;
  display: block;
  width: 0;
  right: -2px;
  top: 0;
  height: 120%;
  content: ' ';
}
.confidence-label-5:after {
  width: 15px;
}
.confidence-label-4:after {
  width: 11px;
}
.confidence-label-3:after {
  width: 8px;
}
.confidence-label-2:after {
  width: 5px;
}
.confidence-label-1:after {
  width: 0;
}
.confidence-cols {
  font-size: 15px;
  position: absolute;
  left: 0;
  top: 2px;
  z-index: 0;
}
.sbom-stats-row {
  display: flex;
  align-items: center;
  gap: 15px;
}
.sbom-stats-left {
  flex: 1;
  min-width: 0;
}
.sbom-stats-counters {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 15px;
  margin-top: 8px;
}
.sbom-stats-counter {
  text-align: center;
}
.sbom-stats-chart {
  flex-shrink: 0;
  text-align: center;
  min-width: 90px;
}
.dendrogram-toggle {
  position: absolute;
  top: 24px;
  right: 40px;
  z-index: 1;
}
.current-graph-breadcrumbs {
  position: absolute;
  top: 10px;
  width: auto;
  left: 10px;
}
.check-status {
  font-size: 2em;
  margin: 0;
}
.check-status.ok {
  color: #2a94a2;
}
.check-status.warnings {
  color: #feba49;
}
.check-status .fa-square-o,
.check-status .fa-check-square-o {
  display: none;
}
.check-status.ok .fa-check-square-o {
  display: inline-block;
}
.check-status.warnings .fa-square-o {
  display: inline-block;
}
.start-intro {
  margin: -5px 0 10px 0;
}
.start-intro-dependency {
  position: absolute;
  top: 2px;
  right: 20px;
}
.icon-inner-top:before {
  position: relative;
  top: 2px;
}
.width-alerts {
  width: 100px;
}
.highlight {
  text-decoration: underline;
  color: #2a94a2;
}
.highlight:hover {
  color: #2a94a2;
  text-decoration: none;
}
.highlight-i {
  text-decoration: underline;
  color: #2a94a2 !important;
}
.highlight-i:hover {
  color: #2a94a2 !important;
  text-decoration: none;
}
.not-approved {
  color: #cf4747;
}
.wrapAutoformArray .autoform-array-item-body > .form-group {
  width: 100%;
}
.wrapAutoformArray .autoform-array-item-body > .form-group > .control-label {
  display: none;
}
.wrapAutoformArray .autoform-array-item-body .panel-body .form-group {
  width: 100%;
}
/* .ios-toggle styles for UI:checkbox */
.ios-toggle,
.checkbox-label:before,
.checkbox-label:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  /*transition*/
  transition: 0.25s ease-in-out;
  outline: none;
}
.ios-toggle,
.ios-toggle:active {
  position: absolute;
  top: -5000px;
  height: 0;
  width: 0;
  opacity: 0;
  border: none;
  display: none;
  outline: none;
}
.checkbox-label {
  display: inline-block;
  position: relative;
  padding: 10px;
  margin-bottom: 20px;
  font-size: 12px;
  line-height: 16px;
  width: 65px;
  height: 36px;
  /*border-radius*/
  border-radius: 18px;
  background: #f8f8f8;
  cursor: pointer;
  float: left;
}
.checkbox-label:before {
  content: '';
  display: block;
  position: absolute;
  z-index: 1;
  line-height: 34px;
  text-indent: 40px;
  height: 36px;
  width: 36px;
  /*border-radius*/
  border-radius: 100%;
  top: 0px;
  left: 0px;
  right: auto;
  background: white;
  /*box-shadow*/
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2), 0 0 0 2px #dddddd;
}
.checkbox-label:after {
  content: attr(data-off);
  display: block;
  position: absolute;
  z-index: 0;
  top: 0;
  left: -80px;
  padding: 10px;
  height: 100%;
  width: 80px;
  text-align: right;
  color: #bfbfbf;
  white-space: nowrap;
}
.checkbox-label-md {
  padding: 10px;
  margin-bottom: 0;
  width: 54px;
  height: 25px;
}
.checkbox-label-md:before {
  line-height: 20px;
  text-indent: 20px;
  height: 25px;
  width: 25px;
}
.checkbox-label-md:after {
  padding: 5px 10px;
}
.ios-toggle:checked + .checkbox-label.checkbox-label-md:before {
  left: 29px;
}
.ios-toggle:checked + .checkbox-label.checkbox-label-md:after {
  content: attr(data-on);
  left: 48px;
}
.ios-toggle-label {
  display: inline-block;
  padding: 10px;
  height: 100%;
  text-align: right;
  color: #bfbfbf;
  white-space: nowrap;
  vertical-align: top;
}
.ios-toggle-label.ios-toggle-label-md {
  padding: 2px 6px;
}
.ios-toggle-label.ios-toggle-label-dark {
  color: #040f18;
}
.ios-toggle.always-on + .checkbox-label,
.ios-toggle:checked + .checkbox-label {
  box-shadow: inset 0 0 0 20px #2a94a2, 0 0 0 2px #2a94a2;
}
.ios-toggle.reverse-styles + .checkbox-label {
  box-shadow: inset 0 0 0 20px #2a94a2, 0 0 0 2px #2a94a2;
}
.ios-toggle.reverse-styles:checked + .checkbox-label {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2), 0 0 0 2px #dddddd;
}
.ios-toggle:checked + .checkbox-label:before {
  left: 29px;
  box-shadow: 0 0 0 2px transparent, 0 3px 3px rgba(0, 0, 0, 0.3);
}
.ios-toggle:checked + .checkbox-label:after {
  content: attr(data-on);
  left: 60px;
  width: 36px;
}
.ios-toggle.disabled,
.ios-toggle.disabled + .checkbox-label,
.ios-toggle.disabled + .checkbox-label + span {
  cursor: not-allowed;
}
.bg-violations {
  background-color: #cf4747;
}
.bg-warnings {
  background-color: #feba49;
}
.bg-ok {
  background-color: #2a94a2;
}
.bg-primary {
  background-color: #063d50;
}
.label-primary {
  background-color: #063d50;
}
.label-orange {
  background-color: #f35f34;
}
.label-default {
  background-color: #fff;
  color: #040f18;
  border: 1px solid #e0e1e3;
}
.badge-default {
  background-color: #fff;
  color: #040f18;
}
.white {
  color: #ffffff;
}
.collapse-form .form-group {
  width: 50%;
  float: left;
}
.collapse-form .form-group label {
  display: block;
  width: 80%;
  min-height: 40px;
  padding: 0 12px 0 0;
}
.collapse-form .form-group input,
.collapse-form .form-group select,
.collapse-form .form-group textarea {
  width: 80%;
  display: block;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.collapse-form .form-group textarea {
  height: 70px;
}
.table-clear {
  border: none;
  vertical-align: top;
}
.table-clear .label {
  margin-top: 0;
}
.table-clear tr {
  vertical-align: top;
}
.absolute-radio {
  position: absolute;
  left: -5px;
  top: 1px;
  margin: 0;
}
.obligation-comment-holder {
  width: 50%;
  max-width: 400px;
}
.obligation-comment {
  resize: vertical;
}
.inline {
  display: inline;
}
.visible-fhd-inline-block {
  display: none;
}
@media (min-width: 1900px) {
  .visible-fhd-inline-block {
    display: inline-block;
  }
}
.ecs-dependencies-with-details,
.ecs-dependencies-aside {
  float: left;
  margin-bottom: 0;
}
.ecs-dependencies-aside {
  height: 100%;
  width: 32%;
  position: relative;
}
.ecs-dependencies-aside.full-width {
  width: 100%;
}
.ecs-dependencies-with-details {
  width: 67%;
  margin-right: 1%;
}
@media (min-width: 1024px) and (max-width: 1250px) {
  .ecs-dependencies-aside {
    width: 45%;
  }
  .ecs-dependencies-with-details {
    width: 54%;
  }
}
@media (min-width: 1400px) {
  .ecs-dependencies-aside {
    width: 40%;
  }
  .ecs-dependencies-with-details {
    width: 59%;
  }
}
@media (min-width: 1670px) {
  .ecs-dependencies-aside {
    width: 50%;
  }
  .ecs-dependencies-with-details {
    width: 49%;
  }
}
.ecs-aside-nav {
  background: #fff;
  border: 1px solid #e0e1e3;
  border-radius: 2px;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 40px;
  padding-top: 43px;
  overflow: hidden;
}
.ecs-aside-nav .aside-action {
  width: 100%;
  display: block;
  padding: 5px 10px;
  border-bottom: 1px solid #e0e1e3;
  font-size: 1.3em;
  text-align: center;
}
.ecs-aside-head {
  z-index: 2;
  position: absolute;
  background: #cccccc;
  color: #000;
  border: 1px solid #e0e1e3;
  left: 0;
  top: 0;
  padding: 5px 90px 5px 10px;
  width: 100%;
  height: 43px;
}
.ecs-aside-head .ecs-aside-head-actions {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: auto;
}
.ecs-aside-head .ecs-aside-close,
.ecs-aside-head .ecs-aside-more {
  width: 40px;
  height: 100%;
  padding: 9px 10px 7px 10px;
  border-left: 1px solid #e0e1e3;
  font-size: 1.3em;
  text-align: center;
  float: left;
}
.ecs-aside-head .ecs-aside-close {
  background: #ffffff;
}
.ecs-aside-head .truncate {
  width: 100%;
  margin: 8px 0;
  font-weight: 700;
}
.ecs-aside-content-slim {
  height: 100%;
  overflow-y: auto;
  padding-left: 10px;
  padding-top: 53px;
  padding-bottom: 20px;
  padding-right: 10px;
  border: 1px solid #e0e1e3;
}
.ecs-aside-content {
  height: 100%;
  overflow-y: auto;
  padding-left: 50px;
  padding-top: 10px;
  padding-bottom: 20px;
  padding-right: 10px;
  border: 1px solid #e0e1e3;
}
.ecs-dependencies {
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.15) transparent;
}
.ecs-dependencies::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.ecs-dependencies::-webkit-scrollbar-track {
  background: transparent;
}
.ecs-dependencies::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 6px / 2;
}
.ecs-dependencies::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.25);
}
.ecs-deepscans {
  border: none;
}
.ecs-tests {
  border: none;
}
.ecs-dependency {
  display: block;
  padding: 5px 10px 5px 10px;
  cursor: pointer;
  position: relative;
  background: #fff;
  border-bottom: 1px solid #e0e1e3;
  margin-bottom: 1px;
}
.ecs-deep-scan-result {
  display: block;
  padding: 5px 10px 5px 5px;
  cursor: pointer;
  background: #fff;
  border-bottom: 1px solid #e0e1e3;
  margin-bottom: 1px;
}
.dependency-name {
  display: inline;
  position: relative;
  top: 2px;
}
.dependency-name .d-line {
  display: inline;
}
.dependency-name .d-name {
  max-width: 39%;
}
.dependency-name .d-path {
  max-width: 47%;
}
.dependency-name .d-version {
  max-width: 15%;
}
.dependency-name .d-spdx {
  max-width: 16%;
}
.dependency-name .d-name,
.dependency-name .d-path,
.dependency-name .d-version,
.dependency-name .d-spdx,
.dependency-name .d-multy {
  padding-top: 1px;
  position: relative;
  display: inline-block;
  line-height: 1.3em;
}
.dependency-folder {
  display: none;
}
.dependency-root {
  background: #39394D;
  color: #FFFFFF;
}
.dependency-root .dependency-folder {
  display: block;
}
.dependency-root .d-line {
  border-bottom: 3px double;
}
.dependency-active {
  background: #cccccc;
  color: #000;
}
.dependency-active .truncate {
  font-weight: 700;
}
.dependency-folder {
  position: absolute;
  left: 7px;
  top: 8px;
}
.dependency-status {
  margin-left: 10px;
}
.dependency-status,
.dependency-params,
.dependency-info {
  display: inline-block;
}
.dependency-params {
  position: relative;
}
.ecs-graphs {
  padding: 10px;
  border: 1px solid #e0e1e3;
}
.left-ok {
  border-left: 6px solid #2a94a2;
}
.left-warnings {
  border-left: 6px solid #feba49;
}
.left-deadly {
  border-left: 6px solid #cf4747;
}
.left-violations {
  border-left: 6px solid #cf4747;
}
.left-disabled {
  border-left: 6px solid #e0e1e3;
}
.bot-grey {
  border-bottom: 2px solid #e0e1e3;
}
.bot-ok {
  border-bottom: 2px solid #2a94a2;
}
.bot-warnings {
  border-bottom: 2px solid #feba49;
}
.bot-disabled {
  border-bottom: 2px solid #e0e1e3;
}
.bot-deadly {
  border-bottom: 2px solid #cf4747;
}
.bot-violations {
  border-bottom: 2px solid #cf4747;
}
.noUi-connect {
  background: #2a94a2;
}
.top-grey {
  border-top: 2px solid #e0e1e3;
}
.top-ok {
  border-top: 2px solid #2a94a2;
}
.top-warnings {
  border-top: 2px solid #feba49;
}
.top-deadly {
  border-top: 2px solid #cf4747;
}
.top-disabled {
  border-top: 2px solid #e0e1e3;
}
.top-violations {
  border-top: 2px solid #cf4747;
}
.dependency-label {
  text-transform: capitalize;
}
.aside-section {
  margin: 0;
}
.aside-section-inner {
  margin: 0 0 20px;
}
.aside-section-title {
  padding: 5px 0;
  position: relative;
  margin: 0;
}
.aside-section-title .section-expand {
  padding: 5px 10px;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}
.aside-section-content {
  background: #fff;
  padding: 5px;
  border-left: 1px solid #e0e1e3;
  border-right: 1px solid #e0e1e3;
  border-bottom: 1px solid #e0e1e3;
}
.aside-section-clear {
  background: transparent;
}
.launcher_placeholder {
  width: 75px;
  text-align: center;
  padding-left: 0;
  padding-right: 0;
}
#launcher {
  bottom: auto;
  top: 9px;
  margin: 0!important;
  right: 51px!important;
}
#webWidget {
  bottom: auto;
  top: 5px;
  right: 8px!important;
}
@media (max-width: 1024px) {
  #launcher {
    bottom: auto;
    top: 0;
    right: 10px!important;
  }
}
.fa-1p5x {
  font-size: 1.5em;
  line-height: 1.4em;
}
.viability-inline-block {
  display: block;
  margin: 0;
}
@media (min-width: 1400px) {
  .viability-inline-block {
    display: inline-block;
  }
}
.card-name-line {
  width: 100%;
  display: block;
  margin-top: 0;
}
.card-name {
  max-width: 80%;
  display: inline-block;
}
.disable-notification {
  text-align: center;
  padding: 4px 0 0;
  display: block;
}
.disable-notification-compact {
  padding: 0;
  display: block;
  position: absolute;
  width: 100%;
  top: -1px;
  font-size: 0.7em;
  left: 0;
  text-align: center;
}
.disable-notification {
  top: 1px;
  font-size: 0.9em;
}
.block {
  display: block;
}
.progress-bar-disabled {
  background: #e0e1e3;
}
.bold-icon:before {
  font-weight: 700;
}
.approval-widget-box {
  overflow-y: auto;
  max-height: 500px;
  border: 1px solid #dddddd;
  padding: 10px 20px 10px 10px;
}
.approval {
  padding: 0;
}
.approval-heading {
  padding-bottom: 5px;
}
.approval-body {
  padding-left: 15px;
  padding-bottom: 10px;
  padding-right: 0;
}
.approval-release {
  border: 1px solid #e0e1e3;
  padding: 5px;
}
.fa-paragraph-icon:before {
  content: '§';
  font-weight: bold;
}
.content-side {
  padding: 25px 40px 0 0;
}
.notice-detail-columns {
  display: flex;
  flex: 1 1 0%;
  min-height: 0;
  padding: 10px 15px 0;
}
.notice-detail-columns > [class*="col-"] {
  display: flex;
  flex-direction: column;
  min-height: 0;
}
body.flex-fill-page .content > .notice-detail-columns {
  flex: 1 1 0%;
  min-height: 0;
}
.notice-view-left,
.notice-view-right {
  background: #ffffff;
  border: 1px solid #e0e1e3;
  display: flex;
  flex-direction: column;
  flex: 1 1 0%;
  min-height: 0;
}
.notice-view-left {
  overflow-y: auto;
}
.notice-view-right {
  overflow: hidden;
}
.notice-view-right .notice-view-right-stats {
  height: auto;
  width: auto;
  padding: 15px;
  position: static;
  border-bottom: 1px solid #e0e1e3;
  flex-shrink: 0;
}
.notice-view-right .notice-view-right-scroll {
  overflow-y: auto;
  flex: 1 1 0%;
  min-height: 0;
  height: auto;
}
.todo-counters .todo-counters-number {
  margin-bottom: 0;
  font-weight: 700;
  font-size: 1.2em;
}
.todo-counters .todo-counters-text {
  margin-bottom: 0;
  font-size: 0.8em;
}
.todo-counters .panel {
  margin-bottom: 0;
}
.notice-complete {
  display: inline-block;
  vertical-align: bottom;
  font-size: 14px;
}
.panel-clear-style {
  background: transparent;
  border-radius: 0;
}
.panel-clear-style > .panel-heading {
  border-bottom: 1px solid #e0e1e3;
}
.panel-clear-style > .panel-body {
  border-bottom: 1px solid #e0e1e3;
}
.panel-body-thin-border {
  border: 1px solid #e0e1e3;
}
.semantic-version-title {
  position: relative;
  top: -2px;
}
.semantic-version {
  display: inline-block;
  vertical-align: middle;
}
.vam {
  vertical-align: middle;
}
.semantic-digit {
  display: inline-block;
  width: 35px;
}
.semantic-digit .form-control {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 5px;
  padding-right: 5px;
  height: 40px;
  text-align: center;
  border-radius: 0;
}
.semantic-digit .btn {
  width: 100%;
  display: block;
  border-radius: 0;
}
.notice-icon-holder {
  width: 18px;
  text-align: center;
}
.tree-title-line {
  position: relative;
  width: 90%;
}
.label-text-span {
  position: relative;
  font-weight: 400;
  width: 90%;
  cursor: pointer;
}
.label-text-span.fix-top-3 {
  top: -3px;
}
.rfix-top-3 {
  top: -3px;
  position: relative;
}
.hover-highlight {
  color: inherit;
  cursor: pointer;
}
.hover-highlight:hover {
  color: #2a94a2;
}
.display-block {
  display: block;
}
#tree .node-tree a {
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: top;
  white-space: nowrap;
  max-width: 70%;
}
.analysis-filter-drop-container {
  display: block;
  width: 100%;
  position: relative;
  margin-top: 0;
  height: 0;
  z-index: 9;
}
.analysis-filter-drop {
  display: block;
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
}
.analysis-filter-label-container {
  display: block;
  width: 100%;
  position: relative;
  margin: 0;
  height: 0;
  text-align: right;
}
.analysis-filter-label {
  display: block;
  width: auto;
  position: absolute;
  top: -13px;
  left: 0;
}
.deep-scan-pre {
  max-height: 300px;
  overflow: auto;
  white-space: pre-wrap;
  word-wrap: break-word;
  /* Internet Explorer 5.5+ */
  margin-bottom: 0;
}
.deep-scan-table {
  padding: 5px;
  vertical-align: top;
}
.select-all-box {
  padding-left: 40px;
  position: relative;
}
.select-all-box .checkbox {
  position: absolute;
}
.select-all-box .form-control {
  margin-left: 4px;
}
.breadcrumb > li {
  display: inline-block;
  max-width: 300px;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: top;
  white-space: nowrap;
}
.soup-detail-columns {
  display: flex;
  flex: 1 1 0%;
  min-height: 0;
  padding: 10px 15px 0;
}
.soup-detail-columns > [class*="col-"] {
  display: flex;
  flex-direction: column;
  min-height: 0;
}
body.flex-fill-page .content > .soup-detail-columns {
  flex: 1 1 0%;
  min-height: 0;
}
.soup-view-left,
.soup-view-right {
  background: #ffffff;
  border: 1px solid #e0e1e3;
  display: flex;
  flex-direction: column;
  flex: 1 1 0%;
  min-height: 0;
}
.soup-view-left {
  overflow-y: auto;
}
.soup-view-right {
  overflow: hidden;
}
.soup-view-right .soup-view-right-stats {
  height: auto;
  width: auto;
  padding: 15px;
  position: static;
  border-bottom: 1px solid #e0e1e3;
  flex-shrink: 0;
}
.soup-view-right .soup-view-right-scroll {
  overflow-y: auto;
  flex: 1 1 0%;
  min-height: 0;
  height: auto;
}
.soup-complete {
  display: inline-block;
  vertical-align: bottom;
  font-size: 14px;
}
.soup-icon-holder {
  width: 18px;
  text-align: center;
}
.deep-scan-notice {
  position: absolute;
  top: 70px;
  right: 0;
  z-index: 2;
  max-height: 400px;
  overflow-y: auto;
  padding-right: 0;
}
.unknown-license-notice {
  position: absolute;
  top: 49px;
  right: 0;
  width: 100%;
  z-index: 2;
}
.unknown-license-notice .panel {
  max-height: 300px;
  overflow-y: auto;
}
.layout-bumper {
  display: block;
  width: 100%;
  height: 20px;
}
.breadcrumb {
  padding: 18px 15px;
  margin-bottom: 0;
  list-style: none;
  background-color: #fff;
  border-radius: 4px;
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: top;
  white-space: nowrap;
}
.project-approved-status {
  cursor: help;
  color: #2a94a2;
  position: relative;
}
.project-approved-status-disabled {
  cursor: help;
  color: #ccc;
  position: relative;
}
.project-approved-status-disabled.hide-disabled {
  display: none;
}
.project-approved-status-check {
  color: #ffffff;
  font-size: 0.5em;
  position: absolute;
  left: 39%;
  top: 56%;
  transform: translate(-50%, -50%);
}
.size-lg .project-approved-status-check {
  left: 40%;
  top: 58%;
}
.size-md .project-approved-status-check {
  left: 50%;
  top: 50%;
}
.splash-holder {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: white;
  color: gray;
}
.treeview .search-result {
  color: #31708f !important;
  background-color: #d9edf7 !important;
}
.treeview .node-selected {
  color: #d9edf7 !important;
  background-color: #31708f !important;
}
.failed-file-notice {
  position: absolute;
  width: 100%;
  height: 120%;
  background: rgba(215, 219, 230, 0.9);
  text-align: center;
  display: block;
  top: 0;
  font-weight: 700;
  font-size: 1.3em;
  line-height: 1.1em;
}
.reactive-table-navigation .form-inline input[type=number] {
  width: 60px;
}
.month-range {
  display: inline-block;
  text-align: center;
  width: 100%;
}
.month-range .month-range-label {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 5px;
  padding-right: 5px;
  height: 40px;
  text-align: center;
  border-radius: 0;
  width: 100px;
  display: inline-block;
}
.month-range .btn {
  width: 30px;
  display: inline-block;
  border-radius: 0;
}
.pinned-widget-box {
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
  padding: 10px;
  margin: -20px;
}
.pinned-widget-box .module-details {
  width: 310px;
  margin-right: 10px;
  display: inline-block;
}
.pinned-widget-box .module-details:last-child {
  margin-right: 0;
}
.pinned-widget-box .module-details .hpanel {
  margin-bottom: 0;
  white-space: normal;
}
.errors-text-hidden .form-group {
  position: relative;
}
.errors-text-hidden .form-group label.error {
  display: none!important;
}
.blacklisted-label {
  position: absolute;
  left: 10px;
  top: 20px;
  padding: 5px;
  cursor: help;
}
.blacklisted-algorithm-label {
  padding: 5px;
  cursor: help;
  margin-right: 3px;
}
.approves-list .reactive-table-options.approves-table-filters {
  display: flex;
  align-items: center;
  gap: 0;
  width: auto;
  margin-bottom: 12px;
}
.approves-list .reactive-table-options.approves-table-filters .approves-view-type-filter {
  flex-shrink: 0;
}
.approves-list .reactive-table-options.approves-table-filters .approves-view-type-filter .input-group {
  display: flex;
  align-items: center;
}
.approves-list .reactive-table-options.approves-table-filters .approves-view-type-filter .input-group-addon {
  background: transparent;
  border: none;
  color: #040f18;
  padding: 0 10px 0 0;
  margin-right: 8px;
}
.approves-list .reactive-table-options.approves-table-filters .approves-view-type-filter .form-control {
  border-radius: 8px !important;
  border: 1px solid #e0e1e3;
  padding: 8px 14px;
  height: auto;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.approves-list .reactive-table-options.approves-table-filters .approves-view-type-filter .form-control:focus {
  border-color: #2a94a2;
  box-shadow: 0 0 0 3px rgba(42, 148, 162, 0.1);
  outline: none;
}
.approves-list .reactive-table-options.approves-table-filters .reactive-table-filter {
  flex: 1;
  width: auto;
  margin-bottom: 0;
}
.vam {
  vertical-align: middle;
}
.dropdown-menu.company-select > li > a {
  padding: 3px 5px;
}
.loading {
  position: absolute;
  z-index: 2000;
  background: rgba(255, 255, 255, 0.1);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.loading-title {
  text-align: center;
  max-width: 500px;
  margin: 15% auto;
  padding: 20px;
  color: gray;
  background: rgba(255, 255, 255, 0.5);
}
.loading-title h1 {
  font-size: 26px;
}
.portfolio-title {
  position: relative;
  top: -1px;
  max-width: 400px;
}
.cve-details-table {
  font-size: 1.2em;
  line-height: 1.5em;
}
.ic-details .ecs-dependencies-aside {
  width: 100%;
}
.cisa-icon {
  position: relative;
  top: 3px;
  font-size: 16px;
  width: 21px;
  height: 21px;
  border-radius: 100%;
  background: #feba49;
  text-align: center;
  line-height: 21px;
}
.cisa-icon.top-0 {
  top: 0;
}
.cisa-icon.cisa-huge {
  width: 80px;
  height: 80px;
  line-height: 80px;
  position: relative;
  font-size: 60px;
  top: -12px;
}
.cisa-icon.cisa-huge:before {
  position: relative;
  left: 2px;
}
.bump-icon {
  position: relative;
  top: 3px;
  font-size: 16px;
  width: 21px;
  height: 21px;
  border-radius: 100%;
  background: #2a94a2;
  color: #FFFFFF;
  text-align: center;
  line-height: 21px;
  margin-left: 0px;
}
.bump-icon.top-0 {
  top: 0;
}
.bump-icon.cisa-huge {
  width: 80px;
  height: 80px;
  line-height: 80px;
  position: relative;
  font-size: 60px;
  top: -12px;
}
.bump-icon.cisa-huge:before {
  position: relative;
  left: 2px;
}
.small-loading {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  vertical-align: center;
  text-align: center;
}
.text-small {
  font-size: 0.8em;
}
.scan-aside-breadcrumb {
  padding: 10px;
  margin: -20px -20px 10px -20px;
  background: rgba(0, 0, 0, 0.3);
  display: block;
  width: calc(100% + 40px);
  max-width: calc(100% + 40px);
  border-radius: 0;
  color: #FFFFFF;
  overflow: hidden;
  text-overflow: initial;
  vertical-align: middle;
  white-space: normal;
}
.scan-aside-breadcrumb > li + li:before {
  color: #FFFFFF;
  padding: 0 2px;
}
.pre-unstiled {
  white-space: pre-line;
  border: none;
  background: transparent;
  padding: 0;
  word-break: break-word;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.label-with-check {
  padding-left: 20px;
  padding-bottom: 5px;
  cursor: pointer;
}
.check-with-label {
  position: absolute;
  cursor: pointer;
}
.algorithm-list-th {
  width: 200px;
}
.sbom-detail-columns {
  display: flex;
  flex: 1 1 0%;
  min-height: 0;
  padding: 10px 15px 0;
}
.sbom-detail-columns > [class*="col-"] {
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.sbom-view-left,
.sbom-view-right {
  background: #ffffff;
  border: 1px solid #e0e1e3;
  display: flex;
  flex-direction: column;
  flex: 1 1 0%;
  min-height: 0;
}
.sbom-view-left {
  overflow-y: auto;
}
.sbom-view-right {
  overflow: hidden;
}
.sbom-view-right .notice-view-right-stats {
  height: auto;
  width: auto;
  padding: 15px;
  position: static;
  border-bottom: 1px solid #e0e1e3;
  flex-shrink: 0;
}
.sbom-view-right .notice-view-right-scroll {
  overflow-y: auto;
  flex: 1 1 0%;
  min-height: 0;
  height: auto;
}
.sbom-complete {
  display: inline-block;
  vertical-align: bottom;
  font-size: 14px;
}
.cleared-padding {
  padding-top: 15px;
  padding-right: 10px;
}
.btn-on-block {
  position: absolute;
  top: 5px;
  right: 15px;
  z-index: 10;
}
.cve-impact-project {
  font-weight: 700;
}
.cve-impact-module {
  font-weight: 400;
  padding-left: 10px;
}
.cve-impact-comment {
  font-weight: 400;
  padding-left: 20px;
  font-size: 0.8em;
}
.notification-dot {
  position: absolute;
  right: 20px;
  top: 10px;
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: #f14646;
}
.label-offset-top {
  position: relative;
  top: -4px;
}
.grey-filter {
  filter: grayscale(1);
}
.grey-filter:hover {
  filter: grayscale(0);
}
.no-resize {
  resize: none;
}
.editable-json {
  resize: none;
  height: 100%!important;
}
.autoform-array-item .form-group {
  width: 80%;
}
body.stop-scrolling {
  overflow: initial!important;
}
.pre-stiled {
  display: block;
  unicode-bidi: embed;
  font-family: monospace;
  white-space: pre;
}
.pre-stiled-line {
  display: inline-block;
  unicode-bidi: embed;
  font-family: monospace;
  white-space: pre;
}
.multy-gavel.wide {
  width: 22px!important;
}
.multy-gavel {
  width: 11px!important;
  height: 11px;
  display: inline-block;
  position: relative;
}
.multy-gavel .gavel-1,
.multy-gavel .gavel-2,
.multy-gavel .gavel-3 {
  position: absolute;
}
.multy-gavel .gavel-1 {
  left: 6px;
  top: 2px;
}
.multy-gavel .gavel-2 {
  right: 6px;
  top: 2px;
  transform: rotate(-90deg);
}
.login-notice {
  font-size: 0.9em;
  margin: 10px 0;
  color: #777777;
}
.typeahead,
.tt-query,
.tt-hint {
  width: 100%;
  padding: 8px 12px;
  line-height: 30px;
  outline: none;
}
.typeahead {
  background-color: #fff;
}
.tt-hint {
  color: #999;
}
.tt-dropdown-menu {
  width: 100%;
  margin: 2px 0;
  padding: 8px 0;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.no-suggestions,
.no-suggestion-item {
  padding: 3px 20px;
  line-height: 20px;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.no-suggestions-pending {
  opacity: 1;
  animation: 3s ease-out 0s 1 fadeIn;
}
.no-suggestion-item:hover {
  cursor: pointer;
  color: #fff;
  background-color: #0097cf;
}
.no-suggestion-item.tt-cursor {
  color: #fff;
  background-color: #0097cf;
}
.no-suggestion-item p {
  margin: 0;
}
.twitter-typeahead {
  width: 100%;
}
.input-group .twitter-typeahead {
  display: table-cell !important;
}
.trust_logo {
  width: auto;
  max-height: 47px;
  position: relative;
  top: -15px;
  left: 23px;
}
.small_list {
  font-size: 0.7em;
  padding-left: 15px;
}
.small_list li {
  width: 50%;
  float: left;
  padding-right: 30px;
}
.index-padding {
  position: relative;
  padding-left: 40px;
}
.index-padding .index-box {
  position: absolute;
  left: 5px;
  top: 3px;
}
.info_link {
  position: absolute;
  right: 5px;
  top: -20px;
  font-size: 2.5em;
  color: #2a94a2;
}
.test-tool-logo {
  width: 20px;
  height: auto;
  display: inline-block;
  vertical-align: middle;
}
.panel-default:has(.test-detail-heading) {
  border: none;
  box-shadow: none;
}
body.flex-fill-page .content-area > .content > .test-detail-panel {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}
body.flex-fill-page .test-detail-results {
  flex: 1;
  overflow-y: auto;
  min-height: 0;
}
.panel-heading.test-detail-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 0 11px;
  height: 50px;
  background: #fff;
  border-bottom: 2px solid #2a94a2;
}
.panel-heading.test-detail-heading .scan-side-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}
.test-status-icon {
  width: 10px;
  height: 10px;
  display: inline-block;
  margin-right: 2px;
  vertical-align: middle;
  background: #FFFFFF;
  position: relative;
  top: -2px;
}
.test-status-icon.FAILED,
.test-status-icon.error {
  background: #f36262;
}
.test-status-icon.DRAFT,
.test-status-icon.UNFINISHED,
.test-status-icon.warning {
  background: #fec667;
}
.test-status-icon.PUBLISHED,
.test-status-icon.PASSED,
.test-status-icon.note {
  background: #247e8a;
}
.collapse-chevron {
  transition: transform 0.2s ease;
  margin-top: 4px;
  color: #999;
}
.collapsed .collapse-chevron {
  transform: rotate(-90deg);
}
.custom-active-radio label.btn.active:not(.custom-x) {
  background: #247e8a;
  color: #fff;
}
.scanner-logo-small {
  max-width: 16px;
  width: 100%;
  display: inline-block;
}
.cursor-default {
  cursor: default !important;
}
.panel-right-actions {
  position: absolute;
  top: 7px;
  right: 20px;
}
.remove-btn-over-panel {
  z-index: 2;
  position: relative;
}
.checkbox-default {
  height: 16px;
  width: 16px;
  position: relative;
  top: 3px;
  margin: 0!important;
}
.sticky-vuln-actions {
  position: sticky;
  top: 61px;
  background: #f4f4f2;
  z-index: 1;
  padding: 10px 0 !important;
}
.navbar-attention {
  font-size: 10px;
  display: none;
  line-height: 1em;
  vertical-align: middle;
  top: -11px;
  position: absolute;
  right: 100%;
  left: auto;
  padding: 15px 9px;
  width: 250px;
  background: #f4f4f2;
  z-index: 1;
}
li:has(.navbar-attention-hover):hover .navbar-attention,
.navbar-attention:hover {
  display: inline-block;
}
.sticky-risk-actions {
  position: sticky;
  top: 45px;
  background: #f4f4f2;
  z-index: 1;
  padding: 10px 0 !important;
  margin-left: -21px;
  margin-right: -21px;
  margin-top: -40px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e0e1e3;
}
.reactive-table-slim-filter .reactive-table-options {
  width: 40%!important;
}
.reactive-table-slim-filter .reactive-table-options .reactive-table-filter {
  width: 100%!important;
}
.reactive-table-slim-filter .reactive-table tbody tr {
  cursor: pointer;
}
.reactive-table-slim-filter .reactive-table tbody tr:hover {
  background-color: rgba(42, 148, 162, 0.04);
}
.risk-task-filters {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
}
.risk-task-controls .reactive-table-options {
  width: auto !important;
  overflow: hidden;
  margin-bottom: 10px;
}
.risk-task-controls .reactive-table-options .reactive-table-filter {
  width: 100% !important;
}
@media (max-width: 1400px) {
  .navbar-nav > li > a {
    padding: 15px 9px;
  }
  .launcher_placeholder {
    width: 45px;
  }
  .footer {
    font-size: 8.5px;
  }
  .breadcrumb > li {
    font-size: 11px;
  }
  .layout-bumper {
    height: 30px;
  }
  .start-intro {
    margin-top: 0;
  }
  .form-inline .form-group {
    width: auto!important;
  }
  .scanner-logo-holder {
    height: 100px;
  }
  .scanner-logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
  }
  .h-auto {
    height: auto;
  }
  .reactive-table-options.col-sm-8.pull-right {
    width: 40%;
  }
  .reactive-table-options.col-sm-8.pull-right .reactive-table-filter {
    width: 100%;
  }
  td.accessUrl {
    word-break: break-all;
  }
  .search-by-tags .select2-input {
    width: 100%!important;
  }
  .search-by-assigned {
    width: 120px!important;
  }
  .search-by-type .btn {
    width: 60px!important;
  }
  .col-actions-big,
  .col-actions {
    width: auto!important;
  }
  .plan .btn {
    padding: 4px 6px;
    font-size: 11px;
  }
  .ecs-bar-title {
    font-size: 10px;
  }
  .ecs-dependencies-with-details,
  .ecs-dependencies-box {
    width: 100%!important;
  }
  .ecs-dependencies-aside {
    display: none;
  }
  .sm-flexible-btns label span {
    display: none;
  }
  .sm-flexible-btns label {
    width: auto!important;
  }
  .sm-flexible-btns label:before {
    content: "*";
    color: transparent;
    display: inline-block;
  }
  .sm-flexible-btns label.active:after {
    position: absolute;
    right: 1px;
    bottom: 1px;
    display: inline-block;
    font: normal normal normal 14px / 1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\f058";
  }
  #vulnerabilityListFilter,
  #componentListFilter {
    padding-left: 0;
    padding-right: 0;
  }
  #vulnerabilityListFilter .form-control,
  #componentListFilter .form-control {
    max-width: 200px;
  }
  .intro-dependency-stats > label {
    display: none;
  }
  .dendrogram-toggle {
    top: 5px;
  }
  .filter-sm-offset {
    margin-top: 5px;
    display: inline-block;
  }
}
/* Flex-fill mode: convert float columns to flexbox for full-height layout */
body.flex-fill-page {
  /* Tree view: .ecs-tree wraps filters + .ecs-dependencies */
  /* Graph view: .ecs-graphs wraps the sunburst chart */
  /* Deep scans / tests: full-width single-column views */
  /* Component/algorithm/COTS/infrastructure list pages */
}
body.flex-fill-page .ecs-dependencies-box {
  flex: 1 1 0%;
  min-height: 0;
  display: flex;
  flex-direction: row;
}
body.flex-fill-page .ecs-dependencies-box > .alert,
body.flex-fill-page .ecs-dependencies-box > .hpanel {
  width: 100%;
}
body.flex-fill-page .ecs-dependencies-with-details {
  float: none;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
body.flex-fill-page .ecs-dependencies {
  flex: 1 1 0%;
  min-height: 0;
  overflow-y: auto;
  height: auto !important;
}
body.flex-fill-page .intro-dependency-filters,
body.flex-fill-page .intro-dependency-pages {
  flex-shrink: 0;
}
body.flex-fill-page .ecs-tree {
  flex: 1 1 0%;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
body.flex-fill-page .ecs-graphs {
  flex: 1 1 0%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
body.flex-fill-page .ecs-graphs > .row {
  flex: 1 1 0%;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
body.flex-fill-page .ecs-graphs > .row > [class*="col-"] {
  flex: 1 1 0%;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
body.flex-fill-page .ecs-graphs .sunburst-chart {
  flex: 1 1 0%;
  min-height: 0;
}
body.flex-fill-page .ecs-graphs .sunburst-chart #sunburst-chart {
  width: 100%;
  height: 100%;
}
body.flex-fill-page .ecs-graphs > .row.m-t-sm {
  flex: 0 0 auto;
}
body.flex-fill-page .ecs-tests,
body.flex-fill-page .ecs-deepscans {
  flex: 1 1 100%;
  min-height: 0;
  overflow-y: hidden;
}
body.flex-fill-page .algorithms-content,
body.flex-fill-page .components-content,
body.flex-fill-page .cots-content,
body.flex-fill-page .infrastructure-content {
  flex: 1 1 0%;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
body.flex-fill-page .algorithms-content > .panel-heading,
body.flex-fill-page .components-content > .panel-heading,
body.flex-fill-page .cots-content > .panel-heading,
body.flex-fill-page .infrastructure-content > .panel-heading,
body.flex-fill-page .algorithms-content > .actions,
body.flex-fill-page .components-content > .actions,
body.flex-fill-page .cots-content > .actions,
body.flex-fill-page .infrastructure-content > .actions {
  flex-shrink: 0;
}
body.flex-fill-page .algorithms-content > .panel,
body.flex-fill-page .components-content > .panel,
body.flex-fill-page .cots-content > .panel,
body.flex-fill-page .infrastructure-content > .panel {
  flex: 1 1 0%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  border: none;
  box-shadow: none;
}
body.flex-fill-page .algorithms-content > .panel > .panel-body,
body.flex-fill-page .components-content > .panel > .panel-body,
body.flex-fill-page .cots-content > .panel > .panel-body,
body.flex-fill-page .infrastructure-content > .panel > .panel-body {
  flex: 1 1 0%;
  min-height: 0;
  overflow-y: auto;
  padding: 20px;
}
body.flex-fill-page .ecs-dependencies-aside {
  float: none;
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: auto;
}
body.flex-fill-page .ecs-aside-content,
body.flex-fill-page .ecs-aside-content-slim {
  flex: 1 1 0%;
  min-height: 0;
  overflow-y: auto;
  height: auto;
}
/* CSAF and Threat Modelling list pages — v3-design table pattern */
.csaf-list .reactive-table tbody tr,
.threat-modelling-list .reactive-table tbody tr {
  cursor: pointer;
}
.csaf-list .reactive-table tbody tr:hover,
.threat-modelling-list .reactive-table tbody tr:hover {
  background-color: rgba(42, 148, 162, 0.04);
}
.csaf-list .reactive-table tbody tr .col-actions .btn,
.threat-modelling-list .reactive-table tbody tr .col-actions .btn,
.csaf-list .reactive-table tbody tr .col-actions-fixed .btn,
.threat-modelling-list .reactive-table tbody tr .col-actions-fixed .btn {
  margin-top: -5px;
  margin-bottom: -5px;
}
body.flex-fill-page .csaf-list,
body.flex-fill-page .threat-modelling-list {
  flex: 1 1 0%;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
body.flex-fill-page .csaf-list > .panel,
body.flex-fill-page .threat-modelling-list > .panel {
  border: none;
  box-shadow: none;
  flex: 1 1 0%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}
body.flex-fill-page .csaf-list > .panel > .panel-body,
body.flex-fill-page .threat-modelling-list > .panel > .panel-body {
  flex: 1 1 0%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding: 20px;
  overflow: hidden;
}
body.flex-fill-page .csaf-list > .panel > .panel-body > .clearfix,
body.flex-fill-page .threat-modelling-list > .panel > .panel-body > .clearfix {
  flex-shrink: 0;
}
body.flex-fill-page .csaf-list > .panel > .panel-body > .reactive-table-body,
body.flex-fill-page .threat-modelling-list > .panel > .panel-body > .reactive-table-body {
  flex: 1 1 0%;
  min-height: 0;
  overflow-y: auto;
}
body.flex-fill-page .csaf-list > .panel > .panel-body > .reactive-table-navigation,
body.flex-fill-page .threat-modelling-list > .panel > .panel-body > .reactive-table-navigation {
  flex-shrink: 0;
}
body.flex-fill-page .content > .sbom-detail-columns {
  flex: 1 1 0%;
  min-height: 0;
}
body.flex-fill-page .content > .threat-model-columns {
  flex: 1 1 0%;
  min-height: 0;
}
.threat-model-columns {
  display: flex;
}
.threat-model-columns > [class*="col-"] {
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.threat-model-panel {
  display: flex;
  flex-direction: column;
  flex: 1 1 0%;
  min-height: 0;
  border: none;
  box-shadow: none;
}
.threat-model-body {
  flex: 1 1 0%;
  min-height: 0;
  overflow-y: auto;
  padding: 0;
}
.threat-model-body textarea.form-control {
  height: 100%;
  min-height: 200px;
  resize: none;
  border: none;
}
.releases-list .reactive-table tbody tr,
.approves-list .reactive-table tbody tr {
  cursor: pointer;
}
.releases-list .reactive-table tbody tr:hover,
.approves-list .reactive-table tbody tr:hover {
  background-color: rgba(42, 148, 162, 0.04);
}
.releases-list .reactive-table tbody tr .col-actions .btn,
.approves-list .reactive-table tbody tr .col-actions .btn,
.releases-list .reactive-table tbody tr .col-actions-big .btn,
.approves-list .reactive-table tbody tr .col-actions-big .btn {
  margin-top: -5px;
  margin-bottom: -5px;
}
body.flex-fill-page .releases-list,
body.flex-fill-page .approves-list {
  flex: 1 1 0%;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
body.flex-fill-page .releases-list > .panel,
body.flex-fill-page .approves-list > .panel {
  border: none;
  box-shadow: none;
  flex: 1 1 0%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}
body.flex-fill-page .releases-list > .panel > .panel-body,
body.flex-fill-page .approves-list > .panel > .panel-body {
  flex: 1 1 0%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding: 20px;
  overflow: hidden;
}
body.flex-fill-page .releases-list > .panel > .panel-body > .clearfix,
body.flex-fill-page .approves-list > .panel > .panel-body > .clearfix {
  flex-shrink: 0;
}
body.flex-fill-page .releases-list > .panel > .panel-body > .reactive-table-body,
body.flex-fill-page .approves-list > .panel > .panel-body > .reactive-table-body {
  flex: 1 1 0%;
  min-height: 0;
  overflow-y: auto;
}
body.flex-fill-page .releases-list > .panel > .panel-body > .reactive-table-navigation,
body.flex-fill-page .approves-list > .panel > .panel-body > .reactive-table-navigation {
  flex-shrink: 0;
}
body.flex-fill-page .releases-list > .panel > .panel-body > .table-responsive,
body.flex-fill-page .approves-list > .panel > .panel-body > .table-responsive {
  flex: 1 1 0%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
body.flex-fill-page .releases-list > .panel > .panel-body > .table-responsive > .clearfix,
body.flex-fill-page .approves-list > .panel > .panel-body > .table-responsive > .clearfix {
  flex-shrink: 0;
}
body.flex-fill-page .releases-list > .panel > .panel-body > .table-responsive > .reactive-table-body,
body.flex-fill-page .approves-list > .panel > .panel-body > .table-responsive > .reactive-table-body {
  flex: 1 1 0%;
  min-height: 0;
  overflow-y: auto;
}
body.flex-fill-page .releases-list > .panel > .panel-body > .table-responsive > .reactive-table-navigation,
body.flex-fill-page .approves-list > .panel > .panel-body > .table-responsive > .reactive-table-navigation {
  flex-shrink: 0;
}
.releases-header-actions .select2,
.approves-header-actions .select2 {
  min-width: 200px;
  max-width: 300px;
}
.approves-detail-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.approves-detail-header-left {
  flex: 1;
  min-width: 0;
}
.approves-detail-header-left h2 {
  font-size: 24px;
  margin-top: 0;
}
.approves-detail-header-left h2 small {
  display: inline;
}
.approves-detail-header-left > small {
  display: block;
}
.approves-detail-header-actions {
  flex-shrink: 0;
}
.approves-detail-dropdown {
  padding: 8px 0;
  min-width: 200px;
}
.approves-detail-dropdown > li > span {
  display: block;
  padding: 4px 16px;
  color: #333;
  white-space: nowrap;
}
.notice-warning-dropdown {
  min-width: 350px;
  max-width: 500px;
  max-height: 400px;
  overflow-y: auto;
  padding: 12px 16px;
}
.notice-warning-dropdown h6 {
  margin-top: 0;
  margin-bottom: 8px;
}
.notice-warning-dropdown ul {
  padding-left: 18px;
  margin-bottom: 0;
}
.notice-warning-dropdown ul li {
  font-size: 12px;
  padding: 2px 0;
}
.license-row {
  display: flex;
  align-items: center;
  padding: 6px 15px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
}
.license-row:hover {
  background-color: rgba(42, 148, 162, 0.04);
}
.license-row-name {
  flex: 1 1 0%;
  min-width: 0;
}
.license-row-rate {
  width: 60px;
  text-align: center;
  flex-shrink: 0;
}
.license-row-link {
  width: 40px;
  text-align: center;
  flex-shrink: 0;
}
.theme-dark .license-row {
  border-bottom-color: #2D2D2D;
}
.licenses-search {
  position: relative;
  flex: 0 0 250px;
}
.licenses-search .licenses-search-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 12px;
}
.licenses-search input.form-control {
  padding-left: 30px;
  border-radius: 15px;
  border-color: #ddd;
  background-color: #fff;
}
.licenses-search input.form-control:focus {
  border-color: #2a94a2;
  box-shadow: 0 0 0 2px rgba(42, 148, 162, 0.1);
}
.theme-dark .licenses-search .licenses-search-icon {
  color: #b3b3b4;
}
.theme-dark .licenses-search input.form-control {
  background-color: #292929;
  border-color: #2D2D2D;
  color: #FFFFFF;
}
body.flex-fill-page .licenses-content > .hpanel {
  flex: 1 1 0%;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
body.flex-fill-page .licenses-content > .hpanel > .nav-tabs {
  flex-shrink: 0;
}
body.flex-fill-page .licenses-content > .hpanel > .tab-content {
  flex: 1 1 0%;
  min-height: 0;
  overflow-y: auto;
  background-color: #fff;
}
.theme-dark .licenses-content > .hpanel > .tab-content {
  background-color: #292929;
}
.approves-detail-tabs {
  padding: 8px 15px 0;
}
body.flex-fill-page .checkContent {
  flex: 1 1 0%;
  min-height: 0;
  overflow-y: auto;
}
.checkContent .hpanel {
  border: none;
  box-shadow: none;
  border-radius: 8px;
  overflow: visible;
  margin-bottom: 15px;
}
.checkContent .hpanel > .panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  color: #063d50;
  padding: 10px 16px;
  letter-spacing: 0.3px;
  border-bottom: 2px solid #2a94a2;
}
.checkContent .twitter-typeahead {
  width: 100%;
}
.checkContent .twitter-typeahead .tt-input,
.checkContent .twitter-typeahead .tt-hint {
  height: 34px;
  padding: 6px 12px;
}
.checkContent .check-warning {
  margin-top: 10px;
}
.checkContent .check-warning a {
  color: #feba49;
  font-size: 13px;
}
.checkContent .check-warning a:hover {
  opacity: 0.85;
}
.checkContent .check-hint {
  margin-top: 10px;
  color: #cf4747;
  font-size: 13px;
}
.row.tests .reactive-table tbody tr {
  cursor: pointer;
}
.row.tests .reactive-table tbody tr:hover {
  background-color: rgba(42, 148, 162, 0.04);
}
body.flex-fill-page .row.tests {
  flex: 1 1 0%;
  min-height: 0;
}
body.flex-fill-page .row.tests > [class*="col-"] {
  flex: 1 1 0%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
}
body.flex-fill-page .row.tests > [class*="col-"] > .hpanel {
  flex: 1 1 0%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}
body.flex-fill-page .row.tests > [class*="col-"] > .hpanel > .panel-body {
  flex: 1 1 0%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
body.flex-fill-page .row.tests > [class*="col-"] > .hpanel > .panel-body > .clearfix {
  flex-shrink: 0;
}
body.flex-fill-page .row.tests > [class*="col-"] > .hpanel > .panel-body > .reactive-table-body {
  flex: 1 1 0%;
  min-height: 0;
  overflow-y: auto;
}
body.flex-fill-page .row.tests > [class*="col-"] > .hpanel > .panel-body > .reactive-table-navigation {
  flex-shrink: 0;
}
.bulk-repo-stats-dropdown {
  min-width: 340px;
  padding: 14px 16px;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.bulk-repo-stats-dropdown .stats-section {
  margin-bottom: 10px;
}
.bulk-repo-stats-dropdown .stats-section:last-child {
  margin-bottom: 0;
}
.bulk-repo-stats-dropdown .stats-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #6b7280;
  margin-bottom: 6px;
}
.bulk-repo-stats-dropdown .progress {
  margin-bottom: 0;
}
.deep-scan-state-filter .filter-icon {
  display: none;
}
.deepscan-header {
  container-type: inline-size;
  container-name: deepscan-header;
}
.deepscan-header .dropdown:hover > .dropdown-menu,
.deepscan-header .dropdown:hover > .dropdown-toggle ~ .dropdown-menu {
  display: block;
}
@container deepscan-header (max-width: 1000px) {
  .deep-scan-state-filter .filter-label {
    display: none;
  }
  .deep-scan-state-filter .filter-icon {
    display: inline;
  }
}
.deepscan-filter-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  padding: 6px 10px;
  border-bottom: 1px solid #e5e5e5;
  background: #fafafa;
}
.deepscan-filter-bar .input-group {
  flex: 1 1 0%;
  min-width: 0;
}
.deepscan-filter-bar .input-group-addon {
  background: transparent;
  border: none;
  padding: 4px 6px 4px 2px;
  font-size: 12px;
  color: #555;
}
.deepscan-filter-bar .form-control {
  font-size: 12px;
  border-radius: 4px !important;
}
.deepscan-filter-bar .deepscan-dropdown-btn {
  text-align: left;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 4px !important;
}
.deepscan-filter-bar .deepscan-dropdown-btn .deepscan-dropdown-label {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.deepscan-filter-bar .deepscan-dropdown-btn .caret {
  flex-shrink: 0;
  margin-left: 6px;
}
.deepscan-filter-bar .dropdown-menu {
  min-width: 100%;
  max-height: 300px;
  overflow-y: auto;
  font-size: 12px;
}
.deepscan-filter-bar .deepscan-filter-bar-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  flex-shrink: 0;
}
.deepscan-execution-dropdown {
  display: inline;
  position: static;
}
.deepscan-execution-dropdown .deepscan-execution-toggle {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dashed currentColor;
  padding-bottom: 1px;
  cursor: pointer;
}
.deepscan-execution-dropdown .deepscan-execution-toggle:hover,
.deepscan-execution-dropdown .deepscan-execution-toggle:focus {
  text-decoration: none;
  opacity: 0.8;
}
.deepscan-execution-dropdown .deepscan-execution-toggle .caret {
  margin-left: 3px;
}
.deepscan-execution-dropdown .dropdown-menu {
  min-width: 220px;
  max-height: 300px;
  overflow-y: auto;
}
.deepscan-stats-dropdown {
  min-width: 360px;
  max-height: 450px;
  overflow-y: auto;
  padding: 14px 16px;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.deepscan-stats-dropdown p {
  margin-bottom: 6px;
  font-size: 13px;
}
.deepscan-stats-dropdown p:last-child {
  margin-bottom: 0;
}
.deepscan-stats-dropdown .notice-section {
  padding: 8px 10px;
  border-radius: 4px;
  margin-top: 8px;
}
.deepscan-stats-dropdown .notice-section h6 {
  font-weight: 600;
  margin: 0 0 4px 0;
}
.deepscan-stats-dropdown .notice-section ul {
  margin-bottom: 4px;
  padding-left: 0;
}
.deepscan-stats-dropdown .notice-danger {
  background: #fef2f2;
  border-left: 3px solid #dc3545;
}
.deepscan-stats-dropdown .notice-success {
  background: #f0fdf4;
  border-left: 3px solid #28a745;
}
.ecs-dependencies-box .ecs-dependencies-with-details {
  flex: 1 1 0%;
  width: auto;
  margin-right: 8px;
}
.ecs-dependencies-box .deepscan-aside {
  width: 41.67%;
  flex: 0 0 41.67%;
  float: none;
  height: auto;
  min-height: 0;
  overflow-y: auto;
  padding-left: 8px;
  margin-right: 5px;
}
.deepscan-header-actions .ossf-score-box {
  top: 0;
  margin-bottom: 0;
}
.ecs-dependencies .tree-builder .list-group-item,
.ecs-dependencies .tree-builder .tree-builder-node {
  border: none;
  border-left: 3px solid transparent;
  border-radius: 0;
  padding: 8px 12px;
  margin-bottom: 0;
  transition: all 0.15s ease;
  font-size: 13px;
}
.ecs-dependencies .tree-builder .list-group-item:hover,
.ecs-dependencies .tree-builder .tree-builder-node:hover {
  background-color: rgba(42, 148, 162, 0.04);
  border-left-color: #2a94a2;
}
.ecs-dependencies .tree-builder .list-group-item.active,
.ecs-dependencies .tree-builder .tree-builder-node.active {
  background-color: rgba(42, 148, 162, 0.08);
  border-left-color: #2a94a2;
  color: #040f18;
}
.ecs-dependencies .tree-builder .list-group-item:nth-child(even):not(:hover) {
  background-color: rgba(0, 0, 0, 0.015);
}
.ecs-dependencies .tree-builder .tree-builder-node {
  display: flex;
  align-items: center;
  overflow: hidden;
}
.ecs-dependencies .tree-builder .level-offset {
  float: none !important;
  flex-shrink: 0;
}
.ecs-dependencies .tree-builder .tree-builder-file {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.ecs-dependencies .tree-builder .tree-builder-file .select_results {
  display: flex;
  align-items: center;
  overflow: hidden;
}
.ecs-dependencies .tree-builder .tree-builder-file .dependency-name {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.ecs-dependencies .tree-builder .tree-builder-file .dependency-name .d-line {
  display: flex !important;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
}
.ecs-dependencies .tree-builder .tree-builder-file .dependency-name .d-path {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  min-width: 0;
  max-width: none;
  margin-left: 6px;
}
.ecs-dependencies .tree-builder .tree-builder-file .dependency-name .tree-builder-licenses {
  flex-shrink: 1;
  min-width: 0;
  max-width: 30%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 11px;
  margin-left: 6px;
}
.ecs-dependencies .tree-builder .tree-builder-file .dependency-name .add_feedback {
  flex-shrink: 0;
  margin-left: 4px;
}
.ecs-dependencies .tree-builder .tree-builder-file .dependency-params {
  flex-shrink: 0;
  white-space: nowrap;
}
.ecs-dependencies .tree-builder .dependency-label.disabled {
  display: none;
}
.ecs-dependencies .tree-builder .tree-builder-folder {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  color: #063d50;
  overflow: hidden;
}
.ecs-dependencies .tree-builder .tree-builder-folder > .tree-builder-icon {
  flex-shrink: 0;
}
.ecs-dependencies .tree-builder .tree-builder-folder > span:not(.fa):not(.label):not(.pull-right) {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
  flex: 1;
}
.ecs-dependencies .tree-builder .tree-builder-folder .tree-builder-licenses {
  flex-shrink: 1;
  min-width: 0;
  max-width: 40%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 11px;
}
.ecs-dependencies .tree-builder .tree-builder-folder > .pull-right,
.ecs-dependencies .tree-builder .tree-builder-folder > span.label.label-primary {
  flex-shrink: 0;
  margin-left: auto;
  float: none !important;
}
.ecs-dependencies .tree-builder .tree-builder-folder .label-primary {
  background: #2a94a2;
  color: #fff;
  border-radius: 12px;
  font-size: 11px;
  padding: 2px 8px;
  font-weight: 500;
}
.ecs-dependencies .deepscan-no-results {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  color: #adb5bd;
  text-align: center;
  flex: 1;
}
.ecs-dependencies .deepscan-no-results .fa {
  font-size: 28px;
  margin-bottom: 10px;
  opacity: 0.5;
}
.ecs-dependencies .deepscan-no-results span:last-child {
  font-size: 13px;
}
.ecs-dependencies .deepscan-no-results.deepscan-no-results-filtered {
  color: #7c8ea0;
}
.ecs-dependencies .deepscan-no-results.deepscan-no-results-filtered .fa {
  color: #8ea4b8;
}
.deepscan-aside {
  position: relative;
}
.deepscan-aside > .hpanel {
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  margin-bottom: 0;
}
.deepscan-aside > .hpanel > .panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  color: #063d50;
  letter-spacing: 0.3px;
  padding: 0 11px;
  height: 50px;
  border-bottom: 2px solid #2a94a2;
  flex-shrink: 0;
}
.deepscan-aside > .hpanel > .panel-heading > .truncate {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 0;
}
.deepscan-aside > .hpanel > .panel-heading .scan-side-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  margin-left: 8px;
}
.deepscan-aside > .hpanel > .panel-heading .scan-side-actions .btn {
  padding: 4px 8px;
  font-size: 12px;
  border-radius: 4px;
}
.deepscan-aside > .hpanel > .panel-body {
  flex: 1 1 0%;
  min-height: 0;
  overflow-y: auto;
  padding: 12px;
}
.deepscan-aside .scan-aside-breadcrumb {
  background: rgba(42, 148, 162, 0.06);
  border: none;
  border-radius: 0;
  padding: 8px 14px;
  font-size: 12px;
  margin: -12px -12px 12px -12px;
  width: calc(100% + 24px);
  max-width: calc(100% + 24px);
  color: #040f18;
  overflow: hidden;
}
.deepscan-aside .scan-aside-breadcrumb > li {
  color: #040f18;
}
.deepscan-aside .scan-aside-breadcrumb > li:first-child:before {
  content: "/";
  color: #999;
  padding: 0 3px 0 0;
}
.deepscan-aside .scan-aside-breadcrumb > li + li:before {
  color: #999;
  padding: 0 3px;
}
.deepscan-aside .aside-section-inner {
  margin: 0 0 12px;
}
.deepscan-aside .aside-section-title {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: #6b7280;
  padding: 6px 0;
}
.deepscan-aside .aside-section-content {
  padding: 8px 10px;
  font-size: 13px;
}
.theme-dark .deepscan-filter-bar {
  background: #1e1e1e;
  border-bottom-color: #2d2d2d;
}
.theme-dark .ecs-dependencies-box .ecs-dependencies-with-details.hpanel > .panel-heading {
  color: #e0e0e0;
}
.theme-dark .ecs-dependencies .tree-builder .tree-builder-folder {
  color: #e0e0e0;
}
.theme-dark .ecs-dependencies .tree-builder .list-group-item:nth-child(even):not(:hover) {
  background-color: rgba(255, 255, 255, 0.03);
}
.theme-dark .ecs-dependencies .deepscan-no-results {
  color: #6b7280;
}
.theme-dark .ecs-dependencies .deepscan-no-results.deepscan-no-results-filtered {
  color: #7c8ea0;
}
.theme-dark .deepscan-aside > .hpanel {
  background: #292929;
}
.theme-dark .deepscan-aside > .hpanel > .panel-heading {
  color: #e0e0e0;
}
.theme-dark .deepscan-aside .scan-aside-breadcrumb {
  background: rgba(96, 191, 173, 0.08);
  color: #b3b3b4;
}
.theme-dark .deepscan-aside .scan-aside-breadcrumb > li + li:before {
  color: #555;
}
.theme-dark .deepscan-aside .aside-section-title {
  color: #9ca3af;
}
.theme-dark .deepscan-stats-dropdown {
  background: #292929;
  border-color: #3d3d3d;
}
.theme-dark .deepscan-stats-dropdown .notice-danger {
  background: rgba(220, 53, 69, 0.12);
}
.theme-dark .deepscan-stats-dropdown .notice-success {
  background: rgba(40, 167, 69, 0.12);
}
.deepscan-content .reactive-table tbody tr {
  cursor: pointer;
}
.deepscan-content .reactive-table tbody tr:hover {
  background-color: rgba(42, 148, 162, 0.04);
}
.deepscan-content .reactive-table tbody tr .col-actions .btn {
  margin-top: -5px;
  margin-bottom: -5px;
}
body.flex-fill-page .deepscan-content {
  flex: 1 1 0%;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
body.flex-fill-page .deepscan-content > .panel {
  border: none;
  box-shadow: none;
  flex: 1 1 0%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}
body.flex-fill-page .deepscan-content > .panel > .panel-body {
  flex: 1 1 0%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding: 20px;
  overflow: hidden;
}
body.flex-fill-page .deepscan-content > .panel > .panel-body > .clearfix {
  flex-shrink: 0;
}
body.flex-fill-page .deepscan-content > .panel > .panel-body > .reactive-table-body {
  flex: 1 1 0%;
  min-height: 0;
  overflow-y: auto;
}
body.flex-fill-page .deepscan-content > .panel > .panel-body > .reactive-table-navigation {
  flex-shrink: 0;
}
.content > .row > [class*="col-"] > .panel.panel-default:not(.text-center) {
  border: none;
  box-shadow: none;
}
.sbom-list .reactive-table tbody tr,
.soup-list .reactive-table tbody tr,
.notice-list .reactive-table tbody tr {
  cursor: pointer;
}
.sbom-list .reactive-table tbody tr:hover,
.soup-list .reactive-table tbody tr:hover,
.notice-list .reactive-table tbody tr:hover {
  background-color: rgba(42, 148, 162, 0.04);
}
.sbom-list .reactive-table tbody tr .col-actions .btn,
.soup-list .reactive-table tbody tr .col-actions .btn,
.notice-list .reactive-table tbody tr .col-actions .btn {
  margin-top: -5px;
  margin-bottom: -5px;
}
body.flex-fill-page .sbom-list,
body.flex-fill-page .soup-list,
body.flex-fill-page .notice-list {
  flex: 1 1 0%;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
body.flex-fill-page .sbom-list > .panel,
body.flex-fill-page .soup-list > .panel,
body.flex-fill-page .notice-list > .panel {
  border: none;
  box-shadow: none;
  flex: 1 1 0%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}
body.flex-fill-page .sbom-list > .panel > .panel-body,
body.flex-fill-page .soup-list > .panel > .panel-body,
body.flex-fill-page .notice-list > .panel > .panel-body {
  flex: 1 1 0%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding: 20px;
  overflow: hidden;
}
body.flex-fill-page .sbom-list > .panel > .panel-body > .clearfix,
body.flex-fill-page .soup-list > .panel > .panel-body > .clearfix,
body.flex-fill-page .notice-list > .panel > .panel-body > .clearfix {
  flex-shrink: 0;
}
body.flex-fill-page .sbom-list > .panel > .panel-body > .reactive-table-body,
body.flex-fill-page .soup-list > .panel > .panel-body > .reactive-table-body,
body.flex-fill-page .notice-list > .panel > .panel-body > .reactive-table-body {
  flex: 1 1 0%;
  min-height: 0;
  overflow-y: auto;
}
body.flex-fill-page .sbom-list > .panel > .panel-body > .reactive-table-navigation,
body.flex-fill-page .soup-list > .panel > .panel-body > .reactive-table-navigation,
body.flex-fill-page .notice-list > .panel > .panel-body > .reactive-table-navigation {
  flex-shrink: 0;
}
.level-offset {
  display: block;
  height: 100%;
  float: left;
  margin-right: 5px;
}
.tree-builder-folder,
.tree-builder-file {
  cursor: pointer;
}
.tree-builder-icon {
  display: inline-block;
  text-align: center;
  width: 15px;
}
.tree-builder-child-list {
  padding-left: 0;
}
.module-footer {
  padding: 0 5px;
}
.module-footer .fa.warnings {
  color: #feba49;
}
.module-footer div.row {
  margin-left: 0px;
  margin-right: 0px;
}
.module-footer div.row div {
  padding-left: 1px;
  padding-right: 1px;
}
.module-details h4 {
  margin-bottom: 5px;
}
.module-details .module-description {
  height: 65px;
  margin-top: 15px;
  overflow: auto;
}
.module-stat {
  padding: 8px 0px;
  text-align: center;
  font-size: 9px;
  font-weight: 500;
}
.module-stat .module-stat-label {
  display: inline-block;
  color: #13466f;
  text-transform: uppercase;
}
.module-stat .module-stat-value {
  color: #040f18;
  display: inline;
}
.inner-b-50 {
  padding-bottom: 50px;
}
.inner-lr-40 {
  padding-left: 40px !important;
  padding-right: 40px !important;
}
.noUi-value-horizontal {
  margin-left: -35px;
  padding-top: 20px;
}
.noUi-value {
  width: 70px;
}
.noUi-value-horizontal {
  transform: none !important;
}
.no-bottom-errors .has-error .help-block {
  display: none;
}
.ecsbars-box {
  min-height: 75px;
}
#releases .reactive-table tbody tr {
  cursor: pointer;
}
#releases .reactive-table tbody tr:hover {
  background-color: rgba(42, 148, 162, 0.04);
}
.module-header-meta {
  margin-top: 2px;
}
.module-header-actions .module-settings-warning {
  background: rgba(240, 173, 78, 0.7) !important;
  border-color: rgba(240, 173, 78, 0.9) !important;
  color: #fff !important;
}
.module-header-actions .module-settings-warning:hover,
.module-header-actions .module-settings-warning:focus {
  background: rgba(240, 173, 78, 0.9) !important;
  border-color: #f0ad4e !important;
}
.module-analysis-line {
  margin-bottom: 4px;
  position: relative;
}
.module-execution-dropdown {
  display: inline;
  position: static;
}
.module-execution-dropdown:hover > .dropdown-menu {
  display: block;
}
.module-execution-dropdown .module-execution-toggle {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dashed currentColor;
  padding-bottom: 1px;
  cursor: pointer;
}
.module-execution-dropdown .module-execution-toggle:hover,
.module-execution-dropdown .module-execution-toggle:focus {
  text-decoration: none;
  opacity: 0.8;
}
.module-execution-dropdown .module-execution-toggle .caret {
  margin-left: 3px;
}
.module-execution-dropdown .dropdown-menu {
  min-width: 220px;
  max-height: 300px;
  overflow-y: auto;
}
.module-analysis-filter-badge {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 11px;
  vertical-align: middle;
  cursor: pointer;
  transition: all 0.15s ease;
}
.module-analysis-filter-badge .fa {
  margin-right: 3px;
  opacity: 0.7;
}
.module-analysis-filter-badge .fa-times {
  opacity: 0.5;
  margin-right: 0;
}
.module-analysis-filter-badge:hover,
.module-analysis-filter-badge:focus {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  text-decoration: none;
}
.module-analysis-filter-badge:hover .fa-times,
.module-analysis-filter-badge:focus .fa-times {
  opacity: 1;
}
.module-analysis-action-icon {
  display: inline-block;
  color: #fff;
  margin-left: 4px;
  font-size: 12px;
  padding: 2px 5px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.15s ease;
}
.module-analysis-action-icon:hover,
.module-analysis-action-icon:focus {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  text-decoration: none;
}
.module-stats-dropdown {
  display: inline-block;
}
.module-stats-dropdown-content {
  min-width: 400px;
  padding: 14px 16px;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.module-stats-dropdown-content > label {
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}
.module-stats-dropdown-content .ecsbars {
  min-width: 360px;
}
.ecs-dependencies-aside {
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.ecs-dependencies-aside > .panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  color: #063d50;
  letter-spacing: 0.3px;
  padding: 0 11px;
  height: 50px;
  border-bottom: 2px solid #2a94a2;
  flex-shrink: 0;
}
.module-aside-head {
  background: #fff !important;
  border: none !important;
  border-bottom: 2px solid #2a94a2 !important;
  height: 60px !important;
  padding: 0 11px !important;
  display: flex !important;
  align-items: center;
  gap: 8px;
}
.module-aside-head h5 {
  flex: 1;
  min-width: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #063d50;
  letter-spacing: 0.3px;
}
.module-aside-head .ecs-aside-head-actions {
  position: static;
  width: auto;
  display: flex;
  align-items: center;
  gap: 4px;
}
.module-aside-status-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.module-aside-status-dot:not([class*="bg-"]),
.module-aside-status-dot.bg- {
  background-color: #e0e1e3;
}
.module-aside-status-dot.dep-status-dot {
  margin: 0 3px 0 2px;
  align-self: center;
}
.ecs-dependencies-aside .ecs-aside-nav {
  padding-top: 60px;
}
.module-header-actions {
  flex-wrap: wrap;
}
.module-actions-overflow {
  display: none;
}
@media (max-width: 1400px) {
  .module-action-inline {
    display: none !important;
  }
  .module-actions-overflow {
    display: inline-block;
  }
}
.module-actions-overflow .dropdown-menu > li {
  border: none !important;
  box-shadow: none !important;
  line-height: normal;
}
.module-actions-overflow .dropdown-menu > li > .btn,
.module-actions-overflow .dropdown-menu > li > a.btn {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  border-radius: 0;
  color: #333;
  font-size: 13px;
  font-weight: normal;
  padding: 5px 20px;
  white-space: nowrap;
}
.module-actions-overflow .dropdown-menu > li > .btn:hover,
.module-actions-overflow .dropdown-menu > li > a.btn:hover,
.module-actions-overflow .dropdown-menu > li > .btn:focus,
.module-actions-overflow .dropdown-menu > li > a.btn:focus {
  background: #f5f5f5;
  color: #333;
}
.module-deps-heading .module-deps-heading-left {
  display: flex;
  align-items: center;
  gap: 6px;
}
.module-deps-heading .module-deps-heading-left .sorting,
.module-deps-heading .module-deps-heading-left .expand-all,
.module-deps-heading .module-deps-heading-left .collapse-all {
  padding: 6px 10px;
  font-size: 14px;
}
.module-deps-heading .module-deps-search {
  width: 180px;
}
.module-deps-heading .module-deps-search .input-group-addon {
  background: transparent;
  border: none;
  padding: 4px 6px 4px 2px;
  font-size: 12px;
  color: #555;
}
.module-deps-heading .module-deps-search .form-control {
  font-size: 12px;
  border-radius: 4px !important;
  height: 28px;
}
.ecs-dependencies .ecs-dependency {
  display: flex;
  align-items: center;
  padding: 6px 12px;
  border-bottom: none;
  border-left: 3px solid transparent;
  border-radius: 0;
  margin-bottom: 0;
  transition: all 0.15s ease;
  background: transparent;
}
.ecs-dependencies .ecs-dependency:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.015);
}
.ecs-dependencies .ecs-dependency:hover {
  background-color: rgba(42, 148, 162, 0.04);
  border-left-color: #2a94a2;
}
.ecs-dependencies .ecs-dependency.dependency-active {
  background-color: rgba(42, 148, 162, 0.08);
  border-left-color: #2a94a2;
  color: #063d50;
}
.ecs-dependencies .ecs-dependency.dependency-active .truncate,
.ecs-dependencies .ecs-dependency.dependency-active .dep-name-text {
  font-weight: 600;
}
.ecs-dependencies .ecs-dependency.dependency-root {
  background: transparent;
  color: inherit;
}
.ecs-dependencies .ecs-dependency.dependency-root:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.015);
}
.ecs-dependencies .ecs-dependency.dependency-root .dep-name-text {
  font-weight: 600;
}
.ecs-dependencies .ecs-dependency .dep-checkbox {
  flex-shrink: 0;
  margin: 0 6px 0 0;
  position: relative;
  top: 0;
  left: 0;
}
.ecs-dependencies .ecs-dependency .dependency-status {
  flex-shrink: 0;
  white-space: nowrap;
  margin-left: 0;
}
.ecs-dependencies .ecs-dependency .dependency-name {
  flex: 1;
  min-width: 0;
  display: flex;
  position: static;
  top: auto;
}
.ecs-dependencies .ecs-dependency .dep-name-line {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 6px;
  font-size: 13px;
  line-height: 1.4;
}
.ecs-dependencies .ecs-dependency .dep-root-icon {
  flex-shrink: 0;
}
.ecs-dependencies .ecs-dependency .dep-name-text {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
  word-break: break-word;
}
.ecs-dependencies .ecs-dependency .dep-version {
  opacity: 0.6;
  font-size: 12px;
}
.ecs-dependencies .ecs-dependency .dep-licenses {
  flex-shrink: 1;
  min-width: 0;
  max-width: 40%;
  margin-left: auto;
  display: flex;
  flex-wrap: nowrap;
  gap: 3px;
  overflow: hidden;
}
.ecs-dependencies .ecs-dependency .dep-licenses .tree-builder-licenses {
  flex-shrink: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 11px;
}
.dependency-label.disabled {
  display: none;
}
.ecs-dependencies-box > .pagination-compact,
.ecs-licenses > .pagination-compact,
.ecs-dependencies-box .intro-dependency-pages > .pagination-compact,
.ecs-licenses .intro-dependency-pages > .pagination-compact {
  display: none;
  padding-left: 12px;
  padding-right: 12px;
}
@media (max-width: 1499px) {
  .ecs-dependencies-box > .pagination-full,
  .ecs-licenses > .pagination-full,
  .ecs-dependencies-box .intro-dependency-pages > .pagination-full,
  .ecs-licenses .intro-dependency-pages > .pagination-full {
    display: none;
  }
  .ecs-dependencies-box > .pagination-compact,
  .ecs-licenses > .pagination-compact,
  .ecs-dependencies-box .intro-dependency-pages > .pagination-compact,
  .ecs-licenses .intro-dependency-pages > .pagination-compact {
    display: flex;
  }
}
.ecs-deepscans .reactive-table tbody tr,
.ecs-tests .reactive-table tbody tr {
  cursor: pointer;
}
.ecs-deepscans .reactive-table tbody tr:hover,
.ecs-tests .reactive-table tbody tr:hover {
  background-color: rgba(42, 148, 162, 0.04);
}
.ecs-deepscans .reactive-table tbody tr .col-actions .btn,
.ecs-tests .reactive-table tbody tr .col-actions .btn,
.ecs-deepscans .reactive-table tbody tr .col-actions-small .btn,
.ecs-tests .reactive-table tbody tr .col-actions-small .btn {
  margin-top: -5px;
  margin-bottom: -5px;
}
.ecs-deepscans > .panel-heading,
.ecs-tests > .panel-heading {
  justify-content: flex-start;
  margin-bottom: 8px;
}
.ecs-deepscans,
.ecs-tests {
  padding-left: 12px;
  padding-right: 12px;
}
.ecs-deepscans > .panel-heading,
.ecs-tests > .panel-heading {
  margin-left: -12px;
  margin-right: -12px;
}
.ecs-tree .ecs-dependency {
  display: flex;
  align-items: center;
  width: 100%;
}
.filter-type-dropdown:hover > .dropdown-menu {
  display: block;
}
.filter-type-dropdown .dropdown-menu > li.active > a {
  background: rgba(42, 148, 162, 0.08);
  color: #063d50;
  font-weight: 500;
}
.filter-type-dropdown .dropdown-menu .fa {
  width: 16px;
  text-align: center;
}
.license-status-inline {
  display: inline !important;
  font-size: 12px;
  position: relative;
  top: -2px;
  margin-left: 4px;
}
.license-detail-header-actions .input-group {
  width: 220px;
}
.license-detail-header-actions .input-group .input-group-addon {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-right: none;
  color: #fff;
  border-radius: 6px 0 0 6px;
}
.license-detail-header-actions .input-group .form-control {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 12px;
  border-radius: 0 6px 6px 0;
}
.license-detail-header-actions .input-group .form-control::placeholder {
  color: rgba(255, 255, 255, 0.55);
}
.module-tabs-bar {
  padding: 0 15px;
  margin-top: 6px;
}
#chat-panel {
  position: fixed;
  top: calc(62px + 8px);
  right: calc(48px + 8px);
  bottom: 8px;
  width: 380px;
  transform: translateX(calc(100% + 56px));
  transition: transform 0.4s ease;
  z-index: 1000;
  background: #f4f4f2;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.06);
}
.chat-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 44px;
  padding: 0 12px;
  background: #063d50;
  color: #fff;
  flex-shrink: 0;
}
.chat-panel-title {
  font-size: 13px;
  font-weight: 600;
}
.chat-panel-title i {
  margin-right: 4px;
}
.chat-panel-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}
.chat-panel-menu-toggle,
.chat-panel-expand,
.chat-panel-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.8;
  padding: 0 4px;
}
.chat-panel-menu-toggle:hover,
.chat-panel-expand:hover,
.chat-panel-close:hover {
  opacity: 1;
}
.chat-panel-expand {
  font-size: 13px;
}
.chat-panel-close {
  font-size: 20px;
}
.chat-panel-menu {
  display: none;
  flex-direction: column;
  background: #042b38;
  flex-shrink: 0;
  overflow: hidden;
}
.chat-panel-menu.open {
  display: flex;
}
.chat-panel-menu-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  color: #fff;
  font-size: 12px;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  text-align: left;
  text-decoration: none;
  width: 100%;
}
.chat-panel-menu-item:last-child {
  border-bottom: none;
}
.chat-panel-menu-item:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
}
.chat-panel-menu-item i {
  width: 14px;
  text-align: center;
  font-size: 13px;
}
.chat-panel-body {
  flex: 1;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.chat-panel-resize-handle {
  position: fixed;
  top: calc(62px + 8px);
  right: calc(48px + 380px + 8px);
  bottom: 8px;
  width: 5px;
  cursor: col-resize;
  z-index: 1001;
  opacity: 0;
  transition: opacity 0.2s;
}
.chat-panel-resize-handle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3px;
  height: 32px;
  border-radius: 2px;
  background: #e0e1e3;
}
.chat-panel-resize-handle:hover {
  opacity: 1;
}
.show-chat-panel #chat-panel {
  transform: translateX(0);
}
.show-chat-panel #wrapper {
  margin-right: calc(48px + 380px + 16px);
}
.show-chat-panel .chat-panel-resize-handle {
  display: block;
}
.show-chat-panel .toggle-chat-panel {
  color: #063d50;
  background: rgba(6, 61, 80, 0.08);
}
body:not(.show-chat-panel) .chat-panel-resize-handle {
  display: none;
}
#chat-panel .chat-wrapper {
  width: 100%;
  height: 100%;
}
#chat-panel .chat-wrapper .log {
  width: 100%;
  overflow-y: auto;
  padding: 12px 10px 80px;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.15) transparent;
}
#chat-panel .chat-wrapper .log::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
#chat-panel .chat-wrapper .log::-webkit-scrollbar-track {
  background: transparent;
}
#chat-panel .chat-wrapper .log::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 6px / 2;
}
#chat-panel .chat-wrapper .log::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.25);
}
#chat-panel .chat-wrapper .input-bar {
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  padding: 8px 10px;
  gap: 8px;
  background: #f4f4f2;
  border-top: 1px solid #e0e1e3;
}
#chat-panel .chat-wrapper .bubble {
  width: 100%;
  padding: 10px 14px;
  font-size: 13px;
}
#chat-panel .chat-wrapper .actions {
  width: 100%;
}
#chat-panel .chat-wrapper .power-actions {
  display: none;
}
@media (max-width: 768px) {
  #chat-panel {
    width: 100%;
    right: 0;
    top: 62px;
    bottom: 0;
    border-radius: 0;
    z-index: 1003;
  }
  .show-chat-panel #wrapper {
    margin-right: 0;
  }
}
.theme-dark {
  background-color: #1f1f1f;
  color: #b3b3b4;
}
.theme-dark #header {
  background-color: #1f1f1f;
}
.theme-dark #logo.light-version {
  background-color: #1f1f1f;
}
.theme-dark .header-link {
  background-color: #1f1f1f;
  color: #ffffff;
}
.theme-dark .header-link:hover {
  background-color: #292929;
}
.theme-dark .breadcrumb {
  background-color: #1f1f1f;
  color: #b3b3b4;
}
.theme-dark .navbar.navbar-static-top a,
.theme-dark .nav.navbar-nav li a {
  color: #FFFFFF;
}
.theme-dark .navbar.navbar-static-top .hide-menu {
  color: #ffffff;
}
.theme-dark #navigation {
  background-color: #1f1f1f;
  color: #b3b3b4;
}
.theme-dark #side-menu {
  background-color: #1f1f1f;
}
.theme-dark #side-menu li a {
  color: #ffffff;
}
.theme-dark #side-menu li:hover,
.theme-dark #side-menu li.active {
  background-color: #333333;
}
.theme-dark #side-menu li.active a,
.theme-dark #side-menu li:hover a {
  background: #333333;
  color: #60BFAD;
}
.theme-dark #side-menu.nav > li > a:hover,
.theme-dark #side-menu.nav > li > a:focus {
  background-color: #333333;
}
.theme-dark .sidebar-link.active,
.theme-dark .nav > .active > a:hover,
.theme-dark .nav > .active > a:focus {
  background: #292929 !important;
  color: #60BFAD !important;
}
.theme-dark .sidebar-dropdown .sidebar-link {
  background: #121212;
}
.theme-dark .nav-footer {
  border-top-color: #616161;
}
.theme-dark .nav-footer small {
  color: #b3b3b4;
}
.theme-dark .nav-footer small strong {
  color: #ffffff;
}
.theme-dark .nav-user-name,
.theme-dark .nav-user-role,
.theme-dark .nav-user-company,
.theme-dark .nav-company-trial {
  color: #b3b3b4;
}
.theme-dark #right-bar {
  background: #1f1f1f;
}
.theme-dark .right-bar-link {
  color: #b3b3b4;
}
.theme-dark .right-bar-link:hover,
.theme-dark .right-bar-link:focus {
  color: #60BFAD;
  background: rgba(96, 191, 173, 0.1);
}
.theme-dark .right-bar-nav .active .right-bar-link,
.theme-dark .right-bar-nav li.active .right-bar-link {
  color: #60BFAD;
  background: rgba(96, 191, 173, 0.12);
}
.theme-dark .content-area,
.fixed-sidebar.theme-dark #menu,
.theme-dark #side-menu,
.theme-dark .ecs-dependencies,
.theme-dark #chat-panel .chat-wrapper .log {
  scrollbar-color: rgba(255, 255, 255, 0.15) transparent;
}
.theme-dark .content-area::-webkit-scrollbar-thumb,
.fixed-sidebar.theme-dark #menu::-webkit-scrollbar-thumb,
.theme-dark #side-menu::-webkit-scrollbar-thumb,
.theme-dark .ecs-dependencies::-webkit-scrollbar-thumb,
.theme-dark #chat-panel .chat-wrapper .log::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
}
.theme-dark .content-area::-webkit-scrollbar-thumb:hover,
.fixed-sidebar.theme-dark #menu::-webkit-scrollbar-thumb:hover,
.theme-dark #side-menu::-webkit-scrollbar-thumb:hover,
.theme-dark .ecs-dependencies::-webkit-scrollbar-thumb:hover,
.theme-dark #chat-panel .chat-wrapper .log::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.25);
}
.theme-dark #wrapper {
  background: #1a1d21;
}
.theme-dark .content-area {
  background: #1a1d21;
}
.theme-dark .normalheader {
  background: #121212;
}
.theme-dark .normalheader h2,
.theme-dark .normalheader h2.font-light {
  color: #FFFFFF;
}
.theme-dark .normalheader small {
  color: #b3b3b4;
}
.theme-dark .normalheader .hpanel.top-full-panel > .panel-body {
  background: transparent;
}
.theme-dark .hpanel > .panel-body > .reactiveTableServerSide > .pagination-full,
.theme-dark .hpanel > .panel-body > .reactiveTableServerSide > .pagination-compact {
  background: #222529;
  border-top-color: #2D2D2D;
}
.theme-dark .pagination-compact {
  border-top-color: #2D2D2D;
  color: #b3b3b4;
}
.theme-dark .pagination-compact .compact-prev,
.theme-dark .pagination-compact .compact-next {
  border-color: #2D2D2D;
  color: #b3b3b4;
}
.theme-dark .pagination-compact .compact-prev:hover,
.theme-dark .pagination-compact .compact-next:hover {
  border-color: #60BFAD;
  color: #60BFAD;
}
.theme-dark .pagination-compact .form-control {
  border-color: #2D2D2D;
  background: #292929;
  color: #FFFFFF;
}
.theme-dark #chat-panel {
  background: #1a1d21;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.3);
}
.theme-dark .chat-panel-resize-handle::after {
  background: #616161;
}
.theme-dark .chat-wrapper .assistant .bubble {
  background: rgba(255, 255, 255, 0.08);
  color: #c6d2d3;
  border-color: #35373b;
}
.theme-dark .chat-wrapper .assistant .bubble .inline-code {
  background: rgba(255, 255, 255, 0.12);
  color: #e0e0e0;
}
.theme-dark .chat-wrapper .assistant .bubble .code-block {
  background: #0d0d0d;
}
.theme-dark .chat-wrapper .assistant .bubble .code-block .code-header {
  background: #1a1a1a;
}
.theme-dark .chat-wrapper .user .bubble {
  border-color: #35373b;
}
.theme-dark .chat-wrapper .input-bar {
  background: #1a1d21;
  border-top-color: #35373b;
}
.theme-dark .chat-wrapper .input-bar textarea {
  background: #222529;
  border-color: #35373b;
  color: #FFFFFF;
}
.theme-dark a:not(.btn) {
  color: #60BFAD;
}
.theme-dark .navbar-nav .open > a {
  background: #121212;
}
.theme-dark .navbar-nav > li > a:hover,
.theme-dark .navbar-nav > li > a:focus,
.theme-dark .navbar-nav .open > a:hover,
.theme-dark .navbar-nav .open > a:focus {
  background: #121212;
  border-bottom: 3px solid #60BFAD;
}
.theme-dark .nav > li.active {
  background: transparent;
  border-bottom: 3px solid #60BFAD;
}
.theme-dark .nav-tabs > li.active > a,
.theme-dark .nav-tabs > li.active > a:hover,
.theme-dark .nav-tabs > li.active > a:focus {
  background: #121212;
  border-color: #373737;
  color: #FFFFFF;
}
.theme-dark .dropdown-menu,
.theme-dark .dropdown-menu.hdropdown li {
  background: #1a1d21;
  border-color: #35373b;
  color: #c6d2d3;
}
.theme-dark .dropdown-menu > li > a {
  color: #c6d2d3;
}
.theme-dark .dropdown-menu > li > a:hover,
.theme-dark .dropdown-menu > li > a:focus {
  background: #1a1d21;
  border-color: #35373b;
  color: #60BFAD;
}
.theme-dark .form-control,
.theme-dark .select2-search input,
.theme-dark .select2-results .select2-no-results,
.theme-dark .select2-results .select2-searching,
.theme-dark .select2-results .select2-selection-limit,
.theme-dark pre {
  background: #222529;
  border-color: #35373b !important;
  color: #b3b3b4;
}
.theme-dark .input-group-file > input[readonly] {
  background: #222529 !important;
  border-color: #35373b !important;
  color: #b3b3b4 !important;
}
.theme-dark .select2-container .select2-choice,
.theme-dark .select2-container .select2-choices,
.theme-dark .select2-container--default .select2-selection--single,
.theme-dark .select2-container--default .select2-selection--multiple {
  background: #222529;
  border-color: #35373b !important;
  color: #b3b3b4;
}
.theme-dark .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #b3b3b4;
}
.theme-dark .select2-container.select2-container-disabled .select2-choice,
.theme-dark .select2-container.select2-container-disabled .select2-choices,
.theme-dark .select2-container--default.select2-container--disabled .select2-selection--single,
.theme-dark .select2-container--default.select2-container--disabled .select2-selection--multiple {
  background: #222529;
  border-color: #35373b !important;
  color: #b3b3b4;
}
.theme-dark .select2-container-multi .select2-choices .select2-search-choice,
.theme-dark .select2-container--default .select2-selection--multiple .select2-selection__choice {
  background: #121212;
  border-color: #373737;
  color: #FFFFFF;
}
.theme-dark .select2-drop,
.theme-dark .select2-dropdown {
  background: #121212;
  border-color: #373737;
  color: #FFFFFF;
}
.theme-dark .select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #292929;
}
.theme-dark .input-group-addon {
  background: #222529;
  border-color: #35373b !important;
  color: #b3b3b4;
}
.theme-dark .pe-7s-user.text-success {
  color: #60BFAD;
}
.theme-dark .header-user-link {
  color: #ffffff;
}
.theme-dark .header-user-link:hover,
.theme-dark .header-user-link:focus {
  color: #60BFAD;
}
.theme-dark .header-user-role {
  color: #b3b3b4;
}
.theme-dark .header-user-icon {
  color: #60BFAD;
}
.theme-dark .splash {
  background: #1a1d21;
  color: #d1d2d3;
}
.theme-dark .splash-holder {
  background: #1a1d21;
  color: #d1d2d3;
}
.theme-dark .badge-beta {
  background: #60BFAD;
  color: #fff;
}
.theme-dark .label-default {
  background: #222529;
  border-color: #adacab;
  color: #d1d2d3;
}
.theme-dark a.label-info {
  color: #FFFFFF;
}
.theme-dark .small-logo .text-primary {
  color: #FFFFFF;
}
.theme-dark .top-full-panel .panel-body {
  border: none;
}
.theme-dark .hpanel .panel-body {
  background: #222529;
  border-top: none;
  border-right: none;
  border-bottom: none;
}
.theme-dark .hpanel .panel-body > .text-info,
.theme-dark .hpanel .panel-body > .text-primary {
  color: #FFFFFF;
}
.theme-dark .panel-danger > .panel-heading,
.theme-dark .panel-default > .panel-heading,
.theme-dark .panel-warning > .panel-heading {
  background: #333333;
  color: #b3b3b4;
}
.theme-dark .hpanel > .panel-footer,
.theme-dark .intro-dependency-pages .panel-footer {
  background: #292929;
  border-color: #373737;
}
.theme-dark .hpanel.panel-collapse > .panel-heading,
.theme-dark .hpanel .hbuilt {
  background: #292929;
  border-color: #373737;
}
.theme-dark .panel,
.theme-dark .panel.panel-default {
  background: #292929;
  border-color: #373737;
}
.theme-dark .panel-heading .pull-right a {
  color: #FFFFFF;
}
.theme-dark .table .table {
  background-color: #121212;
}
.theme-dark .table-striped > tbody > tr:nth-of-type(odd),
.theme-dark .table-hover > tbody > tr:hover {
  background-color: #121212;
}
.theme-dark .table > thead > tr > td.active,
.theme-dark .table > tbody > tr > td.active,
.theme-dark .table > tfoot > tr > td.active,
.theme-dark .table > thead > tr > th.active,
.theme-dark .table > tbody > tr > th.active,
.theme-dark .table > tfoot > tr > th.active,
.theme-dark .table > thead > tr.active > td,
.theme-dark .table > tbody > tr.active > td,
.theme-dark .table > tfoot > tr.active > td,
.theme-dark .table > thead > tr.active > th,
.theme-dark .table > tbody > tr.active > th,
.theme-dark .table > tfoot > tr.active > th {
  background-color: #121212;
}
.theme-dark .reactive-table > thead > tr > th,
.theme-dark .table > thead > tr > th {
  color: #b3b3b4;
  border-bottom-color: #60BFAD !important;
}
.theme-dark .reactive-table > tbody > tr > td,
.theme-dark .table > tbody > tr > td {
  border-bottom-color: #2D2D2D;
}
.theme-dark .reactive-table > tbody > tr:hover,
.theme-dark .table > tbody > tr:hover {
  background-color: rgba(96, 191, 173, 0.08);
}
.theme-dark .reactive-table > tbody > tr.active > td,
.theme-dark .table > tbody > tr.active > td,
.theme-dark .reactive-table > tbody > tr.selected > td,
.theme-dark .table > tbody > tr.selected > td {
  background-color: rgba(96, 191, 173, 0.1);
  border-left-color: #60BFAD;
}
.theme-dark .reactive-table.table-striped > tbody > tr:nth-of-type(odd),
.theme-dark .table.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: transparent;
}
.theme-dark .reactiveTableServerSide .search-field,
.theme-dark .reactiveTableServerSide .sort-field {
  background: #222529;
  border-color: #35373b !important;
  color: #b3b3b4;
}
.theme-dark .reactiveTableServerSide .search-field:focus,
.theme-dark .reactiveTableServerSide .sort-field:focus {
  border-color: #60BFAD !important;
  box-shadow: 0 0 0 3px rgba(96, 191, 173, 0.15);
}
.theme-dark .reactiveTableServerSide > .pagination-full,
.theme-dark .reactiveTableServerSide > .pagination-compact {
  color: #b3b3b4;
  background: #222529;
  border-top-color: #2D2D2D;
}
.theme-dark .reactive-table-options .reactive-table-filter .form-control:focus {
  border-color: #60BFAD;
  box-shadow: 0 0 0 3px rgba(96, 191, 173, 0.15);
}
.theme-dark .reactive-table td .btn-primary,
.theme-dark .table td .btn-primary {
  background-color: transparent;
  border-color: #60BFAD;
  color: #60BFAD;
}
.theme-dark .reactive-table td .btn-primary:hover,
.theme-dark .table td .btn-primary:hover,
.theme-dark .reactive-table td .btn-primary:focus,
.theme-dark .table td .btn-primary:focus {
  background-color: #60BFAD;
  color: #121212;
}
.theme-dark .form-control:focus {
  border-color: #60BFAD !important;
  box-shadow: 0 0 0 3px rgba(96, 191, 173, 0.15);
}
.theme-dark select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23b3b3b4' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
}
.theme-dark .input-group .input-group-addon {
  background: #222529;
  border-color: #35373b !important;
  color: #b3b3b4;
}
.theme-dark .scanDetail .normalheader h2.font-light > span {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
}
.theme-dark .scanDetail .normalheader p {
  color: rgba(255, 255, 255, 0.5);
}
.theme-dark .scanDetailSideInfo .hpanel > .panel-heading {
  color: #FFFFFF;
}
.theme-dark .scanDetailSideInfo .hpanel > .panel-body {
  border-left-color: #60BFAD;
}
.theme-dark .scanDetailSideInfo .dl-horizontal dt {
  color: #b3b3b4;
}
.theme-dark .scanDetailSideInfo .scan-aside-breadcrumb {
  background: rgba(96, 191, 173, 0.08);
  border-color: rgba(96, 191, 173, 0.15);
}
.theme-dark .scanContent .hpanel > .panel-heading {
  color: #FFFFFF;
  border-bottom-color: #60BFAD;
}
.theme-dark #tree .list-group-item:not(.node-disabled):hover,
.theme-dark #tree .node-tree:not(.node-disabled):hover {
  background-color: rgba(96, 191, 173, 0.08);
  border-left-color: #60BFAD;
}
.theme-dark #tree .list-group-item.node-selected,
.theme-dark #tree .node-tree.node-selected {
  background-color: rgba(96, 191, 173, 0.12) !important;
  color: #60BFAD !important;
  border-left-color: #60BFAD;
}
.theme-dark #tree .list-group-item .badge,
.theme-dark #tree .node-tree .badge {
  background: #60BFAD;
  color: #121212;
}
.theme-dark #tree .list-group-item.dependency-root,
.theme-dark #tree .node-tree.dependency-root {
  background: #2A3F64;
  border-left-color: #2A3F64;
}
.theme-dark #tree .list-group-item.dependency-active,
.theme-dark #tree .node-tree.dependency-active {
  background: rgba(96, 191, 173, 0.12);
  color: #60BFAD;
  border-left-color: #60BFAD;
}
.theme-dark #tree .list-group-item:nth-child(even):not(.node-selected):not(.dependency-root):not(:hover) {
  background-color: rgba(255, 255, 255, 0.02);
}
.theme-dark .modal-footer,
.theme-dark .modal-header,
.theme-dark .modal-content {
  background-color: #292929;
  border-bottom-color: #373737;
}
.theme-dark #swagger-ui,
.theme-dark canvas {
  background-color: #DDDDDD;
  padding: 5px;
}
.theme-dark .paketmanager img {
  background: #DDDDDD;
}
.theme-dark .node-tree:not(.node-disabled):hover {
  background-color: #858585;
}
.theme-dark .dependency-active {
  color: #60BFAD;
}
.theme-dark .ecs-dependency {
  background: #292929;
}
.theme-dark .aside-section-content,
.theme-dark .ecs-aside-head,
.theme-dark .ecs-aside-nav {
  background: #292929;
  border-color: #373737;
}
.theme-dark .ecs-aside-head {
  color: #FFFFFF;
}
.theme-dark .ecs-aside-head .ecs-aside-close {
  background: #121212;
}
.theme-dark .dependency-root {
  background: #2a3f64;
  color: #FFFFFF;
}
.theme-dark .dependency-active {
  background: #cccccc;
  color: #000;
}
.theme-dark .pagination > li > a,
.theme-dark .pagination > li > span {
  background: #121212;
  border-color: #373737;
  color: #FFFFFF;
}
.theme-dark .pagination > li > a:hover,
.theme-dark .pagination > li > span:hover,
.theme-dark .pagination > li > a:focus,
.theme-dark .pagination > li > span:focus {
  background: #292929;
  border-color: #60BFAD;
  color: #60BFAD;
}
.theme-dark .pagination > .active > a,
.theme-dark .pagination > .active > span,
.theme-dark .pagination > .active > a:hover,
.theme-dark .pagination > .active > span:hover,
.theme-dark .pagination > .active > a:focus,
.theme-dark .pagination > .active > span:focus {
  background: #292929;
  border-color: #60BFAD;
  color: #60BFAD;
}
.theme-dark .btn-default,
.theme-dark .inc_version {
  background: #121212;
  border-color: #373737;
  color: #FFFFFF;
}
.theme-dark .btn-default:hover,
.theme-dark .btn-default:focus,
.theme-dark .btn-default:active,
.theme-dark .btn-default.active,
.theme-dark .open .dropdown-toggle.btn-default,
.theme-dark .inc_version:hover {
  background: #121212;
  border-color: #373737;
  color: #60BFAD;
}
.theme-dark .btn-default.disabled,
.theme-dark .btn-default.disabled:hover,
.theme-dark .btn-default.disabled:focus,
.theme-dark .btn-default.disabled:active,
.theme-dark .btn-default.disabled.active,
.theme-dark .btn-default[disabled],
.theme-dark .btn-default[disabled]:hover,
.theme-dark .btn-default[disabled]:focus,
.theme-dark .btn-default[disabled]:active,
.theme-dark .btn-default.active[disabled],
.theme-dark fieldset[disabled] .btn-default,
.theme-dark fieldset[disabled] .btn-default:hover,
.theme-dark fieldset[disabled] .btn-default:focus,
.theme-dark fieldset[disabled] .btn-default:active,
.theme-dark fieldset[disabled] .btn-default.active {
  background: #121212;
  border-color: #373737;
  color: #FFFFFF;
}
.theme-dark .btn-primary {
  background: #2A3F64;
  border-color: #121212;
  color: #FFFFFF;
}
.theme-dark .btn-primary:hover,
.theme-dark .btn-primary:focus,
.theme-dark .btn-primary:active,
.theme-dark .btn-primary.active,
.theme-dark .open .dropdown-toggle.btn-primary {
  background: #324E80;
  border-color: #121212;
  color: #FFFFFF;
}
.theme-dark .btn-primary.disabled,
.theme-dark .btn-primary.disabled:hover,
.theme-dark .btn-primary.disabled:focus,
.theme-dark .btn-primary.disabled:active,
.theme-dark .btn-primary.disabled.active,
.theme-dark .btn-primary[disabled],
.theme-dark .btn-primary[disabled]:hover,
.theme-dark .btn-primary[disabled]:focus,
.theme-dark .btn-primary[disabled]:active,
.theme-dark .btn-primary.active[disabled],
.theme-dark fieldset[disabled] .btn-primary,
.theme-dark fieldset[disabled] .btn-primary:hover,
.theme-dark fieldset[disabled] .btn-primary:focus,
.theme-dark fieldset[disabled] .btn-primary:active,
.theme-dark fieldset[disabled] .btn-primary.active {
  background: #121212;
  border-color: #373737;
  color: #FFFFFF;
}
.theme-dark .noUi-handle {
  background: #60BFAD;
  border-color: #373737;
}
.theme-dark .noUi-handle:before,
.theme-dark .noUi-handle:after {
  background: #FFFFFF;
}
.theme-dark .sweet-alert {
  background: #121212;
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
}
.theme-dark .sweet-alert p,
.theme-dark .sweet-alert h2 {
  color: #FFFFFF;
}
.theme-dark .sweet-alert button.cancel {
  color: #121212;
}
.theme-dark .sweet-alert input {
  color: #000;
}
.theme-dark .notice-view-left,
.theme-dark .notice-view-right,
.theme-dark .soup-view-right-stats {
  background: #1a1d21;
  border-color: #35373b;
  color: #c6d2d3;
}
.theme-dark .ios-toggle-label.ios-toggle-label-dark {
  color: #FFFFFF;
}
.theme-dark .ecs-deep-scan-result {
  background: #292929;
  color: #FFFFFF;
}
.theme-dark .wizard > .steps {
  background: #292929;
  border-color: #373737;
  color: #FFFFFF;
}
.theme-dark .wizard > .steps > ul li.active {
  color: #60BFAD;
  background: #121212;
}
.theme-dark .wizard > .steps > ul li:hover {
  color: #60BFAD;
  background: #121212;
}
.theme-dark .wizard > .steps > ul li,
.theme-dark .wizard > .steps > ul li {
  color: #FFFFFF;
  background: #373737;
}
.theme-dark .wizard ul li.complete {
  color: #FFFFFF;
  background: #121212;
}
.theme-dark .wizard ul li .chevron {
  border-left: 14px solid #373737;
}
.theme-dark .wizard ul li .chevron:before {
  border-left: 14px solid #373737;
}
.theme-dark .wizard ul li:hover .chevron:before {
  border-left: 14px solid #121212;
}
.theme-dark .wizard ul li.complete .chevron:before {
  border-left: 14px solid #373737;
}
.theme-dark .wizard ul li.active .chevron:before {
  border-left: 14px solid #121212;
}
.theme-dark .wizard ul li.active:hover .chevron:before,
.theme-dark .wizard ul li.complete:hover .chevron:before {
  border-left: 14px solid #121212;
}
.theme-dark .wizard .badge {
  color: #d1d2d3;
  background-color: #292929;
}
.theme-dark .wizard .badge-success {
  background-color: #60BFAD;
}
.theme-dark .wizard .badge-info {
  background-color: #60BFAD;
}
.theme-dark .alert,
.theme-dark .alert-info,
.theme-dark .alert-success,
.theme-dark .alert-warning,
.theme-dark .alert-danger {
  background: #222529;
  border-color: #adacab;
  color: #d1d2d3;
}
.theme-dark #toast-container > .toast-info,
.theme-dark #toast-container > .toast-success,
.theme-dark #toast-container > .toast-warning,
.theme-dark #toast-container > .toast-error {
  background: #adacab;
  background-image: none!important;
  color: #FFFFFF;
}
.theme-dark .module-stat .module-stat-value {
  color: #c6d2d3;
}
.theme-dark .module-stats-dropdown-content {
  background: #292929;
  border-color: #2D2D2D;
}
.theme-dark .loading {
  background: rgba(0, 0, 0, 0.1);
}
.theme-dark .loading-title {
  color: #FFFFFF;
  background: rgba(0, 0, 0, 0.7);
}
.theme-dark .integration-icon.copy .fa {
  color: inherit;
}
.theme-dark .confidence-label {
  color: #FFFFFF;
}
.theme-dark .confidence-label:after {
  background: #121212;
}
.theme-dark .aside-section-content .confidence-label:after,
.theme-dark .ecs-aside-head .confidence-label:after,
.theme-dark .ecs-aside-nav .confidence-label:after {
  background: #292929;
}
.theme-dark .projects-panel,
.theme-dark .modules-panel {
  background: #292929;
}
.theme-dark .nav-tabs-scrollable::before {
  background: linear-gradient(to right, #222529 0%, transparent 100%);
}
.theme-dark .nav-tabs-scrollable::after {
  background: linear-gradient(to left, #222529 0%, transparent 100%);
}
.theme-dark .nav-tabs-scrollable .nav-tabs-arrow {
  background: #222529;
  border-color: #373737;
  color: #b3b3b4;
}
.theme-dark .nav-tabs-scrollable .nav-tabs-arrow:hover {
  color: #60BFAD;
  background: #292929;
}
