
product-chair{
  font-size: 60px;
  font-weight: bold;
  position: absolute;
  top: 10rem;
  left: 16rem;
}

product-text {
  font-size: 16px;
  position: absolute;
  top: 20rem;
  left: 16rem;
  max-width: 65rem;
 max-width: 55rem;
}

.Information {
  font-size: 16px;
  position: absolute;
  
}

.video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio (9 / 16 * 100) */
  }
  .video-container iframe {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 100%;
  }

  #ChairStyle {
    font-size: 16px;
    font-weight: bold;
  }

  #ChairStyle1 {
    font-size: 8px;
    
  }

  .chair-description {
    position: absolute;
    top: 50rem;
    left: 21rem;
  }

  .text {
    font-size: 14px;
    font-weight: bold;
  }

  .items {
    position: absolute;
    transform: translate(-50%, -50%);
    user-select: none;
  }
  
  .items .item {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px; /* Adjust the width */
    height: 370px; /* Adjust the height */
    border-radius: 10px; /* Adjust border-radius if necessary */
    overflow: hidden;
    transition: all 300ms ease-in-out;
    z-index: -1;
    opacity: 0;
  }
  
  .item img {
    width: 100%;
    height: 80%;
    object-fit: cover;
  }
  
  .item.active {
    opacity: 1;
    z-index: 99;

  }
  
  .item.prev {
    z-index: 2;
    opacity: 0.50;
    transform: translate(-170%, -50%);
    filter: blur(2px);
  }
  
  .item.next {
    z-index: 2;
    opacity: 0.50;
    transform: translate(70%, -50%);
    filter: blur(2px);
  }
  
  .items .button-container {
    position: absolute;
    top: 100%;
    left: 100%;
    transform: translate(-50%, -50%);
    width: 1000px;
    z-index: 100;
  }
  
  .button-container .button {
  
    color: #ffffff;
    width: 40px;
    cursor: pointer;
    position: relative;
    opacity: 0.75;
    transition: all 300ms ease-in-out;
  }
  
  .button-container .button:hover {
    opacity: 1;
  }
  
  .button-container .button:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 100%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 1);
    border-radius: 50%;
    z-index: -99;
  }
  
  .button-container .button:nth-child(1) {
    float: left;
  }
  
  .button-container .button:nth-child(2) {
    float: right;
  }
  
  /* Remove border-radius from .item */
  .items .item.active,
  .items .item.prev,
  .items .item.next {
    border-radius: 0;
  }
  
  .sliding-container1 {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-top: 15rem;
    margin-bottom: 5rem;
    width: 80vw;
    height: 90vh;
    align-self: flex-start; /* Lower the container */
}

  #ArrowBut{
  width: 10px;
  display: flex;
  position: relative;
  
  }
  .item .text {
    display: none; /* Initially hide all text */
  }
  
  .item.active .text {
    display: block; /* Show text only when the item is active */
  }
  
  .items .item.active .text {  
    color: #000000; /* Adjust text color */
    z-index: 100; /* Ensure it's above other elements */
  }
  

