.board {
    position: relative;
	margin-left: 0%;
}

.board-re {
    position: absolute;
    left: 0;
    right: 0;
    width: 10%;
    margin: 0 1%;
    background: #f0f0f0;
    border-radius: 3px;
    z-index: 1;
}

.board-column {
    position: absolute;
    left: 0;
    right: 0;
    width: 17%;
    margin: 0 1%;
    background: #f0f0f0;
    border-radius: 3px;
    z-index: 1;
}

.board-column.muuri-item-releasing {
	z-index: 2;
}

.board-column.muuri-item-dragging {
	z-index: 3;
    cursor: move;
}

.board-column-header {
    position: relative;
    height: 50px;
	line-height: 50px;
    overflow: hidden;
    padding: 0 20px;
	text-align: center;
    background: #333;
    color: #fff;
	border-radius: 3px 3px 0 0;
}

@media (max-width: 600px) {
	.board-column-header {
		text-indent: -1000px;
	}
}

.board-column.dynamic-fields .board-column-header {
    background: #858585; //#ec6900; //coreslink 
}

.board-column.template .board-column-header {
    background: #007bff;
}

.board-column.done .board-column-header {
    background: #2ac06d;
}
.board-column-content {
    position: relative;
    border: 10px solid transparent;
	min-height: 95px;
}

.board-column-content1 {
    position: relative;
    border: 10px solid transparent;
    border-top: 0;
	min-height: 0px;
}

.board-item {
    position: absolute;
    width: 100%;
    margin: 5px 0;
}

/* -------board-item1-------- */

.board-item1 {
    position: absolute;
    width: 100%;
    margin: 5px 0;
}

.board-item1.muuri-item-releasing {
	z-index: 9998;
}

.board-item1.muuri-item-dragging {
	z-index: 9999;
    cursor: move;
}

.board-item1.muuri-item-hidden {
	z-index: 0;
}

/* -------------- */

.board-item.muuri-item-releasing {
	z-index: 9998;
}

.board-item.muuri-item-dragging {
	z-index: 9999;
    cursor: move;
}

.board-item.muuri-item-hidden {
	z-index: 0;
}

.board-item-content {
    position: relative;
    padding: 20px;
    background: #fff;
	border-radius: 4px;
	font-size: 15px;
    cursor: pointer;
	-webkit-box-shadow: 0px 1px 3px 0 rgba(0,0,0,0.2);
	box-shadow: 0px 1px 3px 0 rgba(0,0,0,0.2);
}

.board-item-content1 {
    position: relative;
    padding: 20px;
    background: pink;
	border-radius: 4px;
	font-size: 15px;
    cursor: pointer;
	-webkit-box-shadow: 0px 1px 3px 0 rgba(0,0,0,0.2);
	box-shadow: 0px 1px 3px 0 rgba(0,0,0,0.2);
}

@media (max-width: 600px) {
	.board-item-content {
		text-align: center;
	}
	.board-item-content span {
        display: none;
	}
}

