/*!
 * multiscroll.js 0.1.7 Beta
 * https://github.com/alvarotrigo/multiscroll.js
 * @license MIT licensed
 *
 * Copyright (C) 2016 alvarotrigo.com - A project by Alvaro Trigo
 */
 #multiscroll-nav {
    position: fixed;
    z-index: 100;
    margin-top: -32px;
    top: 50%;
    opacity: 1;
}
#multiscroll-nav.right {
    right: 27px;
}
#multiscroll-nav.left {
    left: 27px;
}
#multiscroll-nav ul{
  margin: 0;
  padding: 0;
}
#multiscroll-nav li{
    display: block;
    width: 7px;
    height: 7px;
    margin: 0 0 30px;
    position:relative;
}
#multiscroll-nav li:last-child{
    margin-bottom: 0;
}
#multiscroll-nav li a{
    display: block;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    cursor: pointer;
    text-decoration: none;
}
#multiscroll-nav li .active span{
    background: #222;
    border: 1px solid #222;
}
#multiscroll-nav span{
    top: 0px;
    left: 0px;
    width: 7px;
    height: 7px;
    border: 1px solid #909090;
    background: #909090;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    position: absolute;
    z-index: 1;
}
.multiscroll-tooltip {
    position: absolute;
    color: #fff;
    font-size: 14px;
    font-family: arial, helvetica, sans-serif;
    top: -2px;
    white-space: nowrap;
    max-width: 220px;
}
.multiscroll-tooltip.right {
    right: 20px;
}
.multiscroll-tooltip.left {
    left: 20px;
}
 @media (min-width: 992px){
    html, body {
    	-webkit-tap-highlight-color: rgba(0,0,0,0);
    }
    [class*="ms-viewing-"] #CMSMultiScroll{
        height: 100vh;
        overflow: hidden !important;
    }
    .ms-section {
        position: relative;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
    .ms-section.ms-table{
        display: table;
        width: 100%;
    }
    .ms-tableCell {
        display: table-cell;
        vertical-align: middle;
        width: 100%;
        height: 100%;
    }
    .ms-easing {
        -webkit-transition: all 0.7s ease-out;
        -moz-transition: all 0.7s ease-out;
        -o-transition: all 0.7s ease-out;
        transition: all 0.7s ease-out;
    }
}

@media (max-width: 991px){
    body[class*="ms-viewing-"]{
        overflow: inherit !important;
        height: inherit !important;
        
        #CMSMultiScroll{
            .ms-left,
            .ms-right{
                position: inherit !important;
                left: auto;
                top: auto;
                width: inherit;
            }
            .ms-tableCell{
                height: auto !important;
            }
        }
    }
    .ms-tableCell{
        height: auto !important;
        display: block;
        overflow: hidden;
    }
}