.slick-dots li button {
height: 4px !important;
padding: 4px !important;
width: 20px !important;
background: #fff!important;
opacity: 0.5;
}
li.slick-active {
width: 40px !important;
height:100% !important;
background: @orange !important;
z-index:99 !important;
transition: 0.3s;
}
.slick-dots li button:before {
display:none;
}
.slick-dots {
bottom: 100px !important;
box-sizing: border-box;
}
$('.open-popup').click(function(event) {
event.preventDefault();
$('.popup').fadeIn();
$('html').addClass('no-scroll')
});
$('.popup-close').click(function(event) {
event.preventDefault();
$('.popup').fadeOut();
$('html').removeClass('no-scroll')
});
.menu>ul{
display: flex;
flex-direction: column;
justify-content: center;
counter-reset: number 0;
}
.menu>ul li {
counter-increment: number;
margin-bottom: 30px
}