:root {
  --primary-color: #fff; /* try #212121 also for dark mode */
  --background-color: #212121;
  --font: sans-serif;
}

.timeline {
  background: var(--primary-color);
  margin: 20px auto;
  padding: 20px;
}
.timeline .timeline-outer {
  border-left: 2px solid #333;
}
.timeline .timeline-card {
  position: relative;
  margin: 0 0 20px 20px;
  padding: 10px;
  color: gray;
  border-radius: 8px;
  max-width: 400px;
}
.timeline .timeline-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.timeline .timeline-title {
  position: relative;
  display: flex;
  gap: 5px;
}
.timeline .timeline-title::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 999px;
  left: -41px;
  border: 3px solid orangered;
}

/* Outer Layer with the timeline border */
/* Card container */
/* Information about the timeline */
/* Title of the card */
.badge-text {
  display: inline-block;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  padding: 0.25em 0.4em;
  border-radius: 0.25rem;
}

.badge-bg-success {
  color: rgb(255, 255, 255);
  background-color: rgb(40, 167, 69);
}

.badge-bg-danger {
  color: rgb(255, 255, 255);
  background-color: rgb(220, 53, 69);
}

.badge-bg-warning {
  color: rgb(33, 37, 41);
  background-color: rgb(255, 193, 7);
}

.container-org {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 60px 1fr 0px;
  grid-column-gap: 0px;
  grid-row-gap: 10px;
}
.container-org > .toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
}
.container-org > .toolbar > .toolbar-l {
  display: flex;
  gap: 5px;
}
.container-org > .toolbar > .toolbar-r {
  display: flex;
  gap: 5px;
}
.container-org > .chart {
  min-height: 700px;
}
.container-org .modal-footer {
  display: flex;
  justify-content: end;
  gap: 8px;
}

.loader-bg-white {
  background-color: #fff;
}

.loader-bg-tranparent {
  background-color: transparent;
}

.loader-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader-radius-md {
  border-radius: 1rem;
}

.loader {
  width: 48px;
  height: 48px;
  border: 6px solid #000;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loader-roller {
  color: #000;
  font-size: 45px;
  text-indent: -9999em;
  overflow: hidden;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  position: relative;
  transform: translateZ(0);
  animation: mltShdSpin 1.7s infinite ease, round 1.7s infinite ease;
}

@keyframes mltShdSpin {
  0% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  5%, 95% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  10%, 59% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
  }
  20% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
  }
  38% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
  }
  100% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
}
@keyframes round {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.detail-item-user-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.detail-item-title {
  margin-bottom: 10px;
}

.detail-item-title span,
.detail-item-title label {
  display: inline-block;
}

.detail-item-user {
  display: grid;
  grid-template-columns: 62px 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 10px;
  padding: 10px;
}
.detail-item-user.active {
  opacity: 1;
  border-radius: 10px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
}
.detail-item-user.drag {
  opacity: 1;
  background-color: #fff;
}
.detail-item-user .detail-user-img {
  height: 100%;
  width: 100%;
}
.detail-item-user .detail-user-img > .img {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: inherit;
  background-size: cover;
}

.sortable-drag {
  opacity: 1;
}

.detail-item-user .detail-user-info span {
  display: block;
}

.detail-item-info span {
  display: block;
  margin-bottom: 5px;
  margin-left: 85px;
}

.detail-avatar {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: inherit;
  background-size: cover;
}

.info-item {
  margin-bottom: 0.5rem;
}

.info-item span {
  font-size: 12px;
  color: #818a91;
}

.filter-none {
  display: none;
}

.cursor-move {
  cursor: move !important;
}

#chart {
  background-color: transparent;
}

#chart > svg {
  background-color: transparent;
}

#chart hr {
  margin-top: 0.4rem;
  margin-bottom: 0.5rem;
}

#chart:fullscreen {
  background-color: #fff;
}

/* Style balkan */
.chart-container.boc-light {
  background-color: transparent;
}

.boc-search {
  right: 15px !important;
  top: 0px !important;
}

.boc-input > label.focused,
.boc-input > label.hasval {
  top: -1px !important;
}

.boc-input > input {
  height: 40px !important;
}

.boc-input > label {
  top: 8px !important;
}

div[data-ctrl-menu] {
  top: 5px !important;
}

.icon-org {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  width: 24px;
}
.icon-org > [icon] {
  font-size: 20px;
}

.boc-light .boc-chart-menu [data-item] {
  display: flex;
  align-items: center;
}

.footer .modal-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 15px;
  border-bottom: 1px solid #eceeef;
}
.footer .modal-header::after {
  content: none;
}
.footer .modal-content {
  position: relative !important;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.container-org .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 38px;
  gap: 5px;
}
.container-org .btn span {
  color: #fff;
}

#ui-datepicker-div {
  z-index: 10500 !important;
}

.box-button-log {
  display: flex;
  gap: 5px;
}

.boc-chart-menu {
  max-height: 16rem;
  overflow-x: hidden;
}

.dropdownsearch {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.options {
  width: 300px;
}

.dropdown-select {
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#40FFFFFF", endColorstr="#00FFFFFF", GradientType=0);
  background-color: #fff;
  border-radius: 6px;
  border: solid 1px #eee;
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  float: left;
  font-size: 14px;
  font-weight: normal;
  height: 42px;
  line-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 30px;
  position: relative;
  text-align: left !important;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  width: auto;
}

.dropdown-select:focus {
  background-color: #fff;
}

.dropdown-select:hover {
  background-color: #fff;
}

.dropdown-select:active,
.dropdown-select.open {
  background-color: #fff !important;
  border-color: #bbb;
}

.dropdown-select:after {
  height: 0;
  width: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #777;
  -webkit-transform: origin(50% 20%);
  transform: origin(50% 20%);
  transition: all 0.125s ease-in-out;
  content: "";
  display: block;
  margin-top: -2px;
  pointer-events: none;
  position: absolute;
  right: 10px;
  top: 50%;
}

.dropdown-select.open:after {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.dropdown-select.open .list {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  pointer-events: auto;
}

.dropdown-select.open .option {
  cursor: pointer;
}

.dropdown-select.wide {
  width: 100%;
}

.dropdown-select.wide .list {
  left: 0 !important;
  right: 0 !important;
}

.dropdown-select .list {
  box-sizing: border-box;
  transition: all 0.15s cubic-bezier(0.25, 0, 0.25, 1.75), opacity 0.1s linear;
  -webkit-transform: scale(0.75);
  transform: scale(0.75);
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.09);
  background-color: #fff;
  border-radius: 6px;
  margin-top: 4px;
  padding: 3px 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 999;
  max-height: 250px;
  overflow: auto;
  border: 1px solid #ddd;
}

.dropdown-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}

.dropdown-select .list ul {
  padding: 0;
  margin: 0;
}

.dropdown-select .option {
  cursor: default;
  font-weight: 400;
  line-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 29px;
  text-align: left;
  transition: all 0.2s;
  list-style: none;
}

.dropdown-select .option:hover,
.dropdown-select .option:focus {
  background-color: #f6f6f6 !important;
}

.dropdown-select .option.selected {
  font-weight: 600;
  color: #12cbc4;
}

.dropdown-select .option.selected:focus {
  background: #f6f6f6;
}

.dropdown-select a {
  color: #aaa;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

.dropdown-select a:hover {
  color: #666;
}

.dropdown-select .input-search {
  font-size: 14px;
  height: 30px;
  width: 100%;
  border: none;
  margin-top: 5px;
}

.dropdown-select .input-search:focus {
  outline: none !important;
}

.dropdown-select[data-focus] {
  border-color: #12cbc4 !important;
}

/*# sourceMappingURL=organigrama.css.map */
