.ecs-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  margin: 20px 0;
}

.ecs-slider {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.ecs-slider::-webkit-scrollbar {
  display: none;
}

.ecs-item {
  background: #fff;
  border: 1px solid #ccc;
  padding: 8px 16px;
  margin: 0 5px;
  border-radius: 20px;
  text-decoration: none;
  color: #222;
  white-space: nowrap;
  font-weight: 500;
  transition: all .2s;
}
.ecs-item:hover {
  background: #00796b;
  color: #fff;
}

.ecs-prev, .ecs-next {
  border: none;
  font-size: 20px;
  padding: 6px 10px;
  cursor: pointer;
  border-radius: 50%;
  margin: 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ecs-prev img, .ecs-next img {
  max-width: 20px;
  max-height: 20px;
}
