.tab-bar {
  box-sizing: border-box;
  position: relative;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 12px;
  height: 46px;
  padding: 8px 3px 4px 3px;
  background: #dee1e6;
  border-radius: 5px 5px 0 0;
  overflow: hidden;
}
.tab-bar * {
  box-sizing: inherit;
  font: inherit;
}
.tab-bar .tab-bar-content {
  position: relative;
  width: 100%;
  height: 100%;
}
.tab-bar .tab {
  position: absolute;
  left: 0;
  height: 36px;
  width: 240px;
  border: 0;
  margin: 0;
  z-index: 1;
  pointer-events: none;
}
.tab-bar .tab,
.tab-bar .tab * {
  user-select: none;
  cursor: default;
}
.tab-bar .tab .tab-dividers {
  position: absolute;
  top: 7px;
  bottom: 7px;
  left: var(--tab-content-margin);
  right: var(--tab-content-margin);
}
.tab-bar .tab .tab-dividers,
.tab-bar .tab .tab-dividers::before,
.tab-bar .tab .tab-dividers::after {
  pointer-events: none;
}
.tab-bar .tab .tab-dividers::before,
.tab-bar .tab .tab-dividers::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #a9adb0;
  opacity: 1;
  transition: opacity 0.2s ease;
}
.tab-bar .tab .tab-dividers::before {
  left: 0;
}
.tab-bar .tab .tab-dividers::after {
  right: 0;
}
.tab-bar .tab:first-child .tab-dividers::before,
.tab-bar .tab:last-child .tab-dividers::after {
  opacity: 0;
}
.tab-bar .tab .tab-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}
.tab-bar .tab .tab-bg > svg {
  width: 100%;
  height: 100%;
}
.tab-bar .tab .tab-bg > svg .tab-geometry {
  fill: #f4f5f6;
}
.tab-bar .tab[active] {
  z-index: 5;
}
.tab-bar .tab[active] .tab-bg > svg .tab-geometry {
  fill: #fff;
}
.tab-bar .tab:not([active]) .tab-bg {
  transition: opacity 0.2s ease;
  opacity: 0;
}
@media (hover: hover) {
  .tab-bar .tab:not([active]):hover {
    z-index: 2;
  }
  .tab-bar .tab:not([active]):hover .tab-bg {
    opacity: 1;
  }
}
.tab-bar .tab.tab--added {
  top: 10px;
  animation: tab-was-just-added 120ms forwards ease-in-out;
}
.tab-bar .tab .tab-content {
  position: absolute;
  display: flex;
  top: 0;
  bottom: 0;
  left: var(--tab-content-margin);
  right: var(--tab-content-margin);
  padding: 9px 8px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  overflow: hidden;
  pointer-events: all;
}
.tab-bar .tab[is-mini] .tab-content {
  padding-left: 2px;
  padding-right: 2px;
}
.tab-bar .tab .tab-favicon {
  position: relative;
  flex-shrink: 0;
  flex-grow: 0;
  height: 16px;
  width: 16px;
  background-size: 16px;
  margin-left: 4px;
}
.tab-bar .tab[is-small] .tab-favicon {
  margin-left: 0;
}
.tab-bar .tab[is-mini]:not([active]) .tab-favicon {
  margin-left: auto;
  margin-right: auto;
}
.tab-bar .tab[is-mini][active] .tab-favicon {
  display: none;
}
.tab-bar .tab .tab-title {
  flex: 1;
  vertical-align: top;
  overflow: hidden;
  white-space: nowrap;
  margin-left: 4px;
  color: #5f6368;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 calc(100% - 24px), transparent);
  mask-image: linear-gradient(90deg, #000 0%, #000 calc(100% - 24px), transparent);
}
.tab-bar .tab[is-small] .tab-title {
  margin-left: 0;
}
.tab-bar .tab .tab-favicon + .tab-title,
.tab-bar .tab[is-small] .tab-favicon + .tab-title {
  margin-left: 8px;
}
.tab-bar .tab[is-smaller] .tab-favicon + .tab-title,
.tab-bar .tab[is-mini] .tab-title {
  display: none;
}
.tab-bar .tab[active] .tab-title {
  color: #45474a;
}
.tab-bar .tab .tab-drag-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.tab-bar .tab .tab-close {
  flex-grow: 0;
  flex-shrink: 0;
  position: relative;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'><path stroke='rgba(0, 0, 0, .65)' stroke-linecap='square' stroke-width='1.5' d='M0 0 L8 8 M8 0 L0 8'></path></svg>");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 8px 8px;
}
@media (hover: hover) {
  .tab-bar .tab .tab-close:hover {
    background-color: #e8eaed;
  }
  .tab-bar .tab .tab-close:hover:active {
    background-color: #dadce0;
  }
}
@media not all and (hover: hover) {
  .tab-bar .tab .tab-close:active {
    background-color: #dadce0;
  }
}
@media (hover: hover) {
  .tab-bar .tab:not([active]) .tab-close:not(:hover):not(:active) {
    opacity: 0.8;
  }
}
.tab-bar .tab[is-smaller] .tab-close {
  margin-left: auto;
}
.tab-bar .tab[is-mini]:not([active]) .tab-close {
  display: none;
}
.tab-bar .tab[is-mini][active] .tab-close {
  margin-left: auto;
  margin-right: auto;
}
@-moz-keyframes tab-was-just-added {
  to {
    top: 0;
  }
}
@-webkit-keyframes tab-was-just-added {
  to {
    top: 0;
  }
}
@-o-keyframes tab-was-just-added {
  to {
    top: 0;
  }
}
@keyframes tab-was-just-added {
  to {
    top: 0;
  }
}
.tab-bar.tab-bar--sorting .tab:not(.tab--dragging),
.tab-bar:not(.tab-bar--sorting) .tab.tab--dragged {
  transition: transform 120ms ease-in-out;
}
.tab-bar .tab-bar-bottom {
  position: absolute;
  bottom: 0;
  height: 4px;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 10;
}
.tab-bar-optional-shadow-below-bottom-bar {
  position: relative;
  height: 1px;
  width: 100%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='1' height='1' viewBox='0 0 1 1'><rect x='0' y='0' width='1' height='1' fill='rgba(0, 0, 0, .17)'></rect></svg>");
  background-size: 1px 1px;
  background-repeat: repeat-x;
  background-position: 0% 0%;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .tab-bar-optional-shadow-below-bottom-bar {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='2' height='2' viewBox='0 0 2 2'><rect x='0' y='0' width='2' height='1' fill='rgba(0, 0, 0, .27)'></rect></svg>");
  }
}
