.waiting {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 103
}

.waiting .mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ccc;
    opacity: .3
}

.waiting .inner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    padding: 5px 10px;
    background-color: #fff;
    height: 30px;
    line-height: 30px;
    font-size: 0;
    text-align: center;
    border: 4px solid #d0daf3;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.waiting .loading, .waiting .text {
    display: inline-block;
    vertical-align: middle
}

.waiting .loading {
    height: 20px;
    padding-left: 20px;
    background: url(/public_build/img/loading.gif) scroll no-repeat
}

.waiting .text {
    font-size: 12px;
    color: #333
}

@-webkit-keyframes rotate_pacman_half_up {
    0% {
        -webkit-transform: rotate(270deg);
        transform: rotate(270deg)
    }
    50% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
    100% {
        -webkit-transform: rotate(270deg);
        transform: rotate(270deg)
    }
}

@keyframes rotate_pacman_half_up {
    0% {
        -webkit-transform: rotate(270deg);
        transform: rotate(270deg)
    }
    50% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
    100% {
        -webkit-transform: rotate(270deg);
        transform: rotate(270deg)
    }
}

@-webkit-keyframes rotate_pacman_half_down {
    0% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg)
    }
    50% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
    100% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg)
    }
}

@keyframes rotate_pacman_half_down {
    0% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg)
    }
    50% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
    100% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg)
    }
}

@-webkit-keyframes pacman-balls {
    75% {
        opacity: .7
    }
    100% {
        -webkit-transform: translate(-100px, -6.25px);
        transform: translate(-100px, -6.25px)
    }
}

@keyframes pacman-balls {
    75% {
        opacity: .7
    }
    100% {
        -webkit-transform: translate(-100px, -6.25px);
        transform: translate(-100px, -6.25px)
    }
}

.welcome {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    background-color: #3498db
}

.pacman {
    left: 50%;
    top: 50%;
    margin-top: -2rem;
    margin-left: -1.5rem;
    position: absolute
}

.pacman > div:nth-child(2) {
    -webkit-animation: pacman-balls 1s -.99s infinite linear;
    animation: pacman-balls 1s -.99s infinite linear
}

.pacman > div:nth-child(3) {
    -webkit-animation: pacman-balls 1s -.66s infinite linear;
    animation: pacman-balls 1s -.66s infinite linear
}

.pacman > div:nth-child(4) {
    -webkit-animation: pacman-balls 1s -.33s infinite linear;
    animation: pacman-balls 1s -.33s infinite linear
}

.pacman > div:nth-child(5) {
    -webkit-animation: pacman-balls 1s 0s infinite linear;
    animation: pacman-balls 1s 0s infinite linear
}

.pacman > div:first-of-type {
    width: 0;
    height: 0;
    border-right: 1.5rem solid transparent;
    border-top: 1.5rem solid #fff;
    border-left: 1.5rem solid #fff;
    border-bottom: 1.5rem solid #fff;
    -webkit-border-radius: 1.5rem;
    border-radius: 1.5rem;
    -webkit-animation: rotate_pacman_half_up .5s 0s infinite;
    animation: rotate_pacman_half_up .5s 0s infinite;
    position: relative;
    left: -1.5rem
}

.pacman > div:nth-child(2) {
    width: 0;
    height: 0;
    border-right: 1.5rem solid transparent;
    border-top: 1.5rem solid #fff;
    border-left: 1.5rem solid #fff;
    border-bottom: 1.5rem solid #fff;
    -webkit-border-radius: 1.5rem;
    border-radius: 1.5rem;
    -webkit-animation: rotate_pacman_half_down .5s 0s infinite;
    animation: rotate_pacman_half_down .5s 0s infinite;
    margin-top: -3rem;
    position: relative;
    left: -1.5rem
}

.pacman > div:nth-child(3), .pacman > div:nth-child(4), .pacman > div:nth-child(5), .pacman > div:nth-child(6) {
    background-color: #fff;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    margin: 1rem;
    width: 1rem;
    height: 1rem;
    position: absolute;
    -webkit-transform: translate(0, -6.25px);
    -ms-transform: translate(0, -6.25px);
    transform: translate(0, -6.25px);
    top: .4rem;
    left: 4.2rem
}

.fade-transition {
    -webkit-transition: .8s opacity linear 0s;
    transition: .8s opacity linear 0s;
    opacity: 1;
    visibility: visible
}

.fade-enter, .fade-leave {
    opacity: 0;
    visibility: hidden
}

.verify-div .input-icon {
    float: right;
    width: 35%;
}

.verify-div img {
    float: left;
    height: 34px;
    width: auto;
    cursor: pointer;
}