.slider th,
.slider td {
  border: 1px solid #000;
  text-align: center;
  padding: 15px;
}
.slider th {
  background-color: #e0e0e0;
}
.slider table {
  width: 100%;
  margin: 20px 0;
}
.slider img {
  max-width: 100%;
  height: auto;
}

.product {
  display: flex;
  justify-content: center;
  /* align-items: center; */
  flex-wrap: wrap;
  column-gap: 20px;
}
.product__view {
  /* width: 50%; */
  flex-grow: 3;
  flex-shrink: 1;
  flex-basis: 350px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  overflow: hidden;

  /* background-color: #edf2ff; */
}
.product__info {
  /* background-color: #fff9db; */
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 400px;
}
.product__slider {
  display: flex;
  position: relative;
  /* overflow: hidden; */
}
.product__slider--items {
  display: flex;
  transition: all 0.7s;
}
.poduct__slider--arrow {
  position: absolute;
  top: 50%;
  width: 12%;
  cursor: pointer;
  transform: translate(0, -50%);
  background-color: transparent;
  border: none;
  z-index: 1;
}
.poduct__slider--left-arrow {
  left: 0;
}
.poduct__slider--right-arrow {
  right: 0;
}
.ionicon-spiral {
  fill: #e6ae34;
  fill-opacity: 0.5;
}
.ionicon-spiral:hover {
  fill-opacity: 1;
}
.product__slider__dots {
  position: absolute;
  display: flex;
  bottom: 3%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  column-gap: 7px;
}
.product__slider__dot {
  background-color: #edf2ff;
  width: 15px;
  height: 15px;
  border-radius: 15px;
  cursor: pointer;
}
.product__slider__dot--active {
  background-color: #e6ae34;
}

.product__line-image {
  display: flex;
  position: relative;
}
.product__line-image--items {
  position: relative;
  display: flex;
  transition: all 0.4s;
}
.product__line-image--item {
  padding: 5px;
  cursor: pointer;
}
.product__line-image--item-active {
  background-color: #e6ae34;
}
.poduct__slider__line--arrow {
  position: absolute;
  top: 50%;
  width: 10%;
  z-index: 100;
  cursor: pointer;
  background-color: transparent;
  border: none;
}
.poduct__slider__line--left-arrow {
  left: 0;
  transform: translate(-20%, -50%);
}
.poduct__slider__line--right-arrow {
  right: 0;
  transform: translate(20%, -50%);
}
.ionicon-line {
  stroke: #e6ae34;
}
.ionicon-line:hover {
  stroke: #edf2ff;
}
.product__info_line {
  margin: 10px 0 0 10px;
}
.product__info__features {
  margin: 20px 0;
}
.product__info_title {
  font-size: 1.3em;
  font-weight: 400;
  letter-spacing: -0.3px;
}
.product_arrow_hidden {
  display: none;
}

@media screen and (max-width: 670px) {
  .product__line-image {
    display: none;
  }
}
@media screen and (min-width: 670px) {
  .product__slider__dots {
    display: none;
  }
}
.product__info_table {
  border-collapse: collapse;
  border: 1px;
}
