.kanban {
  display: flex;
  padding: 30px;
  width: -webkit-fill-available;
  /* background: #009578; */
  border-radius: 5px;
}

.kanban * {
  font-family: sans-serif;
}

.kanban__column {
  margin-right: 10px;
  min-width: 300px;
}

.kanban__column-title {
  margin: 0px 0px 5px;
  font-size: 18px;
  color: black;
  user-select: none;
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 35px;
}

.kanban__column-number {
  border-radius: 100%;
  color: white;
  margin-left: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  width: 24px;
  position: absolute;
  left: 0px;
}
.kanban__item {
  z-index: 2222;
  margin: 20px 0px;
  display: inline-block;
}

.kanban__item-input {
  padding: 10px 15px;
  margin: 0 0px;
  box-sizing: border-box;
  border-radius: 5px;
  cursor: pointer;
  max-width: 300px;
  min-width: 270px;
  /* background-color: #5376c7;
  color: white; */
  background-color: white;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.1s ease-in-out;
}

.kanban__item-input p {
  font-size: 15px;
  word-break: break-all;
}

.kanban__item-input h4 {
  font-size: 20px;
  font-weight: bold;
}

.kanban__dropzone {
  height: -webkit-fill-available;
  /* background-color: rgba(0, 0, 0, 0.04); */
  transition: background 0.15s, height 0.15s;
  position: absolute;
  width: 100%;
  left: 0;
  min-height: 30px;
}
.kanban__item:active .kanban__item-input {
  background-color: #64686e;
}

.kanban__item:active .kanban__dropzone {
  height: 0px;
  position: relative;
}

.kanban__dropzone--active {
  height: 200px;
  position: relative;
}
.dropdown-menu label {
  width: max-content;
}
.kanban__column-items {
  /* background: rgba(0, 0, 0, 0.04); */
  height: calc(100vh - 500px);
  padding: 0 10px;
  border-radius: 2px;
  min-height: 500px;
  overflow: auto;
  position: relative;
}
.kanban__item-input {
  position: relative;
}
.kanban__item-input:before {
  content: '';
  position: absolute;
  height: 100%;
  width: 3px;
  background-color: black;
  left: 0px;
  top: 0px;
}
.red .kanban__item-input:before,
.red .kanban__item a {
  background-color: red;
}
.orange .kanban__item-input:before,
.orange .kanban__item a {
  background-color: orange;
}
.blue .kanban__item-input:before,
.blue .kanban__item a {
  background-color: blue;
}
.green .kanban__item-input:before,
.green .kanban__item a {
  background-color: green;
}
.purple .kanban__item-input:before,
.purple .kanban__item a {
  background-color: purple;
}
.pink .kanban__item-input:before,
.pink .kanban__item a {
  background-color: pink;
}
.brown .kanban__item-input:before,
.brown .kanban__item a {
  background-color: brown;
}
.main-card::-webkit-scrollbar,
.kanban__column-items::-webkit-scrollbar {
  width: 5px;
  height: 10px;
}

/* Track */
.main-card::-webkit-scrollbar-track,
.kanban__column-items::-webkit-scrollbar-track {
  display: none;
  background: #f1f1f1;
}

/* Handle */
.main-card::-webkit-scrollbar-thumb,
.kanban__column-items::-webkit-scrollbar-thumb {
  background: #b8b8b8;
  border-radius: 100px;
}

/* Handle on hover */
.main-card::-webkit-scrollbar-thumb:hover,
.kanban__column-items::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

.kanban__add-item {
  width: 100%;
  padding: 10px 0;
  font-size: 16px;
  color: white;
  background: rgba(0, 0, 0, 0.04);
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.fixed-sidebar .app-main .app-main__outer {
  width: 99vw;
}
.main-card {
  width: -webkit-fill-available;
  overflow: auto;
}

.modal-dialog{
  box-shadow: none !important;
}