.tablist {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  touch-action: pan-y;
}

.tab-container {
  display: flex;
  transition: transform 0.3s ease;
  height: 100%;
}

.tab {
  min-width: 100%;
  /* width: 100%; */
  height: auto;
  padding: 20px;
  box-sizing: border-box;
  background-color: var(--primary-color);
  cursor: grab;
}

.indicators {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  min-height: 25px;
}

.indicator {
  width: 25px;
  height: 7px;
  border-radius: 20%;
  background-color: var(--text-bright-color);
  margin: 0 5px;
  cursor: pointer;
}

.indicator.active {
  background-color: var(--accent-color);
}

@media (501px <= width <= 1000px) {
  .tab {
    min-width: 50%;
  }
}

@media (1001px <= width <= 4000px) {
  /* .tablist {
    height: 350px;
    width: 70%;
    margin: 0 auto;
  } */
  .tab {
    min-width: 25%;
  }
}
