/*!
 * pagepiling.js 1.5.6
 *
 * https://github.com/alvarotrigo/pagePiling.js
 * @license MIT licensed
 *
 * Copyright (C) 2016 alvarotrigo.com - A project by Alvaro Trigo
 */
    html, body {
        overflow: hidden;
        margin: 0;
        padding: 0;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    }
.pp-section {
    height:100%;
    position:absolute;
    width:100%;

    /* fixes flickering in firefox*/
    backface-visibility: hidden;
}
.pp-easing {
    -webkit-transition: all 1000ms cubic-bezier(0.550, 0.085, 0.000, 0.990);
    -moz-transition: all 1000ms cubic-bezier(0.550, 0.085, 0.000, 0.990);
    -o-transition: all 1000ms cubic-bezier(0.550, 0.085, 0.000, 0.990);
    transition: all 1000ms cubic-bezier(0.550, 0.085, 0.000, 0.990);
    /* custom */
    -webkit-transition-timing-function: cubic-bezier(0.550, 0.085, 0.000, 0.990);
    -moz-transition-timing-function: cubic-bezier(0.550, 0.085, 0.000, 0.990);
    -o-transition-timing-function: cubic-bezier(0.550, 0.085, 0.000, 0.990);
    transition-timing-function: cubic-bezier(0.550, 0.085, 0.000, 0.990);
    /* custom */
}
#pp-nav {
    position: fixed;
    z-index: 105;
    margin-top: -32px;
    top: 50%;
    opacity: 1;

}
#pp-nav.right {
    right: 100px;
}
#pp-nav.left {
    left: 100px;
}
.pp-section.pp-table{
    /*display: table;*/
}
.pp-tableCell {
    /*display: table-cell;*/
    /*vertical-align: middle;*/
    width: 100%;
    height: 100%;
}
.pp-slidesNav{
    position: absolute;
    z-index: 4;
    left: 50%;
    opacity: 1;
}
.pp-slidesNav.bottom {
    bottom: 17px;
}
.pp-slidesNav.top {
    top: 17px;
}
#pp-nav ul,
.pp-slidesNav ul {
  margin: 0;
  padding: 0;
    margin-left: 4px;
    position: relative;
}
#pp-nav li,
.pp-slidesNav li {
    display: block;
    width: 26px;
    height: 34px;
    position:relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pp-slidesNav li {
    display: inline-block;
    margin: 5px 0;
}
#pp-nav li a,
.pp-slidesNav li a {
    display: block;
    z-index: 1;
    width: 14px;
    height: 14px;
    cursor: pointer;
    text-decoration: none;

    background-image: url('../images/fullpage-dot.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100%;
    margin: 7px auto;

    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;

}

#pp-nav li a.active,
.pp-slidesNav a.active {
    background-image: url('../images/fullpage-dot-active.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100%;
    width: 26px;
    height: 26px;
}
#pp-nav span,
.pp-slidesNav span {
    width: 20px;
    height: 20px;
    border: none;
    position: absolute;
    z-index: 1;
    display: none;
}

.pp-tooltip {
    position: absolute;
    top: 5px;
    max-width: 220px;
    white-space: nowrap;
}
.pp-tooltip.right {
    right: 20px;
}
.pp-tooltip.left {
    right: 32px;
}
.pp-scrollable{
    overflow-y: scroll;
    height: 100%;
}
