
.slider-wrapper {
    position: relative;
    z-index: 1;
}
.picture-slide a {
    display: block;
}
.picture-slide img {
    width: 100%;
	display: none;
}
.first-slide img {
    display: block;
}
div .html-slide {
	display: none;
}
div .first-slide {
    display: block;
}

@media all and (min-width: 1025px) {

.slider-wrapper:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: url(images/slider-shadow.png) no-repeat center top; 
    z-index: 999;       
}
}
.anywhere-slider .slick-list:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: #fff;
    opacity: .6;
    z-index: 999;
}

/* DIRECTIONAL NAVIGATION */

.anywhere-slider .slick-arrow {
    position: absolute;
    top: 50%;
    z-index: 99;
    width: 50px;
    height: 50px;
    margin-top: -25px;
    border: none;
    border-radius: 50%;
    background-color: rgba(0,0,0,0.3);
    background-repeat: no-repeat;
    font-size: 0;
    transition: background-color 0.2s ease;
}
.anywhere-slider .slick-prev {
    left: 25px;
    background-image: url(images/arrow-left.png);
    background-position: 13px center;
}
.anywhere-slider .slick-next {
    right: 25px;
    background-image: url(images/arrow-right.png);
    background-position: 19px center;
}
.anywhere-slider .slick-arrow:hover {
    background-color: rgba(0,0,0,0.5);
}

/* BULLET NAVIGATION */

.anywhere-slider .slick-dots {
    padding: 10px 0 0;
    text-align: center;
    font-size: 0;
}
.anywhere-slider .slick-dots li {
    display: inline-block;
    margin: 0 5px;
}
.anywhere-slider .slick-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    border: 1px solid rgba(0,0,0,0.2);
    font-size: 0;
}
.anywhere-slider .slick-active button {
    background-color: #999;
}