﻿.liveContainer {
  display: flex;
  flex: 0 1 auto;
  flex-wrap: wrap;
  flex-direction: row;
  width: 100%;
  justify-content: center;
  align-items: flex-start;
}

.liveBlock {
  width: 33%;
  display: flex;
  flex: 0 1 auto;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: #eee;
  height: auto;
  margin: 1em;
}

.liveBlock video {
  width: 100% !important;
}
/* replaceable with video  */
/* .liveBlock span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  flex: 0 1 auto;
} */

.liveBlock .feedTitle {
  font-size: 1em;
  padding: 0.5em 0;
  background: #ddd;
  width: 100%;
  text-align: center;
}

.liveBlock.reverseOrder {
  flex-direction: column-reverse;
}

@media screen and (max-width: 1200px) {
  .liveBlock {
    width: 470px;
  }

  .liveContainer {
    justify-content: center;
  }
}
@media screen and (max-width: 990px) {
  .liveBlock {
    width: 100%;
  }
}
