.shipping-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 99999;

  width: min(410px, calc(100vw - 24px));
  overflow: hidden;

  background: #ffffff;
  color: #111111;

  border: 1px solid #ddd5d7;
  border-radius: 17px;

  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.23);

  opacity: 0;
  visibility: hidden;
  transform: translateY(22px);

  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease;
}

.shipping-banner.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.shipping-banner__close {
  position: absolute;
  top: 8px;
  right: 9px;
  z-index: 2;

  width: 30px;
  height: 30px;
  padding: 0;

  border: 0;
  background: transparent;
  color: #111111;

  font-family: Arial, Helvetica, sans-serif;
  font-size: 27px;
  line-height: 30px;

  cursor: pointer;
}

.shipping-banner__close:hover {
  opacity: 0.55;
}

.shipping-banner__content {
  padding: 19px 42px 0 18px;
}

.shipping-banner__top {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: start;
  gap: 14px;
}

.shipping-banner__icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 50px;
  height: 50px;

  background: #111111;
  color: #ffffff;

  border: 2px solid #ffffff;
  border-radius: 50%;

  box-shadow: 0 0 0 1px #d9bfc4;

  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}

.shipping-banner__title {
  margin: 0 0 8px;

  color: #111111;

  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;

  text-transform: uppercase;
}

.shipping-banner__date {
  display: inline-block;

  margin: 0 0 10px;
  padding: 6px 9px;

  background: #f1e2e5;
  color: #111111;

  border-radius: 4px;

  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

.shipping-banner__headline {
  margin: 0 0 10px;

  color: #111111;

  font-size: 16px;
  font-weight: 900;
  line-height: 1.3;

  text-transform: uppercase;
}

.shipping-banner__text {
  margin: 0;
  padding: 0 0 16px;

  color: #555555;

  font-size: 13px;
  line-height: 1.5;

  border-bottom: 1px solid #e3dcde;
}

.shipping-banner__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  margin-top: 0;
  padding: 11px 15px;

  background: #111111;
  color: #ffffff;

  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;

  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.shipping-banner__footer-icon {
  color: #edcfd5;
  font-size: 20px;
  line-height: 1;
}

@media (max-width: 600px) {
  .shipping-banner {
    right: 8px;
    bottom: 8px;

    width: calc(100vw - 16px);

    border-radius: 12px;
  }

  .shipping-banner__content {
    padding: 13px 34px 0 12px;
  }

  .shipping-banner__top {
    grid-template-columns: 41px 1fr;
    gap: 9px;
  }

  .shipping-banner__icon {
    width: 38px;
    height: 38px;

    font-size: 23px;
  }

  .shipping-banner__title {
    margin-bottom: 5px;
    font-size: 12px;
  }

  .shipping-banner__date {
    margin-bottom: 7px;
    padding: 4px 6px;

    font-size: 10px;
  }

  .shipping-banner__headline {
    margin-bottom: 7px;
    font-size: 12px;
  }

  .shipping-banner__text {
    padding-bottom: 10px;

    font-size: 11px;
    line-height: 1.4;
  }

  .shipping-banner__footer {
    padding: 8px 10px;

    font-size: 10px;
  }

  .shipping-banner__footer-icon {
    font-size: 16px;
  }

  .shipping-banner__close {
    top: 5px;
    right: 6px;

    width: 26px;
    height: 26px;

    font-size: 23px;
    line-height: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .shipping-banner {
    transition: none;
  }
}

body.ordering-process .shipping-banner {
  display: none !important;
}