.jpb-loader {
  border: 3px solid #f3f3f3;
  border-radius: 50%;
  border-top: 3px solid var(--theme-palette-color-1);
  width: 50px !important; 
  height: 50px !important;
  -webkit-animation: spin 2s linear infinite; 
  animation: spin 2s linear infinite;
  display: block;
}

/* .jpb-loader.active{
  display: inline-block;
} */

.loader-wrap {
  position: absolute; /* Fixed positioning */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent white background */
  z-index: 9999; /* Ensure it is above other elements */
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  display: none;
}

.loader-wrap.active {
  display: flex;
}

.single-product .product .ct-accordion-tab .entry-content {
position: relative;
}


/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}