.loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.loading-container .loading-circular {
  display: inline;
  height: 42px;
  width: 42px;
  animation: loading-rotate 2s linear infinite;
}
.loading-container .loading-circular .loading-path {
  animation: loading-dash 1.5s ease-in-out infinite;
  stroke-dasharray: 90, 150;
  stroke-dashoffset: 0;
  stroke-width: 2;
  stroke: #ccc;
  stroke-linecap: round;
}
.loading-container .loading-text {
  margin: 0.5em 0;
}

@keyframes loading-rotate {
  to {
    transform: rotate(360deg);
  }
}
@keyframes loading-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -40px;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -120px;
  }
}
.error-inner {
  box-sizing: border-box;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.button {
  margin: 0 auto;
  display: inline-flex;
  font-size: 14px;
  height: 32px;
  color: #409eff;
  border-color: #409eff;
  background: #fff;
  box-shadow: none;
  border-radius: 5px;
  outline: none;
  padding: 8px 15px;
  box-sizing: border-box;
  border-width: 1px;
  border-style: solid;
  vertical-align: middle;
  align-items: center;
  user-select: none;
}
.button:hover {
  cursor: pointer;
  color: #fff;
  background-color: #409eff;
}

.app-iconify {
  display: inline-block;
  vertical-align: middle;
}
.app-iconify-spin svg {
  animation: loadingCircle 1s infinite linear;
}

span.iconify {
  display: block;
  min-width: 1em;
  min-height: 1em;
  border-radius: 100%;
}

.svg-icon {
  width: 1em;
  height: 1em;
  vertical-align: middle;
  fill: currentcolor;
}

.pdf-render .inner {
  margin: 10vh 0 0;
}
.pdf-render canvas {
  width: 100%;
}
.pdf-render .pdf-pages-wrapper {
  border: 1px solid #cfcfcf;
}
.pdf-render .pdf-pages-wrapper + .pdf-pages-wrapper {
  margin-top: 10px;
}

.excel-render .inner {
  margin: 10vh 0 0;
}
.excel-render .excel-render-wrap {
  min-height: 300px;
}
.excel-render .excel-render-wrap table {
  border: 1px solid;
  border-collapse: collapse;
  min-width: 100%;
}
.excel-render .excel-render-wrap table td {
  border: 1px solid #72767b;
  font-size: 12px;
  padding: 10px;
  text-align: center;
  color: #000;
}