

#bsodBackground {
    display: block;
    margin-left: auto;
    margin-right: auto;
    z-index: -5;
 }

 #bsod {
    display: block;
    margin-left: auto;
    margin-right: auto;
 }

/* The Retry Modal (background) */
.retryModal {
    display: none; /* Hidden by default*/
    position: fixed; /* Stay in place*/
    z-index: 1; /*Sit on top*/
    left: 0;
    top: 0;
    width: 100%; /*Full width*/
    height: 100%; /*Full height*/
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0); /* Black w/ opacity */
    /*padding-top: 60px;*/
    justify-content: center;
    align-items: center;
  }
  
  /* Modal Content */
  .retry-modal-content {
    background-color: #fefefe00;
    margin: 5% auto;
    padding: 0px;
    border: 1px solid #88888800;
    width: 80%;
    max-width: 300px;
    box-shadow: 3px 3px 8px rgba(149, 149, 149, 0.935);
    border-radius: 10px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
  /* The Close Button */
  .close {
    color: #aaaaaa00;
    float: right;
    font-size: 20px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: #00000000;
    text-decoration: none;
    cursor: pointer;
  }

  #retryBtn {
    z-index: 2;
    position: relative;
    /*margin-top: 100px;*/
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
  }

  /* OK button */
.ok-button {
    display: block;
    margin: 20px auto 0;
    /*padding: 10px 20px;*/
    /*background-color: #4CAF50;
    color: white;
    border: none;*/
    border-radius: 5px;
    cursor: pointer;
    /*font-size: 16px;*/
}

 /*progress bar*/ 
 .progress-container {
    width: 80%;
    max-width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; 
}




progress {
    width: 100px;
    height: 20px;
    -webkit-appearance: none;
    appearance: none;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    overflow: hidden;
    position: relative;

    z-index: 2;
   display: block;
  justify-content: center;
  align-items: center;
}

/* Styling the inner bar */
progress::-webkit-progress-bar {
    background-color: #fff;
}

progress::-webkit-progress-value {
    background: linear-gradient(90deg, #00f 25%, #0f0 75%);
    background-size: 200% 100%;
    animation: progress-animation 1s linear infinite;
}

progress::-moz-progress-bar {
    background: linear-gradient(90deg, #00f 25%, #0f0 75%);
    background-size: 200% 100%;
    animation: progress-animation 1s linear infinite;
}

@keyframes progress-animation {
    0% {
        background-position: 0% 0;
    }
    100% {
        background-position: 100% 0;
    }
}