.mask {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 60px;
    overflow: hidden;
    background: white;
    box-shadow: 0 0 10px #00143c;
    z-index: 999;
}

.mask p {
    font-size: 14px;
    color: #00143c;
    line-height: 60px;
}

.mask p img {
    float: left;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 20px 10px 20px 20px;
}

.mask p span {
    float: left;
    display: inline-block;
}

.disabled{
    pointer-events:none;
}

.loading-animation{
    display: inline-block;
    height: 15px;
    width: 15px;
    border-radius: 100%;
    margin: 6px;
    border: 2px solid #666;
    border-bottom-color: transparent;
    vertical-align: middle;
    -webkit-animation: rotate 0.75s linear infinite;
    animation: rotate 0.75s linear infinite;
}

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
    }
    50% {
        -webkit-transform: rotate(180deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
    100% {
        transform: rotate(360deg);
    }
}