.cart-totals-loader {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  z-index: 999;
}

.cart-totals-loader.show {
  display: flex !important;
}

.cart-totals-loader .spinner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-totals-loader .spinner-border {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  border: 0.25em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spinner-border 0.75s linear infinite;
}

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

.sidebar-v1 {
  position: relative;
}
