/* Watch / Live Streaming - Mobile Friendly */

.streaming {
  width: 100%;
  margin: 0 auto 20px;
  min-height: 150px;
  box-sizing: border-box;
}

/* =====================
   PLAYER LAYOUT
   ===================== */
#player {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 8px;
}

#player .col-left {
  flex: 0 0 70%;
  max-width: 70%;
}

#player .col-right {
  flex: 0 0 29%;
  max-width: 29%;
}

#player iframe {
  width: 100% !important;
  height: 450px;
  float: none;
  display: block;
  border: none;
}

/* =====================
   MOBILE: STACK PLAYER
   ===================== */
@media only screen and (max-width: 768px) {
  #player {
    flex-direction: column;
  }

  #player .col-left,
  #player .col-right {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }

  #player iframe {
    width: 100% !important;
    height: 240px;
  }
}

@media only screen and (max-width: 480px) {
  #player iframe {
    height: 200px;
  }
}

/* =====================
   MEMBER LIST
   ===================== */
#members {
  margin-top: 20px;
  white-space: normal;
  overflow-x: hidden;
}

#members .circle {
  border: 5px solid #8f0000;
  height: 60px;
  width: 60px;
  position: absolute;
  top: -10px;
  left: -10px;
  background-color: #000;
}

#members .circle.online {
  border-color: green;
}

#members .member {
  border: 1px solid #222;
  background: #333;
  border-radius: 3px;
  position: relative;
  display: block;
  margin-bottom: 30px;
  overflow: hidden;
}

#members .member .member-name {
  padding: 15px 10px 15px 60px;
  font-weight: bold;
}

#members .member .viewers {
  font-style: italic;
  padding: 10px;
  float: right;
}

#members .member .game {
  padding: 10px;
  background: #333;
  text-overflow: ellipsis;
  font-size: 0.9em;
  overflow-x: hidden;
}

#members .member p {
  margin: 0;
  line-height: 1;
}
