.PopMe, .Progressbarback {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(0, 0, 0, 0.5) !important;
    z-index: 999999 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    opacity: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.Progressbarback > div {
    background: #ffffff !important;
    position: relative !important;
    margin: auto !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
    padding: 25px 35px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    border: none !important;
}

.ProgCss {
    width: 100%;
    position: relative;
    color: #bc6877;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.MakeMe-Spin {
    width: 50px;
    height: 50px;
    -webkit-animation: spin 1.5s linear infinite;
    -moz-animation: spin 1.5s linear infinite;
    -o-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}

.loading-text {
    width: 100%;
    color: #333333;
    background: transparent;
    margin-top: 12px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

@-webkit-keyframes spin {
    100% { -webkit-transform: rotate(360deg); }
}

@-moz-keyframes spin {
    100% { -moz-transform: rotate(360deg); }
}

@-ms-keyframes spin {
    100% { -ms-transform: rotate(360deg); }
}
