.SwipeUp-reel {
  height: 100%;
  position: relative;
  scroll-snap-align: start;
}

.SwipeUp-reel-wrap {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  max-height: 100%;
  overflow: hidden;
}

.reel-bubble-product-card {
  position: absolute;
  bottom: 68px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 11;

  cursor: pointer;

  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0 12px 0 0;
  gap: 12px;

  color: #fff;

  background: rgba(0, 0, 0, 0.16);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);

  border-radius: 12px;

  width: calc(100% - 16px);
}

.reel-bubble-product-card__info {
  flex-grow: 1;

  max-width: 80%;
  overflow: hidden;
  white-space: nowrap;

  text-align: left;
}

.reel-bubble-product-card__info div {
  font-size: 16px;
  line-height: 19px;
}

.reel-bubble-product-card__title {
  max-width: 100%;

  text-overflow: ellipsis;
  overflow: hidden;

  margin-bottom: 4px;
}

.reel-bubble-product-card__button {
  font-size: 14px;
  line-height: 16px;
  letter-spacing: -0.15px;

  color: #000;

  background: #fff;

  padding: 8px 12px;

  border-radius: 100px;
}

.reel-bubble-product-card__thumb {
  border: 0.5px solid rgba(0, 0, 0, 0.08);
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;

  flex-grow: 0;
  max-width: 90px;
  max-height: 100%;
  height: 72px;
  width: auto;

  object-fit: cover;
}

.reel-bubble-product-card__thumb_hidden {
  visibility: hidden;
}

.reel-bubble-product-card__price {
  color: rgba(255, 255, 255, 0.46);
}

.reel-video-full {
  width: 100%;
  max-height: 100vh;
}

.SwipeUp-branding {
  display: block;

  position: absolute;
  bottom: 37px;
  z-index: 11;

  width: 100%;
  text-align: center;

  color: #fff;

  font-size: 15px;
  letter-spacing: -0.24px;
  text-decoration: none;
}

div.SwipeUp-scroll-overlay {
  display: block !important;

  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;

  z-index: 1;
}

#reel-bubble div.SwipeUp-skeleton {
  display: inline-block;
  position: relative;
  overflow: hidden;
  background-color: #dddbdd;
  width: 100%;
  height: 100%;
}

div.SwipeUpReel-Skeleton[class] {
  display: inline-block;
  overflow: hidden;
  background-color: #dddbdd;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
}

#reel-bubble div.SwipeUp-skeleton::after,
div.SwipeUpReel-Skeleton[class]::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: translateX(-100%);
  background-image: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0,
    rgba(255, 255, 255, 0.2) 20%,
    rgba(255, 255, 255, 0.5) 60%,
    rgba(255, 255, 255, 0)
  );
  animation: shimmer 2s infinite;
  content: "";
}

@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}

@media screen and (min-width: 768px) {
  .SwipeUp-branding {
    bottom: 12px;
  }
}
