/* TODO - move */
.product-actions.disabled {
  display: none;
}




.aphx-loader.fullscreen {
  position: fixed;
}

.aphx-loader.add_product {
  position: absolute;
}

.aphx-loader {
  z-index: 1000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.5);
}



.aphx-loader.active {
  opacity: 1;
  pointer-events: initial;
}
.aphx-loader {
  transition: opacity 0.2s;
  opacity: 0;
  pointer-events: none;
}
.lds-hourglass {
  display: inline-block;
  position: relative;
  width: 70px;
  height: 70px;
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
  top: 120px;
}
.lds-hourglass:after {
  content: " ";
  display: block;
  border-radius: 50%;
  width: 0;
  height: 0;
  margin: 8px;
  box-sizing: border-box;
  border: 32px solid #fff;
  border-color: #000 transparent #000 transparent;
  animation: lds-hourglass 1.2s infinite;

  opacity: 0.8;
}
@keyframes lds-hourglass {
  0% {
    transform: rotate(0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  50% {
    transform: rotate(900deg);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  100% {
    transform: rotate(1800deg);
  }
}
