.GameContainer {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: normal;
  align-items: normal;
  flex-wrap: nowrap;
  overflow: hidden;
  background-color: #829fbf; }
  .GameContainer .Betting {
    padding: 14px 10px;
    overflow: scroll;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 200px; }
  .GameContainer .Match {
    padding-top: 50px;
    background-color: #ffffff; }
    .GameContainer .Match .Rules {
      width: fit-content;
      padding: 3px 6px;
      position: absolute;
      border-radius: 4px;
      background-color: #1f2845;
      right: 4px;
      top: 53px;
      font-size: 14px;
      color: white;
      z-index: 2; }
    .GameContainer .Match .layer-change-stream {
      width: fit-content;
      position: absolute;
      left: 4px;
      top: 53px;
      z-index: 2; }
      .GameContainer .Match .layer-change-stream .btn-change-stream {
        position: relative;
        background-color: #1f2845;
        border-radius: 4px;
        font-size: 14px;
        color: white;
        border: 0px;
        display: flex;
        margin: 0px;
        padding: 6px 8px; }
        .GameContainer .Match .layer-change-stream .btn-change-stream img {
          filter: invert(100%) sepia(92%) saturate(0%) hue-rotate(189deg) brightness(107%) contrast(101%);
          width: auto;
          height: 10px; }
        .GameContainer .Match .layer-change-stream .btn-change-stream p {
          font-size: 12px;
          margin-top: 4px;
          margin-left: 3px;
          line-height: 0.9; }
  .GameContainer .Boxers {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 6px 0px; }
    .GameContainer .Boxers .VS {
      font-size: 33px;
      font-weight: bold;
      font-style: italic;
      color: #ff5454;
      display: flex;
      margin-left: -8px; }
      .GameContainer .Boxers .VS span {
        color: #4053f9; }
    .GameContainer .Boxers .RoundNoWrapper {
      position: absolute;
      top: 26px;
      display: flex;
      flex-direction: column;
      align-items: center; }
    .GameContainer .Boxers .Timer,
    .GameContainer .Boxers .RoundNo {
      font-size: 12px;
      text-align: center; }
  .GameContainer .Boxer {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 5vw;
    word-break: break-all; }
    .GameContainer .Boxer .BoxerPic {
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #cccccc;
      border: 4px solid white;
      border-radius: 50%;
      box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
      overflow: hidden; }
      .GameContainer .Boxer .BoxerPic img {
        min-width: 100px;
        min-height: 100px;
        max-width: 100px;
        max-height: 100px; }
    .GameContainer .Boxer .BoxerName {
      padding-top: 8px;
      font-size: 4vw;
      text-align: center;
      line-height: 17px; }
      .GameContainer .Boxer .BoxerName p {
        font-weight: bold; }
      .GameContainer .Boxer .BoxerName small {
        font-size: 12px; }
      .GameContainer .Boxer .BoxerName.RedSide {
        color: #ff5454; }
      .GameContainer .Boxer .BoxerName.BlueSide {
        color: #4053f9; }
    .GameContainer .Boxer .Ratio {
      font-size: 3vw;
      color: #080808; }
  .GameContainer .BoxerColor {
    display: flex; }
    .GameContainer .BoxerColor .BoxerSide {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      height: 40px;
      width: 50%;
      color: #ffffff;
      font-weight: 400; }
      .GameContainer .BoxerColor .BoxerSide small {
        font-size: 10px; }
      .GameContainer .BoxerColor .BoxerSide.isDisable {
        pointer-events: none;
        opacity: 0.5; }
      .GameContainer .BoxerColor .BoxerSide.RedSide {
        background-color: #ff5454; }
      .GameContainer .BoxerColor .BoxerSide.BlueSide {
        background-color: #4053f9; }

@keyframes betting {
  0% {
    opacity: 0;
    margin-left: -80px; }
  100% {
    opacity: 1;
    margin-left: 0px; } }

@keyframes bettingRight {
  0% {
    opacity: 0;
    margin-right: -80px; }
  100% {
    opacity: 1;
    margin-right: 0px; } }
  .GameContainer .BetDialogContainer {
    background-color: white;
    padding: 6px 12px;
    margin-bottom: 8px;
    border-radius: 20px;
    animation: betting 0.6s;
    transition: all 0.6s; }
    .GameContainer .BetDialogContainer.right {
      background-color: #09e448;
      align-self: flex-end;
      border-top-left-radius: 20px;
      animation: bettingRight 0.6s; }
  .GameContainer .BetAmountContainer {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    padding: 10px; }
    .GameContainer .BetAmountContainer .BetAmount {
      text-align: right;
      border: none;
      background-color: unset;
      border-bottom: 1px solid #939393;
      border-radius: 0;
      margin-bottom: 4px;
      font-size: 20px; }
      .GameContainer .BetAmountContainer .BetAmount:focus {
        border-color: #1f2845; }
  .GameContainer .Bet {
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    text-align: center;
    flex: 1;
    padding: 0 8px;
    align-items: center; }
    .GameContainer .Bet button {
      border-radius: 8px;
      height: 58px;
      color: white;
      border: none; }
      .GameContainer .Bet button p {
        font-size: 2vh; }
      .GameContainer .Bet button small {
        font-size: 10px; }
    .GameContainer .Bet .BetRed.disabled,
    .GameContainer .Bet .BetBlue.disabled,
    .GameContainer .Bet .BetTie.disabled {
      pointer-events: none;
      background-color: grey; }
    .GameContainer .Bet .BetRed {
      background-color: #ff5454; }
    .GameContainer .Bet .BetBlue {
      background-color: #4053f9; }
    .GameContainer .Bet .BetTie {
      background-color: #008c00; }
    .GameContainer .Bet.pool-normal button {
      width: calc(50% - 5px); }
      .GameContainer .Bet.pool-normal button.BetTie {
        display: none; }
    .GameContainer .Bet.pool-tie .BetRed {
      width: 33%; }
    .GameContainer .Bet.pool-tie .BetBlue {
      width: 33%; }
    .GameContainer .Bet.pool-tie .BetTie {
      width: 32%; }
  .GameContainer .BetStatus {
    background-color: #ff5454;
    text-align: center;
    padding-top: 6px;
    padding-bottom: 6px; }
    .GameContainer .BetStatus.pending {
      background-color: #1f2845; }
      .GameContainer .BetStatus.pending .Timer {
        color: #ffffff; }
    .GameContainer .BetStatus.active {
      background-color: #09e448; }

.RoundCountdowns {
  display: flex;
  flex-direction: row;
  background-color: #dcdcdc;
  padding: 4px 8px;
  min-height: 40px;
  overflow-y: auto; }
  .RoundCountdowns .Timer {
    text-align: center;
    margin-right: 8px;
    position: relative;
    cursor: pointer;
    height: fit-content; }
    .RoundCountdowns .Timer > div {
      white-space: nowrap;
      background-color: #1f2845;
      color: white;
      padding: 4px 8px;
      border-radius: 8px; }
      .RoundCountdowns .Timer > div.active {
        background-color: #07b339; }
      .RoundCountdowns .Timer > div.close {
        background-color: #8b8b8b; }
      .RoundCountdowns .Timer > div.calcel {
        background-color: #ff5454; }
    .RoundCountdowns .Timer .TimerSelectedHistory {
      width: 100%;
      height: 8px;
      border-top-left-radius: 8px;
      border-top-right-radius: 8px;
      background-color: #07b339;
      position: absolute;
      left: 0; }

.RoundControl {
  height: 200px;
  position: fixed;
  bottom: 0;
  width: 100%;
  display: flex;
  flex-direction: column; }

.VideoWrapper {
  position: relative;
  height: 180px;
  font-size: 10px;
  background-color: #000000;
  overflow: hidden; }
  .VideoWrapper .BlockBar {
    position: absolute;
    top: 0;
    z-index: 1;
    height: 32px;
    display: flex;
    align-items: center;
    padding: 0 4px;
    color: white; }
    .VideoWrapper .BlockBar span {
      background-color: #1f2845;
      padding: 0 2px; }
    .VideoWrapper .BlockBar.on-right {
      left: unset;
      right: 52px; }
    .VideoWrapper .BlockBar.on-left {
      left: 4px;
      right: unset; }
  .VideoWrapper .BlockBrand {
    display: flex;
    align-items: center;
    padding: 0 4px;
    height: 31px;
    position: absolute;
    bottom: 0;
    left: 0;
    color: white;
    z-index: 1; }
    .VideoWrapper .BlockBrand span {
      background-color: #1f2845;
      padding: 0 2px; }
  .VideoWrapper .Player-youtube-wrapper,
  .VideoWrapper .Player-sldp-wrapper,
  .VideoWrapper .Player-vjs-wrapper,
  .VideoWrapper .Player-multi-audio-vjs-wrapper {
    width: 100%;
    height: 100%;
    position: relative; }

.player-dimensions {
  width: 100%;
  height: 180px; }
