.jdw-scroll-bar-wrap {
    right: 0;
    bottom: 32%;
    z-index: 100998;
    position: fixed;
}

.jdw-scroll-bar-wrap > ul {
    margin: 0;
    padding: 0;
    width: 50px;
}

.jdw-scroll-bar-wrap > ul > li {
    margin: 0;
    width: 50px;
    height: 50px;
    font-size: 1em;
    list-style: none;
    position: relative;
    transition: all .7s;
    border-bottom: 1px solid #FFF;
}

.jdw-scroll-bar-wrap > ul > li > a {
    top: 0;
    right: 0;
    z-index: 11;
    left: unset;
    width: 50px;
    height: 50px;
    bottom: unset;
    color: inherit;
    display: block;
    font-size: 22px;
    line-height: 50px;
    text-align: center;
    position: absolute;
    background-color: inherit;
}

.jdw-scroll-bar-wrap > ul > li > a > img {
    fill: #FFF;
    width: 30px;
    height: 30px;
    margin-top: 10px;
}

.jdw-scroll-bar-wrap p.single-line-text {
    margin: 0;
    z-index: 9;
    font-size: 1em;
    font-weight: 600;
    max-height: 50px;
    overflow: hidden;
    line-height: 50px;
    padding: 0 60px 0 15px;
}

.jdw-scroll-bar-wrap .item-content-wrap {
    top: 60%;
    opacity: 0;
    z-index: 9;
    right: 50px;
    padding: 10px;
    overflow: hidden;
    visibility: hidden;
    position: absolute;
    transition: all .7s;
    box-sizing: border-box;
    transform: translateY(-50%);
}

.jdw-scroll-bar-wrap .item-content-wrap .item-content-container {
    padding: 0;
    color: #333;
    width: 400px;
    height: 400px;
    display: block;
    position: relative;
    background-color: #FFF;
    box-sizing: border-box;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .5);
}

.jdw-scroll-bar-wrap .type-image .item-content-wrap .item-content-container {
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jdw-scroll-bar-wrap .item-content-container:after {
    top: 50%;
    width: 0;
    height: 0;
    left: 100%;
    content: "";
    position: absolute;
    transform: translateY(-50%);
    border-left: 10px solid #FFF;
    border-top:10px solid transparent;
    border-bottom: 10px solid transparent;
}

.jdw-scroll-bar-wrap .item-content-container .item-content {
    width: 100%;
    height: 100%;
    overflow: scroll;
    box-sizing: border-box;
}

.jdw-scroll-bar-wrap .type-image .item-content-container .item-content {
    overflow: hidden;
}

.jdw-scroll-bar-wrap .item-content-container .item-content > * {
    max-width: 100%;
    max-height: 100%;
}

.jdw-scroll-bar-wrap .type-image .item-content-wrap .item-content-container img {
    width: 100%;
    max-width: 100%;
}

.jdw-scroll-bar-wrap > ul > li.has-line-text:hover {
    width: 230px;
    transform: translateX(-180px);
}

.jdw-scroll-bar-wrap > ul > li.has-content.open .item-content-wrap,
.jdw-scroll-bar-wrap > ul > li.has-content:hover .item-content-wrap {
    top: 50%;
    opacity: 1;
    visibility: visible;
}

.jdw-scroll-bar-wrap > ul > li > a:hover {
    color: inherit;
    background-color: inherit;
}

#jdw-back-top {
    display: none;
}

@media (max-width: 1024px) {
    .jdw-scroll-bar-wrap {
        right: 0;
        bottom: 0;
        width: 100%;
    }

    .jdw-scroll-bar-wrap > ul {
        width: 100%;
        display: flex;
    }

    .jdw-scroll-bar-wrap > ul > li {
        flex: 1;
        width: 100%;
        position: static;
        border-bottom: 0;
    }

    .jdw-scroll-bar-wrap > ul > li > a {
        width: 100%;
        position: static;
    }

    .jdw-scroll-bar-wrap p.single-line-text {
        display: none;
    }

    .jdw-scroll-bar-wrap > ul > li.has-content .item-content-wrap {
        right: 0;
        bottom: 0;
        top: unset;
        transform: translate(0, 100%);
    }

    .jdw-scroll-bar-wrap > ul > li.has-line-text:hover {
        width: unset;
        transform: none !important;
    }

    .jdw-scroll-bar-wrap > ul > li.has-content:hover .item-content-wrap {
        top: unset;
    }

    .jdw-scroll-bar-wrap > ul > li.has-content.type-image .item-content-wrap {
        width: 100vw;
    }

    .jdw-scroll-bar-wrap > ul > li.has-content.open .item-content-wrap {
        right: 0;
        opacity: 1;
        bottom: 50px;
        width: 100vw;
        display: block;
        max-width: 100vw;
        visibility: visible;
        transform: translate(0, 0);
    }

    .jdw-scroll-bar-wrap .item-content-wrap .item-content-container {
        margin: 0 auto;
        max-width: calc(100vw - 20px);
    }

    .jdw-scroll-bar-wrap li.has-content .item-content-container:after {
        left: 50%;
        top: 100%;
    }

    .jdw-scroll-bar-wrap li.has-content.open .item-content-container:after {
        left: 50%;
        top: 100%;
        border-top:10px solid #FFF;
        transform: translate(-50%, 0);
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
    }
}