@charset "utf-8";

.scroll-downs {
    position: fixed;
    top: 0;
    bottom: 0;
    left: -3px;
    right: 0;
    margin: auto;

    width: 34px;
    height: 55px;
    transition: all 1s;
}

.mousey {
    width: 3px;
    padding: 10px 15px;
    height: 35px;
    border: 4px solid #fff;
    border-radius: 25px;
    opacity: 0.75;
    box-sizing: content-box;
}

.scroller {
    width: 3px;
    height: 10px;
    border-radius: 25%;
    background-color: #fff;
    animation-name: scroll;
    animation-duration: 2.2s;
    animation-timing-function: cubic-bezier(.15, .41, .69, .94);
    animation-iteration-count: infinite;
}

.scroller_text{
    position: absolute;
    top: 70px;
    right: -50px;
    font-size: 14px;
    width: 100px;
    color: #fff;
    cursor:default;
}
@keyframes scroll {
    0% {
        opacity: 0;
    }

    10% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}