/**
 *   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 {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    width: 1140px;
    margin: 0 auto;
    z-index: 3;
}

.unslider-nav ol {
    list-style: none;
    text-align: right;
}

.unslider-nav ol li {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 4px;
    background: #575756;
    border-radius: 10px;
    overflow: hidden;
    text-indent: -999em;
    border: 1px solid #2B2A29;
    cursor: pointer;
    position: relative;
}

.unslider-nav ol li:before {
    background-color: inherit;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.unslider-nav ol li.unslider-active {
    background: #DA251A;
    cursor: default;
}
