.vf-ring {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 144px;
  height: 144px;
}
.vf-ring img {
  height: 48px;
  width: 48px;
}
.vf-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 96px;
  height: 96px;
  margin: 8px;
  border: 8px solid hsl(321, 100%, 20%);
  border-radius: 50%;
  animation: vf-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: hsl(321, 100%, 20%) transparent transparent transparent;
}
.vf-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.vf-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.vf-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
.vf-widget-loader {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.vf-full-page-loader {
  position: fixed;
  height: 100vh;
  width: 100vw;
  top: 0;
  left: 0;
  z-index: 3;
}
@keyframes vf-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
