/* color-picker */
.statistic-chart-color-picker-container {
  position: relative;
  display: block;
  width: 100%;
  height: 2.375rem;
  line-height: 2.375rem;
  background-clip: padding-box;
  color: #495057;
  background-color: #fff;
  border: 1px solid rgba(0, 40, 100, 0.12);
  border-radius: 3px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.statistic-chart-color-picker-container .picker-control {
  height: 100%;
  display: flex;
  align-items: center;
}

.statistic-chart-color-picker-container .picker-control .color-control {
    width: 24px;
    height: 24px;
    margin-left: 10px;
    border-radius: 4px;
    cursor: pointer;
  }

.statistic-chart-color-picker-container .picker-control.readOnly,
.statistic-chart-color-picker-container .picker-control.readOnly .text-control {
  background-color: #f7f7f7;
}

.statistic-chart-color-picker-container .picker-control .color-control {
  cursor: default;
}

.statistic-chart-color-picker-container .picker-control .color-control.white-color {
  border: 3px #eee solid;
}

.statistic-chart-color-picker-container .picker-control .text-control {
  height: 100%;
  border: none;
  outline: none;
  padding-left: 10px;
  font-size: 14px;
}

.statistic-chart-color-picker-container .picker-control.readOnly .text-control {
  cursor: default;
}
