.filter-multi-select > .viewbar > .selected-items > .item {
    background-color: rgb(77, 84, 100);
}
body {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    padding: 30px;
}
button {
    border: 0;
    background-color: rgb(77, 84, 100);
    color: #fff;
    border-radius: 5px;
    font-size: 14px;
    padding: 3px 13px;
}

table.productTable{
    border-collapse: collapse
}
table tr th {
    background-color: #eee;
}

table tr td,
table tr th {
    padding: 5px 10px;
    border: 1px solid #AAA;
}
table tr td:last-child,
table tr th:last-child,
table tr td:first-child,
table tr th:first-child {
    text-align: center;
}
table tr:hover td {
    background-color: #eee;
}

input[type="checkbox"] {
    width: 20px;
    height: 20px;
}

#saveBar {
    background-color: #eee;
}
#saveBar span {
    display: block;
    background-color: rgb(77, 84, 100);
    height: 5px;
    width: 0%;
    max-width: 100%;
    transition: width 0.25s;
}

#boxEditContainer {
    display: none;
    background-color: rgba(77, 84, 100, 0.8);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
}

#boxEdit {
    background-color: #fff;
    padding: 20px;
    max-width: 500px;
    position: fixed;
    top: 100px;
    left: 50%;
    border: 3px solid #ccc;
    min-width: 500px;
    margin-left: -250px;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}



#box-errors{
    background-color:#EEE;
    border:1px solid #CCC;
    margin: 30px 0;
    padding:20px;
}