
.full-screen-scroller {
    position: relative;
    /* height: 100%; */
    width: 100%
}

.full-screen-scroller .fss-mainview {
    position: relative;
    width: 100%;
    font-size: 16px;
    vertical-align: bottom;
    white-space: normal
}

@media (max-width: 767px) {
    .full-screen-scroller .fss-mainview {
        height: auto !important;
    }
  }

.full-screen-scroller .fss-dotted-scrollspy {
    display: none !important;
    position: fixed;
    right: 20px;
    top: 50vh;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 1000;
}


.full-screen-scroller .fss-dotted-scrollspy .fss-nav-item.active::after,
.full-screen-scroller .fss-dotted-scrollspy .fss-nav-item:hover::after {
    background: #fff
}


