 
body cub3-splash-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #FFFFFF;
    color: #F9FAFB;
    z-index: 999999;
    pointer-events: none;
    opacity: 1;
    visibility: visible;
    transition: opacity 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

body cub3-splash-screen img {
    width: 120px;
    max-width: 120px;
    margin: auto;
    animation: threadskeleton 3s ease-in-out forwards infinite;
}

body cub3-splash-screen .spinner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
    width: 56px;
}

body cub3-splash-screen .spinner > div {
    width: 12px;
    height: 12px;
    background-color: #1E96F7;
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: cub3-bouncedelay 1s infinite ease-in-out both;
    animation: cub3-bouncedelay 1s infinite ease-in-out both;
}

body cub3-splash-screen .spinner .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

body cub3-splash-screen .spinner .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

@-webkit-keyframes cub3-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0)
    }
    40% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes cub3-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    40% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
}

body:not(.cub3-splash-screen-hidden) {

    overflow: hidden;
}

body.cub3-splash-screen-hidden cub3-splash-screen {
    visibility: hidden;
    opacity: 0;
}
/*body.cub3Carregando cub3-splash-screen {
  visibility: visible;
  opacity: 1;
  pointer-events: none;
  background-color: rgba(255,255,255,.7);
}
*/
body .container-splash {
  margin: auto auto 30vh auto;
  position: absolute;
  bottom: 0;
  left: 0;
  top: 0;
  right: 0;
  height: 300px;
  width: 300px;
}
body .container-splash .dot {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 60.5%;
  left: 150px;
  height: 10px;
  width: 10px;
  background-color:#673ab7;
  border-radius: 5rem;
}
body .container-splash .dot:nth-child(1) {
  left: 80px;
  animation: waveUp 2s, smallExtend 2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
body .container-splash .dot:nth-child(2) {
  left: 115px;
  animation: waveUp 2s, largeExtend 2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-delay: 0.15s;
}
body .container-splash .dot:nth-child(3) {
  animation: waveUp 2s, smallExtend 2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-delay: 0.3s;
}
body .container-splash .dot:nth-child(4) {
  left: 185px;
  animation: waveUp 2s, largeExtend 2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-delay: 0.45s;
}
body .container-splash .dot:nth-child(5) {
  left: 220px;
  animation: waveUp 2s, smallExtend 2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-delay: 0.6s;
}
@keyframes waveUp {
  0%,
  15% {
    top: 60%;
  }
  45%,
  65% {
    top: 22.5%;
  }
  85%,
  100% {
    top: 60%;
  }
}
@keyframes smallExtend {
  0%,
  8% {
    background-color: #909090;
    height: 10px;
  }
  14%,
  34% {
    background-color: #F8F8F8;
    height: 27.5px;
  }
  46%,
  100% {
    background-color: #909090;
    height: 10px;
  }
}
@keyframes largeExtend {
  0%,
  8% {
    background-color: #909090;
    height: 10px;
  }
  14%,
  34% {
    background-color: #F8F8F8;
    height: 42.5px;
  }
  46%,
  100% {
    background-color: #909090;
    height: 10px;
  }
}



@keyframes threadskeleton {
  0%, 20% {
    opacity: 0;
    transform: translateY(100%);
  }
  
  40%, 85% {
    opacity: 1;
    transform: translateY(0);
  }
  
  100% {
    opacity: 0;
    transform: scale(0.6) translateY(0);
  }
}