body.rendering {
  overflow: hidden;
}
div.process {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 9500;
  background: rgba(0, 0, 0, 0.75);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  display: none;
  color: white;
}
div.process .progress {
  width: 200px;
  height: 50px;
  position: relative;
  border: 1px solid #ffb430;
}
div.process .progress::before {
  content: attr(data-value);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
div.process .progress .bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: #ffb430;
  overflow: hidden;
}
div.process .progress .bar::before {
  content: attr(data-value);
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
}
div.process .download_link {
  display: none;
  background: #FFB430;
  height: 50px;
  width: 200px;
  align-items: center;
  justify-content: center;
  color: black;
  text-decoration: none;
  border-radius: 15px;
  border: 1px solid #FFB430;
  box-shadow: 0 0 0 1px white inset;
}
div.process .steps {
  text-align: center;
}
div.process .description {
  display: block;
}
div.process .close {
  position: absolute;
  top: 20px;
  left: 20px;
  cursor: pointer;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  width: 85px;
  height: 85px;
  text-align: center;
  display: none;
  transition: 200ms;
}
div.process .close::before {
  content: '\d7';
  font-size: 2.5em;
  transform-origin: center center;
  transform: rotate(45deg);
  color: white;
  transition: 200ms;
}
div.process .close:hover {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.65) inset;
}
div.process .close:hover::before {
  font-weight: bold;
}
