.nav-cell {
  white-space: nowrap;
}
.market-menu-root {
  flex: 1;
  display: flex;
  overflow: hidden;
  position: relative;
}
.market-menu-root.hadLeft {
  padding-left: 40px;
}
.market-menu-root.hadRight {
  padding-right: 40px;
}
.market-menu-root .market-menu-parent {
  width: 100%;
  overflow: hidden;
}
.market-menu-root .menu-container {
  display: flex;
  transition: ease-in 200ms;
}
.market-menu-root .arrowIcon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: row;
  height: 100%;
  align-items: center;
  width: 60px;
  cursor: pointer;
}
.market-menu-root .arrowLeft {
  justify-content: start;
  left: 0;
  margin-right: 14px;
}

.market-menu-root .arrowRight {
  justify-content: flex-end;
  right: 0;
  margin-left: 14px;
  margin-right: 16px;
}
.market-menu-root .button {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
  @apply bg-derive text-derive-11 hover:bg-['#e5e5ea'];
}
.market-menu-root .arrowLeft .button {
  transform: rotate(180deg);
}
.market-menu-root .arrowRight .button {
  transform: rotate(0);
}
.market-menu-root .button:hover {
  @apply text-gray-16;
}
