.tabs_btn_wrap {
  display: flex;
  align-items: center;
  overflow-x: auto;
  white-space: nowrap;
  gap: 8px;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
}

.tabs_btn_wrap::-webkit-scrollbar {
  display: none;
}

.tabs_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  background-color: #ff4b44;
  box-shadow: 0 0 5px rgba(0, 0, 27, 0.25);
  border-radius: 5px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  transition: all 0.3s ease;
}

.tabs_btn:hover {
  background-color: #e5433d;
}

.tabs_btn.is-active {
  background-color: #e5433d;
}

@media screen and (min-width: 1024px) {
  .tabs_btn {
    font-size: 16px;
  }
}

@media screen and (min-width: 1200px) {
  .tabs_btn {
    padding: 8px 16px;
  }
}

@media screen and (min-width: 768px) {
  .tabs_btn {
    font-size: 18px;
  }
}
