@charset "UTF-8";

.btn-loading{
    position: relative;
    padding-left: 20px;
    &:before{
        font-family: 'anviz' !important;
        content: "\ea3b";
        font-size: @fs-20;
        color: @color-ff;
        animation: rotating 1s infinite linear;
        transform-origin: center center;
        position: absolute;
        left: 0;
        top: 25%;
        transform: translateY(-50%);
    }
}

.loading-parent {
    position: relative;
    .loading {
        position: absolute;
        height: 100%;
        width: 100%;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        opacity: 0.8;
        filter: alpha(opacity=80);
        -webkit-opacity: 0.8;
        -moz-opacity: 0.8;
        -ms-opacity: 0.8;
        -o-opacity: 0.8;
        z-index: 800;
        text-indent: -9999px;
        background: url(../../img/common/ProgressIndicator_White.gif) center 40% no-repeat @color-ff;
    }
    form {
        width: 100%;
        margin: 0;
    }
}