.packs-details .total-amount {
  color: var(--akount-secondary);
  font-size: 24px;
  line-height: 28px;
  font-weight: 700;
}

.packs-tasks .task {
  display: flex;
  gap: 10px;
  border-bottom: 1px dotted var(--akount-secondary);
  padding: 10px 0;
}
.packs-tasks .task.task-head {
  font-weight: bold;
  border-bottom: 1px solid var(--akount-secondary);
}
.packs-tasks .task.task-total {
  font-weight: bold;
  color: var(--akount-secondary);
  border-top: 1px solid var(--akount-secondary);
  border-bottom: none;
}
.packs-tasks .task:nth-last-child(2) {
  border-bottom: none;
}
.packs-tasks .task .task-date {
  width: 120px;
  flex-shrink: 0;
}
.packs-tasks .task .task-comment {
  flex-grow: 1;
}
.packs-tasks .task .task-duration {
  width: 100px;
  flex-shrink: 0;
  text-align: right;
}

.packs-modal {
  border: none;
  border-radius: 10px;
  padding: 30px;
  max-width: 560px;
  width: 100%;
  opacity: 0;
}
.packs-modal.fade-in {
  animation: fadeIn 0.3s ease-out;
  opacity: 1;
}
.packs-modal.fade-in::backdrop {
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
}
.packs-modal.fade-out {
  animation: fadeOut 0.3s ease-out;
  opacity: 0;
}
.packs-modal.fade-out::backdrop {
  background-color: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0);
}
.packs-modal h3 {
  color: var(--akount-secondary);
}
.packs-modal label {
  text-transform: uppercase;
  margin-left: 10px;
  font-size: 12px;
  line-height: 1.25em;
}
.packs-modal input, .packs-modal select, .packs-modal textarea, .packs-modal input[type=date], .packs-modal input[type=number] {
  width: 100%;
  padding: 0.5rem 1rem;
  margin-bottom: 15px;
  outline: none;
  border-radius: 30px;
  border-width: 1px;
}
.packs-modal input#tm-project[list]:invalid, .packs-modal select#tm-project[list]:invalid, .packs-modal textarea#tm-project[list]:invalid, .packs-modal input[type=date]#tm-project[list]:invalid, .packs-modal input[type=number]#tm-project[list]:invalid {
  border-color: red !important;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

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