.ring {
    display: block;
    position: relative;
    width: 80px;
    height: 80px;
    margin: calc(50vh - 40px) auto 0;
}

.ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid #cfcfcf;
    border-radius: 50%;
    animation: ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #cfcfcf transparent transparent transparent;
}

.ring div:nth-child(1) {
    animation-delay: -0.45s;
}

.ring div:nth-child(2) {
    animation-delay: -0.3s;
}

.ring div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
@keyframes rotation {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(359deg);
    }
  }
  
  @keyframes rotation-reverse {
    from {
      transform: rotate(359deg);
    }
    to {
      transform: rotate(0deg);
    }
  }
  
  @keyframes zoom-in-zoom-out {
    0% {
      transform: scale(1, 1);
    }
    50% {
      transform: scale(1.3, 1.3);
    }
    100% {
      transform: scale(1, 1);
    }
  }

  
.reactour__popover {
  border-radius: 15px;
}

.reactour__close-button {
  top: 15px !important;
  right: 15px !important;
  display: block;
  padding: 0px;
  border: 0px;
  background: none;
  cursor: pointer;
  position: absolute;
  width: 9px;
  height: 9px;
  --rt-close-btn: #5e5e5e;
  --rt-close-btn-disabled: #000;
}

.reactour__badge {
  position: absolute;
  font-family: monospace;
  background: var(--reactour-accent, #d10b11);
  height: 1.875em;
  line-height: 2;
  padding-left: 0.8125em;
  padding-right: 0.8125em;
  font-size: 1em;
  border-radius: 1.625em;
  color: white;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 0.25em 0.5em;
  top: -0.8125em;
  left: -0.8125em;
}

.reactour__button-wrapper {
  display: flex;
  margin-top: 24px;
  align-items: center;
  justify-content: space-between;
}

.reactour__step-button {
  display: block;
  padding: 0px;
  border: 0px;
  background: none;
  cursor: pointer;
}

.reactour__step-button:disabled {
  cursor: auto;
}

.reactour__step-button svg {
  color: rgb(68, 68, 68);
  width: 16px;
  height: 12px;
  flex: 0 0 16px;
}

.reactour__step-button:disabled svg {
  color: rgb(202, 204, 206);
}

.reactour__dot-wrapper {
  color: rgb(83, 83, 83);
  font-size: 14px;
}