<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.flex-card-wrapper {
  width: 90rem;
  max-width: 150rem;
  height: 40rem;
  max-height: 50rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  transition: 200ms all ease-in-out;
}
.flex-card-wrapper .flex-card-container {
  padding: 0 0 0 0;
  height: 100%;
  border-radius: 20px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  margin: 0 0 0 0;
  display: none;
  transition: 200ms all ease-in-out;
}
.flex-card-wrapper .flex-card-container:last-child {
  margin: 0 0 0 0;
}
.flex-card-wrapper .flex-card-container.active {
  width: 80%;
  overflow: auto;
  margin-left: 1%;
  margin-right: 1%;
  display: block;
  background-size: contain;
}
.flex-card-wrapper .flex-card-container.unactive {
  width: 5%;
  display: block;
}

.main {
  flex-direction: column;
  display: flex;
  justify-content: center;
  align-items: center;
}
</pre></body></html>