a{
    text-decoration:none !important;
    color:inherit;
    cursor:pointer !important;
}

sliderexplorer.slider > *, .slider {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}
    
  .sliderexplorer > * , .sliderexplorer {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
  }
    
  .slider{
      position: relative;
       max-width: 100%; 
      height: 92%; 
      margin: 0 auto;
      overflow: hidden;
  }
.sliderexplorer {
    position: relative;
    max-width: 100%;
    height: 100%;
    margin: 0 auto;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px
}
  .slide{ 
      position: absolute;
      top:0;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 1s;
  }
  .slide > img{
      width: 100%;
      height: 100%;
      object-fit: cover;
  }
  .slider > button, .sliderexplorer > button{
      background: none;
      border: none;
  }
  .slider > button .fas, .sliderexplorer > button .fas{
      color: rgba(255, 255, 255, .5);
  }
  .btn-slide{
      position:absolute;
      top:50%; 
      height: 5.5rem;
      width: 5.5rem;
      cursor: pointer;
  }
  .btn-delete{
    position:absolute;
    top: 85%;
    z-index: 10; 
    cursor: pointer;
    background-color: #555 !important;
    color: white;
    padding: 6px 12px;
    left: 43.72%;
    border-radius: 5px;
    border: 1px black solid;
}
  .prev{
      left:3rem;
      transform: translate(-50%, -50%);
  }
  .next{
      right: 3rem;
      transform: translate(50%, -50%); 
  }
  .dots-container{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  .dot{
      width: 25px;
      height: 5px;
      margin: 15px 5px;
      border-radius: .5rem;
      background: rgba(39,39,39, .5);
      cursor: pointer;
  }
  .dot.active{
  background:#272727;
  }