/* Import Google font - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #5372f0;
}

.wrapper {
  position: relative;
  /* overflow-x: hidden; */
  max-width: 960px;
  background: #fafafa;
  border-radius: 13px;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 0;
}

.wrapper .icon {
  position: absolute;
  top: -30px;
  height: 100%;
  width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  z-index:999;
}

.icon:first-child {
  left: 0;
  display: none;
  background: linear-gradient(90deg, #fafafa 70%, transparent);
}

.icon:last-child {
  right: 0;
  justify-content: flex-end;
  background: linear-gradient(-90deg, #fafafa 70%, transparent);
}

.icon i {
  width: 45px;
  height: 45px;
  cursor: pointer;
  font-size: 1.2rem;
  text-align: center;
  line-height: 47px;
  border-radius: 50%;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.25);
  background: #fff;
}

.icon i:hover {
  background: #fafafa;
}

.icon:first-child i {
  margin-left: -60px;
}

.icon:last-child i {
  margin-right: 15px;
}

.wrapper .tabs-box {
  display: flex;
  gap: 12px;
  list-style: none;
  overflow-x: hidden;
  scroll-behavior: smooth;
  height: 50px;
}

.tabs-box.dragging {
  scroll-behavior: auto;
  cursor: grab;
}

.tabs-box .tab {
  cursor: pointer;
  font-size: 18px;
  white-space: nowrap;
  color: #0091b1;
  text-align: center;
  font-size: 18px;
  /* font-family: Chilena; */
  font-weight: 700;
  letter-spacing: 2.88px;
  text-transform: uppercase;
  /* background: #f5f4fd;
  padding: 13px 20px;
  border-radius: 30px;
  border: 1px solid #d8d5f2; */
  /* color: #fafafa; */
  padding: 10px 20px 10px 20px;
  height: 44px;
  position: relative;
  top: 2px;
}

.tabs-box.dragging .tab {
  user-select: none;
  pointer-events: none;
}

.tabs-box .tab.active {
  /* color: #fafafa; */
  border-radius: 23px;
  border: 1px solid #fff;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.25);
  padding: 6px 30px 10px 30px;
  height: 44px;
  position: relative;
  top: 2px;
}
.tabs-box .tab.active span {
  /* color: #fafafa; */
  display: inline-block;
  border-radius: 50px;
  background-color: #0091b1;
  margin-right: 2px;
  position: relative;
  top: -2px;
  height: 8px;
  width: 8px;
}
/* .wrapper .icon {
    height: 29px;
    width: 29px;
    border-radius: 50px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.25);
    padding: 23px;
}
.tabs-box-icon i {
    font-size: 18px;
  } */
