.trade-swiper {
  width: calc(100% - 18px);
  padding: 10px 6px;
}
.trade-swiper .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  height: auto;
  padding: 20px 20px 30px;
  border-style: solid;
  border-width: 0px 2px 0px 2px;
  border-color: #00000005;
  border-radius: 10px;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
  cursor: pointer;
  transition: all 0.2s ease-out;
}
.trade-swiper .swiper-slide:hover {
  background-color: var(--e-global-color-secondary);
  box-shadow: 0px 6px 6px rgb(0 0 0 / 0.1);
}
.trade-swiper.style-2 .swiper-slide {
  border-radius: 0;
  box-shadow: 0px 10px 10px -5px rgba(0, 0, 0, 0.049);
}
.trade-swiper.style-2 .swiper-slide:hover {
  box-shadow: 0px 10px 10px -5px rgb(0 0 0 / 10%);
}
.trade-swiper img {
  width: 140px;
  height: 140px;
  filter: hue-rotate(-60deg);
}
.trade-swiper h3 {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--e-global-color-primary);
  text-align: center;
  margin: 0;
  transition: all 0.2s ease-out;
}
.trade-swiper .swiper-slide:hover h3 {
  color: var(--e-global-color-7f29d40);
}

.trade-swiper .swiper-nav {
  background-color: transparent;
  border: none;
  border-radius: 0;
}
.trade-swiper .swiper-button-prev {
  left: 15px;
}
.trade-swiper .swiper-button-next {
  right: 15px;
}
.trade-swiper .swiper-nav i {
  font-size: 30px;
  line-height: 30px;
}

@media (min-width: 768px) {
  .trade-swiper {
    width: calc(100% - 38px);
  }
  .trade-swiper .swiper-nav {
    width: 30px;
    height: 30px;
  }
  .trade-swiper .swiper-button-prev {
    left: -5px;
  }
  .trade-swiper .swiper-button-next {
    right: -5px;
  }
}

@media (min-width: 1200px) {
  .trade-swiper .swiper-button-prev {
    left: -20px;
  }
  .trade-swiper .swiper-button-next {
    right: -20px;
  }
}
