/* src/css/lib/widget.css */
:root {
  --wg-color-blue: #88A7E2;
  --wg-color-violet: #9A98D3;
  --wg-color-purple: #C59DD1;
  --wg-color-red: #E08C96;
  --wg-color-orange: #FFB85D;
  --wg-color-green: #81C784;
  --wg-color-brown: #C8A88A;
}
.wg-box {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(4, 1fr);
}
.wg-box.col-2 {
  grid-template-columns: repeat(2, 1fr);
}
.wg-box.col-3 {
  grid-template-columns: repeat(3, 1fr);
}
.wg-box.col-5 {
  grid-template-columns: repeat(5, 1fr);
}
.wg-box.col-6 {
  grid-template-columns: repeat(6, 1fr);
}
.wg-box.round :is(.wg-bar, .wg-item) {
  border-radius: 6px;
}
.wg-box.shadow :is(.wg-bar, .wg-item) {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.wg-box .wg-bar {
  grid-column: 1 / span 4;
  position: relative;
  font-weight: normal;
  font-family: "Prompt";
  line-height: 2.5;
  text-align: center;
  background-color: #E5E7EB;
  color: #fff;
}
.wg-box.col-2 .wg-bar {
  grid-column: 1 / span 2;
}
.wg-box.col-3 .wg-bar {
  grid-column: 1 / span 3;
}
.wg-box.col-5 .wg-bar {
  grid-column: 1 / span 5;
}
.wg-box.col-6 .wg-bar {
  grid-column: 1 / span 6;
}
.wg-box .wg-bar.sm {
  line-height: 2.25;
}
.wg-box .wg-bar.tn {
  line-height: 2;
}
.wg-box .wg-item {
  font-family: "Prompt";
  text-align: center;
  background-color: #E5E7EB;
  color: rgba(255, 255, 255, 0.8);
}
.wg-box .wg-item .num {
  height: 28px;
  font-size: 17px;
  line-height: 1.648;
  color: #fff;
}
.wg-box .wg-item .text {
  height: 22px;
  font-size: 13px;
  line-height: 1.693;
  background-color: rgba(0, 0, 0, 0.05);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wg-box .wg-item:hover {
  cursor: pointer;
}
.wg-box .wg-bar.blue,
.wg-box .wg-item.blue {
  background-color: var(--wg-color-blue);
}
.wg-box .wg-bar.violet,
.wg-box .wg-item.violet {
  background-color: var(--wg-color-violet);
}
.wg-box .wg-bar.purple,
.wg-box .wg-item.purple {
  background-color: var(--wg-color-purple);
}
.wg-box .wg-bar.red,
.wg-box .wg-item.red {
  background-color: var(--wg-color-red);
}
.wg-box .wg-bar.orange,
.wg-box .wg-item.orange {
  background-color: var(--wg-color-orange);
}
.wg-box .wg-bar.green,
.wg-box .wg-item.green {
  background-color: var(--wg-color-green);
}
.wg-box .wg-bar.brown,
.wg-box .wg-item.brown {
  background-color: var(--wg-color-brown);
}
/*# sourceMappingURL=widget.css.map */