/*common  */
body {
  margin: 0 !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0 !important;
}

* {
  box-sizing: border-box;
}

li {
  list-style: none !important;
}

ul {
  padding-left: 0 !important;
  margin: 0;
}

a {
  text-decoration: none !important;
  cursor: pointer;
}

/* common */
/* custom checkbox */
/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0px;
  left: 0;
  height: 22px;
  width: 22px;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
input:checked~.checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkmark:after {
  left: 10px;
  top: 5px;
  width: 3px;
  height: 11px;
  border: solid var(--primary-color);
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.checkmark {
  position: absolute;
  top: -5px;
  left: -5px;
  height: 26px;
  width: 26px;
  background-image: url(./assets/images/checkbox.png);
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  cursor: pointer;
}

/* custom checkbox end*/
/* login section */
.login-background {
  background: url(./assets/images/bugbanner.jpg) no-repeat left top / cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-container {
  width: 100%;
  min-height: 100vh;
  font-family: "Mulish";
  flex-wrap: wrap-reverse;
}

.login-section {
  justify-content: center;
  align-items: center;
  text-align: center;
}

.login-section h1 {
  color: var(--form-title);
}

.login-content {
  width: 100%;
  max-width: 412px;
  padding-inline: 12px;
  margin-block: 50px;
}

.login-form input {
  width: 100%;
  padding: 10px 10px 12px 42px;
  border-radius: 3px;
  border: 1px solid #cacfe7;
  background: var(--white);
  font-family: "Mulish";
  box-sizing: border-box;
}

.login-form input:focus,
.login-form input:focus-visible {
  border: 1px solid var(--primary-color);
  outline: unset;
}

.login-form input:focus svg path {
  fill: black;
}

.login-form {
  margin-block: 50px;
}

.logo {
  margin-bottom: 50px;
}

.login-form-section {
  margin-bottom: 20px;
  position: relative;
}

.checkbox {
  text-align: left;
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.checkbox input {
  width: fit-content;
  margin: 0;
}

.checkbox {
  color: var(--text-font);
  cursor: pointer;
}

.checkbox label {
  cursor: pointer;
}

.loginbtn {
  width: 100%;
  border-radius: 3px;
  background: var(--primary-color);
  border: unset;
  padding: 13px;
  color: var(--white);
  cursor: pointer;
}

.login-background-section {
  width: 100%;
  text-align: center;
  background-color: var(--login-banner-text);
  padding: 48px 10px;
  margin-block: 50px;
}

.login-background-section p {
  max-width: 474px;
  margin: auto;
  color: var(--white);
  font-family: Roboto;
  font-size: clamp(30px, 4vw, 42px);
}

.small-text-color {
  color: var(--text-font);
}

.forgot-link {
  opacity: 0.7;
}

.login-form-section svg {
  position: absolute;
  top: 13px;
  left: 16px;
}

.article {
  flex: 1 0 385px;
}

.login-form input:focus+svg path {
  fill: var(--primary-color);
}

.forgot-page .login-form {
  text-align: left;
}

/* login section end*/
/* dashboard start */
.dashboard {
  font-family: "Segoe UI";
}

/****header menu start****/
.title-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--balck);
  padding: 7px 23px 7px 12px;
  position: sticky;
  top: 0;
  z-index: 99;
}

.search-bar {
  position: relative;
  max-width: 352px;
  width: 100%;
  margin-right: 30px;
}

.search-icon {
  width: 16px;
  height: 16px;
  position: absolute;
  right: 13px;
  top: 7px;
  cursor: pointer;
}

.search-icon img {
  width: 100%;
  height: 100%;
}

.profile-sec {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.title-bar .logo {
  margin: unset;
}

.search-bar input {
  background: var(--header-search);
  outline: unset;
  border: unset;
  padding: 7px 40px 7px 10px;
  color: var(--header-serach-color);
  width: 100%;
}

.search-bar input::placeholder {
  color: var(--header-serach-color);
}

.profile-image {
  width: 26px;
  height: 26px;
}

.profile-image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.profile {
  border-left: 1px solid var(--risk-color);
  align-items: center;
  cursor: pointer;
}

.profile p {
  color: var(--profile-color);
  white-space: nowrap;
  padding: 0 8px 0 25px;
}

/****header menu end****/
/****Sidebar menu start***/
.sidemenu {
  width: 180px;
  position: absolute;
  left: 0;
  background: var(--header-search);
  height: calc(100vh - 50px);
  padding: 13px 10px 10px 10px;
  overflow-y: auto;
}

li.left-menu {
  margin-bottom: 20px;

}

.left-menu a span {
  color: var(--theme-color);
  margin-left: 10px;
}

.left-menu.active a span {
  color: var(--white);
}

/*****Sidebar menu ends*****/
.right-section {
  background: var(--header-search);
  width: 100%;
  padding: 0 22px 0 190px
}

.central-dashboard {
  justify-content: space-between;
  align-items: center;
  padding-block: 10px;
}

.central {
  color: var(--header-serach-color);
}

.switch-theme {
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
}

.theme {
  color: var(--theme-color);
}

.switch {
  position: relative;
  display: inline-block;
  width: 35px;
  height: 20px;
  margin-left: 15px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--menu-border-color);
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 0px;
  bottom: 1px;
  background-color: var(--white);
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked+.slider {
  background-color: var(--primary-color);
}


input:checked+.slider:before {
  -webkit-transform: translateX(15px);
  -ms-transform: translateX(15px);
  transform: translateX(15px);
}



.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.risk {
  color: var(--white);
}

.chart-risk h5 {
  text-transform: uppercase;
}

.chart-one {
  background: var(--balck);
  padding: 10px 10px 19px;
  /* max-width: 268px; */
  /* width: 100%; */
}

/* canvas#dashboardChart-one, canvas#dashboardChart-two, canvas#dashboardChart-three {
  width: 150px !important;
  height: 79px !important;
} */

.content {
  position: relative;
  margin: 0 10px;
  padding-bottom: 22px;
  max-width: 150px;
}

.content:last-child {
  padding-bottom: unset;
}

.head {
  position: absolute;
  left: 77px;
  transform: translate(-50%, 0);
  font-size: 15px;
  top: 30px;
  color: var(--primary-color);
  text-align: center;
}

.head p {
  white-space: nowrap;
}

.chart-one h5 {
  margin-bottom: 12px !important;
}

.head h5 {
  margin-bottom: 2px;
}

.medium .head {
  color: var(--medium-risk) !important;
}

.low .head {
  color: var(--low-risk) !important;
}

/****chart two****/
.chart-two, .chart-three {
  /* max-width: 470px;
  width: 100%; */
  background: var(--balck);
}

.chart-two {
  /* margin-inline: 10px; */
  padding: 10px 10px 14px;
}

.chart-three {
  padding: 10px 10px 19px;
}

.cyber-risk {
  background: var(--balck);
  margin-block: 10px;
  padding: 12px 10px 19px 10px;
}

.chart-three canvas {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

#chartjs-tooltip {
  opacity: 1;
  position: absolute;
  background: rgba(0, 0, 0, .7);
  color: white;
  border-radius: 3px;
  -webkit-transition: all .1s ease;
  transition: all .1s ease;
  pointer-events: none;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

#chartjs-radar {
  width: 60%;
  height: 60%;
}

.chartjs-tooltip-key {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 10px;
}

.chart-three h5 {
  margin-bottom: 13px;
}

.box-circle {
  justify-content: space-around;
  align-items: center;
  padding-bottom: 19px;
}

.box-circle .box {
  width: 96px;
  height: 96px;
  margin-top: 56px;
}

.box-circle .box h2 {
  display: block;
  text-align: center;
  color: var(--circle-color);
  font-size: 12px;
  padding-top: 22px;
}

.box-circle .box .chart {
  position: relative;
  width: 100%;
  max-height: 66px;
  text-align: center;
  font-size: 22px;
  line-height: normal;
  height: 160px;
  color: var(--white);
}

.box-circle .box canvas {
  position: absolute;
  top: -33px;
  left: 0;
  width: 100%;
  width: 100%;
}

.records {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.patching {
  margin-bottom: 9px;
}

.day-plan {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--tab-border);
}

.graph-table.section h5 {
  text-transform: uppercase;
}

.records li.nav-item {
  border-right: 1px solid var(--tab-border);

}

.records li.nav-item:last-child {
  border: unset;
}

.records li.nav-item a {
  color: var(--tab-color);
  padding: 7px 15px 6px;
}

.records a.nav-link.active {
  background: var(--primary-color) !important;
  border-radius: unset;
}


.graph-table.section {
  background: var(--balck);
  padding: 10px 10px 18px 12px;
}

.shield-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 13px;
}

.shield {
  width: 20px;
  height: 20px;
  margin-right: 3px;
}

.shield img {
  width: 100%;
  height: 100%;
}

.app-shield {
  display: flex;
  align-items: center;
}

.application {
  border: 1px solid var(--tab-border);
  padding: 12px 10px 20px 8px;
}

.chart-table thead {
  background: #141414;
  padding: 10px 30px 10px 12px;
}

.table-responsive.chart-table .table tr th, .table-responsive.chart-table .table tr td {
  white-space: nowrap;
  background: #000;
  color: var(--table-color);
}

.table-responsive.chart-table .table tr th {
  background: #141414;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 600;
}

.table-responsive.chart-table .table tr td {
  font-size: 13px;
  font-weight: 400;
  line-height: 22px;
}

.radar-chart-value, .half-donut {
  max-width: 450px;
  width: 100%;
  height: 300px;
  /* background: #000; */
}

.viewall {
  text-decoration: underline !important;
  color: #FFFFFF;
  margin-right: 10px;
  text-transform: uppercase;
}

.fafaedit{
  color: #1f894b;
}

.fafaedit:hover{
  color: #02ff6b;
}
.fafatrash{
  color: rgb(157, 39, 39);
}
.fafatrash:hover{
  color: rgb(255, 0, 0);
}

.fafaeye{
  color: rgb(116, 116, 116);
}

.fafaeye:hover{
  color: rgb(255, 255, 255);
}

textarea#description {
  max-width: 406px;
  width: 100%;
  background: #2A2A2A;
  border: unset;
  outline: unset;
  padding: 10px 10px 9px;
  text-align: left;
  color: var(--select-color);
}


.number button.value {
  outline: none;
  border: unset;
  box-shadow: unset;
  color: white;
  border-radius: 3px;
  padding: 2px 5px;
  white-space: nowrap;
}

.increase button {
  background: #0CC259;
}

.decrease button {
  background: #E74C3C;
}

/****Sidebar menu end***/

/* dashboard End */

/****manage user*****/
.user-create {
  background: var(--balck);
  padding: 15px 10px 125px;
}

.user-information {
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.check, .user-no {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

.check img, .user-no img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.user-checking {
  display: flex;
  margin-right: 20px;
}

.user-input-detail label {
  color: var(--tab-color);
  max-width: 160px;
  width: 100%;
}

.user-input-detail input, select {
  max-width: 406px;
  width: 100%;
  background: #2A2A2A;
  border: unset;
  outline: unset;
  padding: 10px 10px 9px;
  text-align: left;
  color: var(--select-color);
}

.user-input-detail {
  margin-bottom: 20px;
  align-items: center;
}

.user-input-detail input::placeholder, select {
  color: var(--select-color);
}

.address {
  height: 90px;
}

.add {
  color: var(--white);
  border-radius: 5px;
  padding: 5px 17px;
  outline: none;
  box-shadow: unset;
  border: unset;
  width: fit-content;
  height: 30px;
}

.previous {
  background: var(--previous-bg-color);
  margin-right: 20px;
}

.user-assets {
  background: var(--header-search);
}

.user {
  background: var(--primary-color);
}

.manage-user-1.d-flex input {
  height: 12px;
  width: 12px;
  background-image: unset;
  font-size: 12px;

  margin-right: 11px;
}

.manage-user-1 label {
  color: var(--circle-color);
  margin-right: 40px;
  font-weight: 600;
}

/* input[type='checkbox'] {
  accent-color: #FF1F4D;
} */

.right-section.content-menu {
  padding-left: 370px;
  overflow-y: auto;
  /* height: calc(100vh - 45px); */
}

.change-bg {
  position: relative;
}

.change-bg:checked::after {
  position: absolute;
  width: 100%;
  height: 100%;
  content: '';
  background: #53a139;
  top: 0px;
}

.sub-menu-header {
  position: absolute;
  top: 45px;
  left: 180px;
  background: var(--balck);
  height: calc(100vh - 45px);
  width: 180px;
  padding: 13px 15px;
}

.setting-img {
  width: 15px;
  height: 15px;
}

.setting-img img {
  width: 100%;
  height: 100%;
}

.setting {
  margin-bottom: 15px;
}

.setting span {
  color: var(--white);
  margin-left: 7px;
}

ul.asset a {
  color: var(--theme-color);
}

ul.asset li {
  margin-bottom: 15px;
}

ul.user-radio li {
  /* margin-bottom: 10px !important; */
  margin-top: 15px;
}

.user-view h3 {
  color: var(--theme-color);
}

li.active a {
  color: var(--primary-color);
}

ul.user-radio li.active h3, ul.user-radio li.active a {
  color: var(--primary-color);
}

.mobile-menu-icon i {
  font-size: 20px;
  color: var(--white);
  margin-left: 20px;
}

.mobile-menu-icon {
  display: none;
}

.user-view {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-left: 25px;
}

.round-circle {
  width: 7px;
  height: 7px;
  display: flex;
  align-items: center;
  margin-right: 6px;
  justify-content: center;
}

.round-circle svg {
  width: 100%;
  height: 100%;
}

.user-radio li.active svg circle {
  stroke: var(--primary-color);
}

ul.user-radio:last-child li {
  margin-bottom: 0;
}

/****Manage User end***/
/****Manage MSP start****/
.cyber-oraganization {
  background: var(--balck);
  margin-bottom: 10px;
  padding: 10px 9px 0px 10px;
}

.msp, .mcp-create {
  justify-content: space-between;
  align-items: center;
}

.msp {
  padding-bottom: 10px;
  flex-wrap: wrap;
}

.mcp-create {
  gap: 10px;
}

.calender {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 12px;
  right: 8px;
  pointer-events: none;
  background: #2A2A2A;
}

.calender img, .cheveron img, .filter {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
}

.user-input-detail.mcp-input, .user-input-detail select, .orge-btn {
  position: relative;
}

.cheveron {
  width: 12px;
  height: 12px;
  top: 15px;
  right: 10px;
  background: #2A2A2A;
  position: absolute;
}

.cyber-oraganization select {
  -moz-appearance: none;
  -webkit-appearance: none;
}

.mcp-input {
  max-width: 160px;
  width: 100%;
  margin: 0;
}

.mcp-input input, .mcp-input select {
  padding: 7px 8px 7px 10px;
  width: 160px;
  font-size: 13px;
  font-weight: 400;
}

.filter, .setting-filter {
  width: 30px;
  height: 30px;
  background: var(--table-bg-color);
  padding: 7px;
}

.add-organization {
  display: flex;
  justify-content: center;
  align-items: baseline;
  white-space: nowrap;
  padding: 5px 5px 7px;
  background: var(--primary-color);
  border-radius: 5px;
  width: 124px;
  cursor: pointer;
  transition-delay: 0.5s;
}

.add-organization h3 {
  color: var(--white);
  margin-right: 2px;
}

.white-arrow {
  width: 6px;
  height: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.list-of-user {
  background: var(--list-color);
  border-radius: 10px;
  padding: 15px 20px 17px;
  width: 210px;
  position: absolute;
  right: -7px;
  top: 30px;
  display: none;
  transition: 0.2s all;
}

.list-of-user a {
  color: var(--white);
  cursor: pointer;
}

.list-of-user li {
  border-bottom: 1px solid var(--list-of-user);
  padding-block: 15px;
}

.list-of-user li:last-child {
  border: unset;
  padding-bottom: 0;
}

.filter.active {
  background: var(--filter);
}

/*****Clien table***/
.table-responsive.client-table tbody td {
  background-color: var(--balck);
  color: var(--table-color);
  font-weight: 400;
  font-size: 13px;
  background-color: var(--balck);
  padding-bottom: 20px;
  white-space: nowrap;
}

.table-responsive.client-table thead th {
  background-color: var(--table-bg-color);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
}

.table-responsive.client-table thead {
  margin-bottom: 6px;
}

.sate {
  display: flex;
  align-items: center;
  justify-content: center;
}

.down, .up {
  width: 4px;
  height: 8px;
}

.same {
  border-radius: 5px;
  color: var(--white);
  text-align: center;
}

.msp-button-group .high {
  background: var(--msp-color);
  margin-right: 5px;
  padding: 2px;
}

.msp-button-group .medium {
  background: var(--medium-color);
  margin-right: 5px;
  padding: 0 8px;
}

.msp-button-group .low {
  background: var(--low-color);
  padding: 0 8px;
}

.eye-action {
  margin-right: 13px;
  height: 20px;
  width: 20px;
  cursor: pointer;
}

.edit, .trash {
  width: 18px;
  height: 18px;
  cursor: pointer;
  margin-right: 12px;
}

.square {
  height: 12px;
  width: 12px;
  margin-right: 11px;
}

.pink {
  background-color: var(--pink-color);
}

.blue {
  background-color: var(--blue-color);
}

.credientail .manage-user-1 {
  margin-right: 10px;
  margin-top: 0;
}

tr.output-bg:hover td .eye-action svg path {
  stroke: var(--low-color);
}

tr.output-bg:hover td .edit svg path, tr.output-bg:hover td .trash svg path {
  stroke: var(--primary-color);
}

.split-dashboard {
  height: calc(100vh - 48px);
  overflow-y: auto;
}

tr.output-bg:hover td {
  background: var(--output-color);
}

.msp-button-group {
  max-width: 242px;
  width: 100%;
}

.msp-button-group a.same.low {
  width: 100%;
  text-align: center;
}

/****Pagination Section Start****/
.pagenation-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* padding: 10px; */
  flex-wrap: wrap;
  float: none;
  gap: 20px;
  background: var(--balck);
  padding: 10px 30px;
  margin-bottom: 34px;
}

.pagnation-left {
  display: flex;
  align-items: center;
}

li.page-item {
  margin: 0 5px;
}

a.page-link {
  border: unset;
  background: none;
  color: var(--page-link-color);
  font-size: 14px;
  font-weight: 400;
}

.pagenation-section h3 {
  color: var(--circle-color);
}

a.page-link.active {
  background: var(--filter);
  font-weight: 600;
}

.select-icon {
  margin-inline: 10px;
  position: relative;
}

li.page-item:last-child a {
  color: var(--page-item);
}

.pagenation-section .up-down-img {
  position: absolute;
  right: 4px;
  background: var(--table-bg-color);
  width: 10px;
  height: 10px;
  padding: unset;
}

select.pagnation-count {
  background: var(--table-bg-color);
}

.up-down-img {
  padding-inline: 20px;
}

ul.pagination {
  margin-bottom: 0;
}

/***Pagination section end***/
/****error exception start***/
.open-profile {
  width: 26px;
  height: 26px;
  margin-right: 10px;
}

.open-profile img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: scale-down;
}

.resolve-right {
  border: 1px solid white;
  border-radius: 5px;
}

.resolve-right p {
  padding-right: 10px !important;
  border-right: 1px solid white;
  padding: 5px 8px;
}

.resolve-right .user-down-arrow {
  padding: 5px;
}

.resolve-group, .error-id {
  gap: 15px;
}

.more-dots {
  border-radius: 5px;
  border: 1px solid white;
  padding: 5px;
  width: fit-content;
}

.error.exception .table tr th, .error.exception .table tr td {
  vertical-align: middle;
}

.arrow-value {
  padding: 5px;
}

.error-para {
  width: 650px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  margin-block: 8px !important;
}

.language-name {
  width: 18px;
  height: 18px;
  margin-right: 8px;
}

.clock {
  width: 14px;
  height: 14px;
  margin-right: 8px;
}

.language-name img, .clock img {
  width: 100%;
  height: 100%;
}

.error-id a {
  color: var(--table-color);
}

.ongoing {
  border: 1px solid white;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  padding: 5px 17px;
}

.language a {
  text-transform: uppercase;
}

.hours-manage {
  padding-right: 8px;
  border-right: 1px solid white;
}

.old-record {
  padding-left: 8px;
}

.modal-backdrop.show {
  opacity: 0.2 !important;
}

.modal-content.delete-detail {
  background: #2A2A2A;
  color: white;
}

.delete-button .btn-cancel {
  background: #626262;
  color: #FFFFFF;
}

.delete-button .btn-cancel, .delete-button .btn-cancel:hover {
  background: #626262;
  color: #FFFFFF;
}

.delete-button .btn-create, .delete-button .btn-create:hover {
  color: #fff !important;
  background: #FF1F4D !important;
}

.delete-button {
  justify-content: center;
}

.modal-content.delete-detail {
  background: #2A2A2A;
  color: white;
}

.delete-detail .search-bar input {
  background: #000000;
}

.delete-detail .profile {
  border: unset;
}

.delete-detail .profile {
  border-left: unset;
  border-bottom: 1px solid #5B5454;
  padding-block: 20px;
}

.modal-footer.delete-button {
  border-top: 0;
  padding-top: 0;
  justify-content: center;
}

.delete-detail .no-head {
  border-bottom: unset;
}

.delete-sent-deatil .search-bar {
  max-width: unset;
}

.delete-detail:last-of-type {
  border: unset;
}

.profile:last-of-type {
  border: 0;
}

.new {
  border: 1px solid #FFA700;
}

/****error exception start*****/
.event-exception {
  margin-right: 20px;
}

.error-exception {
  color: #fff;
  padding: 10px 9px 0px 10px;
}

.error-heading a.ongoing {
  margin-left: 20px;
  color: #fff;
}

.event-exception p {
  color: #FF1F4D;
}

.cyber-oraganization.exception-types {
  padding: 0;
}

.activites {

  overflow-y: hidden;
  overflow-x: auto;
  flex-wrap: nowrap !important;
  white-space: nowrap;
  padding-inline: 10px;
}

.error-event {
  border-bottom: 1px solid #989797;
  margin-top: 10px;
}

.activites li {
  position: relative;
}

.activity-list .nav-link:hover {
  color: var(--filter) !important;
}

.activity-list .nav-link.active {
  background: unset !important;
  color: var(--filter) !important;
}

.activity-list .nav-link {
  color: var(--page-link-color);
  border-radius: unset;
  padding: 5px 10px 13px;
}

.activites li::after {
  position: absolute;
  content: '';
  bottom: -2px;
  left: 4px;
  width: 0%;
  height: 1px;
  border: 2px solid var(--filter);
  opacity: 0;
}

.activites li:hover::after {
  width: 100%;
  opacity: 1;
  transition: 0.5s;
}

.nav-link.show-msg {
  display: flex;
  justify-content: space-between;
}

.msg-comment {
  background: #2A2A2A;
  border-radius: 50%;
  padding: 5px;
  margin-left: 8px;
}

.msg-comment i {
  padding-left: 5px;
}

.last-seen-detail {
  color: var(--table-color);
  padding: 10px 15px 20px 0px;
}
.no-one-bar-chart {
  max-width: 250px;
  width: 100%;
}

.event-notification {
  border-right: 1px solid white;
}

.no-one-hours {
  border-bottom: 1px dashed white;
}

.event-comments .resolve-right p {
  border-right: unset;
}

.exception-types .col-lg-9 {
  color: #fff;
}

.tags-verify {
  flex-wrap: wrap;
  margin: 20px 10px 20px 0px;
}

.tags-detail {
  border: 1px solid white;
  margin-right: 10px;
  margin-bottom: 12px;
  border-radius: 5px;
  color: var(--table-color);
}

.tags-detail p {
  border-right: 1px solid;
  padding: 8px;
}

.tags-detail a {
  padding: 8px;
  background: #9d3a3a;
  color: #fff;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.version-img {
  width: 40px;
  height: 40px;
}

.version-img img {
  width: 100%;
  height: 100%;
}

.version-head {
  margin-left: 16px;
  color: var(--table-color);
}

.version-based {
  margin-right: 20px;
}

.browser-version {
  margin: 12px 10px 20px 0px;
}

.no-one {
  margin: 10px 0 25px;
}

.no-one-user i {
  font-size: 18px;
  margin-right: 10px;
}

.no-one-hours h5, .no-one-days h5 {
  margin-bottom: 6px !important;
}

.no-one-hours p {
  padding-bottom: 20px;
}

.no-one-days {
  margin-block: 20px;
}

.tags-property {
  padding-left: 10px;
}

.event-id {
  padding: 20px 10px;
}

.more-dots:last-of-type {
  padding: 0;
}

.more-dots:last-of-type i {
  padding: 9px 10px 10px 8px;
}

.more-dots i.fa-solid.fa-angle-left {
  border-right: 1px solid white;
}

.event-number p, .event-number span {
  color: var(--table-color);
}

.most-relevant .resolve-right p {
  border: unset;
}

.staus-true a {
  border: 2px solid var(--low-color);
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.staus-true p {
  border-right: 0;
}

.most-relevant {
  margin-right: 10px;
}

.most-relevant .tags-detail p {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.most-relevant .more-dots {
  padding: 5px !important;
  margin-left: 10px;
}

.trace {
  padding-inline: 5px;
}

.most-relevant .tags-detail {
  margin-bottom: unset;
}

.tags-property .error-heading h5 {
  margin-bottom: 13px !important;
}

.error-heading .tags-verify {
  margin-bottom: unset;
  padding-bottom: 10px;
}

/****error exception ends*****/