<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Responsive main div */
.ttvideo-maindiv {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  height: auto;
  padding: 20px;
  box-sizing: border-box;
}

/* Video column */
.ttvideo-video {
  width: 100%;
  max-width: 50%;
  max-height: 500px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Video control frame */
.ttvideo-video video {
  max-width: 100%;
  height: auto;
}

/* Text column */
.ttvideo-text {
  width: 100%;
  max-width: 50%;
  padding-left: 20px;
  box-sizing: border-box;
}

/* Media queries for responsive design */
@media screen and (max-width: 767px) {
  /* One column layout for mobile */
  .ttvideo-maindiv {
      flex-direction: column;
  }

  /* Reorder the text column to come after the video */
  .ttvideo-text {
      order: 1;
      max-width: 100%;
      padding-left: 0;
      padding-top: 20px;
      box-sizing: border-box;
  }
}
</pre></body></html>