.iframe-cover{
  z-index: 9999;
}
.full-logo-wrap {
    background: rgba(255, 255, 255, 0.85);
    width: 100%;
    height: 100%;
    /* min-width: 655px; */
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    font-size: 50px;
    user-select: none;
  }
  .page-is-mobile .logo-text {
    display: none !important;
  }
  .iframe-cover .full-logo-wrap {
    background: rgba(255, 255, 255, 1);
  }
  
  .logo-loading {
    position: absolute;
    left: 50%;
    top: 46%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: nowrap;
  }
  
  .logo-text {
    font-size: 0.9em;
    margin-left: 0.4em;
    color: #51a33d;
  }
  
  .circle {
    background: rgba(255, 255, 255, 0.5);
    box-sizing: content-box;
    height: 1.9em;
    width: 1.9em;
    border-radius: 50%;
    border: solid 0.12em #51a33d;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .bar-list {
    padding: 0;
    text-align: center;
  }
  
  .bar-list-item {
    position: relative;
    width: 0.7em;
    height: 0.12em;
    border-radius: 20px;
    background: #51a33d;
    list-style: none;
  }
  
  .bar-list-item+.bar-list-item {
    margin-top: 0.25em;
  }
  
  
  .column-line {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    width: 30%;
    margin-left: -0.15em;
    /* border: 2px solid #fff; */
    border-radius: 100%;
  }
  
  .column-line-point {
    width: 0.4em;
    height: 0.4em;
    border-radius: 50%;
    background: #fff;
    box-sizing: border-box;
    border: 0.08em solid #51a33d;
  }
  
  .column-line-line {
    height: 0.4em;
    background: #51a33d;
    width: 0.09em;
  }
  
  .bar-list-item:nth-child(0) {
    animation: mymove-0 0.8s infinite;
  }
  
  .bar-list-item:nth-child(1) {
    animation: mymove-1 0.8s infinite;
  }
  
  .bar-list-item:nth-child(2) {
    animation: mymove-2 0.8s infinite;
  }
  
  .bar-list-item:nth-child(3) {
    animation: mymove-3 0.8s infinite;
  }
  
  .bar-list-item:nth-child(1) {
    transform: translateX(0.2em);
  }
  
  .bar-list-item:nth-child(2) {
    transform: translateX(0.02em);
  }
  
  .bar-list-item:nth-child(3) {
    transform: translateX(0.2em);
  }
  
  @keyframes mymove-1 {
    0% {
      transform: translateX(0.15em);
    }
  
    80% {
      transform: translateX(0.04em);
    }
  
    100% {
      transform: translateX(0.12em);
    }
  }
  
  @keyframes mymove-2 {
    0% {
      transform: translateX(0.02em);
    }
  
    40% {
      transform: translateX(0.12em);
    }
  
    100% {
      transform: translateX(0.02em);
    }
  }
  
  @keyframes mymove-3 {
    0% {
      transform: translateX(0.12em);
    }
  
    60% {
      transform: translateX(0.02em);
    }
  
    100% {
      transform: translateX(0.12em);
    }
  }