.display-none-class {
  display: none;
}

.underline-on-hover:hover {
  text-decoration: underline;
  cursor: pointer;
}

.link-no-text-decoration {
  text-decoration: none;
  color: inherit;
}

.link-button-pad-sm {
  z-index: 999;
  position: absolute;
  font-size: 20px;
  font-weight: 500;
  padding: 2px 15px 4px 13px;
  border-radius: 20px;
  cursor: pointer;
  user-select: none;
  text-decoration: none;
}

.link-button-pad-sm:hover {
  filter: brightness(90%);
}

.latest-post-top-header {
  display: block;
}

@media (max-width: 600px) {
  .latest-post-top-header {
    display: none;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fade-in-anim {
  animation-name: fade-in;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.fade-out-anim {
  animation-name: fade-out;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

.store-badge-container {
  flex-direction: row;
  gap: 12px;
}

.store-badge-container img {
  height: 65px;
  width: auto;
}

@media (max-width: 700px) {
  .store-badge-container {
    flex-direction: column;
    gap: 6px;
  }
  .store-badge-container img {
    height: auto;
    width: 250px;
  }
}

.ticker-container {
  display: flex;
  height: 50px;
  width: 100%;
  background-color: rgb(56, 54, 75);
  overflow: hidden;
}

.ticker {
  display: flex;
  gap: 25px;
  margin-right: 25px;
  flex-shrink: 0;
  align-items: center;
  animation: tickeranim 700s linear 0s infinite;
}

@keyframes tickeranim {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
