.browser-roll {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: left;
}

.browser-item {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;

  margin-left: -14px;

  border: 2px solid #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,.18);
  cursor: pointer;

  position: relative;
  z-index: 1;

  transition: transform .2s ease, box-shadow .2s ease;
}
.browser-item {
  flex: 0 0 auto;
}

.browser-item:first-child {
  margin-left: 0;
}

.browser-item img {
  width: 24px;
  height: auto;
}

.browser-item:hover {
  transform: translateY(-6px) scale(1.1);
  z-index: 10;
  box-shadow: 0 10px 24px rgba(0,0,0,.28);
}

.browser-info {
  margin-top: 12px;
  min-height: 32px;
  display: flex;
  justify-content: left;
  pointer-events: none;
}

.browser-info-inner {
  background: #ffffff;
  border:1px solid #aaa;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  color: #1f2937;

  box-shadow:
    0 4px 12px rgba(0,0,0,.12),
    inset 0 0 0 1px rgba(0,0,0,.06);

  opacity: 0;
  transform: translateY(-6px) scale(.96);
  transition: opacity .18s ease, transform .18s ease;
}

.browser-info.active .browser-info-inner {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.browser-name {
  font-weight: 600;
  margin-right: 6px;
}

.browser-version {
  font-size: 12px;
  opacity: .75;
}
.browser-item {
  touch-action: manipulation;
}
.browser-item.active {
  transform: translateY(-6px) scale(1.1);
  z-index: 10;
}
@media (hover: none) {
  .browser-item:hover {
    background: none; 
  }
}

table {table-layout: fixed;}
table thead th:first-child {
  width: 160px; 
}
td{color:var(--gray-400)!important;}