.product_container .swiper_container {
  background-color: #fffffe;
  box-shadow: 1px 0px 5px 0px rgb(0 0 0 / 15%);
  border-radius: 12px;
  width: 40vw;
  height: 70vh;
}


.swiper {
  width: 100%;
  height: 100%;
  padding-bottom: 60px;
}

.swiper .swiper-wrapper {
  display: flex;
  justify-content: space-between;
}

.swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper .swiper-slide img {
  height: 90%;
}

/* .swiper-button-prev,
.swiper-button-next{
  display: flex;
  align-items: center;
  justify-content: center;
} */

.swiper-button-prev::after{
  border-radius: 50%;
  color: #232946;
  font-size: 25px !important;
  font-weight: 600;
  width: 30px;
  height: 30px;
}
.swiper-button-next::after{
  border-radius: 50%;
  color: #232946;
  font-size: 25px !important;
  font-weight: 600;
  width: 30px;
  height: 30px;
}

.swiper-pagination-bullet-active{
  background-color: #232946 !important;
}

@media screen and (orientation:portrait){
  .swiper .swiper-slide img {
    height: unset;
    width: 90%;
  }

  .product_container .swiper_container {
    background-color: #fffffe;
    box-shadow: 1px 0px 5px 0px rgb(0 0 0 / 15%);
    border-radius: 0px;
    width: 100vw;
    height: fit-content;
    padding-block: 3vh;
}
}