﻿.overlay {
    background-color: rgba(0,0,0,0.8);
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: 10;
}

.progress-bar-line {
    height: 20px;
    background: #1da8f2;
    box-shadow: 2px 14px 15px -7px rgba(30, 166, 250, 0.36);
    border-radius: 50px;
    transition: all 0.5s;
}

.progress-bar-container {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
}
.progress-bar-container h2 {
    margin-bottom: 20px;
}
.progress-bar-container .progress {
    height: 70px;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: start;
    padding: 20px;
    background: #e6e9ff;
    border-radius: 20px;
    box-shadow: 0px 10px 50px #abb7e9;
}

@media (min-width: 992px) {
    .progress-bar-container .progress {
        width: 40%;
    }
}

@media (max-width: 992px) {
    .progress-bar-container .progress {
        width: 80%;
    }

    .processingfont{
        font-size: 1.5rem;
        font-family: 'Nunito', sans-serif, Arial;
    }
}