/*
 * Horizon Swiper
 * Version 1.1.1
 * Domain ( http://horizon-swiper.sebsauer.de/ )
 * Copyright 2015 Sebastian Sauer ( http://www.sebsauer.de/ )
 * Licensed under MIT ( https://github.com/sebsauer90/horizon-swiper/blob/master/LICENSE )
 */

.horizon-swiper {
    background: #f9f9f9
}

.horizon-swiper.arrows {
    padding: 0 10px
}

.horizon-swiper .horizon-dots {
    padding: 0 0 6px
}

.horizon-swiper .horizon-dots .horizon-dot {
    width: 12px;
    height: 12px;
    padding: 0;
    font-size: 0;
    line-height: 1;
    background: 0 0;
    border: 1px solid #2c3e50;
    border-radius: 50%;
    -webkit-transition: background .3s;
    transition: background .3s
}

.horizon-swiper .horizon-dots .horizon-dot.active {
    background: #2c3e50
}

.horizon-swiper .horizon-next,
.horizon-swiper .horizon-prev {
    position: absolute;
    top: 5px;
    bottom: 5px;
    width: 20px;
    border: none;
    outline: 0;
}

.horizon-swiper .horizon-next:active,
.horizon-swiper .horizon-next:focus,
.horizon-swiper .horizon-next:hover,
.horizon-swiper .horizon-prev:active,
.horizon-swiper .horizon-prev:focus,
.horizon-swiper .horizon-prev:hover {
    outline: 0
}

.horizon-swiper .horizon-prev {
    left: 5px;
    background-image: url(/images/horizon/gradient-left.png);
    padding-left: 0px;
    padding-right: 0px;

}

.horizon-swiper .horizon-next {
    right: 5px;
    background-image: url(/images/horizon/gradient-right.png)
}

.horizon-prev-arrow {
  background-image: url('/images/horizon/arrow-left.svg');
}

.horizon-next-arrow {
  background-image: url('/images/horizon/arrow-right.svg');
}

@media (max-width: 991px) {
  .horizon-prev-arrow {
    background-image: none;
  }
  .horizon-next-arrow {
    background-image: none;
  }
}
