/**
 *   Here's where everything gets included. You don't need
 *   to change anything here, and doing so might break
 *   stuff. Here be dragons and all that.
 */
/**
 *   Default variables
 *
 *   While these can be set with JavaScript, it's probably
 *   better and faster to just set them here, compile to
 *   CSS and include that instead to use some of that
 *   hardware-accelerated goodness.
 */
.unslider-nav ol {
    list-style: none;
    text-align: center;
}
.unslider-nav ol li {
    display: inline-block;
    width: 6px;
    height: 6px;
    margin: 0 4px;
    background: transparent;
    border-radius: 5px;
    overflow: hidden;
    text-indent: -999em;
    border: 2px solid #fff;
    cursor: pointer;
}
.unslider-nav ol li.unslider-active {
    background: #fff;
    cursor: default;
}
.unslider-arrow {
    position: absolute;
    top: 50%;
    z-index: 10;
    font-size: 0px;
}
.unslider-arrow::before {
    color: #ffffff;
    content: "";
    display: inline-block;
    font-family: "FontAwesome";
    font-size: 45px;
    padding: 15px 21px;
    transition: all 300ms linear 0s;
}
.unslider-arrow:hover:before {
    color:#FFBA31;
    transition:all 300ms linear;
}
.unslider-arrow.next::before {
    content: "";
}
.unslider-arrow.next {
    right: 80px;
}
.unslider-arrow.prev {
    left: 80px;
}
/*text*/
.sb-slider-header {
    background-color: #ffba31;
    bottom: 40%;
    display: inline-block;
    font-size: 50px;
    padding: 18px;
    position: absolute;
    right: 21%;
    text-shadow: none;
}
.sb-slider-text {
    background-color: #ffffff;
    bottom: 33%;
    color: #000000;
    font-size: 19px;
    max-width: 660px;
    padding: 8px 10px;
    position: absolute;
    right: 11.5%;
    text-shadow: none;
    width: auto;
}
/*winter*/
.winter .sb-slider-header {
    bottom: 40%;
    color: #000000;
    display: inline-block;
    font-family: "Roboto";
    font-size: 50px;
    font-weight: bold;
    padding: 18px;
    position: absolute;
    right: 22%;
    text-shadow: none;
    background-color: rgba(0, 0, 0, 0);
}
.winter .sb-slider-text {
    background-color: rgba(0, 0, 0, 0);
    bottom: 33%;
    color: #000000;
    font-size: 19px;
    max-width: 660px;
    padding: 8px 10px;
    position: absolute;
    right: 12.5%;
    text-shadow: none;
    width: auto;
    font-family: "Roboto";
}