/**
 *   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 {
  height:auto;
 } */

 .unslider-nav ol {
  list-style: none;
  text-align: center;
  position: relative;
  bottom: 70px;
}
.unslider-nav ol li {
  display: inline-block;
  width: 60px;
  height: 5px;
  margin: 0 4px;
  background:rgba(35, 62, 169, 0.5);
  /*border-radius: 5px;*/
  overflow: hidden;
  text-indent: -999em;
  /*border: 1px solid #fff;*/
  cursor: pointer;
}
.unslider-nav ol li::before {
  position: absolute;
    top: -10px;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 10px;
    content: "";
}
.unslider-nav ol li::after {
  position: absolute;
    bottom: -10px;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 10px;
    content: "";
}

.unslider-nav ol li.unslider-active {
  background: rgba(35, 62, 169, 1);
  cursor: default;
}
