.slider-stores {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
  }
  
  .slide-store {
    width: 100%;
    height: 400px;
    position: absolute;
    transition: all 0.5s;
  }
  
  .slide-store img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .btn-store {
    position: absolute;
    width: 40px;
    height: 10px;
    padding: 0px;
    border: none;
    border-radius: 50%;
    z-index: 10px;
    cursor: pointer;
    background-color: #fff;
    opacity: .7;
    font-size: 18px;
  }
  /*.btn-store:active {
    transform: scale(1.1);
  }*/
  .btn-store-prev {
    top: 45%;
    left: 2%;
  }
  
  .btn-store-next {
    top: 45%;
    right: 0%;
  }

  @media(max-width: 600px){
    .btn-store-next {
        right: -3%;
    }
  }