/* src/assets/frappe-gantt.css */
:root {
  --g-arrow-color: #1f2937;
  --g-bar-color: #fff;
  --g-bar-border: #fff;
  --g-tick-color-thick: #ededed;
  --g-tick-color: #f3f3f3;
  --g-actions-background: #f3f3f3;
  --g-border-color: #ebeff2;
  --g-text-muted: #7c7c7c;
  --g-text-light: #fff;
  --g-text-dark: #171717;
  --g-progress-color: #dbdbdb;
  --g-handle-color: #37352f;
  --g-weekend-label-color: #dcdce4;
  --g-expected-progress: #c4c4e9;
  --g-header-background: #fff;
  --g-row-color: #fdfdfd;
  --g-row-border-color: #c7c7c7;
  --g-today-highlight: #37352f;
  --g-popup-actions: #ebeff2;
  --g-weekend-highlight-color: #f7f7f7;
}
.gantt-container {
  line-height: 14.5px;
  position: relative;
  overflow: auto;
  font-size: 12px;
  height: var(--gv-grid-height);
  width: 100%;
  border-radius: 8px;
}
.gantt-container .popup-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  box-shadow: 0 10px 24px -3px #0003;
  padding: 10px;
  border-radius: 5px;
  width: max-content;
  z-index: 1000;
}
.gantt-container .popup-wrapper .title {
  margin-bottom: 2px;
  color: var(--g-text-dark);
  font-size: .85rem;
  font-weight: 650;
  line-height: 15px;
}
.gantt-container .popup-wrapper .subtitle {
  color: var(--g-text-dark);
  font-size: .8rem;
  margin-bottom: 5px;
}
.gantt-container .popup-wrapper .details {
  color: var(--g-text-muted);
  font-size: .7rem;
}
.gantt-container .popup-wrapper .actions {
  margin-top: 10px;
  margin-left: 3px;
}
.gantt-container .popup-wrapper .action-btn {
  border: none;
  padding: 5px 8px;
  background-color: var(--g-popup-actions);
  border-right: 1px solid var(--g-text-light);
}
.gantt-container .popup-wrapper .action-btn:hover {
  background-color: brightness(97%);
}
.gantt-container .popup-wrapper .action-btn:first-child {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.gantt-container .popup-wrapper .action-btn:last-child {
  border-right: none;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.gantt-container .grid-header {
  height: calc(var(--gv-lower-header-height) + var(--gv-upper-header-height) + 10px);
  background-color: var(--g-header-background);
  position: sticky;
  top: 0;
  left: 0;
  border-bottom: 1px solid var(--g-row-border-color);
  z-index: 1000;
}
.gantt-container .lower-text,
.gantt-container .upper-text {
  text-anchor: middle;
}
.gantt-container .upper-header {
  height: var(--gv-upper-header-height);
}
.gantt-container .lower-header {
  height: var(--gv-lower-header-height);
}
.gantt-container .lower-text {
  font-size: 12px;
  position: absolute;
  width: calc(var(--gv-column-width) * .8);
  height: calc(var(--gv-lower-header-height) * .8);
  margin: 0 calc(var(--gv-column-width) * .1);
  align-content: center;
  text-align: center;
  color: var(--g-text-muted);
}
.gantt-container .upper-text {
  position: absolute;
  width: fit-content;
  font-weight: 500;
  font-size: 14px;
  color: var(--g-text-dark);
  height: calc(var(--gv-lower-header-height) * .66);
}
.gantt-container .current-upper {
  position: sticky;
  left: 0 !important;
  padding-left: 17px;
  background: #fff;
}
.gantt-container .side-header {
  position: sticky;
  top: 0;
  right: 0;
  float: right;
  z-index: 1000;
  line-height: 20px;
  font-weight: 400;
  width: max-content;
  margin-left: auto;
  padding-right: 10px;
  padding-top: 10px;
  background: var(--g-header-background);
  display: flex;
}
.gantt-container .side-header * {
  transition-property: background-color;
  transition-timing-function: cubic-bezier(.4, 0, .2, 1);
  transition-duration: .15s;
  background-color: var(--g-actions-background);
  border-radius: .5rem;
  border: none;
  padding: 5px 8px;
  color: var(--g-text-dark);
  font-size: 14px;
  letter-spacing: .02em;
  font-weight: 420;
  box-sizing: content-box;
  margin-right: 5px;
}
.gantt-container .side-header *:last-child {
  margin-right: 0;
}
.gantt-container .side-header *:hover {
  filter: brightness(97.5%);
}
.gantt-container .side-header select {
  width: 60px;
  padding-top: 2px;
  padding-bottom: 2px;
}
.gantt-container .side-header select:focus {
  outline: none;
}
.gantt-container .date-range-highlight {
  background-color: var(--g-progress-color);
  border-radius: 12px;
  height: calc(var(--gv-lower-header-height) - 6px);
  top: calc(var(--gv-upper-header-height) + 5px);
  position: absolute;
}
.gantt-container .current-highlight {
  position: absolute;
  background: var(--g-today-highlight);
  width: 1px;
  z-index: 999;
}
.gantt-container .current-ball-highlight {
  position: absolute;
  background: var(--g-today-highlight);
  z-index: 1001;
  border-radius: 50%;
}
.gantt-container .current-date-highlight {
  background: var(--g-today-highlight);
  color: var(--g-text-light);
  border-radius: 5px;
}
.gantt-container .holiday-label {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 1000;
  background: --g-weekend-label-color;
  border-radius: 5px;
  padding: 2px 5px;
}
.gantt-container .holiday-label.show {
  opacity: 100;
}
.gantt-container .extras {
  position: sticky;
  left: 0;
}
.gantt-container .extras .adjust {
  position: absolute;
  left: 8px;
  top: calc(var(--gv-grid-height) - 60px);
  background-color: #000000b3;
  color: #fff;
  border: none;
  padding: 8px;
  border-radius: 3px;
}
.gantt-container .hide {
  display: none;
}
.gantt {
  user-select: none;
  -webkit-user-select: none;
  position: absolute;
}
.gantt .grid-background {
  fill: none;
}
.gantt .grid-row {
  fill: var(--g-row-color);
}
.gantt .row-line {
  stroke: var(--g-border-color);
}
.gantt .tick {
  stroke: var(--g-tick-color);
  stroke-width: .4;
}
.gantt .tick.thick {
  stroke: var(--g-tick-color-thick);
  stroke-width: .7;
}
.gantt .arrow {
  fill: none;
  stroke: var(--g-arrow-color);
  stroke-width: 1.5;
}
.gantt .bar-wrapper .bar {
  fill: var(--g-bar-color);
  stroke: var(--g-bar-border);
  stroke-width: 0;
  transition: stroke-width .3s ease;
}
.gantt .bar-progress {
  fill: var(--g-progress-color);
  border-radius: 4px;
}
.gantt .bar-expected-progress {
  fill: var(--g-expected-progress);
}
.gantt .bar-invalid {
  fill: transparent;
  stroke: var(--g-bar-border);
  stroke-width: 1;
  stroke-dasharray: 5;
}
:is(.gantt .bar-invalid) ~ .bar-label {
  fill: var(--g-text-light);
}
.gantt .bar-label {
  fill: var(--g-text-dark);
  dominant-baseline: central;
  font-family: Helvetica;
  font-size: 13px;
  font-weight: 400;
}
.gantt .bar-label.big {
  fill: var(--g-text-dark);
  text-anchor: start;
}
.gantt .handle {
  fill: var(--g-handle-color);
  opacity: 0;
  transition: opacity .3s ease;
}
.gantt .handle.active,
.gantt .handle.visible {
  cursor: ew-resize;
  opacity: 1;
}
.gantt .handle.progress {
  fill: var(--g-text-muted);
}
.gantt .bar-wrapper {
  cursor: pointer;
}
.gantt .bar-wrapper .bar {
  outline: 1px solid var(--g-row-border-color);
  border-radius: 3px;
}
.gantt .bar-wrapper:hover .bar {
  transition: transform .3s ease;
}
.gantt .bar-wrapper:hover .date-range-highlight {
  display: block;
}

/* src/styles.css */
body {
  font-family: "Marcellus";
  background-color: rgb(14, 9, 24);
  color: white;
}
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: auto;
}
h1 {
  font-weight: lighter;
  padding-top: 15px;
  font-size: 48px;
}
.transparent-button {
  width: 120px;
  height: 30px;
  border-radius: 15px;
  border: 1px solid black;
  background-color: transparent;
}
app-root {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
h1,
h2,
h3 {
  padding: 0;
  margin: 0;
  text-align: center;
}
.input-label {
  display: flex;
  align-items: center;
}
.text-input {
  margin-top: 5px;
  margin-bottom: 5px;
}
.select-input {
  width: 176px;
  height: 23px;
  margin-top: 5px;
  margin-bottom: 5px;
}
.add-resource-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.site-button {
  margin-top: 10px;
  margin-bottom: 10px;
  background-color: cornflowerblue;
  color: white;
  border-radius: 15px;
  border: none;
  width: 150px;
  height: 30px;
  font-weight: bold;
  margin-right: 10px;
  margin-left: 10px;
  cursor: pointer;
}
.blue {
  color: white;
  background-color: cornflowerblue;
}
.black {
  color: white;
  background-color: black;
  border: 1px solid #999;
}
.button-container {
  text-align: center;
  padding: 10px;
}
.header {
  font-weight: bold;
  border-bottom: 1px solid white;
}
.dialog-title {
  text-align: center;
  font-size: 18px;
  margin-bottom: 10px;
}
.table-title {
  text-align: center;
  font-size: 18px;
  margin-bottom: 10px;
  margin-top: 10px;
}
.page-title {
  text-align: center;
  font-size: 24px;
}
.page-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family:
    "Courier New",
    Courier,
    monospace;
}
.info-table-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 600px;
}
.date-input {
  width: 172px;
  height: 21px;
  margin-top: 5px;
  margin-bottom: 5px;
}
.data-table {
  font-family:
    "Courier New",
    Courier,
    monospace;
  display: grid;
  column-gap: 10px;
  row-gap: 5px;
  padding: 10px;
}
.table-header {
  font-weight: bold;
  border-bottom: 1px solid white;
}
.info-table {
  display: grid;
  grid-template-columns: 1fr 3fr;
  column-gap: 10px;
  row-gap: 3px;
  padding: 10px;
}
.table-header-text {
  margin-top: 20px;
  font-size: 24px;
}
.campaigns-table {
  display: grid;
  grid-template-columns: 1fr 1.1fr 2fr 2fr 1fr 1fr;
}
.top-container {
  display: flex;
  flex-direction: column;
  padding-left: 30px;
  padding-bottom: 50px;
}
.splash-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  padding-top: 20px;
}
.splash-item-left {
  padding-top: 40px;
  min-height: 270px;
  border-right: 1px solid black;
  flex: 1 1 51%;
  padding-right: 15px;
}
a {
  color: #ff6d00;
}
a:visited {
  color: #9e4aff;
}
.splash-item-right {
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  padding-left: 30px;
  padding-right: 70px;
  flex: 1 1 35%;
}
.page-media {
  width: 350px;
  border-radius: 15px;
}
button {
  font-family: "Marcellus", serif;
}
.loader {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  position: relative;
  text-align: center;
  animation: rotate 1s linear infinite;
  display: block;
}
.loader::before,
.loader::after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  inset: 0px;
  border-radius: 50%;
  border: 5px solid #FFF;
  animation: prixClipFix 2s linear infinite;
}
.loader::after {
  border-color: #FF3D00;
  animation: prixClipFix 2s linear infinite, rotate 0.5s linear infinite reverse;
  inset: 6px;
}
.loader-small {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: relative;
  text-align: center;
  animation: rotate 1s linear infinite;
  display: block;
}
.loader-small::before,
.loader-small::after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  inset: 0px;
  border-radius: 50%;
  border: 5px solid #FFF;
  animation: prixClipFix 2s linear infinite;
}
.loader-small::after {
  border-color: #FF3D00;
  animation: prixClipFix 2s linear infinite, rotate 0.5s linear infinite reverse;
  inset: 6px;
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes prixClipFix {
  0% {
    clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0);
  }
  25% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0);
  }
  50% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%);
  }
  75% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%);
  }
  100% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0);
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles-O4GMTHZT.css.map */
