<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.tabs {
  max-width: 345px;
  margin: auto;
  margin-bottom: 30px;
  overflow: hidden;
  -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
          box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
}

.tabs * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.tabs__bar-wrap {
  position: relative;
}

.tabs__bar-wrap.has-left-overflow::before {
  content: '';
  position: absolute;
  z-index: 10;
  top: 0;
  bottom: 0;
  width: 30px;
  pointer-events: none;
}

.tabs__bar-wrap.has-right-overflow::after {
  content: '';
  position: absolute;
  z-index: 10;
  top: 0;
  bottom: 0;
  width: 30px;
  pointer-events: none;
}

.tabs__bar-wrap.has-left-overflow::before {
  left: 0;
  background: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.95)));
  background: linear-gradient(-90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.tabs__bar-wrap.has-right-overflow::after {
  right: 0;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.95)));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.tabs__bar {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  background-color: #0A0F22;
  border-radius: 3px 3px 0 0;
  -webkit-box-shadow: inset 0 -5px 5px -3px rgba(0, 0, 0, 0.05);
          box-shadow: inset 0 -5px 5px -3px rgba(0, 0, 0, 0.05);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 480px) {
  .tabs__bar {
    min-width: auto;
    overflow: hidden;
  }
}

.tabs__line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background-color: #4285f4;
  will-change: transform;
  -webkit-transform-origin: left;
          transform-origin: left;
}

.tabs__controls {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  min-width: 50px;
  display: block;
  padding: 8px 10px;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
  font-weight: 500;
  letter-spacing: 1px;
}

.tabs__controls.is-active {
  color: #fff;
}

@media (min-width: 480px) {
  .tabs__controls {
    min-width: auto;
  }
}

.tabs__controls:hover {
  background-color: rgba(0, 0, 0, 0.03);
}

.tabs__controls:active {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.tabs__content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: calc(345px * 3);
  overflow-y: hidden;
  background-color: #0A0F22;
  will-change: transform, height;
}

.tabs__content.has-grab {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.tabs__section {
  padding: 0px;
  width: 345px;
}

</pre></body></html>