body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #111827;
  color: #fff;
}

.landing-account-deleted-banner {
  position: fixed;
  top: calc(4.75rem + env(safe-area-inset-top));
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  max-width: min(28rem, calc(100% - 1.5rem));
  padding: 0.7rem 1.1rem;
  border-radius: 10px;
  background: rgba(22, 101, 52, 0.55);
  border: 1px solid rgba(74, 222, 128, 0.4);
  color: #dcfce7;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

/* NAVBAR */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: calc(1rem + env(safe-area-inset-top)) 2rem 1rem 2rem;

  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 2;
  box-sizing: border-box;
}

nav img {
  height: 40px;
}

nav a {
  color: white;
  text-decoration: none;
  margin-left: 2rem;
  font-size: 1.1rem;
  font-weight: 200;
  transition: color 0.3s;
}

nav a:hover {
  color: #60a5fa;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 2rem;
  background: url("/static/img/landing_page/hero.webp") no-repeat center
    center/cover;
  justify-content: space-around;
  flex-wrap: wrap;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  font-weight: bold;
  margin: 0.5rem 0;
  text-transform: uppercase;
}

.hero h2 {
  font-size: 1.5rem;
  margin: 0.5rem 0 1.5rem 0;
}

.tagline {
  color: #60a5fa;
  font-size: 1.2rem;
}

.description {
  color: #ccc;
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 999px;
  background: linear-gradient(135deg, #3b82f6, #a855f7);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(168, 85, 247, 0.4);
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 30px rgba(168, 85, 247, 0.6);
}

.hero-image {
  position: relative;
  z-index: 1;
  margin-top: 3rem;
  width: 500px;
}

.hero-image img {
  max-width: 500px;
  width: 100%;
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero h2 {
  font-size: 1.8rem;
  font-weight: 500;
  color: #ddd;
}

.description {
  font-size: 1.1rem;
  line-height: 1.6;
}

.tagline {
  font-size: 1.4rem;
  font-weight: bold;
  color: #60a5fa;
}

@media (max-width: 460px) {
  .hero-image img {
    max-width: 600px;
    width: 100%;
  }
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px; /* wysokość przejścia */
  background: linear-gradient(to bottom, rgba(17, 17, 17, 0) 0%, #111827 100%);
  z-index: 1;
  pointer-events: none;
}

.hover-scale {
  transition: transform 0.6s ease;
}

.hover-scale:hover {
  transform: scale(1.05);
}

.hero h1 {
  background: linear-gradient(90deg, #3b82f6 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: default;
}

* {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 200;
  letter-spacing: 2px;
}

@media (max-width: 1180px) {
  .hero {
    padding-top: 7rem;
  }
}

.devices {
  padding: 6rem 2rem;
  text-align: center;
  padding-top: 0;
  padding-bottom: 0;
}

.devices-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 3rem;
  background: linear-gradient(90deg, #3b82f6, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.devices-list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 4rem;
}

.device {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 130px;
  transition: transform 0.3s ease;
}

.device img {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
}

.device p {
  font-size: 1rem;
  font-weight: 500;
}

.device:hover {
  transform: scale(1.1);
}

.devices-note {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #ccc;
  font-style: italic;
}

.why-liftaro {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 2rem;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 0;
  padding-bottom: 0;
}

.why-text {
  max-width: 500px;
  text-align: left;
}

.why-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #3b82f6, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.why-description {
  font-size: 1.2rem;
  color: #ccc;
  line-height: 1.6;
}

.why-video {
  max-width: 500px; /* szerokość kontenera */
  overflow: hidden; /* przycinamy, co wystaje */
  border-radius: 1rem;
}

ul.why-points {
  list-style: none;
}

li > h3 {
  font-weight: 500;
}

.stats-video {
  width: 230%;
  transform: translateX(-28%); /* przesuwamy, żeby telefon był na środku */
}

.workout-video {
  width: 200%; /* powiększenie tak jak w poprzedniej sekcji */
  transform: translateX(-53%); /* ustawienie środka */
  border-radius: 1rem;
}

@media (max-width: 1160px) {
  .reverse {
    flex-direction: column-reverse;
  }
}

.tags-system {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
  padding: 6rem 2rem;
  gap: 4rem;
  flex-wrap: wrap;
  padding-top: 0;
  padding-bottom: 0;
}

.tags-text {
  max-width: 500px;
  text-align: left;
}

.tags-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #3b82f6, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tags-description {
  font-size: 1.2rem;
  color: #ccc;
  line-height: 1.6;
}

.tags-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 1rem;
}

.freedom {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6rem 2rem;
  gap: 4rem;
  flex-wrap: wrap;
  padding-top: 1rem;
  padding-bottom: 0;
}

.freedom-text {
  max-width: 500px;
  text-align: left;
}

.freedom-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #3b82f6, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.freedom-description {
  font-size: 1.2rem;
  color: #ccc;
  line-height: 1.6;
}

.freedom-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 1rem;
}

.workout-summary {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
  padding: 6rem 2rem;
  gap: 4rem;
  flex-wrap: wrap;
  padding-top: 0;
  padding-bottom: 0;
}

.summary-text {
  max-width: 500px;
  text-align: left;
}

.summary-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #3b82f6, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.summary-description {
  font-size: 1.2rem;
  color: #ccc;
  line-height: 1.6;
}

.summary-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 1rem;
}

.ui-design {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6rem 2rem;
  gap: 4rem;
  flex-wrap: wrap;
  padding-top: 0;
  padding-bottom: 0;
}

.ui-text {
  max-width: 500px;
  text-align: left;
}

.ui-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #3b82f6, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ui-description {
  font-size: 1.2rem;
  color: #ccc;
  line-height: 1.6;
}

.ui-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 1rem;
}

.ui-image img:hover {
  transform: scale(1.03);
  transition: all 0.4s ease;
}

.testimonials {
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  padding-top: 2rem;
  padding-bottom: 1rem;
}

.testimonials-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 3rem;
  background: linear-gradient(90deg, #3b82f6, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.carousel-wrapper {
  max-width: 100%;
  overflow: hidden;
  position: relative;
  padding: 0 10%; /* widoczne kawałki po bokach */
}

.carousel {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s ease;
  will-change: transform;
}

.carousel-item {
  flex: 0 0 80%; /* środkowy element zajmuje 80% wrappera */
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  padding: 2rem 1rem;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.carousel-item img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-top: 1rem;
}

.carousel-item blockquote {
  font-size: 1rem;
  color: #ccc;
  font-style: italic;
  margin-bottom: 0.5rem;
}

.carousel-item .user-name {
  color: #aaa;
  font-size: 0.9rem;
}

.carousel-item:hover {
  transform: scale(1.05);
}

.carousel-controls {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.carousel-controls button {
  background: none;
  border: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  transition: color 0.3s;
}

.carousel-controls button:hover {
  color: #60a5fa;
}

.analytics {
  padding: 1rem 2rem;
  text-align: center;
}

.analytics-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.analytics-description {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: #ccc;
  line-height: 1.6;
}

.analytics-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.analytics-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem 1rem;
  border-radius: 1rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.analytics-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-top {
  text-align: center;
}

.card-bottom {
  margin-top: auto;
}

.analytics-card:hover {
  transform: translateY(-5px);
}

.analytics-card img {
  width: 100%;
  margin-bottom: 1rem;
}

.analytics-card h3 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.analytics-card p {
  font-size: 1rem;
  color: #ccc;
}

.analytics-chart img {
  width: 100%;
  max-width: 800px;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.pricing {
  padding: 6rem 2rem;
  text-align: center;
}

.pricing-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fff;
}

.pricing-subtitle {
  color: #aaa;
  margin-bottom: 1rem;
}

.pricing-plans {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.plan {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 1rem;
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
  position: relative;
}

.plan:hover {
  transform: translateY(-5px);
}

.plan.highlighted {
  background: linear-gradient(135deg, #3b82f6, #a855f7);
  color: white;
  transform: scale(1.05);
}

.plan.elite {
  position: relative;
  background: linear-gradient(
    135deg,
    #b8860b 0%,
    #ffd700 40%,
    #ffffff 50%,
    #ffd700 60%,
    #b8860b 100%
  );
  color: black;
  transform: scale(1.08);
  overflow: hidden;
}

.plan.elite::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 40%,
    rgba(255, 255, 255, 0.5) 50%,
    transparent 60%
  );
  transform: skewX(-20deg);
  transition: left 0.8s ease; /* płynne przesuwanie */
}

.plan.elite:hover::after {
  left: 100%;
}

.plan-name {
  font-size: 33px;
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.plan-price {
  font-weight: 100;
  font-size: x-large;
}

.plan-price span {
  font-size: 1rem;
  color: inherit;
}

.plan-features {
  text-align: left;
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  width: 100%;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: inherit;
}

.check-icon {
  color: inherit;
  font-weight: bold;
}

.plan-button {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: white;
  color: black;
  text-decoration: none;
  font-weight: bold;
  border-radius: 999px;
  transition: background 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.plan.highlighted .plan-button {
  background: black;
  color: white;
}

.plan.elite .plan-button {
  background: black;
  color: gold;
}

.plan-button:hover {
  background: #3b82f6;
  color: white;
}

/* Badge */
.badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #3b82f6;
  color: white;
  font-size: 0.8rem;
  padding: 0.3rem 0.6rem;
  border-radius: 0.5rem;
}

.badge-gold {
  background: #ffd700;
  color: black;
}

.badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 0.4rem 0.8rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1234px) {
  .plan.elite {
    margin-top: 2rem;
  }
}

.yearly-price {
  font-size: 0.9rem;
  color: #ccc;
  font-weight: 400;
}

.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  color: #fff;
  font-size: 1rem;
}

.billing-label.active {
  font-weight: bold;
  color: #3b82f6;
}

.save {
  color: #3b82f6;
  font-size: 0.8rem;
  font-weight: bold;
}

/* Switch (slider) */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 26px;
}
.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}
input:checked + .slider {
  background-color: #3b82f6;
}
input:checked + .slider:before {
  transform: translateX(24px);
}

.about-author {
  padding: 6rem 2rem;
  color: #fff;
}

.author-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
}

.author-image img {
  border-radius: 1rem;
  max-width: 300px;
  width: 100%;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.author-text {
  flex: 1;
  font-size: 1.1rem;
  line-height: 1.7;
}

.author-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.hero-stars {
  font-size: 1.5rem;
  color: #ffd700; /* złoty/żółty kolor */
  margin-top: 1rem;
  text-align: center;
}

ul {
  list-style: none;
}

.summary-list li {
  margin-bottom: 1rem;
  font-weight: 400;
}

li::before {
  content: "✔";
  color: #60a5fa; /* kolor fajeczki */
  font-weight: bold;
  margin-right: 0.5rem;
}

.why-points > li > strong {
  font-weight: 500;
}

.freedom-description > strong,
.tags-description > strong {
  font-weight: 500;
}

halfstrong {
  font-weight: 300;
}

.ui-description > strong {
  font-weight: 500;
}

.end-section {
  background: #0d0d0d;
  padding: 3rem 2rem;
  color: #aaa;
}

.end-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}

.end-left {
  flex: 1;
  min-width: 250px;
}

.end-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.end-logo {
  height: 40px;
}

.end-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.end-tagline {
  font-size: 1rem;
  color: #60a5fa;
  margin-top: 0.5rem;
}

.end-right {
  flex: 1;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.end-links,
.end-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-size: 0.9rem;
}

.end-links a,
.end-legal a,
.end-contact a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.end-links a:hover,
.end-legal a:hover,
.end-contact a:hover {
  color: #60a5fa;
}

.end-cta {
  padding: 0.5rem 1.5rem;
  background: linear-gradient(to right, #3b82f6, #a855f7);
  color: #fff;
  font-weight: bold;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.95rem;
  width: fit-content;
  transition: transform 0.3s ease;
}

.end-cta:hover {
  transform: scale(1.05);
}

.end-copy {
  font-size: 0.8rem;
  color: #666;
}

.end-left {
  flex: 1;
  min-width: 250px;
  display: flex;
  flex-direction: column;
}

.author-text > p > strong {
  font-weight: 500;
}

.end-signature {
  height: 80px;
  margin-top: 1rem;
  opacity: 0.8;
}

.shape-section {
  padding: 4rem 2rem;
  background: radial-gradient(circle at top left, #3b82f6, #a855f7);
  text-align: center;
  color: #fff;
}

.shape-content {
  max-width: 800px;
  margin: 0 auto;
}

.shape-title {
  font-size: 1.8rem;
  font-weight: 100;
  line-height: 1.4;
}

.shape-title span {
  background: linear-gradient(to right, #ffffff, #facc15);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
}

.hero-video-wrapper {
  width: 100%; /* możesz ustawić max-width np. 448px */
  max-width: 448px; /* albo inna szerokość jak wolisz */
  margin: 0 auto; /* wyśrodkowanie */
}

.hero-video {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 530px) {
  .hero-video {
  }
}

@media (max-width: 460px) {
  #navbar-try-now {
    display: none;
  }
}

@media (max-width: 525px) {
  nav a {
    margin-left: 6px;
  }
}

@media (max-width: 370px) {
  #navbar-testimonials {
    display: none;
  }
}

.hidden-text {
  opacity: 0;
  transform: translateY(20px) scale(1); /* domyślny scale */
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.hidden-text.show {
  opacity: 1;
  transform: translateY(0) scale(1); /* nadal scale(1) */
}

.hover-scale:hover {
  transform: translateY(0) scale(1.05); /* <-- łączysz scale z translate */
}

.long-opinion {
  font-size: 14px;
}

@media (max-width: 660px) {
  .carousel-item blockquote {
    margin: 0;
    margin-bottom: 0.5rem;
    font-size: 14px;
  }

  .carousel-item blockquote.long-opinion {
    font-size: 11px;
  }

  .carousel-item {
    flex: 0 0 95%;
    padding: 2rem 0.5rem;
  }
}

.plan-features li::before {
  content: none;
}

.plan-price-container {
  display: flex;
  flex-direction: column;
}

.cancel-any-time {
  margin-bottom: 1rem;
}

.plan > hr {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 20px;
}

span.old-price {
  font-size: 28px;
  text-decoration: line-through;
}

.old-price-divider {
  height: 31px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin: 3px 0;
}

.old-price-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.plan.elite hr.old-price-divider {
  border-color: #0009;
}

.super-promo {
  padding: 1rem;
  background: radial-gradient(circle at top left, #3b82f6, #a855f7);
  text-align: center;
  color: #fff;
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  z-index: 2;
  border-radius: 12px;
  box-sizing: border-box;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  max-width: 650px;

  /* animacja */
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.super-promo-topbar {
  display: flex;
  justify-content: flex-end;
}

button.super-promo-button {
  background: none;
  color: white;
  border: 1px solid white;
  border-radius: 12px;
  padding: 0.5rem 0;
  font-size: 22px;
  cursor: pointer;
}

.super-promo-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.super-promo-text {
  font-size: 20px;
}

.super-promo-topbar img {
  cursor: pointer;
}

.super-promo.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.super-promo.hide {
  opacity: 0;
  transform: translateY(20px);
  display: none;
}

.super-promo-text-subtitle {
  font-size: 16px;
  font-weight: 100;
}
