

.veil {
  position: absolute;
  z-index: 100;
  text-align: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.veil .underlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background-color: black; /* Assuming $black is black */
}

.spinner {
  width: 80px; /* Assuming $spinner-size is 80px */
  height: 80px; /* Assuming $spinner-size is 80px */
  text-align: center;
  animation: sk-rotate 2s infinite linear;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -40px; /* $spinner-size / 2 * -1 */
  margin-left: -40px; /* $spinner-size / 2 * -1 */
}

.dot1,
.dot2 {
  width: 60%;
  height: 60%;
  display: inline-block;
  position: absolute;
  top: 0;
  background-color: white; /* Assuming $white is white */
  border-radius: 100%;
  animation: sk-bounce 2s infinite ease-in-out;
}

.dot2 {
  top: auto;
  bottom: 0;
  animation-delay: -1s;
}

@keyframes sk-rotate {
  100% {
      transform: rotate(360deg);
  }
}

@keyframes sk-bounce {
  0%,
  100% {
      transform: scale(0);
  }
  50% {
      transform: scale(1);
  }
}

.satca-cart-coupon-apply-btn {
  height: 45px;
  width: 200px;
}

.satca-quanity-input {
  height: 50px;
  width: 50px;   
}

.collapsible-link {
    width: 100%;
    position: relative;
    text-align: left;
}
  
.collapsible-link::before {
  content: "\f107";
  position: absolute;
  top: 50%;
  right: 0.8rem;
  transform: translateY(-50%);
  display: block;
  font-family: "FontAwesome";
  font-size: 1.1rem;
}
  
.collapsible-link[aria-expanded="true"]::before {
  content: "\f106";
}

.convertopia-card {
  min-width: 100%;
}

.ct-enable-lable, .ct-rec-heading-lable, .ct-product-tiles-row-lable, .ct-pages-lable-one, .ct-frequency, .store-label-heading {
  font-weight: 500;
}

.ct-rec-heading {
  width: 400px !important;
}

.ct-col {
  display: flex;
  justify-content: end;
}

.store-label {
    font-size: 9px;
}

.loader {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
}