.ch {
    height: 200px;
}

.cw {
    width: 200px;
}


/* primary div */

.selection-table {
    overflow: hidden;
    display: inline-block;
    font-family: Helvetica, Montserrat, Arial;
    font-size: 0.8em;
    border-left: 1px solid #99CCFF;
}


/* 1. elements section */

.elements-section {
    float: left;
    overflow: hidden;
    border-right: 1px solid #99CCFF;
    border-bottom: 1px solid #99CCFF;
}


/* 1.1 filter text box */

.elements-filter {
    width: 100%;
    height: 20px;
    padding: 0 0 3px 5px;
    margin: 0;
    border: 0;
    display: block;
    /*border-left: 1px solid #99CCFF;*/
    border-top: 1px solid #99CCFF;
    border-right: 1px solid #99CCFF;
}

input:focus {
    outline-width: 0;
}


/* 1.2 elements header */

.elements-header {
    width: 100%;
    height: auto;
    max-height: 20px;
    border-collapse: collapse;
}

.elements-header td {
    padding: 3px;
    background-color: #99CCFF;
    color: white;
}

.elements-header td:nth-child(1) {
    text-align: center;
    width: 35px;
    border-right: 1px solid #89b7e5;
}

.elements-header td:nth-child(2) {
    text-align: left;
    padding-left: 10px;
}


/* 1.3 elements list */

.elements-contents {
    width: 100%;
    overflow-y: scroll;
}

.elements {
    width: 100%;
    border-collapse: collapse;
}

.elements td {
    padding: 3px;
    border-bottom: 1px solid #99CCFF;
    vertical-align: middle;
}

.elements td:nth-child(1) {
    text-align: center;
    width: 35px;
}

.elements td:nth-child(2) {
    text-align: left;
    padding-left: 10px;
    /*border-right: 1px solid #99CCFF;*/
}


/*.elements tr:last-of-type > td {
    border-bottom: none;
}*/


/* 2. Selected Elements*/

.selected-elements {
    float: left;
    overflow-y: scroll;
    overflow-x: hidden;
    border-top: 1px solid #99CCFF;
    border-right: 1px solid #99CCFF;
    border-bottom: 1px solid #99CCFF;
}

.selected-elements-contents {
    max-width: 100%;
    padding: 4px 3px 4px 3px;
    overflow: auto;
}

.selected-element {
    margin: 3px;
    padding: 0 0 0 2px;
    float: left;
    border: 1px solid #99CCFF;
    background-color: #CBDBFB;
    font-size: 0.7em;
}

.selected-element span {
    padding: 0 2px 0 2px;
    margin: 0 0 0 2px;
    background-color: white;
    border-left: 1px solid #99CCFF;
}

.selected-element span:hover {
    color: white;
    background-color: black;
    cursor: pointer;
}