@font-face {
  font-family: "Delivery";
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url("../fonts/Poppins/Poppins-Regular.woff2") format("woff2");
}

@font-face {
  font-family: "Delivery";
  font-style: normal;
  font-display: swap;
  font-weight: 500;
  src: url("../fonts/Poppins/Poppins-Medium.woff2") format("woff2");
}

@font-face {
  font-family: "Delivery";
  font-style: normal;
  font-display: swap;
  font-weight: 600;
  src: url("../fonts/Poppins/Poppins-Semibold.woff2") format("woff2");
}

@font-face {
  font-family: "Delivery";
  font-style: normal;
  font-display: swap;
  font-weight: 700;
  src: url("../fonts/Poppins/Poppins-Bold.woff2") format("woff2");
}

:root {
  --xgn-font-color: #28323d;
  --xgn-background-content: #ffffff;
  --xgn-background-wave: #0098e1;
  --xgn-transform-wave-top: none;
}

html {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  background-color: #ffffff;
  background-size: 100% 100%;
}

.xigeness-delivery__content {
  display: flex;
  width: 100vw;
  height: 100vh;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  background: var(--xgn-background-content);
  font-family: "Delivery";
}

.xigeness-delivery__header > svg {
  position: absolute;
  top: 0rem;
  left: 0rem;
  transform: var(--xgn-transform-wave-top);
}

.xigeness-delivery__header > svg > path {
  fill: var(--xgn-background-wave);
}

.xigeness-delivery__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 1em;
  padding: 0rem 1.5em;
  box-sizing: border-box;
}

.xigeness-delivery__body > #xigeness-delivery-lootie {
  max-width: 30em;
  max-height: 30em;
}

.xigeness-delivery__body > p {
  text-align: center;
  font-size: 1em;
  opacity: 0;
  font-weight: 600;
  margin: 0rem;
  color: var(--xgn-font-color);
  letter-spacing: 0.0425em;
}

.xigeness-delivery__description {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 1em;
  border-radius: 0.5rem 0.5rem 0rem 0rem;
}

.xigeness-delivery__description > img {
  z-index: 2;
  width: 2.5em;
  height: 2.5em;
}

.xigeness-delivery__description > span {
  font-size: 1.125em;
  font-weight: 600;
  color: var(--xgn-font-color);
  z-index: 2;
  letter-spacing: 0.0425em;
}

.xigeness-delivery__footer > svg {
  position: absolute;
  left: 0rem;
  bottom: 0rem;
}

.xigeness-delivery__footer > svg > path {
  fill: var(--xgn-background-wave);
}

@media screen and (min-width: 1024px) {
  :root {
    --xgn-transform-wave-top: translateY(-25%);
  }
}

@keyframes pulseMessage {
  0% {
    opacity: 0.1;
  }
  40% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0.1;
  }
}

@keyframes fadeInMessage {
  0% {
    opacity: 0.1;
  }
  100% {
    opacity: 1;
  }
}
