.qexo_inner,
.qexo_loader {
  border-radius: 50%;
  position: absolute;
}

.qexo_loading {
  min-height: 200px;
}

.qexo_part {
  min-height: 100px;
}

.qexo_loader {
  background-color: #fff0;
  width: 64px;
  height: 64px;
  perspective: 800px;
}

.qexo_inner {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
}

.qexo_inner.one {
  left: 0;
  top: 0;
  animation: rotate-one 1s linear infinite;
  border-bottom: 3px solid var(--default-text-color);
  position: absolute;
}

.qexo_inner.two {
  right: 0;
  top: 0;
  animation: rotate-two 1s linear infinite;
  border-right: 3px solid var(--default-text-color);
  position: absolute;
}

.qexo_inner.three {
  right: 0;
  bottom: 0;
  animation: rotate-three 1s linear infinite;
  border-top: 3px solid var(--default-text-color);
  position: absolute;
}

@keyframes rotate-one {
  0% {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(0);
  }

  100% {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
  }
}

@keyframes rotate-two {
  0% {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(0);
  }

  100% {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
  }
}

@keyframes rotate-three {
  0% {
    transform: rotateX(35deg) rotateY(55deg) rotateZ(0);
  }

  100% {
    transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
  }
}

.qexo_essays_css h1 {
    font-size: 2.5rem;
    font-weight: bold;
}
.qexo_essays_css h2 {
    font-size: 2rem;
    font-weight: bold;
}
.qexo_essays_css h3 {
    font-size: 1.5rem;
    font-weight: bold;
}
.qexo_essays_css blockquote {
    border: 1px solid var(--border-color);
    border-radius: 12px; 
    padding: 10px;
    margin: 10px 0;
    background: #8883;
}

#shuoshuo-content ol {
    list-style-type: decimal;
    margin-left: 5px;
    padding-left: 5px;
}
#shuoshuo-content ol li {
    list-style: decimal inside;
    margin: 5px 0;
}
#shuoshuo-content ol li::before {
    color: var(--primary-color);
    margin-right: 5px;
}

#shuoshuo-content ul {
    list-style-type: disc;
    margin-left: 5px;
    padding-left: 5px;
}
#shuoshuo-content ul li {
    margin: 5px 0;
}
#shuoshuo-content ul li::before {
    content: "\25CF";
    color: var(--primary-color);
    margin-right: 5px;
}
.qexo_essays_css a {
    color: var(--primary-color);
    text-decoration: underline;
}
.qexo_essays_css table {
    border-collapse: collapse;
}
.qexo_essays_css table, th, td {
    border: 1px solid var(--border-color);
    padding: 8px;
}
.qexo_essays_css th {
    background-color: #8882;
    font-weight: bold;
}
.qexo_essays_css iframe {
    width: 100% !important;
    height: 400px !important;
}
.qexo_essays_css code {
  background-color: #8883;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 10px;
  display: block;
}
