@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
.hiddenPost {
    position: fixed;
    bottom: 0;
    right: 0;
    opacity: 0;
}
.loadingScreen {
    position: fixed;
    z-index: 10;
    width: 100vw;
    height: 100vh;
    background-color: black;
    display: flex;
    align-items: center;
    transition-duration: 0.3s;
}
.loadingScreen.hidden {
    opacity: 0;
    pointer-events: none;
    transition-duration: 0.3s;
}
.loadingScreen .logo {
    display: block;
    width: 200px;
    margin-left: auto;
    margin-right: auto;
}
.loadingScreen .loader {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
}
body {
  background-image: linear-gradient(45deg, rgb(0 0 0), rgb(36 36 36 / 95%)), url('./img/bg.jpg');
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  background-attachment: fixed;
}
.teamList {
  position: fixed;
  top: 15px;
  left: 15px;
  width: 245px;
  border-radius: 15px;
  overflow: hidden;
  background-color: rgba(0,0,0,0.6);
  background: #1c1c1c;
  z-index: 2;
  height: calc(100vh - 30px);
}
.teamList .logo {
  height: 40px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  margin-bottom: 20px;
}
.group-order {
  position: relative;
  margin-left: 260px;
  height: auto;
  min-height: 300px;
  width: calc(100% - 260px);
  overflow: hidden;
}
.panel {
  width: 100%;
  height: 145px;
  background: #1c1c1c;
  border-radius: 15px;
  margin-top: 15px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0px 5px 20px #0000004d;
  border: 1px solid #2c2c2c;
}
.teamPanel {
  width: 100%;
  text-align: center;
  color: white;
  background-color: #2d2d2d;
  font-size: 11px;
  border-radius: 6px;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: 20px;
}
.panel h4 {
  color: white;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-size: 16px;
}
ul {
  padding: 0px;
  margin: 0px;
}
ul p {
  display: block;
  width: 100%;
  margin: 0px;
  float: left;
  height: 30px;
  line-height: 30px;
  padding-left: 30px;
  color: white;
  transition-duration: 0.1s;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 500;
  border-bottom: 1px solid #1c1c1c;
}
ul p.highlight {
  background-color: rgba(255,255,255,0.2);
  transition-duration: 0.1s;
}
.teamList button {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: white;
  border: none;
}
