#cash_register ::selection {
    background: transparent;
    color: rgba(2, 21, 69, 1.0);
}

#cash_register ::-moz-selection {
    background: transparent;
    color: rgba(2, 21, 69, 1.0);
}

#cash_register {
    -ms-user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    float: left;
}

#cash_register #receipt {
    display: inline;
    float: left;
}

#positions_wrapper {
    min-height: 255px;
}


/*Tabelle*/

#receipt div.table {
    display: table;
    border-collapse: collapse;
}


/*Row*/

#receipt div.table div {
    display: table-row;
}

#receipt div.table div.selected {
    display: table-row;
    box-shadow: 0 0 10px rgb(76, 0, 255);
    -webkit-box-shadow: 0 0 10px rgb(76, 0, 255);
    -moz-box-shadow: 0 0 10px rgb(76, 0, 255);
    -webkit-appearance: none;
}

/*Cell*/

#receipt div.table div div {
    display: table-cell;
    border: thin solid rgba(2, 21, 69, 1.0);
    padding: 5px;
    text-align: center;
}

#receipt div.table div.selected div {
    display: table-cell;
    background-color: rgba(255, 0, 0, 0.5);
    padding: 5px;
}

#receipt button {
    float: left;
    line-height: 50px;
    text-align: center;
    width: 230px;
    height: 50px;
    border: 1px solid rgba(2, 21, 69, 1.0);
    background: #d90000;
    color: rgba(2, 21, 69, 1.0);
    margin: 5px;
    padding: 0px;
}

#receipt button:first-of-type {
    border: 1px solid rgba(2, 21, 69, 1.0);
    background: #d90000;
}

#receipt button:last-of-type {
    border: 1px solid black;
    background: green;
}

#book_button {
    float: right;
    line-height: 60px;
    text-align: center;
    width: 165px;
    height: 64px;
    background: lightgray;
    border-radius: 10px;
    border: 2px solid lightgray;
    margin: 5px;
    padding: 0px;
}

#bon_button {
    float: right;
    line-height: 62px;
    text-align: center;
    width: 64px;
    height: 64px;
    background: #D90000;
    color: rgba(2, 21, 69, 1.0);
    border-radius: 10px;
    border: 2px solid #D90000;
    margin: 5px;
    padding: 0px;
}

#article_list button {
    width: 150px;
    height: 100px;
    white-space: pre-wrap;
}

#article_list button:hover {
    background-color: transparent;
    background-position: 0 -100px
}

#amount_select {
    display: block;
    top: 10px;
    position: relative;
}

#amount_select div {
    float: left;
    line-height: 50px;
    text-align: center;
    width: 50px;
    height: 50px;
    border: 1px solid blue;
    background: rgb(1, 69, 92);
    margin: 5px;
}

#amount_select div:first-child {
    border: 1px solid rgba(2, 21, 69, 1.0);
    background: #D90000;
    color: rgba(2, 21, 69, 1.0);
}

#amount_select div:last-child {
    border: 1px solid rgba(2, 21, 69, 1.0);
    background: green;
    color: rgba(2, 21, 69, 1.0);
}

#article_control {
    display: block;
    top: 10px;
    position: relative;
}

#article_control button {
    float: left;
    line-height: 50px;
    text-align: center;
    width: 230px;
    height: 50px;
    border: 1px solid rgba(2, 21, 69, 1.0);
    background: rgb(1, 69, 92);
    margin: 5px;
    padding: 0px;
}

#article_control button:first-child {
    border: 1px solid rgba(2, 21, 69, 1.0);
    background: #D90000;
}

#article_control button:last-child {
    border: 1px solid rgba(2, 21, 69, 1.0);
    background: green;
}