/* public css */
/* 
.wpc-table-canvas{
    width: 100% !important;
}
.wpc-table-canvas .canvas-container,
.wpc-table-canvas canvas{
    width: 100% !important;
} */
.wpc-table-canvas {
  overflow: hidden;
  width: 100% !important;
}

.table-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 15px 0 20px;
}
@media (max-width: 768px) {
  .table-header {
    display: block;
  }
}

.table-color-style {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 20px;
}
.table-color-style li {
  border: 1px solid #E4E6EB;
  border-radius: 6px;
  padding: 10px 15px;
  color: #101010;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.table-color-style li:not(:last-child) {
  margin-right: 20px;
}
.table-color-style li.zoom {
  cursor: pointer;
}
@media (max-width: 768px) {
  .table-color-style li {
    margin-bottom: 10px;
  }
}
.table-color-style span {
  width: 18px;
  height: 18px;
  display: inline-block;
  margin-right: 10px;
  border-radius: 50%;
  background-color: #ddd;
}
.table-color-style.controls li {
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  padding: 13px;
}
.table-color-style.controls li:not(:last-child) {
  margin-right: 10px;
}