* {
  /* box-sizing: border-box; */
  margin: 0;
  padding: 0;
}

body {
  font-family: "adobe-clean", -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans",
    "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.prewrap {
  white-space: pre-wrap;
}

.allow-multiline {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  word-break: break-word;
}

.modal-minus-header {
  z-index: 101;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity*/
}

.body-content {
  background-color: #f5f5f5;
  height: 100%;
  overflow: auto;
  /* padding: 0px 1rem; */
}

.main-container {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.cam-font {
  font-family: "adobe-clean";
}

.stepper-box {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.logo-section {
  cursor: pointer;
  text-decoration: none;
}
.app-title {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 10px;
  margin-top: 3px;
  margin-right: 25px;
}

.main-navigation {
  text-align: center;
  width: 60vw;
  justify-content: start;
  margin-left: 2rem;
}
.spectrum-Tabs {
  color: #101010;
  border-bottom-color: #101010;
}

.spectrum-Tabs-item {
  color: #989898;
}

.spectrum-Tabs-item.is-selected {
  color: #fff;
}
.spectrum-Tabs-selectionIndicator {
  color: #fff;
}
span.spectrum-Tabs-itemLabel > a {
  color: #fff;
  text-decoration: none;
}

.is-selected > .spectrum-Tabs-itemLabel {
  color: #fff;
  text-decoration: none;
}

span.spectrum-Tabs-itemLabel {
  color: #838383;
  text-decoration: none;
}

.header-container > .main-navigation > .spectrum-Tabs-selectionIndicator {
  background-color: #fff;
}

.header {
  background-color: #1e1e1e;
  color: #fff;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header > .main-navigation {
  border-bottom: none;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50px;
  width: 100%;
  padding: 0 1rem;
}

.user-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  grid-gap: 1rem;
}

.icon-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: none;
  outline: none;
  border-radius: 50%;
  animation: bell 1s linear infinite alternate-reverse;
  transform-origin: top;
}

.icon-button__badge {
  position: absolute;
  top: -0.4rem;
  right: -0.7rem;
  width: 1rem;
  height: 1rem;
  background: red;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.65rem;
  border: 0.19rem solid #01111b;
}

@keyframes bell {
  0% {
    transform: rotate(-8deg);
  }
  100% {
    transform: rotate(8deg);
  }
}

.slide-pane__header{
    flex: inherit;
    border: 0px !important;
    background: inherit !important;
    flex-direction: row-reverse;

}

.slide-pane__title{
    font-weight: bold !important;
    font-size: 1rem !important;
}

.slide-pane__close svg {
    width: 16px !important;
}

.slide-pane__close{
    margin-left: 0px !important;
    padding: 0px !important;
    padding-right: 26px !important;
}

.slide-pane{
    margin-top: 3.12rem;
    height: calc(100% - 3.12rem) !important;
    background: #F5F5F5 !important;
}

.slide-pane__content{
    padding-top: 0px !important;
}
.parent-content {
  height: 0px;
  overflow: hidden;
  transition: height ease 0.3s;
}

.config {
  padding: 36px;
}

.config > .heading {
  color: #2c2c2c;
}

.config > .search-field {
  margin-top: 20px;
  color: #4b4b4b;
}

.config > .datagrid {
  margin-top: 30px;
  color: #2c2c2c;
}

.Embed-dashboard {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0.6rem;
  /* padding: 0.6rem 10rem; */
}

iframe {
  border: none;
}

/* .step-card {
    border: 1px solid #333;
    border-radius: 0.5rem;
    padding: 0.5rem;
    background-color: white;
} */

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

.c-stepper {
  /* display: flex;
    flex-wrap: wrap; */
  --size: 2rem;
  --spacing: 0.5rem;
  --customBlue: rgb(62, 142, 211);
  /* --step-background-color: rgb(117, 113, 117);
    --line-color: #e0e0e0; */
  padding: 1rem;
}

.c-stepper__item {
  /* display: flex;
    flex-direction: column;
    flex: 1; */
  text-align: center;
}

.c-stepper__item:before {
  content: attr(data-content);
  display: flex;
  width: var(--size);
  height: var(--size);
  border-radius: 15%;
  color: #e0e0e0;
  /* background-color: var(--step-background-color); */
  text-align: center;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.5rem;
}

.c-stepper__item[data-step-status="current"]:before {
  background-color: rgb(62, 142, 211);
}

.c-stepper__item[data-step-status="tbd"]:before {
  background-color: rgb(117, 113, 117);
}

.c-stepper__item[data-step-status="finished"]:before {
  background-color: #1da973;
}

.c-stepper__item:not(:last-child):after {
  content: "";
  position: relative;
  top: calc(var(--size) / 2);
  width: calc(100% - var(--size) - calc(var(--spacing) * 2));
  left: calc(50% + calc(var(--size) / 2 + var(--spacing)));
  height: 2px;
  /* background-color: var(--line-color); */
  background-color: attr(data-step-line-color);
  order: -1;
}

.c-stepper__item[data-step-status="finished"]:not(:last-child):after {
  background-color: #1da973;
}

.c-stepper__item[data-step-status="tbd"]:not(:last-child):after {
  background-color: #e0e0e0;
}

.c-stepper__item[data-step-status="current"]:not(:last-child):after {
  background-color: #e0e0e0;
}

.c-stepper__title {
  font-weight: bold;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.c-stepper__desc {
  color: grey;
  font-size: 1rem;
  padding-left: var(--spacing);
  padding-right: var(--spacing);
}

.card {
  animation: fade 250ms ease-in-out forwards;
}
.card.active {
  animation: slide 250ms 125ms ease-in-out both;
}

.wrapper {
  overflow: hidden;
  position: relative;
}
.hide {
  display: none;
}

@keyframes slide {
  0% {
    transform: translateX(200%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(0.75);
    opacity: 0;
  }
  100% {
    opacity: 0;
    transform: scale(0);
  }
}

.card-body {
  background-color: white;
  transition: transform 200ms ease-in-out;
}
.card-body:hover {
  cursor: pointer;
  transform: scale(1.05);
}

.custom-button {
  all: unset;
}

.body {
  /* font-family: "Adobe Clean"; */
  display: flex;
  flex-direction: column;
  /* height: 100vh; */
  /* overflow: hidden; */
  /* margin: 0;
  padding: 0; */
  /* overflow-anchor: none; */
}

.body > .searchBar {
  display: flex;
  margin-inline-start: 0px;
  border-radius: 5px;
  color: #4b4b4b;
  margin-left: 20px;
  width: 32%;
  color: black;
}

.body > .heading {
  color: #2c2c2c;
  margin-left: 25px;
  margin-right: 20px;
  margin-top: 25px;
}

.searchicon {
  margin-top: 25px;
  margin-left: 5px;
  margin-right: 5px;
}

.search-field {
  margin-top: 16px;
  color: #4b4b4b;
  width: 300px;
  border: 1px solid black;
  height: 60px;
  border-radius: 5px;
}

.AccountHierarchyTree {
  /* font-family: "Adobe Clean"; */
  /* display: flex;
  flex-direction: row; */
  /* height: 80vh; */
  /* height: 100%; */
  flex: 1 1;
  /* overflow: hidden; */
  /* margin: 0;
  padding: 0; */
  /* overflow-anchor: none; */
}

.propose-bottom {
  margin-left: 80%;
}

.alertbox-shown {
  margin-left: 10px;
  opacity: 1;
  transition: all 250ms ease;
  margin-top: 20px;
  width: 70%;
  margin-left: 10%;
  height: 35px;
  display: flex;
  justify-content: center;
  background-color: #bcbfec;
  border-radius: 15px;
  padding: 10px;
  font-family: "Adobe Clean";
  font-size: 25px;
  font-weight: bold;
}

.alertbox-hidden {
  display: none;
  opacity: 0;
  transition: all 250ms linear 3s;
}

.textbox-display {
  margin-top: 20px;
}

.alertbox-parent {
  /* width: 1400px; */
  text-align: center;
  justify-content: center;
}

.typehead {
  padding: 20px;
  color: #4b4b4b;
}

.accountHierarchy_node_modified .rst__rowContents {
  background-color: #587958;
  color: white;
}

.accountHierarchy_node .rst__moveHandle {
  background-color: #ffd800;
}

.accountHierarchy_node_modified .rst__moveHandle {
  background-color: #ffd800;
}

.cam_tree_node_child_modified {
  color: #008080;
}

.nodeSubtitle {
  padding-top: 6px !important;
  padding-bottom: 6px !important;
}

.AHtooltip .right {
  width: max-content;
  top: 50%;
  left: 100%;
  margin-left: 1.25rem;
  transform: translate(0, -50%);
  padding: 0;
  color: #eeeeee;
  background-color: #444444;
  font-weight: normal;
  font-size: small;
  border-radius: 0.5rem;
  position: absolute;
  z-index: 99999999;
  box-sizing: border-box;
  box-shadow: 0 0.0625rem 0.5rem rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.8s;
}

.AHtooltip:hover .right {
  white-space: pre-line;
  width: max-content;
  max-width: 100%;
  visibility: visible;
  opacity: 1;
}

.AHtooltip .text-content {
  padding: 0.625rem 1.25rem;
}

.AHtooltip .right i {
  position: absolute;
  top: 50%;
  right: 100%;
  margin-top: -12px;
  width: 0.75rem;
  height: 1.5rem;
  overflow: hidden;
}
.AHtooltip .right i::after {
  content: "";
  position: absolute;
  width: 0.75rem;
  height: 0.75rem;
  left: 0;
  top: 50%;
  transform: translate(50%, -50%) rotate(-45deg);
  background-color: #444444;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.cam_tree_node .rst__moveHandle {
  background-color: #ffd800;
}

.cam_tree_node_modified .rst__rowContents {
  background-color: #8fbc8f;
  color: white;
}

.source_system_node .rst__rowContents {
  background-color: #cbdcff;
  color: black;
}

.cam_tree_node_selected .rst__rowContents {
  border: 3px solid #8fbc8f;
}

.tree {
  height: 35vmax;
  /* border: none; */
  width: 45rem;
  padding: 1rem;
  border-style: dashed;
}

.tree .rst__tree {
  height: 96% !important;
}

.cam_tree_node_child_modified {
  color: #008080;
}

.tooltip .right {
  width: max-content;
  top: 50%;
  left: 100%;
  margin-left: 1.25rem;
  transform: translate(0, -50%);
  padding: 0;
  color: #eeeeee;
  background-color: #444444;
  font-weight: normal;
  font-size: small;
  border-radius: 0.5rem;
  position: absolute;
  z-index: 99999999;
  box-sizing: border-box;
  box-shadow: 0 0.0625rem 0.5rem rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.8s;
}

.tooltip:hover .right {
  white-space: pre-line;
  width: max-content;
  max-width: 100%;
  visibility: visible;
  opacity: 1;
}

.tooltip .text-content {
  padding: 0.625rem 1.25rem;
}

.tooltip .right i {
  position: absolute;
  top: 50%;
  right: 100%;
  margin-top: -12px;
  width: 0.75rem;
  height: 1.5rem;
  overflow: hidden;
}
.tooltip .right i::after {
  content: "";
  position: absolute;
  width: 0.75rem;
  height: 0.75rem;
  left: 0;
  top: 50%;
  transform: translate(50%, -50%) rotate(-45deg);
  background-color: #444444;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.cam_tree_node_deleted .rst__rowContents {
  background-color: #880808;
  color: white;
}

.api-response {
  overflow-wrap: break-word;
}


/*# sourceMappingURL=main.e265530d.chunk.css.map*/