.o-tv-button-group {
  position: relative;
}
.o-tv-button-group--fit {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
.o-tv-gbutton {
  display: inline-block;
  padding-left: 16px;
  padding-right: 16px;
  height: 40px;
  line-height: 40px;
  outline: none;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.65);
  text-align: center;
  cursor: pointer;
}
.o-tv-gbutton:not(.o-tv-gbutton--fit):not(:last-child) {
  margin-right: 8px;
}
.o-tv-gbutton--showBG {
  background: rgba(0, 0, 0, 0.05);
}
.o-tv-gbutton--active {
  background: rgba(0, 103, 238, 0.05);
  color: #0067EE;
}
.o-tv-gbutton--active:is(.o-tv-gbutton--bordered) {
  border-color: #0067EE;
}
.o-tv-gbutton--fit {
  flex: 1;
}