/*____________ mixin _________________ */
.btn {
  min-width: 100px;
  direction: rtl;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  border-radius: 1rem;
  padding: 0.8rem 1.5rem;
  border: thin solid #eaeaea;
  font-size: 14px;
  cursor: pointer;
  width: fit-content;
  white-space: nowrap;
  transition: all 0.1s ease-in-out;
}
.btn:focus, .btn:active {
  box-shadow: none !important;
}
.btn img {
  width: 18px;
}

.btn-light {
  background: transparent;
  color: #0b2746;
  border: thin solid #f3f4f6;
}
.btn-light:hover {
  background: #f3f4f6;
  border-color: transparent;
}

.btn-primary {
  background: #0a6fc2;
  color: #ffffff;
  border: thin solid transparent;
}
.btn-primary:hover {
  background: rgb(7.5, 83.25, 145.5);
  border-color: transparent;
}

.btn-primary-light {
  background: #e1effd;
  color: #0b2746;
  border: thin solid transparent;
}
.btn-primary-light:hover {
  background: rgb(105.46875, 175.25, 245.03125);
  border-color: transparent;
  color: #ffffff;
}

.btn-primary-outline {
  background: transparent;
  color: #0a6fc2;
  border: thin solid #0a6fc2;
}
.btn-primary-outline:hover {
  background: #0a6fc2;
  border-color: transparent;
  color: #ffffff;
}

.btn-primary-dark-outline {
  background: transparent;
  color: #0a6fc2;
  border: thin solid #0a6fc2;
}
.btn-primary-dark-outline:hover {
  background: #0c4a80;
  border-color: transparent;
  color: #ffffff;
}
.btn-primary-dark-outline:hover svg {
  fill: #fff;
}

.btn-secondary {
  background: #f3f4f6;
  color: #0b2746;
  border: thin solid transparent;
}
.btn-secondary:hover {
  background: rgb(213.8571428571, 217.2857142857, 224.1428571429);
  color: #0b2746;
  border-color: transparent;
}

.btn-secondary-light {
  background: #f9fafb;
  color: #0b2746;
  border: thin solid transparent;
}
.btn-secondary-light:hover {
  background: rgb(172.5, 186.25, 200);
  border-color: transparent;
}

.btn-secondary-outline {
  background: transparent;
  color: #f3f4f6;
  border: thin solid #f3f4f6;
}
.btn-secondary-outline:hover {
  background: #f3f4f6;
  border-color: transparent;
  color: #0b2746;
}

.btn-danger {
  background: #DD0417;
  color: #ffffff;
  border: thin solid transparent;
}
.btn-danger:hover {
  background: rgb(170.9066666667, 3.0933333333, 17.7866666667);
  border-color: transparent;
}

.btn-danger-light {
  background: rgba(255, 63, 51, 0.1019607843);
  color: #0b2746;
  border: thin solid transparent;
}
.btn-danger-light:hover {
  background: rgba(178.5, 10.5, 0, 0.1019607843);
  border-color: transparent;
}

.btn-danger-outline {
  background: transparent;
  color: #DD0417;
  border: thin solid #DD0417;
}
.btn-danger-outline:hover {
  background: #DD0417;
  border-color: transparent;
  color: #ffffff;
}

.btn-success {
  background: #1A9F58;
  color: #ffffff;
  border: thin solid transparent;
}
.btn-success:hover {
  background: rgb(18.8324324324, 115.1675675676, 63.7405405405);
  border-color: transparent;
}

.btn-success-light {
  background: rgba(11, 238, 45, 0.1019607843);
  color: #0b2746;
  border: thin solid transparent;
}
.btn-success-light:hover {
  background: rgba(5.3674698795, 116.1325301205, 21.9578313253, 0.1019607843);
  border-color: transparent;
}

.btn-success-outline {
  background: transparent;
  color: #1A9F58;
  border: thin solid #1A9F58;
}
.btn-success-outline:hover {
  background: #1A9F58;
  border-color: transparent;
  color: #ffffff;
}

.kanban-card {
  width: 100%;
  min-height: 250px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: start;
  gap: 0;
  padding: 1rem;
}

.cat-card {
  width: 100%;
  min-height: 500px;
  border: thin solid #EAEAEA;
  border-radius: 1rem;
  margin: 1rem;
}
.cat-card .cat-header {
  width: 100%;
  background: #e1effd;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}
.cat-card .cat-header .cat-icon {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.cat-card .cat-header .cat-title {
  flex: 1;
  word-wrap: break-word;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: break-word;
}
.cat-card .cat-header .actions {
  flex-shrink: 0;
}
.cat-card .cat-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 1rem;
}
.cat-card .cat-body .add-activity:hover svg path {
  fill: white;
}
.cat-card .cat-body .activity {
  width: 100%;
  background: #F4F8FB;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 1rem;
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 4px 10px -5px rgba(34, 34, 34, 0.25);
}
.cat-card .cat-body .activity.finished {
  border-right: 2px solid #1A9F58;
}
.cat-card .cat-body .activity.active {
  border-right: 2px solid #DD0417;
}
.cat-card .cat-body .activity .activity-header {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  font-size: 18px;
  font-weight: bold;
}
.cat-card .cat-body .activity .activity-header .icon-container {
  width: 50px;
  height: 50px;
  background: #EDEDED;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.cat-card .cat-body .activity .activity-header .activity-title {
  max-width: 75%;
}
.cat-card .cat-body .activity .activity-type {
  font-size: 18px;
  font-weight: bold;
}
.cat-card .cat-body .activity .progress {
  width: 100%;
  height: 10px;
}

.alert-container {
  padding: 0 0.75rem;
}

.alert-danger {
  color: #DD0417;
  background: rgba(253, 155, 163, 0.25);
  border: thin solid rgba(221, 4, 23, 0.25);
  border-radius: 1rem;
}

/*# sourceMappingURL=kanban-board.css.map */
