.piece{
    margin-bottom: 26px;
}
.piece:last-child{
    margin-bottom: 0;
}
.piece-title{
    padding: 6px;
    font-size: 12px;
    font-weight: bold;
    /*display: none;*/
}
.piece-items{
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
}
.piece-items .piece-item{
    display: block;
    border-bottom: 1px solid #d6d6d6;
    margin: 0 0 0 16px;
    padding: 5px 16px 5px 0;
    position: relative;
}
.piece-items .piece-item:last-child{
    border-bottom: 0 solid #d6d6d6;
}
.piece-items .piece-item .piece-item-content{
    flex-grow: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    color: #666666;
    min-height: 36px;
    cursor: pointer;
}
.piece-items .piece-item .piece-item-content .piece-item-key{
    color: black;
    flex-shrink: 0;
}
.piece-items .piece-item .piece-item-content .piece-item-move{
    height: 18px;
    width: 18px;
    margin-left: 6px;
}
.piece-items .piece-item .piece-item-content .piece-item-move img{
    width: 100%;
    height: 100%;
}
.piece-items .piece-item .piece-item-content .piece-item-val{
    flex-grow: 1;
    text-align: right;
}
.piece-items .piece-item .piece-item-content .piece-item-input{
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    opacity: 0.01;
}
.piece-items .piece-item .piece-item-content .piece-item-input input{
    width: 100%;
    height: 100%;
    cursor: pointer;
}