/**
 *   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 {
  position: absolute;
  list-style: none;
  text-align: center;
  /*z-index: 10000;*/
  /*z-index: 1;*/
  bottom: 150px;
  left: 0;
  right: 0;
}
.unslider-nav ol li {
  display: inline-block;
  width: 13px;
  height: 13px;
  margin: 0 6px;
  background: transparent;
  background-color: rgba(255,255,255, 0.5);
  border-radius: 50px;
  overflow: hidden;
  text-indent: -999em;
  cursor: pointer;
  border: none;
}

.unslider-nav ol li.unslider-active {
  background: #fff;
  cursor: default;
}

@media (max-width: 2650px) {
  .unslider-nav ol {
    bottom: 120px;
  }
}

@media (max-width: 950px) { /*new */
  .unslider-nav  {
    /*display: none;*/
    visibility: hidden;
  }
}

@media (max-width: 570px) {
  .unslider-nav ol {
    visibility: visible;
    bottom: 0px;
  }
}

@media (max-height: 510px) { /*new */
  .unslider-nav  {
    display: none;
    visibility: hidden;
  }
}