@charset 'UTF-8';

.slick-dots {
    position: absolute;
    left: 30px;
    bottom: 10vh;
    display: block;
    padding: 0;
    list-style: none;
    text-align: center;
}
.slick-dots li {
    position: relative;
    display: block;
    width: 20px;
    height: 20px;
    margin-top: 20px;
    padding: 0;
    cursor: pointer;
   
}
.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    outline: none;
    border-radius: 50%;
   background-color: rgba(255,255,255,0.35);
    border: 0;
	
}
.slick-dots li button:hover,
.slick-dots li button:focus{
  background-color: white; 
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    
    
}

.slick-dots li.slick-active button:before { background-color: white; border-radius: 50%; }


