/**-----------------------

 docSlider.js - ver.3.0.1
 URL : https://prjct-samwest.github.io/docSlider/
 created by SamWest
 Copyright (c) 2020 SamWest.
 This plugin is released under the MIT License.

 -----------------------**/
/* CHANGE THE PAGER STYLE */
.docSlider-pager {
    top: 50%;
    transform: translate(0%, -50%);
    position: fixed;
    right: 10px;
    display: flex;
    flex-direction: column;
    align-items: end;
    border: solid 0px #c4161c;
}

/* CHANGE THE BUTTON STYLE */
.docSlider-button {
    width: 1rem;
    height: 1rem;
    border-radius: 50px;
    background-color: #cccccc;
    margin: 0.5rem;
    cursor: pointer;
    outline: none;
    border: solid 0px #c4161c;
    transition: ease-in 1s;
    border: solid 2px transparent;
}

    .docSlider-button.selected {
        opacity: 1;
        background-color: #099ef6;
        transform: scale(1.2);
        border: solid 2px #ffffff;
    }

    .docSlider-button:active {
        outline: none;
        background-color: #099ef6;
        border: solid 2px transparent;
    }

/**------------------------------
  REWRITING IS NOT RECOMMENDED
 -----------------------------**/
html, body {
  overflow: hidden;
  touch-action: none;
  height: 100%;
}

html, body,
.docSlider,
.docSlider-inner,
.docSlider-page {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  appearance: none;
  border: none;
  outline: none;
}

html:active, body:active,
.docSlider:active,
.docSlider-inner:active,
.docSlider-page:active {
  outline: none;
}

.docSlider {
  overflow: hidden;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
}

.docSlider-inner {
  width: inherit;
  height: inherit;
  position: fixed;
  top: 0;
  left: 0;
}

.docSlider-page {
  height: inherit;
  width: inherit;
  overflow: auto;
  position: absolute;
  overflow-scrolling: touch;
}
