.slider-dots
{
 position: absolute;
 display: flex;
 left: 0;
 bottom: 0;
 width: 100%;
 margin: 0 !important;
 padding-top: 0;
 padding-left: 15px;
 padding-right: 15px;
 padding-bottom: 0;
 text-align: center;
 list-style: none;
 box-sizing: border-box;
 justify-content: space-between;
  
 li
 {
  display: block;
  width: 100%;
  margin: 0 2px;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 15px;
  cursor: pointer
 }
  
 button
 {
  position: relative;
  width: 100%;
  height: 4px;
  border: 0;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.4);
  font-size: 0;
  cursor: pointer;
  
  &:after
  {
   position: absolute;
   top: 0;
   left: 0;
   content: '';
   display: block;
   width: 0%;
   height: 100%;
  }
 }
  
 .slick-active
 {
  button:after
  {
   width: 100%;
   border-radius: 10px;
   background-color: #FFF;
  }
 }
}

@media screen and (max-width: 480px)
{
 .slider-dots li
 {
  padding-bottom: 5px
 }
}