.loading-exi-bg{
  padding: 5px;
  height:100vh;
  width:100vw;
}

.loading-exi-text{
  position: absolute;
  padding-top: 48vh;
  height:100vh;
  width:100vw;
  background: var(--main-light);
  text-align: center;
  letter-spacing: 10px;
  font-size: 2em;
  z-index: -1;
}

.exi-iframe{
  height:100%;
  width:100%;
  border:none;
  min-height:100%;
  min-width:100%;
  border-radius: 8px;
}

.exi-tips{
    position: absolute;
    bottom: 0px;
    left: 15px;
    padding: 15px 30px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    color: var(--pure-white);
    background: var(--main-color);
    line-height: 1.5;
    letter-spacing: 5px;
    z-index: 1050;
}

.cck-header {
    height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
  
  .cck-content {
    height: 100vh;
    opacity: 1;
  }
  
  .cck-transition {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    background: var(--main-dark);
    z-index: 1;
  }



/* Transition with cover screen */
.with-cover-leave,
.with-cover-enter {
  transition: transform 0.5s cubic-bezier(0.5, 0.7, 0.4, 1);
}

.with-cover-leave .cck-transition {
  transform: translateY(-100%);
}

.with-cover-leave-active .cck-transition {
  transition: transform 0.5s cubic-bezier(0.5, 0.7, 0.4, 1);
}

.with-cover-leave-to .cck-transition {
  transform: translateY(0);
}

.with-cover-leave .cck-content {
  transform: translateY(0);
}

.with-cover-leave-active .cck-content {
  transition: transform 0.5s cubic-bezier(0.5, 0.7, 0.4, 1);
}

.with-cover-leave-to .cck-content {
  transform: translateY(80px);
}

/* Cover down */
.with-cover-enter .cck-transition {
  transform: translateY(0);
}

.with-cover-enter .cck-content {
  transform: translateY(-80px);
}

.with-cover-enter-active .cck-transition,
.with-cover-enter-active .cck-content {
  transition: transform 0.5s cubic-bezier(0.5, 0.7, 0.4, 1);
}

.with-cover-enter-to .cck-transition {
  transform: translateY(100%);
}

.with-cover-enter-to .cck-content {
  transform: translateY(0);
}
