/* CSS for the loading spinner */

#fastspring_spinner {
  width: 100%;
  height: 100%;
  z-index: 99999998;
  background: rgba(0, 0, 0, 0.4);
  position: fixed; /* Use fixed position to cover the entire screen */
  top: 0;
  left: 0;
}

#fastspring_spinner img {
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  -webkit-animation-name: fsb-fadeIn;
  animation-name: fsb-fadeIn;
  position: fixed; /* Use fixed position to center the spinner */
  top: 50%;
  left: 50%;
  transform: translate(
    -50%,
    -50%
  ); /* Center the spinner horizontally and vertically */
  z-index: 99999999;
}
/* CSS for the background image */
body {
  background-color: white;
  background-image: url("assets/background-embedded.png");
  background-repeat: no-repeat;
  background-position: left bottom;
  background-attachment: fixed;
	font-family:"SF Pro Display", -apple-system, BlinkMacSystemFont, "Helvetica", sans-serif; font-weight:700!important; font-weight: 500!important;
}

.popover-display {
  display: none;
}

.col-p-header {font-weight: 700; text-align: left; width: 50%!important; padding-right: 10px; box-sizing: border-box; color: #333333;}
.col-p-price {font-weight: 700; width: 20%!important; line-height: 18px;}
.col-p-qty { width: 30%!important}

.cart-v-item {padding-top: 20px; padding-bottom: 20px}

.inline-checkout-modal .modal-dialog {width: 100%;}

.header-flex {display: flex; justify-content: space-between;}

.p-overide p {    margin-bottom: 0 !important;
    padding: 0 !important;
    color: #999999;
    font-weight: 500;
    font-size: 12px;}

.dot-pulse {
  position: relative;
  left: -9999px;
  width: 10px;
  height: 10px!important;
  border-radius: 5px;
  background-color: #fff;
  color: #fff;
  box-shadow: 9999px 0 0 -5px;
  animation: dot-pulse 1.5s infinite linear;
  animation-delay: 0.25s;
	margin: 0 auto;
top: calc(50% - 5px);
}
.dot-pulse::before, .dot-pulse::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
	left:0;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #fff;
  color: #fff;
}
.dot-pulse::before {
  box-shadow: 9984px 0 0 -5px;
  animation: dot-pulse-before 1.5s infinite linear;
  animation-delay: 0s;
}
.dot-pulse::after {
  box-shadow: 10014px 0 0 -5px;
  animation: dot-pulse-after 1.5s infinite linear;
  animation-delay: 0.5s;
}

@keyframes dot-pulse-before {
  0% {
    box-shadow: 9984px 0 0 -5px;
  }
  30% {
    box-shadow: 9984px 0 0 2px;
  }
  60%, 100% {
    box-shadow: 9984px 0 0 -5px;
  }
}
@keyframes dot-pulse {
  0% {
    box-shadow: 9999px 0 0 -5px;
  }
  30% {
    box-shadow: 9999px 0 0 2px;
  }
  60%, 100% {
    box-shadow: 9999px 0 0 -5px;
  }
}
@keyframes dot-pulse-after {
  0% {
    box-shadow: 10014px 0 0 -5px;
  }
  30% {
    box-shadow: 10014px 0 0 2px;
  }
  60%, 100% {
    box-shadow: 10014px 0 0 -5px;
  }
}

@media (max-width:950px) {
	.col-md-6 {flex: 0 0 auto!important; width: 100%!important;}
	.d-md-flex {display: block!important;}
}

@media (max-width:480px) {
	.d-flex {flex-wrap: wrap}
	.col-p-header {width: 75%!important; padding-right: 0;}
.col-p-price {width: 25%!important}
.col-p-qty {width: 100%!important; flex-wrap: nowrap!important; margin-top: 20px}

}


