/* Bare minimum styles */
.slider {
    -ms-touch-action: pan-y; /* Prevent default touch actions on Windows 8. Only required for IE10 */
    overflow: auto; /* Not required but recommended for accessibility when JavaScript is turned off */
    position: relative;
    touch-action: pan-y; /* Prevent default touch actions on Windows 8. Supported in IE11+ */
}

/* AnySlider can be styled to your liking. This is just example styles */
.slider {
    margin: 0 auto 0;
    width: 90%;
}

/* The same rules for styling apply here. Style to your liking */
.as-nav {
    bottom: 35px;
    position: relative;
    text-align: center;
    width: 100%;
    z-index: 2;
}

.as-nav a {
    background: #fff;
    margin: 5px;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    cursor: pointer;
    text-decoration: none;
    color:#fff;
    border:1px solid #ddd;
}

.as-nav .as-active,
.as-nav a:hover {
    background: #ddd;
}

@media only screen and (max-width: 1024px) {
  .slider {
    width: 95%;
  }
}
@media only screen and (max-width: 960px) {
  .as-nav {
    display: none;
  }
}