.basket-empty-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 120px);
  padding: 1rem;
}
.basket-empty-section__box {
  width: 100%;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.basket-empty__visual {
  width: 96px;
  min-width: 96px;
  height: 96px;
  min-height: 96px;
  border-radius: 50%;
  box-shadow: 0px 0px 2px 0px rgba(0, 5, 12, 0.1),
    0px 2px 8px 0px rgba(0, 5, 12, 0.13);
}
.basket-empty__visual svg {
  width: 96px;
  height: auto;
  transform: translateY(-1rem);
  animation: basket-empty__visual-animation 1s ease-in-out;
}
.basket-empty-section__title {
  text-align: center;
}
.basket-empty-section__title,
.basket-empty-section .btn {
  animation: basket-empty__countent-animation 1s ease-in-out;
}
@keyframes basket-empty__visual-animation {
  0% {
    transform: translateY(-1rem);
    opacity: 0;
  }
  50% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-1rem);
    opacity: 1;
  }
}

@keyframes basket-empty__countent-animation {
  0% {
    transform: translateY(-1rem);
    opacity: 0;
  }

  100% {
    transform: translateY(0rem);
    opacity: 1;
  }
}
.basket-empty-section__box {
  max-width: 480px;
  border-radius: 2rem;
}
@media (min-width: 820px) {
  .basket-empty-section__box {
    padding: 2rem;
  }
}
html.contrast-mode .basket-empty__visual path {
  fill: var(--contrast-yellow);
}
