@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
  box-sizing: border-box;
}

body {
  /* background: #33363D; */
  color: #000;
  font-family: Poppins;
  font-style: normal;
  font-weight: 300;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

ul,h1,h2,h3,h4,h5,h6,p {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.drag-container {
    width: 100%;
  margin: 20px auto;
}

.drag-list {
  display: flex;
  align-items: flex-start;
}


.drag-column {
  flex: 1;
  margin: 0 10px;
  position: relative;
  background: rgba(0, 0, 0, 0.2);
  overflow: hidden;
  /* min-height: 350px; */
}

.drag-column-on-hold{
  border-radius: 8px;
  background: #F5F7F9;
  box-shadow: 0px 2px 5px 0px rgba(60, 66, 87, 0.04), 0px 0px 0px 1px rgba(60, 66, 87, 0.08), 0px 1px 1px 0px rgba(0, 0, 0, 0.06);
  
}

 .drag-column-in-progress{
  border-radius: 8px;
  background: #FFFACD;
  box-shadow: 0px 2px 5px 0px rgba(60, 66, 87, 0.04), 0px 0px 0px 1px rgba(60, 66, 87, 0.08), 0px 1px 1px 0px rgba(0, 0, 0, 0.06);
 }
 .drag-column-needs-review{
  border-radius: 8px;
background: #CEFBDB;
box-shadow: 0px 2px 5px 0px rgba(60, 66, 87, 0.04), 0px 0px 0px 1px rgba(60, 66, 87, 0.08), 0px 1px 1px 0px rgba(0, 0, 0, 0.06);
 }

.drag-column-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 10px 0;
}

.drag-inner-list {
  min-height: 300px;
}

.drag-item {
  margin: 16px 8px;
  border-radius: 6px;
  background: #FFF;
  box-shadow: 0px 3px 2px -2px rgba(0, 0, 0, 0.06), 0px 5px 3px -2px rgba(0, 0, 0, 0.02);
  padding: 16px;
  cursor: pointer;

}

/* Dragula CSS  */
.gu-mirror {
  position: fixed !important;
  margin: 0 !important;
  z-index: 9999 !important;
  opacity: 0.8;
  list-style-type: none;
}

.gu-hide {
  display: none !important;
}

.gu-unselectable {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}

.gu-transit {
  opacity: 0.2;
}

/* Demo info */
.section {
  padding: 20px;
  text-align: center;
}
.section a {
  color: white;
  text-decoration: none;
  font-weight: 300;
}
.section h4 {
  font-weight: 400;
}
.section h4 a {
  font-weight: 600;
}


@media (max-width: 800px) {
  .drag-list {
    display: block;
    
  }
  .drag-column {
    margin-bottom: 30px ;
  }
}