/*------------fostChat--------------- */
.Sup2Content {
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  color: #000000;
  width: 100vw;
  background-image: radial-gradient(transparent 50%, rgba(0, 0, 0, .7));
  background-size: cover;
  background-position: center center;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  font-family: 'futura';
  font-size: 18px;
}
.Sup2Content a {
  color: #000000;
}
.Sup2Posts {
  padding: 0px;
  margin-left: auto; 
  margin-right: auto;
  width: calc(100% - 10px);
  max-width: 400px;
  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;
}
.FMore2Inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  min-width: 0;
}
.FMore2Header {
  font-size: 1.15em;
  flex: 0 0 auto;
  text-align: center;
  max-width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  color: #ffffff;
}
.FMore2Body {
  flex: 1;
  overflow-y: auto;
  height: 100%;
  max-height: 100%;
  width: calc(100% - 22px);
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 5px;
}
.FMore2Inner 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;
}
li {
  list-style: none;
  background-color: rgba(255, 255, 255, .8);
  border-radius: 8px;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.4);
  margin: 0px auto 15px auto;
  padding: 10px 10px 55px 10px;
  width: calc(100% - 40px);
  max-width: 400px;
  text-align: center;
  position: relative;
  pointer-events: none; /* disable clicks on the li */
}
.love {
  height: 45px;
  overflow: hidden;
  position: absolute;
  width: 250px;
  max-width: 250px;
  left: 50%;
  bottom: 5px;
  transition-duration: .5s;
  pointer-events: auto;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
}
.love table {
  border-collapse: separate;
  border-spacing: 20px 0;
  margin: 0;
  padding: 0;
}
.love td,
.love th {
  padding: 0px;
}
.postbutton {
  margin: 2px;
  display: inline-block;
  align-items: center;      /* vertical center */
  justify-content: center;  /* centers contents if there's extra space */
  position: relative;
  width: 2em;
  height: 2em;
  max-height: 45px;
  border-radius: 5px;
  transition-duration: .5s;
  pointer-events: auto;
  cursor: pointer;
  overflow: hidden;
}
.postbutton:hover {
  background-color: rgb(0, 0, 0, .5);
}
.postreact {
  width: 2em;
  height: 2em;
  max-width: 45px;
  max-height: 45px;
  background-image: url('fmp3simages/Email.png');
  background-size: 2em 2em;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}
.postbuy {
  width: 2em;
  height: 2em;
  max-width: 45px;
  max-height: 45px;
  background-image: url('fmp3simages/PWBUY.png');
  background-size: 2em 2em;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}
.textHighlight {
  display: inline;
  background: rgba(216, 60, 255, 0.4);
  color: #000000;
  padding: 0 .15em;
  line-height: 1.4;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
@keyframes rise {
  0% { background-position: center 0px; }
  100% { background-position: center -700px; }
}