.reference-lists {
  height: 100%;
}
.reference-lists .list-wrapper {
  height: 100%;

}
.reference-lists .list-wrapper .list-active-area {
  height: calc(100% - 50px);
  border-radius: 10px;
  box-shadow: 0px 0px 0px 1px lightgrey inset;
}
.reference-lists .list-wrapper .list-tab-area {
  height: 40px;
  margin-bottom: 10px;
}
.reference-lists .list-wrapper .list-active-area .tag-box {
  line-height: 24px;
  font-size: 16px;
  margin-top: 50%;
}
.reference-lists .list-wrapper .list-tab-area .tab-wrapper {
  width: 100%;
  height: 100%;
}
.reference-lists .list-wrapper .list-tab-area .tab-wrapper .row {
  padding: 0px;
  margin-right: 0px;
  margin-left: 0px;
  height: 100%;
}
.reference-lists .list-wrapper .list-tab-area .tab-wrapper .row .list-tab:last-child {
  margin-right: 0px;
}
.reference-lists .list-wrapper .list-tab-area .tab-wrapper .row .list-tab {
  display: inline-block;
  /* width: calc(33.3% - 6.66px); */
  height: 100%;
  text-align: center;
  line-height: 40px;
  font-size: 16px;
  padding: 0px;
  margin-right: 10px;
  background-color: white;
  box-shadow: 0px 3px 4px 0px lightgrey;
  border-radius: 10px;
  user-select: none;
  cursor: pointer;
  overflow: auto;
  transition: background-color 0.5s, color 0.3s, transform 0.3s;
}
.reference-lists .list-wrapper .list-tab-area.activated-1 .tab-wrapper .row .list-tab {
  width: calc(100%);
}
.reference-lists .list-wrapper .list-tab-area.activated-2 .tab-wrapper .row .list-tab {
  width: calc(50% - 5px);
}
.reference-lists .list-wrapper .list-tab-area.activated-3 .tab-wrapper .row .list-tab {
  width: calc(33.3% - 6.6px);
}
.reference-lists .list-wrapper .list-tab-area.activated-4 .tab-wrapper .row .list-tab {
  width: calc(25% - 7.5px);
}

.reference-lists .list-wrapper .list-tab-area .tab-wrapper .row .list-tab.last-tab, 
.reference-lists .list-wrapper .list-tab-area .tab-wrapper .row .list-tab.last-tab.active {
  border-right: none;
}
.reference-lists .list-wrapper .list-tab-area .tab-wrapper .row .list-tab.active {
  padding: 0px;
  transform: translateY(-5px);
  background-color: #2998d4;
  color: white;
  font-weight: bold;
}
/* .reference-lists .list-wrapper .list-tab-area .tab-wrapper .row .list-tab.last.active {
  border-right: none;
} */