.cross-background {
  background: url("./cross.gif");
  background-repeat: no-repeat;
  background-size: contain;
  mix-blend-mode: multiply;
}

.circle-background {
  background: url("./circle.gif");
  background-repeat: no-repeat;
  background-size: contain;
  mix-blend-mode: multiply;
}

.nw-se {
  background-image: url("./nw-se.png");
  background-repeat: no-repeat;
  background-size: contain;
  mix-blend-mode: multiply;
}
.vertical-m {
  background-image: url("./vertical-m.png");
  background-repeat: no-repeat;
  background-size: contain;
  mix-blend-mode: multiply;
  margin-left: 500px;
}
.vertical-l {
  background-image: url("./vertical-l.png");
  background-repeat: no-repeat;
  background-size: contain;
  mix-blend-mode: multiply;
  margin-left: 500px;
}
.vertical-r {
  background-image: url("./vertical-r.png");
  background-repeat: no-repeat;
  background-size: contain;
  mix-blend-mode: multiply;
  margin-left: 500px;
}
.ne-sw {
  background-image: url("./ne-sw.png");
  background-repeat: no-repeat;
  background-size: contain;
  mix-blend-mode: multiply;
}
.horizontal-t {
  background-image: url("./horizontal-t.png");
  background-repeat: no-repeat;
  background-size: contain;
  mix-blend-mode: multiply;
}

.horizontal-m {
  background-image: url("./horizontal-m.png");
  background-repeat: no-repeat;
  background-size: contain;
  mix-blend-mode: multiply;
}

.horizontal-b {
  background-image: url("./horizontal-b.png");
  background-repeat: no-repeat;
  background-size: contain;
  mix-blend-mode: multiply;
}

#gameTable {
  display: ruby-text;
  align-items: center;
  height: 1000px;
  width: 1000px;
  position: relative;
  #gameGrid {
    width: 100%;
    height: 90%;
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    align-items: stretch;
    .line-row {
      height: 32.7%;
      width: 100%;
      margin-left: 7px;
      .line-row__element {
        height: 100%;
        width: 32%;
        margin-left: 0.5%;
        margin-right: 0.5%;
        border: solid;
        border-color: bisque;
        border-width: 2px;
      }
      :hover {
        background-color: bisque;
      }
    }
  }
  #winner {
    visibility: hidden;
    border-radius: 20%;
    align-items: center;
    height: 450px;
    width: 550px;
    opacity: 0.8;
    position: absolute;
    top: 25%;
    left: 25%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 1%;
  }
}
.game-grid__ready {
  border-style: outset;
  border-width: 20px;
  border-color: bisque;
}
#titleBlock {
  margin-top: 10px;
  height: 380px;
  width: 1000px;
  justify-content: center;
  display: flex;
  align-content: space-around;
  align-items: center;
  flex-direction: column;
  b {
    color: rgb(248, 189, 118);
  }
  .titleHeader {
    display: flex;
    justify-content: center;
  }
  .titleChoise {
    display: flex;
    justify-content: center;
  }
  .titleFooter {
    height: 70px;
    padding-top: 20px;
    display: flex;
    justify-content: center;
    button {
      width: 0px;
      height: 0px;
      visibility: hidden;
    }
  }
  .user-badge {
    width: 150px;
    height: 150px;
    background: url("./user.png");
    background-size: contain;
    mix-blend-mode: multiply;
    border-radius: 15%;
    margin-right: 10px;
  }
  .computer-badge {
    width: 150px;
    height: 150px;
    background: url("./computer.jpg");
    background-repeat: no-repeat;
    background-size: contain;
    mix-blend-mode: multiply;
    border-radius: 15%;
    margin-left: 10px;
  }
  .draw-badge {
    width: 150px;
    height: 150px;
    background: url("./no-win.png");
    background-repeat: no-repeat;
    background-size: contain;
    mix-blend-mode: multiply;
    border-radius: 15%;
    margin-left: 10px;
  }
  .player-badge__selected {
    border-style: none;
    border-color: bisque;
    box-shadow: bisque 3px 3px 3px;
    border-width: thin;
  }
  #user:hover {
    border-style: solid;
    border-color: bisque;
    box-shadow: bisque 5px 5px 5px;
    border-width: thick;
  }
  #computer:hover {
    border-style: solid;
    border-color: bisque;
    box-shadow: bisque 5px 5px 5px;
    border-width: thick;
  }
  #result-bar {
    display: flex;
    align-items: center;
    background-color: bisque;
    margin-top: 10px;
    width: 85%;
    box-shadow: bisque 5px 5px 5px;
    border-radius: 60%;
    padding: 1%;
    .result-bar__label {
      color: rgb(145, 89, 21);
      font-size: large;
    }
    .result-bar__player-badge-frame {
      display: flex;
      align-items: center;
      .result-bar__player-badge-frame--content {
        height: 50px;
        width: 50px;
      }
      .result-bar__player-badge-frame--value {
        font-size: xx-large;
        color: rgb(160, 77, 10);
      }
    }
  }
}
