.board {
    position: relative;
}

.board-column {
    position: absolute;
    left: 0;
    right: 0;
    width: 30%;
    margin: 0 20px;
    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;
    display: none;
}

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

#backlog {
    background: #4A9FF9;
}

#planed {
    background: #f9944a;
}

#inProgress {
    background: #2ac06d;
}

#done {
    background: #3d05a5;
}

#completed {
    background: #a51111;
}

.board-column-content {
    position: relative;
    border: 10px solid transparent;
    min-height: 95px;
}

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

.board-item:hover {
    border: solid red;
}

.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: 17px;
    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;
    }
}

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