
/* 19. scroll indicator */
.scroll-indicator-wrapper {
    position: absolute;
    width: 1px!important;
    height: 100%;
    left: 0;
    right: 0;
    bottom: 10px;
    margin-left: auto;
    margin-right: auto;
    opacity: 1;
    -moz-opacity: 1;
    -webkit-opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    visibility: visible;
    -webkit-transition: all .7s;
    -moz-transition: all .7s;
    -ms-transition: all .7s;
    -o-transition: all .7s;
    transition: all .7s;
}

@media only screen and (max-width: 768px) {
    .scroll-indicator-wrapper {
        bottom: 10px;
    }
}

@media only screen and (max-width: 640px) {
    .scroll-indicator-wrapper.no-scroll-indicator {
        display: none;
        visibility: hidden;
    }
}

.scroll-indicator-wrapper.scroll-indicator-wrapper-position-secondary {
    opacity: 0;
    -moz-opacity: 0;
    -webkit-opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    visibility: hidden;
    -webkit-transform: translateY(200px);
    -moz-transform: translateY(200px);
    -ms-transform: translateY(200px);
    -o-transform: translateY(200px);
    transform: translateY(200px);
    -webkit-transition: all .7s;
    -moz-transition: all .7s;
    -ms-transition: all .7s;
    -o-transition: all .7s;
    transition: all .7s;
}

.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    -webkit-transform: translate(-50%, 50%);
    -moz-transform: translate(-50%, 50%);
    -ms-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
    z-index: 1005;
}

@media all and (min-width: 1920px) {
    .scroll-indicator {
        bottom: 20px;
    }
}

.scroll-line {
    display: block;
    width: 1px;
    height: 50px;
    background: none;
}

@media all and (min-width: 1920px) {
    .scroll-line {
        height: 60px;
    }
}

.scroll-line::before {
    content: "";
    display: block;
    width: 1px;
    height: 50%;
    top: 0;
    background-color: #fff;
    -webkit-animation: scroll-down 2s ease-in-out infinite;
    -ms-animation: scroll-down 2s ease-in-out infinite;
    animation: scroll-down 2s ease-in-out infinite;
}

@-webkit-keyframes scroll-down {
    0% {
        height: 0;
    }
    50% {
        height: 100%;
    }
    70% {
        height: 100%;
        transform: scaleY(0.5);
        transform-origin: bottom;
    }
    100% {
        height: 100%;
        transform: scaleY(0);
        transform-origin: bottom;
    }
}
@-ms-keyframes scroll-down {
    0% {
        height: 0;
    }
    50% {
        height: 100%;
    }
    70% {
        height: 100%;
        transform: scaleY(0.5);
        transform-origin: bottom;
    }
    100% {
        height: 100%;
        transform: scaleY(0);
        transform-origin: bottom;
    }
}
@keyframes scroll-down {
    0% {
        height: 0;
    }
    50% {
        height: 100%;
    }
    70% {
        height: 100%;
        transform: scaleY(0.5);
        transform-origin: bottom;
    }
    100% {
        height: 100%;
        transform: scaleY(0);
        transform-origin: bottom;
    }
}
