.App {
  text-align: center;
}

.App-logo {
  height: 40vmin;
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  .App-logo {
    animation: App-logo-spin infinite 20s linear;
  }
}

.App-header {
  background-color: #282c34;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: calc(10px + 2vmin);
  color: white;
}

.App-link {
  color: #61dafb;
}

@keyframes App-logo-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse-grow {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
}

.loader {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

/* Hide Zendesk launcher buttons while keeping the messenger window functional */
#launcher,
.zEWidget-launcher {
  display: none !important;
}

:root {
  --toastify-color-light: #fff;
  --toastify-color-dark: #121212;
  --toastify-color-info: #3498db;
  --toastify-color-success: #07bc0c;
  --toastify-color-warning: #f1c40f;
  --toastify-color-error: #e74c3c;
  --toastify-color-transparent: rgba(255, 255, 255, 0.7);
  --toastify-icon-color-info: var(--toastify-color-info);
  --toastify-icon-color-success: var(--toastify-color-success);
  --toastify-icon-color-warning: var(--toastify-color-warning);
  --toastify-icon-color-error: var(--toastify-color-error);
  --toastify-toast-width: 320px;
  --toastify-toast-background: #fff;
  --toastify-toast-min-height: 64px;
  --toastify-toast-max-height: 800px;
  --toastify-font-family: sans-serif;
  --toastify-z-index: 9999;
  --toastify-text-color-light: #757575;
  --toastify-text-color-dark: #fff;
  --toastify-text-color-info: #fff;
  --toastify-text-color-success: #fff;
  --toastify-text-color-warning: #fff;
  --toastify-text-color-error: #fff;
  --toastify-spinner-color: #616161;
  --toastify-spinner-color-empty-area: #e0e0e0;
  --toastify-color-progress-light: linear-gradient(
    to right,
    #4cd964,
    #5ac8fa,
    #007aff,
    #34aadc,
    #5856d6,
    #ff2d55
  );
  --toastify-color-progress-dark: #bb86fc;
  --toastify-color-progress-info: var(--toastify-color-info);
  --toastify-color-progress-success: var(--toastify-color-success);
  --toastify-color-progress-warning: var(--toastify-color-warning);
  --toastify-color-progress-error: var(--toastify-color-error);
}

.Toastify__toast-container {
  z-index: var(--toastify-z-index);
  -webkit-transform: translate3d(0, 0, var(--toastify-z-index));
  position: fixed;
  padding: 4px;
  width: var(--toastify-toast-width);
  box-sizing: border-box;
  color: #fff;
}
.Toastify__toast-container--top-left {
  top: 1em;
  left: 1em;
}
.Toastify__toast-container--top-center {
  top: 1em;
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--top-right {
  top: 1em;
  right: 1em;
}
.Toastify__toast-container--bottom-left {
  bottom: 1em;
  left: 1em;
}
.Toastify__toast-container--bottom-center {
  bottom: 1em;
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--bottom-right {
  bottom: 1em;
  right: 1em;
}

@media only screen and (max-width : 480px) {
  .Toastify__toast-container {
    width: 100vw;
    padding: 0;
    left: 0;
    margin: 0;
  }
  .Toastify__toast-container--top-left, .Toastify__toast-container--top-center, .Toastify__toast-container--top-right {
    top: 0;
    transform: translateX(0);
  }
  .Toastify__toast-container--bottom-left, .Toastify__toast-container--bottom-center, .Toastify__toast-container--bottom-right {
    bottom: 0;
    transform: translateX(0);
  }
  .Toastify__toast-container--rtl {
    right: 0;
    left: initial;
  }
}
.Toastify__toast {
  position: relative;
  min-height: var(--toastify-toast-min-height);
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: 8px;
  border-radius: 4px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 2px 15px 0 rgba(0, 0, 0, 0.05);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  max-height: var(--toastify-toast-max-height);
  overflow: hidden;
  font-family: var(--toastify-font-family);
  cursor: default;
  direction: ltr;
  /* webkit only issue #791 */
  z-index: 0;
}
.Toastify__toast--rtl {
  direction: rtl;
}
.Toastify__toast--close-on-click {
  cursor: pointer;
}
.Toastify__toast-body {
  margin: auto 0;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  padding: 6px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.Toastify__toast-body > div:last-child {
  word-break: break-word;
  -ms-flex: 1;
      flex: 1;
}
.Toastify__toast-icon {
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  width: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -ms-flexbox;
  display: flex;
}

.Toastify--animate {
  animation-fill-mode: both;
  animation-duration: 0.7s;
}

.Toastify--animate-icon {
  animation-fill-mode: both;
  animation-duration: 0.3s;
}

@media only screen and (max-width : 480px) {
  .Toastify__toast {
    margin-bottom: 0;
    border-radius: 0;
  }
}
.Toastify__toast-theme--dark {
  background: var(--toastify-color-dark);
  color: var(--toastify-text-color-dark);
}
.Toastify__toast-theme--light {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}
.Toastify__toast-theme--colored.Toastify__toast--default {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}
.Toastify__toast-theme--colored.Toastify__toast--info {
  color: var(--toastify-text-color-info);
  background: var(--toastify-color-info);
}
.Toastify__toast-theme--colored.Toastify__toast--success {
  color: var(--toastify-text-color-success);
  background: var(--toastify-color-success);
}
.Toastify__toast-theme--colored.Toastify__toast--warning {
  color: var(--toastify-text-color-warning);
  background: var(--toastify-color-warning);
}
.Toastify__toast-theme--colored.Toastify__toast--error {
  color: var(--toastify-text-color-error);
  background: var(--toastify-color-error);
}

.Toastify__progress-bar-theme--light {
  background: var(--toastify-color-progress-light);
}
.Toastify__progress-bar-theme--dark {
  background: var(--toastify-color-progress-dark);
}
.Toastify__progress-bar--info {
  background: var(--toastify-color-progress-info);
}
.Toastify__progress-bar--success {
  background: var(--toastify-color-progress-success);
}
.Toastify__progress-bar--warning {
  background: var(--toastify-color-progress-warning);
}
.Toastify__progress-bar--error {
  background: var(--toastify-color-progress-error);
}
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--success, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--error {
  background: var(--toastify-color-transparent);
}

.Toastify__close-button {
  color: #fff;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.Toastify__close-button--light {
  color: #000;
  opacity: 0.3;
}
.Toastify__close-button > svg {
  fill: currentColor;
  height: 16px;
  width: 14px;
}
.Toastify__close-button:hover, .Toastify__close-button:focus {
  opacity: 1;
}

@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  z-index: var(--toastify-z-index);
  opacity: 0.7;
  transform-origin: left;
}
.Toastify__progress-bar--animated {
  animation: Toastify__trackProgress linear 1 forwards;
}
.Toastify__progress-bar--controlled {
  transition: transform 0.2s;
}
.Toastify__progress-bar--rtl {
  right: 0;
  left: initial;
  transform-origin: right;
}

.Toastify__spinner {
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  border: 2px solid;
  border-radius: 100%;
  border-color: var(--toastify-spinner-color-empty-area);
  border-right-color: var(--toastify-spinner-color);
  animation: Toastify__spin 0.65s linear infinite;
}

@keyframes Toastify__bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes Toastify__bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes Toastify__bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes Toastify__bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.Toastify__bounce-enter--top-left, .Toastify__bounce-enter--bottom-left {
  animation-name: Toastify__bounceInLeft;
}
.Toastify__bounce-enter--top-right, .Toastify__bounce-enter--bottom-right {
  animation-name: Toastify__bounceInRight;
}
.Toastify__bounce-enter--top-center {
  animation-name: Toastify__bounceInDown;
}
.Toastify__bounce-enter--bottom-center {
  animation-name: Toastify__bounceInUp;
}

.Toastify__bounce-exit--top-left, .Toastify__bounce-exit--bottom-left {
  animation-name: Toastify__bounceOutLeft;
}
.Toastify__bounce-exit--top-right, .Toastify__bounce-exit--bottom-right {
  animation-name: Toastify__bounceOutRight;
}
.Toastify__bounce-exit--top-center {
  animation-name: Toastify__bounceOutUp;
}
.Toastify__bounce-exit--bottom-center {
  animation-name: Toastify__bounceOutDown;
}

@keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes Toastify__zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn;
}

.Toastify__zoom-exit {
  animation-name: Toastify__zoomOut;
}

@keyframes Toastify__flipIn {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
@keyframes Toastify__flipOut {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.Toastify__flip-enter {
  animation-name: Toastify__flipIn;
}

.Toastify__flip-exit {
  animation-name: Toastify__flipOut;
}

@keyframes Toastify__slideInRight {
  from {
    transform: translate3d(110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInLeft {
  from {
    transform: translate3d(-110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInUp {
  from {
    transform: translate3d(0, 110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInDown {
  from {
    transform: translate3d(0, -110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(110%, 0, 0);
  }
}
@keyframes Toastify__slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-110%, 0, 0);
  }
}
@keyframes Toastify__slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0);
  }
}
@keyframes Toastify__slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0);
  }
}
.Toastify__slide-enter--top-left, .Toastify__slide-enter--bottom-left {
  animation-name: Toastify__slideInLeft;
}
.Toastify__slide-enter--top-right, .Toastify__slide-enter--bottom-right {
  animation-name: Toastify__slideInRight;
}
.Toastify__slide-enter--top-center {
  animation-name: Toastify__slideInDown;
}
.Toastify__slide-enter--bottom-center {
  animation-name: Toastify__slideInUp;
}

.Toastify__slide-exit--top-left, .Toastify__slide-exit--bottom-left {
  animation-name: Toastify__slideOutLeft;
}
.Toastify__slide-exit--top-right, .Toastify__slide-exit--bottom-right {
  animation-name: Toastify__slideOutRight;
}
.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp;
}
.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown;
}

@keyframes Toastify__spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/*# sourceMappingURL=ReactToastify.css.map */@keyframes spinner {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  margin: 0 auto;
  height: 100%;
}

.container .loader {
  width: 100px;
  /* animation: spinner 1.5s ease-in-out infinite; */
}

.container .text {
  font-weight: 600;
  font-size: 24px;
  line-height: 33px;
  color: #ffffff;
  margin-top: 16px;
}
._row_1x8sp_1 {
  display: flex;
  gap: 1rem;
  width: 100%;
}

._items_1x8sp_7 {
  display: flex;
  width: 100%;
}

._items_1x8sp_7 ._row_1x8sp_1 {
  width: 100%;
  display: flex;
  gap: 1rem;
  margin-right: 20px;
  margin-bottom: 12px;
}

._items_1x8sp_7 ._trends_1x8sp_20 {
  width: 60%;
  height: 100%;
}

._totalValues_1x8sp_25 {
  width: 140%;
  display: flex;
}

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

._wrapper_1x8sp_30 ._values_1x8sp_36 {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-content: center;
  gap: 6px;
  flex-wrap: wrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

._wrapper_1x8sp_30 ._values_1x8sp_36 ._value_1x8sp_36 {
  display: flex;
  gap: 8px;
  align-items: center;
  width: 100%;
}
._totalValues_1x8sp_25 ._wrapper_1x8sp_30 ._values_1x8sp_36 ._value_1x8sp_36 span {
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

._totalValues_1x8sp_25 ._wrapper_1x8sp_30 ._values_1x8sp_36 ._value_1x8sp_36 ._label_1x8sp_60 {
  grid-row: 1;
  grid-column: 1;
  display: flex;
  align-items: flex-start;
}

._totalValues_1x8sp_25 ._wrapper_1x8sp_30 ._values_1x8sp_36 ._value_1x8sp_36 ._flex_1x8sp_67 {
  grid-row: 2;
  grid-column: 2;
  display: flex;
  gap: 6px;
}

._item_1x8sp_7 ._wrapper_1x8sp_30 {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  align-content: center;
  align-items: center;
  height: 100%;
  padding: 12px;
}

._item_1x8sp_7 ._wrapper_1x8sp_30 ._color_1x8sp_84 {
  grid-row: 1 / 3;
  grid-column: 1;
  display: flex;
  align-items: center;
}

._item_1x8sp_7 ._wrapper_1x8sp_30 ._numbers_1x8sp_91 {
  grid-column: 1 / -1;
  grid-row: 1;
}

._item_1x8sp_7 ._wrapper_1x8sp_30 ._color_1x8sp_84 ~ ._numbers_1x8sp_91 {
  grid-column: 2;
}

._item_1x8sp_7 ._wrapper_1x8sp_30 ._numbers_1x8sp_91 ._value_1x8sp_36 {
  font-size: clamp(1.25rem, 2vw, 1.875rem);
  font-weight: 600;
}

._item_1x8sp_7 ._wrapper_1x8sp_30 ._numbers_1x8sp_91 ._percentage_1x8sp_105 {
  font-size: 1rem;
  font-weight: 400;
  margin-left: 6px;
}

._item_1x8sp_7 ._wrapper_1x8sp_30 ._outOfTotal_1x8sp_111 {
  grid-column: 1 / -1;
  grid-row: 2;
  display: flex;
  gap: 6px;
}

._item_1x8sp_7 ._wrapper_1x8sp_30 ._color_1x8sp_84 ~ ._outOfTotal_1x8sp_111 {
  grid-column: 2;
}
._container_ch0kx_1 {
  background-color: white !important;
  color: var(--container-color) !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  margin: 0 !important;
}

._container_ch0kx_1:not(:last-child) {
  border-bottom: 0.1rem solid var(--border-seperator-color-light-darker) !important;
}

._expand-icon_ch0kx_13 {
  color: var(--container-color) !important;
}

._container_ch0kx_1:not(:last-child) {
  border-bottom: 0.1rem solid var(--border-seperator-color-light-darker) !important;
}

._title-container_ch0kx_21 {
  padding: 0 !important;
  margin: 0 !important;
}
._wrapper_13xs3_1 {
  padding: 20px;
}

._list_13xs3_5 {
  list-style-type: none;
  max-height: 450px;
  max-width: 1000px;
  overflow-y: auto;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

._container_13xs3_16 {
  background-color: white !important;
  color: var(--container-color) !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  margin: 0 !important;
}

._title-container_13xs3_24 {
  margin: 0 !important;
  display: flex;
  align-items: center;
  padding-inline: 8px;
}

._title_13xs3_24 {
  padding: 0;
  font-weight: 600;
}

._bullet_13xs3_36 {
  padding-right: 0.8rem;
}

._contnet-container_13xs3_40 {
  padding: 0 2rem 1.2rem 1.6rem !important;
}

p {
  line-height: 1.9rem;
  margin: 0;
}
._contnet-container_1tu61_1 {
  padding: 0 2.8rem 1.6rem 1.7rem;
}
._header_13y3g_1 {
  display: flex;
  gap: 1rem;
  align-items: center;
}
._header_13y3g_1 ._sectionTitle_13y3g_6 {
  font-size: 1.125rem;
  font-weight: 600;
}

._arrow_13y3g_11 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 1.5rem;
}

._threatGroupTable_13y3g_18 {
  margin-left: auto;
  margin-bottom: auto;
}
._threatGroupTable_13y3g_18 table {
  width: 100%;
  text-align: left;
  border-collapse: collapse;
}
._threatGroupTable_13y3g_18 th {
  font-size: 0.875rem;
  padding-bottom: 5px;
  border-bottom: 0.5px solid var(--mui-palette-divider);
}
._threatGroupTable_13y3g_18 table > tr > td:nth-child(1) div {
  position: relative;
  height: 100%;
}
._threatGroupTable_13y3g_18 table > tr > td:nth-child(1) div:after {
  content: '';
  background-color: var(--color);
  border: 0.5px solid var(--mui-palette-divider);
  box-sizing: border-box;
  border-radius: 2px;
  display: inline-block;
  margin-right: 0.6875rem;
  height: 0.875rem;
  width: 0.875rem;
  position: absolute;
  left: 0;
  top: 0;
}
._threatGroupTable_13y3g_18 table > tr > td:nth-child(1) div:before {
  width: 1.4375rem;
  display: inline-block;
  content: '';
}
._threatGroupTable_13y3g_18 td {
  position: relative;
  padding: 0.5rem;
  font-size: 1rem;
  border-bottom: 0.5px solid var(--mui-palette-divider);
  box-sizing: border-box;
}
._threatGroupTable_13y3g_18 tr:last-child td {
  border-bottom: 0;
}
._threatGroupTable_13y3g_18 ul {
  padding: 0;
  list-style: none;
  margin: 0;
}
._threatGroupTable_13y3g_18 li {
  display: flex;
  font-size: 0.875rem;
  border-radius: 4px;
  gap: 6px;
}
._threatGroupTable_13y3g_18 li:first-child {
  margin-top: 0;
}
._threatGroupTable_13y3g_18 li._unprotected_13y3g_79 {
  background-color: rgba(230, 230, 230, 0.1);
}
._threatGroupTable_13y3g_18 li:before {
  content: '•';
  margin-right: 2px;
}
._threatGroupTable_13y3g_18 li > div:nth-child(1) {
  flex: 1;
}
._threatGroupTable_13y3g_18 li > div:nth-child(2) {
  font-weight: 600;
}
._threatGroupTable_13y3g_18 ._threatGroupTitle_13y3g_92 {
  white-space: nowrap;
}
._threatGroupTable_13y3g_18 ._topThreatTitle_13y3g_95 {
  white-space: nowrap;
}
._threatGroupTable_13y3g_18 ._threatGroupsTitleContainer_13y3g_98 {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
._threatGroupTable_13y3g_18 ._threatGroupLegend_13y3g_103 {
  display: grid;
  grid-template-columns: repeat(2, auto);
  grid-template-rows: repeat(2, auto);
  justify-content: flex-start;
  align-items: center;
}
._threatGroupTable_13y3g_18 ._threatGroupLegend_13y3g_103 ._legentColor_13y3g_110 {
  grid-row: 1;
  grid-column: 1;
}
._threatGroupTable_13y3g_18 ._threatGroupLegend_13y3g_103 ._legendTitle_13y3g_114 {
  display: flex;
  align-items: center;
  grid-row: 1;
  grid-column: 2;
}
._threatGroupTable_13y3g_18 ._threatGroupLegend_13y3g_103 ._legendValues_13y3g_120 {
  grid-row: 2;
  grid-column: 2;
}
._threatGroupTable_13y3g_18 ._flexRow_13y3g_124 {
  display: flex;
  align-items: center;
}
._threatGroupTable_13y3g_18 ._flexColumn_13y3g_128 {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
._threatGroupTable_13y3g_18 ._topThreatTypeList_13y3g_133 {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
._threatGroupTable_13y3g_18 ._topThreatTypeList_13y3g_133 ._topThreatItem_13y3g_139 {
  display: flex;
  gap: 6px;
  white-space: nowrap;
}
._threatGroupTable_13y3g_18 ._topThreatTypeList_13y3g_133 ._topThreatItem_13y3g_139::before {
  content: '•';
  margin-right: 2px;
}

._container_13y3g_149 {
  display: flex;
  height: 100%;
  max-height: 400px;
  padding: 0.75rem;
  box-sizing: border-box;
  align-items: center;
}
._container_13y3g_149 ._barGraph_13y3g_157 {
  height: 100%;
  flex: 1;
}

._title_13y3g_162 {
  display: inline-flex;
  gap: 0.75rem;
  align-items: center;
}
._title_13y3g_162 ._selector_13y3g_167 {
  display: flex;
  flex: 1;
}
._title_13y3g_162 ._selector_13y3g_167 ._option_13y3g_171 {
  width: 112px;
  display: flex;
  border: 1px solid var(--mui-palette-divider);
  height: 1.875rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background-color 0.3s,
    color 0.3s;
  align-items: center;
  justify-content: center;
}
._title_13y3g_162 ._selector_13y3g_167 ._option_13y3g_171:last-child {
  border-bottom-right-radius: 2px;
  border-top-right-radius: 2px;
}
._title_13y3g_162 ._selector_13y3g_167 ._option_13y3g_171:first-child {
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
}
._title_13y3g_162 ._selector_13y3g_167 ._selected_13y3g_193 {
  background: var(--mui-palette-background-paper);
  color: #ea3385;
  font-weight: 600;
}
._title_13y3g_162 ._divider_13y3g_198 {
  align-self: stretch;
}
._title_13y3g_162 ._subtitle_13y3g_201 {
  font-size: 0.875rem;
  font-weight: 400;
}
._component_11w3c_1 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
}

._legend-row_11w3c_10 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.3125rem;
}

._legend-item_11w3c_17 {
  display: flex;
  align-items: center;
  font-size: 1rem;
  line-height: 1.5rem;
  margin-left: 1.5rem;
}

._legend-item_11w3c_17:first-of-type {
  margin-left: 0;
}

._legend-item_11w3c_17 b {
  font-weight: 600;
  margin-left: 0.375rem;
}

._flex-row_11w3c_34 {
  display: flex;
  align-items: center;
  flex-flow: row nowrap;
}

._flex-wrap_11w3c_40 {
  flex-wrap: wrap;
}
.highcharts-container {
  font-family: var(--font-family-sans);
  font-size: 1rem;
}

.highcharts-background {
  fill: none;
}

.vertical-bar-graph .highcharts-grid-line {
  fill: none;
  stroke: var(--mui-palette-divider);
  stroke-width: 0.5px;
}

.vertical-bar-graph .highcharts-xaxis-grid .highcharts-grid-line {
  fill: none;
  stroke: var(--mui-palette-divider);
  stroke-width: 0.5px;
}

.vertical-bar-graph .highcharts-axis-line {
  display: none;
}

.vertical-bar-graph .highcharts-axis-labels text {
  color: var(--mui-palette-text-primary) !important;
  fill: var(--mui-palette-text-primary) !important;
  font-size: 0.875rem !important;
  line-height: 1.2rem !important;
}
._landingPages_w2604_1 {
  margin: 0;
}

._skeletonLoader_w2604_5 {
  min-height: 220px;
}

._url_w2604_9 {
  display: flex;
  align-items: center;
  gap: 12px;
}

._urlText_w2604_15 {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  direction: rtl;
}

._invalidClicks_w2604_23 {
  white-space: nowrap;
  gap: 12px;
  display: flex;
  flex: 1;
  font-size: medium;
}

._scaleBar_w2604_31 {
  width: 3rem;
}

._icon_w2604_35 {
  width: 24px !important;
  height: 24px !important;
}

._allVisits_w2604_40 {
  flex: 1;
  /* min-width: 90px; */
}
._scaleBar_ocdbc_1 {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 120px;
}

._bar_ocdbc_8 {
  background: linear-gradient(90deg, #ffd600, #feab45, #ff4e4e);
  border-radius: 4px;
  height: 9px;
}
._countries_1sovm_1 {
  /* margin: 0; */
  margin-right: 18px;
}

._skeletonLoader_1sovm_6 {
  min-height: 320px;
}

._heatMap_1sovm_10 {
  margin: 0;
}

._scaleBar_1sovm_14 {
  width: 50px;
  justify-self: end;
}

._country_1sovm_19 {
  display: flex;
  align-items: center;
  gap: 8px;
}

._countryName_1sovm_25 {
  width: 100%;
  max-width: 100px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

._countryFlag_1sovm_33 {
  display: flex;
  gap: 8px;
  align-items: center;
}

._invalidClicks_1sovm_39 {
  display: flex;
  flex: 1;
  gap: 16px;
}
._tooltipHeader_1h96z_1 {
  padding: 12px;
  display: flex;
  gap: 8px;
  align-items: center;
}

._skeletonLoader_1h96z_8 {
  min-height: 320px;
}

._tooltipDivider_1h96z_12 {
  height: 0.5px;
  width: 100%;
  background: #e6e6e6;
}

._tooltipBody_1h96z_18 {
  padding: 12px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
._tooltipBody_1h96z_18 div {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
}
._icon_1wsae_1 {
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

._root_1wsae_11 {
  width: 350px;
  border-left: 10px solid #2ed15e;
  border-radius: 8px !important;
  background-color: #d5f6df !important;
}

._failure_1wsae_18 {
  width: 370px;
  border-left: 10px solid #ff4e4e;
  border-radius: 8px !important;
  background-color: #ffe4e4 !important;
}

._container_1wsae_25 {
  display: flex;
}

._textContainer_1wsae_29 {
  display: flex;
  flex-flow: column;
  margin-left: 14px;
}

._label_1wsae_35 {
  font-size: 14px;
  line-height: 19px;
  color: #ff4e4e;
}

._label_1wsae_35._success_1wsae_41 {
  color: #2ed15e;
}

._label_1wsae_35:last-child {
  margin-top: 8px;
}
._container_1prlz_1 {
  width: 100%;
}

._inputContainer_1prlz_5 {
  margin-bottom: 10px;
}

._inputContainer_1prlz_5 ._label_1prlz_9 {
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  margin-bottom: 8px;
}

._inputContainer_1prlz_5 ._labelToolTip_1prlz_16 {
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  grid-gap: 12px;
  gap: 12px;
}

._inputContainer_1prlz_5 ._error_1prlz_27 {
  margin-top: 4px;
  font-size: 14px;
  color: #ff4e4e;
}

._inputContainer_1prlz_5 ._flexItem_1prlz_33 {
  display: flex;
  align-items: center;
  gap: 12px;
}

._inputContainer_1prlz_5 ._flexItem_1prlz_33 ._text_1prlz_39 {
  font-size: 14px;
  line-height: 19px;
  margin-right: 10px;
}

._right_1prlz_45 {
  justify-content: center;
  display: flex;
}

._right_1prlz_45 ._button_1prlz_50 {
  height: 30px;
  width: 139px;
  font-size: 14px;
  border-radius: 2px;
}

._sendToContainer_1prlz_57 {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

._sendToContainer_1prlz_57 ._label_1prlz_9 {
  font-weight: bold;
  font-size: 14px;
  line-height: 19px;
  margin-right: 18px;
}

/* File Upload */
._uploadFile_1prlz_71 {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  width: max-content !important;
}

._uploadFileDesc_1prlz_79 {
  font-size: 14px;
  margin: 0;
  font-weight: normal;
}

._uploadFile_1prlz_71 ._buttonContainer_1prlz_85 {
  border-radius: 4px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

._uploadFile_1prlz_71 label {
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  border: none;
  display: inline-block;
  width: auto;
}

._uploadFileButton_1prlz_103 {
  display: none;
  max-width: fit-content;
}

._fileName_1prlz_108 {
  font-size: 14px;
  margin-left: 10px;
  font-weight: normal;
}

@media only screen and (max-width: 1024px) {
  ._container_1prlz_1 ._inputContainer_1prlz_5 ._flexItem_1prlz_33._accessSecret_1prlz_115 {
    display: unset;
  }

  ._right_1prlz_45 {
    float: right;
    margin-right: 48px;
    margin-top: 24px;
  }
}

._datePickerInput_1prlz_126 div {
  > input {
    padding: 4px 12px !important;
  }
}
/* Styles for UdvBatchApiFailuresPresentor */

._container_8eo84_3 {
  border: 1px solid #15172c;
  border-radius: 8px;
  padding: 24px;
  max-width: 500px;
  box-shadow: 0 4px 20px #15172c;
  color: #ffffff;
}

._header_8eo84_12 {
  margin-top: 0;
  font-weight: bold;
  font-size: 18px;
  line-height: 25px;
  text-transform: uppercase;
}

._errorList_8eo84_20 {
  padding-left: 20px;
  margin-bottom: 8px;
  overflow-y: auto;
  max-height: calc(100vh - 200px);
}

._errorItem_8eo84_27 {
  margin-bottom: 4px;
}

._errorLine_8eo84_31 {
  font-weight: 500;
  color: #ea3385;
}

._remainingErrors_8eo84_36 {
  color: #ea3385;
  font-weight: 500;
}
@font-face {
  font-family: 'AvenirNext';
  src: url('/fonts/avenirnextltpro-demi-webfont.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'AvenirNext';
  src: url('/fonts/avenirnextltpro-bold-webfont.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'AvenirNext';
  src: url('/fonts/avenirnextltpro-heavy-webfont.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

body {
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', monospace;
}

:root {
  --container-color: #383852;
  --selected-container-color: #ea3385;
  --container-shadow-color: #15172c;
  --border-seperator-color: #282a3f;
  --border-seperator-color-light: #fff;
  --border-seperator-color-light-darker: #e6e6e6;
  --primary-color: #f8049c;
  --secondary-color: #fdd54f;
  --text-color: #fff;
  --background-color: #3f4458;
  --background-color-shadow: #632d55;
  --background-color: var(--border-seperator-color);
  --seconday-color: var(--selected-container-color);
}
