.rvex-stock-product{
    margin-bottom: 15px;
}
.rvex-flip-container {
    width: 100%;
    height: 30px;
    font-size: 14px;
    font-weight: bold;
    /* text-align: center; */
    display: flex;
    align-items: center;
    /* justify-content: center; */
    overflow: hidden;
    position: relative;
    color: rgb(255, 115, 0);
  }
  .rvex-flip-wrapper {
    position: relative;
    height: 100%;
    width: inherit;
  }

  .rvex-flip-text {
    position: absolute;
    width: 100%;
    opacity: 0;
    animation: slideInOut 8s infinite;
  }

  .rvex-flip-text:nth-child(2) {
    animation-delay: 4s;
  }

  @keyframes slideInOut {
    0% { transform: translateY(18%); opacity: 0; } /* Start below */
    10%, 45% { transform: translateY(0); opacity: 1; } /* Fully visible */
    55%, 100% { transform: translateY(-18%); opacity: 0; } /* Move up but stays in position */
  }