﻿
.left-panel
{
  width: 65%;
  height: 100%;
  flex-direction: column;
}

.right-panel
{
  width: 35%;
  height: 100%;
  flex-direction: column;
}

.game-title
{
  cursor: pointer;
  
  height: 200px;
  background-image: url("ui/logo-banner.png");
  background-size: contain;
  background-repeat: no-repeat;

  &:hover
  {
    sound-in: "garryware.menu.hover";
  }
  &:active
  {
    top: 3px;
  }
}

.controls
{
  flex-direction: row;
  gap: 20px;
  align-items: flex-start;
}

.control-cards
{
  flex-direction: row;
  gap: 20px;
  align-items: flex-start;
}

.icon
{
  width: 100%;
  height: 100%;
}

.info-box
{
  margin-bottom: 20px;
  padding: 10px;
  
  font-size: 18px;
  background-color: rgba(black, 0.7);
  
  .icon
  {
    margin-top: auto;
    margin-bottom: auto;
    margin-right: 20px;
    height: 48px;
    width: 48px;
  }
}

.lobbies
{
  width: 100%;
  flex-direction: column;
  
  > .header
  {
    width: 100%;
    padding: 10px;
    flex-direction: row;
    
    font-size: 24px;
    font-weight: bold;
    align-items: center;
    
    background-color: rgba(black, 0.7);
    
    > .icon
    {
      margin-top: auto;
      margin-bottom: auto;
      margin-right: 20px;
      height: 48px;
      width: 48px;
    }
  }
  
  > .content
  {
    width: 100%;
    padding: 10px;
    flex-direction: column;

    background-color: rgba(black, 0.2);
    font-size: 18px;
  }
  
}

.hide
{
  opacity: 0;
}
