:root {
  --content-height: 100%;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  overflow: hidden;
}

.column {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: var(--content-height);
}

.row .col {
  flex: 10000 1 0%;
  width: auto;
  max-width: 100%;
  text-align: center;
}

.row .col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  text-align: center;
}

.content {
  height: 100% !important;
  width: 100% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
/* removed ad layout styles */

/* hide stray game list items from removed overlay */
li.relative.group { display: none !important; }
