.unslider-nav ol {
  list-style: none;
  text-align: center;
  position:absolute;
  bottom: 30px;
  right: 0;
  z-index:500;

  width: 100%;

  display: flex;
  flex-direction:row;
  flex-wrap:wrap;
  justify-content:center;
  align-items:center;
}

.unslider-nav ol li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 4px;
  background-color: #fff;
  background-clip:padding-box;
  border-radius: 100%;
  overflow: hidden;
  text-indent: -999em;
  /*order: 2px solid #fff;*/
  cursor: pointer;
  padding:2px;
}

@media screen and  (max-width: 450px){
.unslider-nav ol li {
    display: none;
}
}
.unslider-nav ol li.unslider-active {
  width: 14px;
  height: 14px;
  background-color: #05b3e2;
  background-clip:content-box;
  cursor: default;
  border: none;
}