.mySlides {display: none}
img {vertical-align: middle;
}

/* Slideshow container */
.slideshow-container {
  max-width: 100%;
  position: relative;
  margin: auto;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  height: auto;
  padding: 16px;
  margin-top: -22px;
  color: #252362;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius:  0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: #86BE3F;
  color: white;
}


/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 400px) {
  .prev, .next,.text {font-size: 11px}
}



.bdSlides{
    display: flex;
    justify-content: space-between;
}
/*
.swiper-container{
   cursor:grab;
}
*/
.productPrev, .productNext{
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    text-align: center;
    align-items: center;
    margin-top: -22px;
    font-weight: bold;
    transition: 0.6s ease;
    border-radius: 50%;
    outline: none;
    user-select: none;
    z-index: 100;
}

.productNext {
    background: #808080;
    color: #ffffff;
    right: 30px;
  }
  .productPrev {
    background: #808080;
    color: #ffffff;
    left: 30px;
  }


  .productSlider{
    position: relative;
  }

