.view-spin {
    color: $primary-color;
    vertical-align: middle;
    text-align: center;

    &-dot {
        position: relative;
        display: block;
        border-radius: 50%;
        background-color: $primary-color;
        square($spin-dot-size);
        animation: ani-spin-bounce 1s 0s ease-in-out infinite;
    }

    &-large &-dot {
        square($spin-dot-size-large);
    }

    &-small &-dot {
        square($spin-dot-size-small);
    }

    &-fix {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: $zindex-spin;
        display: table;
        square(100%);
        background-color: #fff;
    }

    &-fullscreen{
        opacity: .7
        z-index: $zindex-spin-fullscreen
        &-wrapper{
            position: fixed;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
        }
    }

    &-fix &-main {
        display: table-cell;
        vertical-align: middle;
        square(inherit);
    }

    &-fix &-dot {
        display: inline-block;
    }

    &-text,
    &-show-text &-dot {
        display: none;
    }

    &-show-text &-text {
        display: block;
    }
}

@keyframes ani-spin-bounce {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}
