@charset "utf-8";

#nowprocessing {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100002;
  background-color: rgba(255, 255, 255, 0.85);
}

#nowprocessing.show {
  display: flex !important;
  align-items: center;
  justify-content: center;
}

body.nowprocessing-open {
  overflow: hidden;
  position: relative;
}

.nowprocessing-content {
  text-align:center;
  width: 68px;
  height: 68px;
  margin: 0;
  padding-bottom: 100px;
  position: relative;
  background-color: transparent;
  box-sizing: content-box;
}

.spinner {
  display: block;
  width: 68px;
  height: 68px;
  position: absolute;
  top: 0;
  background: transparent;
  box-sizing: border-box;
  border-top: 5px solid #e8a248;
  border-left: 5px solid #e8a248;
  border-right: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-radius: 100%;
  animation: spin 0.6s ease-out infinite;
}
@keyframes spin {
  100% {transform: rotate(360deg)}
}
