.progress-loader {
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    text-align: center;
    transition: opacity 0.5s ease;
}

.progress-container {
    width: 150px;
    background: rgba(236, 236, 238, 0.253);
    height: 3px;
    border-radius: 7px;
    overflow: hidden;
}

.progress {
    width: 0%;
    height: 3px;
    border-radius: 7px;
    background: rgb(0, 0, 0);
    transition: width 0.5s;
}

.progress-percent {
    margin-top: 10px;
    color: black;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

.progress-back {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    background: white;
    height: 100%;
    z-index: 1;
}

.logo {
    width: 100%;
    height: 100px;
    padding: 20px;
}