@charset "utf-8";

.eb-tabs {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  background: #000;
  text-align: center;
}

.eb-tabs-container {
  display: flex;
  flex-direction: row;
  position: absolute;
  width: 100%;
  height: 40px;
  background: #fff;
  z-index: 80;
  border-bottom:1px solid #000; /* 하단라인 컬러상 */

}

.eb-tabs-container-top {
  position: fixed;
}

.eb-tab {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  color: #000;
  letter-spacing: 0.1rem;
  transition: all 0.5s ease;
  font-size: 16px;
  font-weight: bold;
  padding-top:5px;
  padding-bottom:15px;

}
.eb-tab:hover {

}

.eb-tab-slider {
  position: absolute;
  bottom: 0;
  width: 0;
  height: 4px;
  background: #000;
  transition: left 0.3s ease;
}

.eb-tab::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;           
  height: 16px;
  background-color: #e9e9e9; /* 가로 구분선 색상 */
}

.eb-tab:last-child::after {
  display: none;
}