/**
 * Content.
 */
.wcpbc-content {
	display: none;
}

.wcpbc-price.loading {
	display: inline-block;
	position: relative;
	visibility: hidden;
}
/**
 * Ajax geolocation spinner.
 *
 * @see https://github.com/lukehaas/css-loaders
 */
.wcpbc-price.loading .wcpbc-spinner,
.wcpbc-price.loading .wcpbc-spinner:before,
.wcpbc-price.loading .wcpbc-spinner:after {
  border-radius: 50%;
  width: 2.5em;
  height: 2.5em;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: dotted_spinner 1.8s infinite ease-in-out;
  animation: dotted_spinner 1.8s infinite ease-in-out;
}
.wcpbc-price.loading .wcpbc-spinner{
	display: block;
	font-size: 20%;
	margin: 0;
	position: absolute;
	top: 10%;
	right: 45%;
	visibility: visible;
	text-indent: -9999em;
	-webkit-transform: translateZ(0);
	-ms-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-animation-delay: -0.16s;
	animation-delay: -0.16s;
}
.wcpbc-price.loading .wcpbc-spinner:before,
.wcpbc-price.loading .wcpbc-spinner:after {
  content: '';
  position: absolute;
  top: 0;
}
.wcpbc-price.loading .wcpbc-spinner:before {
  left: -3.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.wcpbc-price.loading .wcpbc-spinner:after {
  left: 3.5em;
}
@-webkit-keyframes dotted_spinner {
  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}
@keyframes dotted_spinner {
  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}