.progress {
    width: 27rem;
    height: 6px;
    border-radius: 2px;
    background: linear-gradient(#1689FC 0 0) 0/0% no-repeat #D7DAE2;
    animation: p2 3s forwards, fadeOut 0.5s 3s forwards;
}

.delete-animation {
    animation: fadeIn 0.1s 3s forwards;
}

@keyframes p2 {
    100% {
        background-size: 110%
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        display: none;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        display: none;
    }

    100% {
        opacity: 1;
    }
}

.start-button-demands-form:disabled {
    color: #1689FC;
    border-color: #1689FC;
    opacity: 40%;
}

#DocReaderViewer.e-control.e-pdfviewer.e-lib {
    min-height: auto !important;
}

#DocReaderViewer_mainContainer {
    min-height: auto !important;
}

    /* width */
    .custom-scrollbar::-webkit-scrollbar {
        width: 10px;
    }

    /* Track */
    .custom-scrollbar::-webkit-scrollbar-track {
        background: #F5F6FA;
    }

    /* Handle */
    .custom-scrollbar::-webkit-scrollbar-thumb {
        background: #3DD1F6; 
        border-radius: 10px;
    }

    /* Handle on hover */
    .custom-scrollbar::-webkit-scrollbar-thumb:hover {
        background: #28A9D0; 
    }