/** Club */
.page {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  min-height: 100vh;
  color: black;
  z-index: 1;
}
.main {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-color: #000;
  color: white;
}
.scene {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
@media (min-width: 1200px) {
  .scene {
    flex-direction: row;
    max-width: 1200px;
    margin: 2rem auto 0;
  }
}
.scene .main-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: min-content;
  margin: 0 auto;
}
.scene .main-content > .screen {
  order: 0;
}
.scene .main-content > .tables {
  order: 1;
}
.image-full-width {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.screen {
  position: relative;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  width: 100%;
  height: auto;
  z-index: 1;
  aspect-ratio: 1.7777777778;
  overflow: hidden;
  margin: 0 0 1rem 0;
}
.screen.inner {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.screen .photo-screen {
  position: relative;
  display: block;
  object-fit: cover;
}
.screen .photo-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.screen .photo-screen.chat-open {
  max-width: 50%;
}
.screen .screen-inner, .screen .video-stage {
  position: relative;
  width: 100%;
  height: 100%;
}
.screen .video-stage {
  overflow: hidden;
  box-sizing: border-box;
  background: #111;
}
.screen .video-slot {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 400ms ease;
  pointer-events: none;
}
.screen .video-slot.is-visible {
  opacity: 1;
}
.screen .video-poster, .screen .video-screen {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.screen .video-poster {
  z-index: 0;
}
.screen .video-screen {
  z-index: 1;
}
.screen .video-stage__play {
  position: absolute;
  z-index: 3;
  cursor: pointer;
}
.screen .layer, .screen .layer-group {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #000;
  height: min-content;
}
.screen .layer img, .screen .layer-group img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}
.screen .off {
  display: none;
  pointer-events: none;
}
.screen .up-1 {
  z-index: 10;
}
.screen .up-2 {
  z-index: 20;
}
.screen .up-3 {
  z-index: 30;
}
.screen .layer.up-3 {
  position: relative;
  z-index: 30;
}
.convo {
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
}
.convo__item {
  display: flex;
}
.convo__item.guest {
  justify-content: flex-end;
}
.convo__item__content {
  display: inline-flex;
  justify-content: flex-start;
  width: fit-content;
  max-width: 600px;
  padding: 0.5rem 0.75rem;
}
.tables {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: min-content;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .tables {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    gap: 1rem;
  }
}
.table {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1 0 auto;
  flex-direction: column;
  width: 100%;
  height: min-content;
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  background-color: #f3f5f7;
  color: #000;
  position: relative;
  order: 1;
}
@media (min-width: 1200px) {
  .table {
    width: calc(25% - 1rem);
    flex: 0 0 calc(25% - 1rem);
  }
  .table.chat-open {
    width: 74%;
    flex: 0 0 70%;
    order: 2;
  }
}
.table .chat-input {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  box-sizing: border-box;
}
@media (min-width: 600px) {
  .table .chat-input {
    max-width: 600px;
  }
}
.table .chat-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 1rem;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-top: 1rem;
}
@media (min-width: 600px) {
  .table .chat-controls {
    max-width: 600px;
  }
}
.table h2 {
  text-align: center;
  font-size: 1.125rem !important;
  font-weight: 400 !important;
  color: #333;
  letter-spacing: 0px;
  margin: 0.5rem 0 !important;
}
.table__lead {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 1rem;
  position: relative;
}
.table__lead__photo {
  width: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 10px;
}
.table .about {
  width: 100%;
  text-align: center;
  font-size: 0.625rem;
  font-weight: 500;
  line-height: 1.25;
  margin: 0 0 1rem;
  color: #222;
}
.table .chatcontrols {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  color: #000;
  width: 100%;
  height: 100%;
}
.table .chatcontrols .topic__input {
  display: block;
  position: relative;
}
.table .chatcontrols .topic-selected {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-size: 0.875rem;
  margin: 0 0 1rem 0;
}
.table .chat-main {
  width: 100%;
  height: 100%;
}
.table h3.topic-title {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 400;
  color: #333;
  line-height: 1;
}
.table h3.topic-title i {
  position: relative;
  font-weight: 400;
  color: #666;
  display: inline-block;
  top: 0.5rem;
  left: 0.25rem;
  font-style: normal;
}
.table .input-row {
  display: flex;
  width: 100%;
  max-width: 600px;
  margin: 1.5rem auto 0;
}
.icon.dialogue-send {
  color: #fff;
  margin: 0 0 0 0.2rem;
}
