.tripadvisor-ticker,
.tripadvisor-ticker * {
  box-sizing: border-box;
}

.tripadvisor-ticker {
  width: 100%;
  height: 50px;
  overflow: hidden;
  background: linear-gradient(90deg, #004a8d, #00af87);
}

.tripadvisor-ticker__link {
  display: flex;
  width: 100%;
  height: 50px;
  align-items: center;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.tripadvisor-ticker__text {
  display: inline-block;
  flex: 0 0 auto;
  padding-left: 100%;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
  animation: tripadvisor-marquee 15s linear infinite;
}

@keyframes tripadvisor-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

@media (max-width: 768px) {
  .tripadvisor-ticker,
  .tripadvisor-ticker__link {
    height: 40px;
  }

  .tripadvisor-ticker__text {
    font-size: 14px;
    animation-duration: 18s;
  }
}
