.icon-scroll,
.icon-scroll:before {
    position: absolute;
    left: 50%;
}

.icon-scroll {
    opacity: 0.4;
    width: 30px;
    height: 50px;
    bottom: 3%;
    box-shadow: inset 0 0 0 1px #FFF;
    border-radius: 25px;
    z-index: 6;
}

.icon-scroll:before {
    content: '';
    width: 4px;
    height: 4px;
    background: #FFF;
    margin-left: -2px;
    top: 8px;
    border-radius: 4px;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: scroll;
    animation-name: scroll;
}

@-webkit-keyframes scroll {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }
}


/* account-details */

.underpage {
    background-image: url('../images/azeroth-map.png');
    background-size: 150% auto;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-animation-duration: 150s;
    animation-duration: 150s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: map;
    animation-name: map;
}

@-webkit-keyframes map {
    0% {
        background-position: center center;
    }
    25% {
        background-position: right top 50px;
    }
    75% {
        background-position: left -100px bottom -50px;
    }
    100% {
        background-position: center center;
    }
}

@keyframes map {
    0% {
        background-position: center center;
    }
    25% {
        background-position: right top;
    }
    50% {
        background-position: left center;
    }
    75% {
        background-position: right bottom;
    }
}