/**
 *   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 {
  display: flex;
  justify-content: center;
  z-index: 30;
  position: relative;
  bottom: 5px;
}

.unslider-nav ol {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex: 0 0 auto;
    display: flex;
    border-radius: 2em;
    transition: ALL EASE .25s;
    /* background: rgba(0,0,0,0.2);   */
}

.unslider-nav ol li {
    text-indent: -999999px;
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    border: 3px solid var(--genesys-primary);
    margin: .25em .25em;
    border-radius: 2em;
    display: inline-block;
    cursor: pointer;
    transition: ALL EASE .25s;
    line-height: 1em;
}
.unslider-nav ol li.unslider-active {
  cursor: pointer;
  width: 32px;
  flex: 1 0 20px;
}
.unslider-nav ol li:hover {
      background: rgba(255,79,31,1);
}
