[v-cloak] {
  display: none;
}


#loading{
    width: 120px;
    height: 120px;
    box-sizing: border-box;
    border-radius: 50%;
    position: fixed;
    top: calc(50% - 60px);
    left: calc(50% - 60px);
    z-index: 999;
    background: radial-gradient(circle, rgba(0,0,0,.05) 0%, rgba(0,0,0,0) 95%, rgba(0,0,0,0) 100%);
}
.hidden {
    display: none;
}
.formLoader {
  overflow: hidden;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.formLoader ul {
  height: 100%;
  position: absolute;
  width: 50px;
  z-index: 999999;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@keyframes preload {
  0% {
    background: #ffd733;
    opacity: 1
  }
  50% {
    background: #fff;
    opacity: 0.5
  }
  100% {
    background: #ffd733;
    opacity: 1
  }
}

.formLoader .formLoading {
  height: 14px;
}

.formLoader .formLoading li {
  background: #fff;
  opacity: 0.5;
  display: block;
  width: 16px;
  min-width: 16px;
  height: 16px;
  border: 1px solid #452f24;
  line-height: 16px;
  padding: 0;
  margin: 0 0 0 6px;
  animation: preload 1s infinite;
  border-radius: 50%;
}

.formLoader .formLoading li:first-child {
  margin-left: 0
}

.formLoader .formLoading li:nth-child(2) {
  animation-delay: .15s
}

.formLoader .formLoading li:nth-child(3) {
  animation-delay: .3s
}

.formLoader.formLoader-complete {
  opacity: 0;
  visibility: hidden;
  transition-duration: 2s
}

