#sticky-bottom-overlay {
  overflow-x: hidden;
  position: fixed;
  bottom: 0;
  width: 100%;
  left: 50%;
  max-width: 970px;
  transform: translateX(-50%);
  --flash-txt-color: #ffdd2f;
  display: flex;
  justify-content: space-between;
  padding: 20px 10px !important;
  background-color: #055541;
  font-size: 20px !important;
  line-height: 1.25;
  text-align: center;
  color: #fff;
  font-weight: 600;
  flex-direction: column;
  align-items: center;
}
#sticky-bottom-overlay .sticky-content-top {
  display: flex;
  margin: auto 0;
  height: -moz-fit-content;
  height: fit-content;
  justify-content: center;
  gap: 20px;
}
@media (min-width: 992px) {
  #sticky-bottom-overlay .sticky-content-top {
    gap: 100px;
  }
}
#sticky-bottom-overlay .sticky-text {
  transition: transform 0.2s ease-out;
  display: flex;
  align-items: center;
}
#sticky-bottom-overlay .sticky-text .flash {
  font-weight: bold;
  font-size: 160%;
  display: inline-block;
  background: var(--flash-txt-color) -webkit-linear-gradient(left, var(--flash-txt-color), #fff) no-repeat 0 0/50%;
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  animation: sweep 2.5s ease-in infinite;
}
#sticky-bottom-overlay .sticky-text sup {
  color: var(--flash-txt-color);
}
#sticky-bottom-overlay .sticky-text:hover {
  transform: scale(1.05);
}
#sticky-bottom-overlay .sticky-btns {
  display: flex;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 12px 0;
  flex-direction: column;
}
#sticky-bottom-overlay .sticky-btns .anchor-btn {
  color: #fff;
  flex-shrink: 0;
  margin: auto 0;
  height: -moz-fit-content;
  height: fit-content;
  cursor: pointer;
  text-decoration: underline;
  transition: transform 0.2s ease-out;
}
#sticky-bottom-overlay .sticky-btns .anchor-btn:hover {
  transform: scale(1.05);
}
#sticky-bottom-overlay .sticky-btns hr {
  border-right: 2px solid #fff;
  height: 40px;
  width: 1px;
  margin: auto 30px;
}
#sticky-bottom-overlay .sticky-btns .orange-btn {
  padding: 3px 30px;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  background-color: #f68b1f;
  margin-bottom: 0;
  transition: transform 0.2s ease-out;
}
#sticky-bottom-overlay .sticky-btns .orange-btn > img {
  margin-bottom: 10px;
  width: 28px;
  height: 28px;
}
#sticky-bottom-overlay .sticky-btns .orange-btn:hover {
  transform: scale(1.05);
}
@media (min-width: 992px) {
  #sticky-bottom-overlay {
    font-size: 28px;
  }
  #sticky-bottom-overlay .sticky-btns hr {
    margin: auto 20px;
  }
}

@keyframes sweep {
  0% {
    background-position: -100% -100%;
  }
  100% {
    background-position: 300% 300%;
  }
}/*# sourceMappingURL=style.css.map */