html{
   height: 100%;
   overflow: hidden;
}

html,
body {
  margin: 0;
  padding: 0;
}

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

#sg-viewport .circle {
  position: absolute;
  top: 50%;
  z-index: 100;
  height: 44px;
  width: 44px;
  display: inline-block;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, .4);
}

#sg-viewport .circle--right {
  right: 1rem;
}

#sg-viewport .circle--left {
  left: 1rem;
}

#sg-viewport .circle--right,
#sg-viewport .circle--left {
    -webkit-transition: all 300ms;
     -moz-transition: all 300ms;
      -ms-transition: all 300ms;
       -o-transition: all 300ms;
          transition: all 300ms;
}

#sg-viewport .circle--right:hover,
#sg-viewport .circle--left:hover {
  background-color: rgba(255, 255, 255, .7);
}

#sg-viewport .arrow-left,
#sg-viewport .arrow-right {
  display: block;
  width: 44px;
  height: 44px;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgeD0iMHB4IiB5PSIwcHgiIHZpZXdCb3g9IjAgMCAxOCA5MCIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMTggOTAiIHhtbDpzcGFjZT0icHJlc2VydmUiPjxwb2x5bGluZSBmaWxsPSJub25lIiBzdHJva2U9IiMwMDAwMDAiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIgcG9pbnRzPSIxNSwzNiAxLDIyIDE1LDggIi8+PHBvbHlsaW5lIGZpbGw9Im5vbmUiIHN0cm9rZT0iIzAwMDAwMCIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBwb2ludHM9IjIsODIgMTYsNjggMiw1NCAiLz48L3N2Zz4=);
  background-repeat: no-repeat;
  background-size: 18px 90px;
}

#sg-viewport .arrow-left {
  background-position: center top;
}
#sg-viewport .arrow-right {
  background-position: center bottom;
}

.swiper-container {
  height: auto;
  background: #fff;
}
.content-slide {
  color: #fff;
}
.title {
  font-size: 25px;
  margin-bottom: 10px;
}

.pagination {
  position: absolute;
  left: 0;
  text-align: center;
  bottom:9px;
  width: 100%;
/*  z-index: 10;*/
}

.dots {
  display: inline-block;
}


.swiper-pagination-switch {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: #5F5F5F;
/*  box-shadow: 0px 1px 2px #555 inset;*/
  margin: 0 3px;
  cursor: pointer;
}
.swiper-active-switch {
  background: #fff;
}

#sg-gen-container #toc {
   position: absolute;
   bottom: 0;
   width: 100%;
   background: rgba(255,255,255,1);
   z-index: 999;
}

#sg-gen-container {
   overflow: hidden;
}

.spinner {
  margin: 25% auto 0;
  width: 100%;
  height: 100%;
  text-align: center;
}

.spinner > div {
  width: 18px;
  height: 18px;
  background-color: #0074A2;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: bouncedelay 1.4s infinite ease-in-out;
  animation: bouncedelay 1.4s infinite ease-in-out;
  /* Prevent first frame from flickering when animation starts */
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0.0) }
  40% { -webkit-transform: scale(1.0) }
}

@keyframes bouncedelay {
  0%, 80%, 100% {
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 40% {
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}
