#tgei-auto-tabs-container
{
  width: 100%;
  position: relative;
}
#tgei-auto-tabs-tabs-container
{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  margin: 0px;
  padding: 0px;
  justify-content: flex-end;
  column-gap: 10px;
  margin-bottom: -2px;
}
.tgei-auto-tabs-tab
{
  display: flex;
  border-left: 2px solid black;
  border-right: 2px solid black;
  border-top: 2px solid black;
  padding: 0.8rem 1rem 0.8rem;
  justify-content: center;
  align-items: center;
  color: black;
  background: white;
  font-size: 1rem;
}

.tgei-auto-tabs-tab:hover
{
  cursor: pointer;
  background: #888888;
}

#tgei-auto-tabs-content-container
{
  width: 100%;
  position: relative;
  border-top: 2px solid black;
  padding-top: 10px;
}
.tgei-auto-tabs-content
{
  position: absolute;
  width: 100%;
  display: none;
}


#tab-0, .tgei-auto-tabs-content-active
{
  display: block;
}

.tgei-auto-tabs-content-active ~ #tab-0
{
  display: none;
}

.tgei-auto-tabs-tab-active
{
  background: black;
  color: white;
  font-size: 1.5rem;
}
