#modaloverlay { width:100%; height:100%; z-index:2;	background-color:#000; opacity:0.5; position:fixed; top:0; left:0; display:none; margin:0; padding:0; }

.mymodal { position:fixed; top:100px; background-color:#fff; border:1px solid black; padding:20px;
left: 50%; margin-top: 0px; margin-left: -300px; width: 600px; height: 370px;z-index:10; display:none; }

div.mymodal h1 { margin-top: 0px; }
div.mymodal label { margin-right: 20px; }
div.mymodal input.fw { width: 100px; margin:0 5px 5px; }
div.mymodal form { line-height:1.2em; }
div.mymodal input { display:inline-block; line-height:1em; }
div.mymodal input[type=checkbox] { display:inline; width:inherit; }
div.mymodal label { display:inline; width:inherit; }
table.kbcomments { width: 100%; }
table.kbcomments tbody th { background-color: black; color: white; padding:2px 5px; }
table.kbcomments tbody tr td { padding:2px 5px; }
table.kbcomments tbody tr td img { border-radius:16px; margin:2px; }
.kanban_hdr_btn { border-radius:12px; background-color:#eee; }



/* v1.8 */
* {
  box-sizing: border-box;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.drag-container {
  Qmax-width: 1140px;
  margin: 10px auto;
}

.drag-list {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 690px) {
  .drag-list {
    display: block;
  }
}

.drag-column {
  flex: 1;
  margin: 0 10px;
  position: relative;
  background: #ddd;
  overflow: hidden;
  border-radius: 8px;
}
@media (max-width: 690px) {
  .drag-column {
    margin-bottom: 30px;
  }
}
.drag-column h2 {
  font-size: 1em;
  margin: 0;
  text-transform: uppercase;
  font-weight: 600;
}
.drag-column-header {
  background: #888;
}

.drag-column-1 .drag-column-header,
.drag-column-1 .is-moved,
.drag-column-1 .drag-options {
  Qbackground: #FB7D44;
}
.drag-column-2 .drag-column-header,
.drag-column-2 .is-moved,
.drag-column-2 .drag-options {
  Qbackground: #2A92BF;
}
.drag-column-3 .drag-column-header,
.drag-column-3 .is-moved,
.drag-column-3 .drag-options {
  Qbackground: #F4CE46;
}
.drag-column-4 .drag-column-header,
.drag-column-4 .is-moved,
.drag-column-4 .drag-options {
  Qbackground: #079d00;
}

.drag-column-5 .drag-column-header,
.drag-column-5.is-moved,
.drag-column-5 .drag-options {
  Qbackground: #079d00;
}

.drag-column-6 .drag-column-header,
.drag-column-6 .is-moved,
.drag-column-6 .drag-options {
  Qbackground: #079d00;
}


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

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

.drag-item {
  margin: 10px;
  height: 96px;
  line-height:1.3em;
  background: white;
  padding: 8px;
  border:1px solid #aaa;
  border-radius:5px;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.drag-item div:first-child { height:38px; overflow:hidden; }
.drag-item div:nth-child(2) { height:38px; line-height:38px; margin-top:5px; }
.drag-item div:nth-child(2) img { border-radius:16px; float: right; margin-left:4px; }
li.drag-column li div img { border: 2px solid #888; width:24px; }

.drag-item.is-moving {
  -webkit-transform: scale(1.0);
          transform: scale(1.0);
  background: rgba(0, 0, 0, 0.1);
}

.drag-header-more {
  cursor: pointer;
}

.drag-options {
  position: absolute;
  top: 44px;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 10px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.drag-options.active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}
.drag-options-label {
  display: block;
  margin: 0 0 5px 0;
}
.drag-options-label input {
  opacity: 0.6;
}
.drag-options-label span {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 400;
  margin-left: 5px;
}

/* 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;
}
