.tummala-giveaway-countdown {
  width: 100%;
  max-width: 768px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #ffffff;
  --tgem-progress-percent: 20%;
}

.tgem-giveaway-progress {
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #ffffff;
  --tgem-progress-percent: 20%;
}

.tummala-giveaway-countdown--empty {
  background: #f3f4f6;
  color: #1f2937;
}

.tgem-giveaway-progress--empty {
  background: #f3f4f6;
  color: #1f2937;
}

.tummala-giveaway-countdown__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 13px;
  align-items: start;
  justify-items: center;
}

.tummala-giveaway-countdown__unit {
  padding: 0;
  border: 0;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  background: transparent;
}

.tummala-giveaway-countdown__value {
  display: block;
  text-shadow: #17691b 0 0 10px, #17691b 0 0 10px !important;
  font-weight: 900 !important;
  line-height: 1em !important;
  margin-bottom: 0.08em !important;
  font-size: 2.3rem !important;
  font-family: Montserrat, sans-serif;
}

.tummala-giveaway-countdown__label {
  display: block;
  color: #000000 !important;
  text-shadow: #ffffff 0 0 10px, #9d9d9d 0 0 10px !important;
  font-weight: 600 !important;
  line-height: 1em !important;
  margin-top: 0 !important;
  font-size: 1rem;
  font-family: Montserrat, sans-serif;
  letter-spacing: 0.02em;
  opacity: 1;
  text-transform: uppercase;
}

.tummala-giveaway-countdown__ended {
  display: none;
  margin: 4px 0 0;
  font-size: 14px;
  font-weight: 700;
}

.tgem-giveaway-progress__ended {
  display: none;
  margin: 4px 0 0;
  font-size: 14px;
  font-weight: 700;
}

.tgem-countdown-progress-track {
  width: 100%;
  height: 55px;
  margin-top: 14px;
  background-color: #002140;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 30px #104913;
}

.tgem-countdown-progress-fill {
  width: var(--tgem-progress-percent);
  height: 100%;
  background: linear-gradient(to right, #2eab37, #2eab37);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  transition: width 0.9s linear;
  animation: tm-progress-pulse 2s ease-in-out infinite;
}

.tgem-countdown-progress-motion-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
  background-size: 40px 40px;
}

.tgem-countdown-progress-motion-lines::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.3) 10px,
    rgba(255, 255, 255, 0.3) 18px
  );
  will-change: transform;
  animation: tm-progress-motion 4s linear infinite;
}

.tgem-countdown-progress-percentage {
  color: #ffffff;
  font-family: Montserrat, sans-serif;
  font-weight: 900;
  font-size: 36px;
  text-transform: uppercase;
  letter-spacing: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  text-align: center;
  white-space: nowrap;
}

.tummala-giveaway-countdown.is-ended .tummala-giveaway-countdown__grid {
  display: none;
}

.tummala-giveaway-countdown.is-ended .tummala-giveaway-countdown__ended {
  display: block;
}

.tgem-giveaway-progress.is-ended .tgem-giveaway-progress__ended {
  display: block;
}

@keyframes tm-progress-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes tm-progress-motion {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-22.918301983006078px);
  }
}

@media (max-width: 600px) {
  .tummala-giveaway-countdown__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px 9px;
  }

  .tgem-countdown-progress-track {
    height: 42px;
  }

  .tgem-countdown-progress-percentage {
    font-size: 24px;
  }
}
