.lds-ripple {
  color: #FE8001;
}

.lds-ripple,
.lds-ripple div {
  box-sizing: border-box;
}

.lds-ripple {
  display: block;
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto;
}

.lds-ripple div {
  position: absolute;
  border: 4px solid currentColor;
  opacity: 1;
  border-radius: 50%;
  animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.lds-ripple div:nth-child(2) {
  animation-delay: -0.5s;
}

@keyframes lds-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 8px;
    height: 8px;
    opacity: 0;
  }

  4.9% {
    top: 36px;
    left: 36px;
    width: 8px;
    height: 8px;
    opacity: 0;
  }

  5% {
    top: 36px;
    left: 36px;
    width: 8px;
    height: 8px;
    opacity: 1;
  }

  100% {
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    opacity: 0;
  }
}

[data-order-details] .lds-ripple {
  margin-bottom: 20px;
}

[data-order-history] .lds-ripple {
  margin: 20px auto;
}

[data-booking-select],
[data-accessories-select],
[data-product-select] {
  position: relative;
}

[data-booking-select] [data-booking-select-expand-icon],
[data-accessories-select] [data-accessories-select-expand-icon],
[data-product-select] [data-product-select-expand-icon] {
  transition: transform 0.3s;
  transform: translate3d(0, -50%, 0px);
}

[data-booking-select].on,
[data-accessories-select].on,
[data-product-select].on {
  z-index: 11;
}

[data-booking-select].on [data-booking-select-element] [data-booking-select-expand-icon],
[data-accessories-select].on [data-accessories-select-element] [data-accessories-select-expand-icon],
[data-product-select].on [data-product-select-element] [data-product-select-expand-icon] {
  transform: translate3d(0, -50%, 0px) rotate(-180deg);
}

[data-booking-select].on [data-booking-select-content],
[data-accessories-select].on [data-accessories-select-content],
[data-product-select].on [data-product-select-content] {
  transform: none;
  opacity: 1;
  visibility: visible;
}

[data-booking-select] [data-booking-select-content],
[data-accessories-select] [data-accessories-select-content],
[data-product-select] [data-product-select-content] {
  position: absolute;
  left: 0;
  top: calc(100% + 5px);
  z-index: 1;
  transform: translate3d(0, 10px, 0px);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s, visibility 0.3s, opacity 0.3s;
}

[data-booking-select] [data-booking-select-item],
[data-accessories-select] [data-accessories-select-item],
[data-product-select] [data-product-select-item] {
  transition: background-color 0.28s, color 0.2s;
}

[data-booking-select] [data-booking-select-item].on,
[data-accessories-select] [data-accessories-select-item].on,
[data-product-select] [data-product-select-item].on {
  background-color: rgba(254, 128, 1, .1);
  color: #fe8001;
}

[data-booking-cart] [data-booking-cart-count] {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #fe8001;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: #FFFFFF;
}

@media (min-width: 1025px) {
  [data-booking-select] [data-booking-select-item]:hover,
  [data-accessories-select] [data-accessories-select-item]:hover,
  [data-product-select] [data-product-select-item]:hover {
    color: #fe8001;
  }
}