.fg {
    display: none;
}
.iti {
    position: relative !important;
    display: inherit !important;
}
.widthe {
    width: 94% !important;
}
.fa-fw {
    text-align: center;
    width: 1.25em;
    float: right;
    margin-top: -28px;
    /* margin-bottom: 10px; */
}
.loader-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    position: fixed;
    top: 0;
    left: 0;
    /*z-index: 10;*/
    z-index: 9999;
}

.loader-box {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}

#preLoader {
    z-index: 11;
    border: 3px solid #f3f3f3;
    border-radius: 50%;
    border-top: 10px solid #40C2CC;
    width: 60px;
    height: 60px;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}

@@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}


@@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
