*, *:before, *:after {
    box-sizing: border-box;
}
body
{
    font: 1em 'Lucida Sans Unicode', 'Trebuchet MS', Arial, Helvetica;
    margin: 0;
    /*background: url("../pic/bg.png") repeat;*/
}
.container{
    display: block;
    position: relative;
    min-width: 475px;
    max-width: 1500px;
    /*width: 80%;*/
    /*border: 1px solid dimgrey;*/

    margin: 0 auto;
    padding: 15px;
}

.backlink{

    height: 1.5em;
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom: 10px;

}

.backlink a{
    text-decoration: none;
    color: #000;
    font-weight: bold;
}

.listTable {
    width: 100%;
    border: none;
    margin-bottom: 20px;
}
.listTable thead th {
    font-weight: bold;
    text-align: left;
    border: none;
    padding: 10px 15px;
    background: #d8d8d8;
    font-size: 14px;
}
.listTable thead tr th:first-child {
    border-radius: 8px 0 0 8px;
}
.listTable thead tr th:last-child {
    border-radius: 0 8px 8px 0;
}
.listTable tbody td {
    text-align: left;
    border: none;
    padding: 10px 15px;
    font-size: 14px;
    vertical-align: top;
}
.listTable tbody tr:nth-child(even){
    background: #f3f3f3;
}
.listTable tbody tr td:first-child {
    border-radius: 8px 0 0 8px;
}
.listTable tbody tr td:last-child {
    border-radius: 0 8px 8px 0;
}
.listTable a{
    text-decoration: none;
    color: darkslateblue;
}

.addData{
    display: inline-block;
    font-size: 1.2em;
    color: black;
    text-decoration: none;
    background-color: #AFCDE7;
    border-radius: 5px;
    padding: 5px;
    margin: 5px;
}

.dataList{
    border: 1px solid red;

    font-size: 1.2em;
    font-weight: bold;
}
.dataList span{
    display: block;
    text-align: center;
}
.dataList div{
    display: inline-block;
    font-size: 0.8em;
    font-weight: normal;
    text-align: left;
    padding: 5px;
    margin: 5px;
}

.editList{
    width: 100%;
}
.editList li{
    display: inline-block;
    width: 48%;
    padding-left: 10px;
    list-style-type: none;
}

.search_box {
    position: relative;
    margin-top: 5px;
}
.search_box input[type="text"] {
    display: block;
    width: 100%;
    height: 35px;
    line-height: 35px;
    padding: 0;
    margin: 0;
    border: 1px solid darkslateblue;
    outline: none;
    overflow: hidden;
    border-radius: 4px;
    background-color: rgb(255, 255, 255);
    text-indent: 15px;
    font-size: 14px;
    color: #222;
}
.search_box input[type="submit"] {
    display: inline-block;
    width: 17px;
    height: 17px;
    padding: 0;
    margin: 0;
    border: 0;
    outline: 0;
    overflow: hidden;
    text-indent: -999px;
    background: url(https://snipp.ru/demo/127/search.png) 0 0 no-repeat;
    position: absolute;
    top: 9px;
    right: 16px;
}

/* Стили для плашки с результатами */
.search_result {
    position: relative;
    top: 100%;
    left: 0;
    border: 1px solid #ddd;
    background: #fff;
    padding: 10px;
    z-index: 9999;
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}

/*верхниек кнопки*/
.topButton{
    padding: 5px;
}

.topButton div{
    display: inline-block;
    margin-right: 5px;
}

.productList{
    list-style-type: none;
}