
.anywhere-slider {
	position: relative;
	z-index: 0;
	background-color: #fff;
}
.anywhere-slider:before {
	content: "";
	position: absolute;
	top: 0; right: 0;
	bottom: 0; left: 0;
	width: 60px;
	height: 60px;
	margin: auto;
	border: 1px solid #f61853;
	border-top-color: transparent !important;
	border-radius: 50%;
	-webkit-animation: spin 0.5s linear infinite;
	animation: spin 1s linear infinite;
}
	@-webkit-keyframes spin {
	to { transform: rotate(360deg); }
}
	@keyframes spin {
	to { transform: rotate(360deg); }
}

.anywhere-slider.slickless:before {
    display: none;
}

.anywhere-slider .slick-track {
    background-color: #fff;
}
.anywhere-slider > .picture-slide {
    position: relative;
}
.anywhere-slider .picture-slide a {
    display: block;
}
.anywhere-slider .picture-slide img {
    width: 100%;
    display: none;
}
.anywhere-slider .first-slide img {
    display: block;
}

/* DIRECTIONAL NAVIGATION */

.anywhere-slider .slick-arrow {
    display: none;
    position: absolute;
    top: 50%;
    z-index: 99;
    margin-top: -15px;
    text-align: center;
    color: #222;
    text-transform: uppercase;
}
.anywhere-slider .slick-arrow:after {
    display: block;
    font-size: 12px;
    color: #222;
}
.anywhere-slider .slick-prev {
    left: 5%;
}
.anywhere-slider .slick-next {
    right: 5%;
}
.anywhere-slider .slick-prev:after {
    content: "\e907";
}
.anywhere-slider .slick-next:after {
    content: "\e908";
}

/* BULLET NAVIGATION */

.anywhere-slider .slick-dots {
    position: relative;
    z-index: 99;
    height: 0;
    text-align: center;
    font-size: 0;
}
.anywhere-slider .slick-dots li {
	display: inline-block;
    position: relative;
    top: -40px;
	margin: 0 8px;
}
.anywhere-slider .slick-dots button {
    width: 12px;
    height: 12px;
    border: 1px solid #222;
    border-radius: 50%;
    font-size: 0;
}
.anywhere-slider .slick-active button {
    background-color: #222;
}


@media all and (min-width: 1201px) {

    .anywhere-slider .slick-arrow {
        display: block;
    }
}