.mealz-shadow-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  z-index: 9998;
  background: var(--mealz-ds-color-neutral-black, #000);
  opacity: 0.6;
  animation-name: show;
  animation-duration: 0.3s;
  animation-timing-function: ease-in-out;
  -webkit-tap-highlight-color: transparent;
}

@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.6;
  }
}

.mealz-basket-transfer-loader__content {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 455px;
  max-width: calc(100% - 32px);
  box-sizing: border-box;
  padding: 24px;
  border-radius: 8px;
  background-color: var(--mealz-ds-color-neutral-white, #fff);
  transform: translate(-50%, -50%);
}

.mealz-basket-transfer-loader__content > *:not(:last-child) {
  margin-bottom: 4px;
}
