@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');

.nfl-price {
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  height: 55px;
  border-radius: 16px 0 16px 0;
  overflow: hidden;
}

.nfl-price > * {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.nfl-price > *:first-child {
  background-color: #ffffff;
}

.nfl-price > *:last-child {
  background-color: limegreen;
}

.new-price {
  color: #fff;
  font-weight: 900;
  background-color: #2574e5;
}

.old-price {
  color: #181515;
  text-decoration: line-through;
  font-weight: 700;
}

.nfl-form-1 {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 500;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-end;
  padding: 36px 0 24px;
  background-image: url('../img/formbg.webp');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}

.nfl-form-1 .ticker {
  position: absolute;
  width: 200%;
  font-weight: 700;
  border: 4px solid #0d2951;
  background-color: #fff;
  padding: 4px;
  font-size: 24px;
  white-space: nowrap;
  translate: -50% 0;
  top: 3%;
  left: 50%;
  rotate: -10deg;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  overflow: hidden;
}

.nfl-form-1 .ticker span {
  line-height: normal;
}

/* inputs */
.nfl-form-1 .inputs {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  padding: 0 50px 15px;
  translate: 0 -5%;
}

.nfl-input input {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 18px;
  background-color: #fff;
  border: 4px solid darkgreen !important;
  min-height: 50px;
  width: 100%;
  position: relative;
  z-index: 2;
  padding: 6px 16px;
  color: #141414 !important;
  font-weight: 600;
}

.nfl-input input::-moz-placeholder {
  color: #141414 !important;
}

.nfl-input input::placeholder {
  color: #141414 !important;
}

.nfl-input {
  position: relative;
}

.nfl-input::before {
  content: '';
  display: block;
  background-color: #000000;
  position: absolute;
  top: 10%;
  left: -1.5%;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.nfl-submit {
  background-color: #72100d !important;
  min-height: 50px;
  border: none;
  outline: none;
  scale: 1.045 1;
  color: #0d2951;
  border: 4px solid #0d2951;
  font-size: 24px;
  font-weight: 900;
  line-height: normal !important;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}

/* form panel */
.nfl-form-panel {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  padding-inline: 30px;
  padding-block: 0px 20px;
  position: relative;
  transform-origin: bottom center;
}

.nfl-form-panel .icon {
  position: absolute;
  top: 7.5%;
  left: 50%;
  translate: -50% -50%;
  width: 130px;
  height: 130px;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}

.nfl-form-head {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}

.nfl-form-head h2 {
  font-weight: 800;
  text-align: center;
}

.nfl-form-head p {
  color: #2574e5;
  max-width: 65%;
  text-align: center;
  width: 100%;
}

.nfl-form-product {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nfl-form-product img {
  width: 82.5%;
  margin: 0 auto;
  aspect-ratio: 1/1;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  filter: drop-shadow(-2.5px 2.5px 5px rgb(50, 50, 50));
}

.nfl-form-info {
  margin: 0 auto !important;
  background-color: #189970;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 2px solid rgb(255, 255, 255);
  margin-left: auto;
  border-radius: 0 32px 0 0;
  position: relative;
  z-index: 1;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: start;
  padding: 10px;
}

.nfl-form-info .timer {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: red;
  border-radius: 0 16px 0 0;
  border: 2px solid rgb(95, 1, 1) !important;
  color: #fff;
  font-weight: 500;
  font-size: 18px;
}

.nfl-form-info .timer span {
  font-weight: 700;
  font-size: 20px;
}

/* circles animated */
.nfl-form-1 i {
  position: absolute;
  inset: 0;
  left: 50%;
  /* border: 2px solid #fff; */
  transition: 0.5s;
  border: 12px solid var(--clr);
  filter: blur(20px);
  scale: 0.35 0.35;
  translate: -50% -20%;
}

.nfl-form-1 i:nth-child(1) {
  border-radius: 38% 62% 63% 37%/41% 44% 56% 59%;
  animation: animate 6s linear infinite;
}

.nfl-form-1 i:nth-child(2) {
  border-radius: 41% 44% 56% 59%/38% 62% 63% 37%;
  animation: animate 5s linear infinite;
}

.nfl-form-1 i:nth-child(3) {
  border-radius: 41% 44% 56% 59%/38% 62% 63% 37%;
  animation: animate2 10s linear infinite;
}

.nfl-form-1 i:nth-child(4) {
  border-radius: 38% 62% 63% 37%/41% 44% 56% 59%;
  animation: animate 8s linear infinite;
}

.nfl-form-1 i:nth-child(5) {
  border-radius: 41% 44% 56% 59%/38% 62% 63% 37%;
  animation: animate 8s linear infinite;
}

.nfl-form-1 i:nth-child(6) {
  border-radius: 41% 44% 56% 59%/38% 62% 63% 37%;
  animation: animate2 6s linear infinite;
}

.live-photo {
  margin-top: 10px;
}

@keyframes animate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate2 {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
} /*# sourceMappingURL=index.css.map */
