.h-100vh{
    height: 80vh;
}
.kan-ban{
    border-radius: 1em;
}
.drag-task:hover{
    transition: transform 0.5s;
    transition-property: all;
    box-shadow: 2px 3px 2px #ccc;
}
.kanban .card-header{
    font-weight: 500;
    padding: 9px 27px;
}
.kanban .card-body {
    flex: 1 1 auto;
    padding: 1.25rem;
    background: #f5f7fb;
    overflow-y: scroll;
}
.last-date{
    font-size: 11px;
}
#kanban-item h4{
    text-transform: capitalize;
    padding-bottom:10px ;
    border-bottom: 1px solid #ddd;
}
#kanban-col:nth-child(1) .card-header{
    background: #636e72;
}
#kanban-col:nth-child(2) .card-header{
    background: #2f3542;
}
#kanban-col:nth-child(3) .card-header{
    background: #747d8c;
}
#kanban-col:nth-child(4) .card-header{
    background: #a4b0be;
}
.kanban-add-btn{
    font-weight: 600;
    color: #000;
}
.kanban-add-btn:hover,
.kanban-add-btn:focus{
    color: #ff7675;
    text-decoration: none;
    cursor: pointer;
}
.kanban-add-small{
    text-decoration: none;
    color: #ff7675;
    font-weight: 600;
    border:1px solid #ff7675;
    margin-left: 10px;
    margin-top: -6px !important;
    transition: all .4s linear;
}
.kanban-add-small:hover{
    text-decoration: none;
    color: #fff;
    background-color: #ff7675;
}
.ghost{
    border:1px dashed #ff7675;
}
/*Scroll bar*/
:root {
    --code-color: darkred;
    --code-bg-color: #aaaaaa;
    --code-font-size: 14px;
    --code-line-height: 1.4;
    --scroll-bar-color: #c5c5c5;
    --scroll-bar-bg-color: #f6f6f6;
}
pre {
    color: var(--code-color);
    font-size: var(--code-font-size);
    line-height: var(--code-line-height);
    background-color: var(--code-bg-color);
}
.code-block {
    max-height: 100px;
    overflow: auto;
    padding: 8px 7px 5px 15px;
    margin: 0px 0px 0px 0px;
    border-radius: 7px;
}
::-webkit-scrollbar-corner { background: rgba(0,0,0,0.5); }
* {
    scrollbar-width: thin;
    scrollbar-color: var(--scroll-bar-color) var(--scroll-bar-bg-color);
}
/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}
*::-webkit-scrollbar-track {
    background: var(--scroll-bar-bg-color);
}
*::-webkit-scrollbar-thumb {
    background-color: var(--scroll-bar-color);
    border-radius: 20px;
    border: 3px solid var(--scroll-bar-bg-color);
}
.drag-container{
    min-height: 50vh;
}
.modal-mask {
    position: fixed;
    z-index: 9998;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: table;
    transition: opacity 0.3s ease;
  }
.modal-wrapper {
    display: table-cell;
    vertical-align: middle;
  }
.modal-container {
    width: 40%;
    margin: 0px auto;
    padding: 20px 30px;
    background-color: #fff;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.33);
    transition: all 0.3s ease;
    font-family: Helvetica, Arial, sans-serif;
  }
.modal-header h3 {
    margin-top: 0;
    color: #42b983;
  }
.modal-body {
    margin: 20px 0;
    min-height: 400px;
  }
.modal-default-button {
    float: right;
  }
/*
   * The following styles are auto-applied to elements with
   * transition="modal" when their visibility is toggled
   * by Vue.js.
   *
   * You can easily play with the modal transition by editing
   * these styles.
   */
.modal-enter {
    opacity: 0;
  }
.modal-leave-active {
    opacity: 0;
  }
.modal-enter .modal-container,
  .modal-leave-active .modal-container {
    transform: scale(1.1);
  }
  
