<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
 * Horizon Swiper
 * Version 1.1.0
 * 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: #fff;   
    /* 
    background: #e5eaef; 
    */
}
.horizon-swiper.arrows
{
    padding: 0 40px; /* 0 50px; */
}
.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: 0; /* 5px; */
    bottom: 0; /* 5px; */
    width: 40px;
    border: none;
    outline: 0;
    background: #000 center no-repeat;
    margin: 0;
    padding: 0;
    font-size: 1rem;
}
.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: 0; /* 5px; */
    background-image: url(arrow-left.svg);
    border-right: 1px solid #000;
}
.horizon-swiper .horizon-next
{
    right: 0; /* 5px; */
    background-image: url(arrow-right.svg);
}

</pre></body></html>