.input.without-ring:focus,
.input.without-ring:focus-within,
.select.without-ring:focus {
  outline-width: 0px;
  outline-offset: 0px;
}

.just-validate-error-label {
  font-size: 13px;
}

.btn.is-loading {
  .loading-spinner {
    display: inline-block;
  }
}
.modalbox-content-main.scroll {
  padding: 0 12px;
  max-height: calc(90dvh - 135px);
  overflow-y: auto;
}
.new-btn {
  position: relative;
  overflow: hidden;
  background: #eaeaea;
}

.new-btn::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent, white, transparent);
  left: -100%;
  animation: newEffect 2s infinite;
}
.new-btn-2 {
  position: relative;
  overflow: hidden;
  background: #e9e9e9b8;
}

.new-btn-2::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent, white, transparent);
  left: -100%;
  animation: newEffect 2s infinite;
}

@keyframes newEffect {
    0% {
      left: -100%;
    }
    100% {
      left: 100%;
    }
}

/* My profile progress bubble */
/* Bubble */
.bubble {
  position: relative;
  display: inline-block;
  margin: 20px;
  text-align: center;
  /* font-family: 'Press Start 2P', cursive; */
  font-size: 16px;
  font-weight: bold;
  line-height: 1.3em;
  background-color: #fff;
  color: #000;
  padding: 12px;
  box-shadow: 0 -4px #fff, 0 -8px #0C2340, 4px 0 #fff,
    4px -4px #0C2340, 8px 0 #0C2340, 0 4px #fff,
    0 8px #0C2340, -4px 0 #fff, -4px 4px #0C2340,
    -8px 0 #0C2340, -4px -4px #0C2340,
    4px 4px #0C2340;
  box-sizing: border-box;
  width: 200px;
}
.bubble::after {
  content: "";
  display: block;
  position: absolute;
  box-sizing: border-box;
}
.bubble.mini {
  width: 110px;
  /* font-size: 13px; */
  padding: 4px;
}

.bubble.top::after {
  height: 4px;
  width: 4px;
  top: -8px;
  left: 32px;
  box-shadow: 0 -4px #0C2340, 0 -8px #0C2340,
    0 -12px #0C2340, 0 -16px #0C2340,
    -4px -12px #0C2340, -8px -8px #0C2340,
    -12px -4px #0C2340, -4px -4px #fff, -8px -4px #fff,
    -4px -8px #fff, -4px 0 #fff, -8px 0 #fff, -12px 0 #fff;
}
.bubble.right::after {
  height: 4px;
  width: 4px;
  top: 84px;
  right: -8px;
  background: white;
  box-shadow: 4px -4px #fff, 4px 0 #fff, 8px 0 #fff, 0 -8px #fff,
    4px 4px #0C2340, 8px 4px #0C2340,
    12px 4px #0C2340, 16px 4px #0C2340,
    12px 0 #0C2340, 8px -4px #0C2340,
    4px -8px #0C2340, 0 -4px #fff;
}
.bubble.bottom::after {
  height: 4px;
  width: 4px;
  bottom: -8px;
  left: 32px;
  box-shadow: 0 4px #0C2340, 0 8px #0C2340,
    0 12px #0C2340, 0 16px #0C2340,
    -4px 12px #0C2340, -8px 8px #0C2340,
    -12px 4px #0C2340, -4px 4px #fff, -8px 4px #fff, -4px 8px #fff,
    -4px 0 #fff, -8px 0 #fff, -12px 0 #fff;
}
.bubble.left::after {
  height: 4px;
  width: 4px;
  top: 20px;
  left: -8px;
  background: white;
  box-shadow: -4px -4px #fff, -4px 0 #fff, -8px 0 #fff, 0 -8px #fff,
    -4px 4px #0C2340, -8px 4px #0C2340,
    -12px 4px #0C2340, -16px 4px #0C2340,
    -12px 0 #0C2340, -8px -4px #0C2340,
    -4px -8px #0C2340, 0 -4px #fff;
}

.lds-ring {
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid #fff;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #fff transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}