@charset "utf-8";

.scrolldown {

    position: absolute;
    right: 20px;
	bottom: 20px;	
}

.scrolldown span {

    position: absolute;
    left: 10px;
    top: 10px;
    color: #EBD1BE;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;

}

.scrolldown:before {

    content: "";
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #EBD1BE;
    animation:
        circlemove 1.6s ease-in-out infinite,
        cirlemovehide 1.6s ease-out infinite;

}

@keyframes circlemove {

    0% {
        bottom: 45px;
    }

    100% {
        bottom: -5px;
    }

}

@keyframes cirlemovehide {

    0% {
        opacity: 0
    }

    50% {
        opacity: 1;
    }

    80% {
        opacity: 0.9;
    }

    100% {
        opacity: 0;
    }

}

.scrolldown:after {

    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 2px;
    height: 50px;
    background: #EBD1BE;

}