<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.slider-container-slot {
  max-width: 1000px;
  margin: 20px auto;
  padding: 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color:rgba(16, 46, 46, 0.973);
}

.slider-preview-slot {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1000px;
  height: 400px; /* Fix height */
  flex-direction: column;
  overflow: hidden; /* Ensure the content doesn't overflow */
}

@media (min-width: 768px) {
  .slider-preview-slot {
      flex-direction: row;
  }
}

.slider-slot {
  position: relative;
  width: 100%;
  flex: 2;
  margin-right: 20px;
  overflow: hidden;
}

.slides-slot {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 100%; /* Ensure the slides take up full height */
}

.slide-slot {
  min-width: 100%;
  box-sizing: border-box;
  height: 100%; /* Ensure slides take full height */
}

.slide-slot img, .slide-slot video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Scale image and video while maintaining aspect ratio */
}

.description-slot {
  flex: 1;
  display: flex;
  align-items: top;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  min-width: 300px;
  overflow-y: auto;
  height: 100%; /* Fix height */
}

.description-text-slot {
  font-size: 14px;
  text-align: left;
}

.thumbnails-slot {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.thumbnail-slot {
  margin: 0 5px;
  cursor: pointer;
}

.thumbnail-slot img {
  width: 200px;
  height: 100px;
  object-fit: cover;
}
.thumbnail-slot video {
  width: 200px;
  height: 100px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .description-slot {
      margin-top: 20px;
      width: 100%;
      height: auto;
  }

  .thumbnail-slot img {
      width: 60px;
      height: 40px;
  }
  .thumbnail-slot video {
    width: 60px;
    height: 40px;
  }
}


</pre></body></html>