/*------------fostChat--------------- */
.FchatContent {
  color: #ffffff;
  margin: 0px 10px 0px 10px;
  width: calc(100vw - 20px); 
  height: 70vh; 
  bottom: 0px;
  right: 0px;  
  background: rgba(0, 0, 0, .5);
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 6;
  font-family: 'futura';
  font-size: 18px;
  border: solid .5px #ffffff;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.FchatContent a {
  color: #ffffff;
}
li {
  list-style: none;
  background-color: #995931;
  border-radius: 8px;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.4);
  margin: 10px auto 10px auto; 
  padding: 10px 10px 10px 10px;
  width: calc(100% - 40px);
  max-width: 1000px;
  text-align: center;
  pointer-events: none;
}
li img {
  display: block;
  margin: 0 auto;
}
.FtvContent {
  margin: 0px 10px 0px 10px;
  width: calc(100vw - 20px); 
  height: 70vh; 
  bottom: 0px;
  right: 0px;  
  background: rgba(0, 0, 0, .5);
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 6;
  font-family: 'futura';
  font-size: 18px;
  border: solid .5px #ffffff;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.FchatPosts {
  padding: 0px;
  margin: 0px; 
  width: calc(100% - 10px);
  max-width: 100%;
  flex: 1;
  font-size: .9em;
  line-height: 1.7em;
  overflow-y: auto;
  overflow-x: hidden;
  min-width: 0;
  word-break: break-word;
  overflow-wrap: anywhere;
  box-sizing: border-box;
}
.FMoreInner {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  padding: 10px 0px 10px 0px;
  box-sizing: border-box;
  overflow: hidden;
  min-width: 0;
}
.FMoreHeader {
  font-size: 1.15em;
  flex: 0 0 auto;
  text-align: center;
  max-width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  color: #ffffff;
}
.FMoreBody {
  flex: 1;
  overflow-y: auto;
  width: calc(80% - 1px);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  border: solid .5px transparent;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, .1);
}
.FMoreInner textarea {
  flex: 1;
  padding: 5px;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  resize: none;
  min-width: 0;
  display: block;
  border: none;
  overflow-x: hidden;
}
/*------------fostTV--------------- */
.PlayPauseBtn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 10px;
  width: 100px;
  height: 100px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
  padding: 0;
  background-color: transparent;
  opacity: .9;
}
/* Hover */
.PlayPauseBtn:hover {
  opacity: .5;
}
.PlayPauseBtn:active {
  opacity: 0;
}
/* Button Images */
.PlayPauseBtn img {
  max-width: 100px;
  max-height: 100px;
  object-fit: contain;
  pointer-events: none;
  filter: drop-shadow(0 2px 2px rgb(0, 0, 0, .5));
}
.MusicVideo {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}