.divLoading {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: center no-repeat #080808;
}

.divLoading2 {
    position: fixed;
    left: 0px;
    top: 45%;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: center no-repeat;
}

.errMsg {
    margin-top: 5px;
    margin-bottom: 5px;
    color: #dd4b39;
    position: relative;
}

.point {
    pointer-events: none;
}

.colorredStatus {
    color: red;
    font-weight: bold;
}

.colorGreenStatus {
    color: green;
    font-weight: bold;
}
.blinking {
    animation: blinkingText 1.5s infinite;
}

@keyframes blinkingText {
    0% {
        color: green;
    }

    49% {
        color: transparent;
    }

    50% {
        color: green;
    }

    99% {
        color: green;
    }

    100% {
        color: green;
    }
}
.form-control-file {
        width: 100%;
        color: #1370b1;
    }

        .form-control-file::-webkit-file-upload-button {
            letter-spacing: 1px;
            /*padding: 9px 20px;*/
            text-shadow: none;
            font-size: 12px;
            color: #fff;
            font-weight: normal;
            white-space: normal;
            word-wrap: break-word;
            transition: .2s ease-out;
            touch-action: manipulation;
            cursor: pointer;
            background-color: #1370b1;
            box-shadow: 0px 0px 15px 1px rgba(113, 106, 202, 0.2);
            will-change: opacity, transform;
            transition: all 0.3s ease-out;
            -webkit-transition: all 0.3s ease-out;
            border-radius: 4px;
            border: transparent;
            outline: none;
            padding: .84rem 2.14rem;
        }

        .form-control-file::-ms-file-upload-button {
            letter-spacing: 1px;
            padding: 9px 20px;
            text-shadow: none;
            font-size: 14px;
            color: #fff;
            font-weight: normal;
            white-space: normal;
            word-wrap: break-word;
            transition: .2s ease-out;
            touch-action: manipulation;
            cursor: pointer;
            background-color: #005c32;
            box-shadow: 0px 0px 15px 1px rgba(113, 106, 202, 0.2);
            will-change: opacity, transform;
            transition: all 0.3s ease-out;
            -webkit-transition: all 0.3s ease-out;
            border-radius: 4px;
            border: transparent;
            outline: none;
        }

        .form-control-file.form-control-file-rounded::-webkit-file-upload-button {
            -webkit-border-radius: 1.875rem !important;
            -moz-border-radius: 1.875rem !important;
            -ms-border-radius: 1.875rem !important;
            -o-border-radius: 1.875rem !important;
            border-radius: 1.875rem !important;
        }