@import url("https://fonts.googleapis.com/icon?family=Material+Icons");
* {
  box-sizing: border-box !important;
}

.k-widget {
  /*font-size: 0.85rem;*/
}

.k-input-md, .k-picker-md {
  /*font-size: 0.8rem;*/
  line-height: 1.5;
  height: 33px;
  outline: none;
}

.k-list-md {
  /*font-size: 0.8rem;*/
  line-height: 1.5;
}


div.popup-layer {
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.2);
  position: fixed;
}
div.popup-layer.animate:before {
  font-family: "Material Icons", serif;
  content: "\e86a";
  font-size: 64px;
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 0, 0);
  display: flex;
  justify-content: center;
  align-items: center;
  color: green;
  animation: animateWaiting 1s infinite;
}

div.form-popup {
  position: absolute;
  top: -20px;
  left: 50%;
  transition: 0.5s;
  transform: translateX(-50%);
  overflow: hidden;
  opacity: 0;
}
div.form-popup div.card-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
div.form-popup div.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
div.form-popup div.close-box {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
div.form-popup div.close-box i {
  transition: 0.5s;
}
div.form-popup div.close-box:hover i {
  transform: rotate(360deg);
  color: red;
}
div.form-popup.active {
  transition-delay: 0.5s;
  top: 40px;
  opacity: 1;
  transform: translateX(-50%);
}
div.form-popup.disable:after {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  top: 0;
  left: 0;
  position: absolute;
  z-index: 1000;
}

form.two-column-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
form.two-column-form div {
  overflow: hidden;
}

div.notification {
  position: fixed;
  right: -100%;
  top: 50%;
  background: white;
  transition: 0.5s;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 30px;
  opacity: 0;
  cursor: pointer;
  flex-direction: column;
  gap: 10px;
}
div.notification.active {
  opacity: 1;
  right: 0;
}

@keyframes animateWaiting {
  0% {
    content: "\e86a";
    transform: rotate(0);
  }
  50% {
    content: "\e86a";
    transform: rotate(180deg);
  }
  100% {
    content: "\e86a";
    transform: rotate(360deg);
  }
}
div.confirm-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
div.confirm-body > div:nth-child(3) {
  width: 100%;
  display: flex;
  gap: 2px;
  justify-content: flex-end;
}
div.confirm-body > div:nth-child(3) button {
  flex-grow: 1;
  justify-content: center;
  border-radius: 0;
}

.k-calendar .k-calendar-view {
  width: auto;
  height: 17em;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

span.action-item {
  padding: 5px 10px;
  cursor: pointer;
  /*font-size: 0.8rem;*/
}
span.action-item:hover {
  background: #0069D9;
  color: white;
}

tr.complete-row td {
  background: green;
  color: white;
}

tr.green-new td:not(:last-child) {
  background: green;
  transition: 1.5s;
  transition-delay: var(--delay);
  color: white;
}

tr.green td:not(:last-child) {
  background: green;
  color: white;
}

tr.blue td:not(:last-child) {
  background: blue;
  color: white;
}

tr.orange td:not(:last-child) {
  background: orange;
  color: white;
}

tr.red td:not(:last-child) {
  background: white;
  color: black;
}

tr.yellow td:not(:last-child) {
  background: yellow;
  color: black;
}

tr.error-row td {
  background-color: red;
  color: yellow;
}

.k-input-md, .k-picker-md {
  /*font-size: 0.8rem;*/
  line-height: 1.5;
  height: 33px;
  outline: none;
  border-radius: 0;
  padding: 0 !important;
}

.k-input-md .k-input-values, .k-picker-md .k-input-values {
  padding: 0 5px;
  gap: 0.1875rem;
}

.k-chip-solid-base {
  border-color: #e4e7eb;
  color: #212529;
  background-color: #e4e7eb;
  border-radius: 0;
}

tr.marked-for-death {
  pointer-events: none;
}
tr.marked-for-death td {
  color: rgba(128, 128, 128, 0.2);
}
tr.marked-for-death span {
  opacity: 0.2;
}
tr.marked-for-death button {
  opacity: 0.2;
}

.k-filter-row th, .k-grid-header th.k-header {
  overflow: hidden;
  border-style: solid;
  border-width: 0 0 1px 1px;
  padding: 6px 8px;
  font-weight: 400;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: left;
  border-color: #cccccc;
}

.k-grid-toolbar {
  border-color: inherit;
  display: flex;
  justify-content: flex-end;
}

div.document-layer {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
}
div.document-layer div.loader {
  width: 200px;
  height: 30px;
  background-color: yellow;
}

/*# sourceMappingURL=root.css.map */
