@media screen and (min-width: 1280px) {
    #divWrapper {
        max-width: 1280px;
        margin: auto;
        border: 1px solid #ecf0f5;
        width: 100%;
    }

    #divWrapperHeader {
        max-width: 1280px;
        margin: auto;
        border: 1px solid #ecf0f5;
        width: 100%;
    }

    #divWrapperFooter {
        max-width: 1280px;
        margin: auto;
        border: 1px solid #ecf0f5;
        width: 100%;
    }
}

#divWrapper {
    margin: auto;
    border: 1px solid #ecf0f5;
    background: #fff;
}

#divWrapperHeader {
    margin: auto;
    border: 1px solid #ecf0f5;
    background: #fff;
}

#divWrapperFooter {
    margin: auto;
    border: 1px solid #ecf0f5;
    width: 100%;
    background: #fff;
}


.content-wrapper {
    background: none !important;
}

#enbleScroll, #contentwrapper {
    background: url("../images/background_fingerprint.png") left,url("../images/background_fingerprint.png") no-repeat top,url("../images/background_fingerprint.png") no-repeat right,url("../images/background_fingerprint.png") repeat bottom;
    background-size: 25%;
    -webkit-animation: left-right 8s infinite; /* Chrome, Safari, Opera */
    animation: left-right 8s infinite;
    animation-delay: 2s;
    opacity: 1
}

/* Chrome, Safari, Opera */
@-webkit-keyframes left-right {
    50% {
        background-position: left center;
    }
}
/* Standard syntax */
@keyframes left-right {
    50% {
        background-position: left center;
    }
}





@import url('https://fonts.googleapis.com/css2?family=Rubik&display=swap');


:root {
    --line-border-fill: #3498db;
    --line-border-empty: #e0e0e0;
}





.containerinfo {
    margin-top: 15px;
    text-align: center;
}

.progressInfo-containerinfo::before {
    content: "";
    background: var(--line-border-empty);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 4px;
    width: 100%;
    /*z-index: -1;*/
}

.progressInfo-containerinfo {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 30px;
    max-width: 100%;
    width: 350px;
}

.progressInfoField-containerinfo {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 30px;
    max-width: 100%;
    width: 350px;
}

.progressInfoField {
    background: var(--line-border-fill);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 4px;
    width: 0%;
    z-index: -1;
    transition: 0.4s ease;
}

.progressInfo {
    background: #425d9a;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 4px;
    width: 0%;
    /*z-index: -1;*/
    transition: 0.4s ease;
    /*-moz-animation: lineAnim 1s linear infinite;*/
    /*animation: lineAnim 1s linear infinite;*/
}

.circle {
    background: #fff;
    color: #999;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--line-border-empty);
    transition: .4s ease;
}

    .circle.active {
        border-color: #fff;
        background-color: #28a745;
        content: '';
    }
/*
 
.btn {
    background-color: var(--line-border-fill);
    color: #fff;
    cursor: pointer;
    font-family: inherit;
    border: 0;
    border-radius: 6px;
    padding: 8px 30px;
    margin: 5px;
    font-size: 14px;
}

    .btn:active {
        transform: scale(0.98);
    }

    .btn:focus {
        outline: 0;
    }

    .btn:disabled {
        background-color: var(--line-border-empty);
        cursor: not-allowed;
    }*/

.loader-line {
    width: 100px;
    height: 3px;
    position: relative;
    overflow: hidden;
    background-color: #ddd;
    /*margin: 100px auto;*/
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}

    .loader-line:before {
        content: "";
        position: absolute;
        left: -50%;
        height: 3px;
        width: 40%;
        background-color: #3498db;
        -webkit-animation: lineAnim 1s linear infinite;
        -moz-animation: lineAnim 1s linear infinite;
        animation: lineAnim 1s linear infinite;
        -webkit-border-radius: 20px;
        -moz-border-radius: 20px;
        border-radius: 20px;
    }

@keyframes lineAnim {
    0% {
        left: 0%;
    }

    50% {
        left: 20%;
        width: 80%;
    }

    100% {
        left: 100%;
        width: 100%;
    } 
}

@keyframes lineAnim1 {
    0% {
        left: 0%;
    }

    100% {
        width: 50%;
    }
}

@keyframes lineAnim2 {
    0% {
        left: 0%;
        /* width: 10%; */
    }
   
    100% {
        /* left: 100%; */
        width: 100%;
    }
}
