.page-wrapper.chiller-theme {
    background-color: #fff;
}

.main-container {
    padding-bottom: 30px;
    padding-bottom: 0;
    background: #fff;
    min-height: fit-content;
    margin-right: 30px;
}

.main-content.toggled .main-container:before {
    left: 220px;
}

.main-container.active:before {
    display: flex;
}

.main-container.active:after {
    display: flex;
}

.search-task {
    width: 30%;
    background: none;
    border: none;
    color: #fff;
}

.search-task:focus {
    background: none;
    color: #fff;
}

.search-task.form-control::-webkit-input-placeholder {
    color: white;
}

.bg-gradient-primary-custom {
    background: linear-gradient(89deg, #98a8fb 0, #71b3f8 100%) !important;
}

.board-wrapper {
    display: flex;
    /* align-items: flex-start; */
    flex-direction: column;
}


/* .board-wrapper .task-item-wrapper {
  width: 300px;
} */

.board-wrapper .task-board {
    background: #fff;
    height: auto;
    margin: 8px;
    padding: 4px;
    width: 250px;
    position: relative;
    border-radius: 5px;
}

.task-board:before {
    content: '';
    width: 100%;
    height: 4px;
    position: absolute;
    margin-left: -15px;
    border-radius: 5px;
    top: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.task-board.todo-board:before {
    background: linear-gradient(89deg, #c875e8 0, #dd6883 100%);
}

.task-board.inprogress-board:before {
    background: linear-gradient(89deg, #feb143 0, #fe9279 100%);
}

.task-board.review-board:before {
    background: linear-gradient(89deg, #8a92cc 0, #66aef7 100%);
}

.task-board.done-board:before {
    background: linear-gradient(89deg, #75d2a8 0, #78d2ea 100%);
}

.task-board[data-board-name='Todo']:before {
    background: linear-gradient(89deg, #c875e8 0, #dd6883 100%);
}

.task-board[data-board-name='In Progress']:before {
    background: linear-gradient(89deg, #feb143 0, #fe9279 100%);
}

.task-board[data-board-name='Review']:before {
    background: linear-gradient(89deg, #8a92cc 0, #66aef7 100%);
}

.task-board[data-board-name='Done']:before {
    background: linear-gradient(89deg, #75d2a8 0, #78d2ea 100%);
}

.board-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.board-header .board-name {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    padding-left: 8px;
    padding-top: 5px;
}

.task-list>.list-group>span>div:first-child {
    /* padding-top: 5px; */
}

.task-item {
    background: #fff;
    padding: 12px;
    width: 98%;
    /* margin-right: 0px; */
    margin: auto;
    border-radius: 10px;
    margin-bottom: 18px;
    /* -webkit-box-shadow: 0px 0px 4px 0px rgba(134, 134, 162, 0.21);
  -moz-box-shadow: 0px 0px 4px 0px rgba(134, 134, 162, 0.21);
  box-shadow: 0px 0px 4px 0px rgba(134, 134, 162, 0.21); */
    -webkit-box-shadow: 0 1px 3px 0 rgba(21, 27, 38, 0.5);
    box-shadow: 0 1px 3px 0 rgba(21, 27, 38, 0.5);
    -webkit-transition: -webkit-box-shadow 0.25s;
    transition: -webkit-box-shadow 0.25s;
    transition: box-shadow 0.25s;
    transition: box-shadow 0.25s, -webkit-box-shadow 0.25s;
    /* border: 1px solid rgba(0, 0, 0, .1); */
    border: 2px solid transparent;
}

.task-item:hover {
    -webkit-box-shadow: 0px 6px 20px 0 rgba(21, 27, 38, 0.2);
    box-shadow: 0px 6px 20px 0 rgba(21, 27, 38, 0.2);
}

.task-item-header .task-priority {
    display: inline;
    color: #fff;
    font-size: 13px;
    padding: 3px 18px;
    border-radius: 3px;
    font-weight: 600;
    -webkit-box-shadow: 0px 0px 5px -2px rgba(134, 134, 162, 1);
    -moz-box-shadow: 0px 0px 5px -2px rgba(134, 134, 162, 1);
    box-shadow: 0px 0px 5px -2px rgba(134, 134, 162, 1);
}

.task-priority.Low {
    background: linear-gradient(89deg, #66a7f8 0, #8ea7fb 100%);
}

.task-priority.Medium {
    background: linear-gradient(89deg, #79d3b9 0, #81d5de 100%);
}

.task-priority.High {
    background: linear-gradient(89deg, #cd74d1 0, #db78a3 100%);
}

.task-item-body {
    margin-bottom: 25px;
}

.task-item-body .task-title {
    color: #8686a2;
    font-weight: 500;
}

.task-item-footer,
.assigned-users,
.comments-attachments {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.comments-attachments {
    color: #8686a2;
    font-size: 12px;
}

.comments-attachments i {
    font-size: 12px;
}

.comments {
    margin-right: 15px;
}

.user-avatar img {
    border-radius: 50%;
    width: 30px;
}

.assigned-users .add-icon {
    height: 30px;
    width: 30px;
    background: transparent;
    border: 1px solid #8686a2;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    font-weight: 300;
    margin-right: 10px;
    color: #8686a2;
}

.board-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
}

.board-footer .add-task-btn {
    color: #8686a2;
    cursor: pointer;
}

.scrollable-div {
    overflow-x: auto;
    overflow-y: hidden;
}

.card-text {
    color: #525f7f;
    font-weight: 400;
}

.ticket .task-item-body .task-title:hover {
    text-decoration: underline;
    cursor: pointer;
}

.main-container.scrollable-div::-webkit-scrollbar {
    height: 9px;
}

.main-container.scrollable-div::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}

.main-container.scrollable-div::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.4);
    outline: 1px solid slategrey;
    border-radius: 10px;
}

.board-content::-webkit-scrollbar {
    width: 5px;
}

.board-content::-webkit-scrollbar-track {
    background-color: #f5f5f5;
}

.board-content::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.35);
    outline: 1px solid slategrey;
    border-radius: 10px;
}

.kanban-board-list-items {
    /* min-height: 90vh; */
}

.kanban-board-list-items span {
    height: 100%;
}

.main-container>.board-wrapper>.row>div:last-child {
    padding-right: 1.5rem !important;
}

.item-sortable {
    cursor: move;
}

.item-sortable .task-item {
    background: rgb(221, 255, 255);
}

.link-card-details a {
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 1px;
    cursor: pointer;
    height: 28px;
    width: 28px;
    background-color: #f91c52;
    color: #fff;
    font-weight: 700;
    border-color: #f91c52;
}

.btn.btn-kanban {
    text-transform: none;
    /* box-shadow: 1px 1px 1px 1px rgba(0,0,0,.3);; */
    box-shadow: none;
    background-color: transparent;
    margin: 0;
    padding: 0.375rem 1rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    border-radius: 30px;
}

.btn.btn-kanban span {
    font-size: 14px;
}

.btn.btn-kanban span i {
    font-size: 10px;
    padding-left: 5px;
}

.btn.btn-kanban:hover,
.btn.btn-kanban:focus,
.btn.btn-kanban:active {
    text-transform: none;
    box-shadow: none !important;
    background-color: transparent;
}

.search_kanban_input {
    position: relative;
}

.search_kanban_input input:active,
.search_kanban_input input:focus {
    outline: none;
    border: 1px solid #ced4da;
    box-shadow: none;
}

.search_kanban_input span {
    /* font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\F061';
  font-style: normal;
  margin: 0px 0px 0px 10px;
  text-decoration: none; */
    position: absolute;
    top: 7px;
    right: 18px;
    color: #666666;
    /* border-radius: 100%;
  height: 20px;
  width: 20px; */
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.kanban_filter_select label {
    font-size: 14px;
    width: 100%;
    padding-top: 5px;
    padding-right: 7px;
    white-space: nowrap;
}

.kanban_filter_select select {
    height: 30px;
    width: auto;
}

.kanban-modal .modal-footer {
    border-top: none;
    border-bottom: none;
}

@media (min-width: 800px) {
    .main-container {
        min-height: 100%;
    }
}

@media (min-width: 576px) {
    #filtersModal .modal-dialog {
        max-width: 400px;
    }
}

.task-link-id {
    color: rgb(88, 88, 88);
}

.task-link-id:hover {
    text-decoration: underline;
    cursor: pointer;
    color: rgb(88, 88, 88);
}

.ready_for_deliver {
    color: rgba(0, 0, 0, 0.4);
    cursor: pointer;
    font-size: 22px;
    /* position: absolute;
  top: 25px;
  right: 0px; */
}

.ready_for_deliver.active {
    color: #f91c52;
}

.ready_for_deliver:hover {
    color: rgba(249, 28, 82, 0.7);
}
