
/* The spinner */

@keyframes spinner {
  to {transform: rotate(360deg);}
}

.spinner,
.spinner:before {
  width: 20px;
  height: 20px;
  box-sizing: border-box;
}

.spinner:before {
  content: '';
  display: block;
  border-radius: 50%;
  border: 2px solid #ccc;
  border-top-color: #333;
  animation: spinner .6s linear infinite;
}

.spinner-absolute {
  position: absolute;
  top: 31px;
  left: 83%;
  margin-top: -10px;
  margin-left: -10px;
}

/* Animations */

.spinner-add,
.spinner-remove {
  animation-fill-mode: both;
  animation-duration: .4s;
}

.spinner-add {
  animation-name: spinner-add;
}

@keyframes spinner-add {
  from {transform: scale(0);}
  to {transform: scale(1);}
}

.spinner-remove {
  animation-name: spinner-remove;
}

@keyframes spinner-remove {
  to {transform: scale(0);}
}

/* Streichpreise ausblenden **************************************************/
/* Streichpreise wieder einblenden, cha, media at work, 02.01.2022 */
.single-product-details .price del span {
  color: #b3abab !important;
  display: inline !important;
}

/* Streichpreise einblenden in Datei wp-content\themes\gummiketten_theme-1\woocommerce\single-product\price.php**************************************************/
.single-product-details .price delpreis span {
    color: #b3abab !important;
	text-decoration: line-through !important;
	font-size: 1.2em;
    /*display: none;*/
}

.cg-product-info .price del span.amount {
    font-family: "Roboto Condensed";
    text-transform: uppercase;
    font-weight: 400;
    font-style: normal;
    color: #999;
    font-size: 14px;
    font-display: swap;
	display: none;
}
	