﻿body, html {
  height: 100%;
  margin: 0;
}

.bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background-image: url("/files/sea.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#join {
  border-radius: 1rem;
  position: fixed;
  bottom: 5vh;
  left: 5vh;
  background: #ffffff;
  padding: 1rem 2rem;
  min-height: 300px;
  width: 500px;
}
#join #header {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  color: #E41846;
}
#join p {
  margin-bottom: 20px;
}
#join .vc {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 10px 0;
}
#join .vc:first-child {
  border-right: 3px dotted #ECECEC;
}
#join .vc:hover {
  background-color: #fafafa;
  cursor: pointer;
}
#join .vc:hover .choice {
  background-color: #dbdbdb;
}
#join .vc:hover i {
  color: #E41846;
}
#join .choice {
  border-radius: 50%;
  background-color: #ECECEC;
  width: 100px;
  height: 100px;
  position: relative;
}
#join .choice i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
#join .lbl {
  width: 100%;
  margin-top: 10px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  color: #E41846;
}
#join input {
  background: #ECECEC;
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  height: 50px;
}
#join button {
  margin-top: 10px;
  background: #E41846;
  border: #b61338;
  font-size: 20px;
  padding: 5px 10px;
}
#join #CreateRoom, #join #JoinRoom {
  text-align: center;
}

#draw {
  border-radius: 1rem;
  position: fixed;
  bottom: 15vh;
  left: 15vw;
  width: 70vw;
  height: 70vh;
  background: #ffffff;
  padding: 1rem 2rem;
  overflow: hidden;
}
#draw #commandBar {
  position: absolute;
  bottom: 0px;
  width: 100%;
  left: 0px;
  background-color: #F4F5F9;
  text-align: center;
}
#draw #commandBar ul {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 55px;
  margin-bottom: 0px;
  list-style: none;
}
#draw #commandBar ul li:first-child {
  border-left: 1px solid #dbdbdb;
}
#draw #commandBar ul li.active {
  color: #677079 !important;
}
#draw #commandBar ul li {
  padding: 0 12px;
  border-right: 1px solid #dbdbdb;
  height: 100%;
  width: 100px;
  color: #B7BCC0;
  line-height: 1.2;
  padding-top: 10px;
}
#draw #commandBar ul li i {
  font-size: 1.3em !important;
}
#draw #commandBar ul li span {
  font-size: 12px;
  font-weight: bold;
}

#messages {
  height: 70% !important;
}

#textinput {
  bottom: 17vh !important;
}
