.isv-common-loading-wrapper {
  position: relative
}

.isv-common-loading{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 2px;
  background: rgb(254 219 30);
  border-radius: 50%;
}

.isv-common-loading.isv-show{
  display: flex;
}

.isv-common-loading-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
}

@keyframes isv_blink {
    0% {
        opacity: .2
    }

    20% {
        opacity: 1
    }

    to {
        opacity: .2
    }
}

.isv-animate-blink {
  animation: isv_blink 1.4s infinite both;
}
.isv-animation-delay-200ms{
  animation-delay:.2s;
}
.isv-animation-delay-400ms{
  animation-delay:.4s;
}