#tilesContent button,
#tilesContent select {
  color: #FFFFFF;
  background-color: #3E3E3E;
  border: none;
  margin: 2px;
  cursor: pointer; }
  #tilesContent button.selected,
  #tilesContent select.selected {
    color: #EFE845; }
#tilesContent button:disabled {
  color: rgba(62, 62, 62, 0.75);
  background: #FFFFFF;
  opacity: 0.7;
  cursor: default; }

#strat-hud {
  color: #000000; }

#app {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 50px 1fr;
  grid-template-areas: "appTitleBar" "appContent"; }

#appTitleBar {
  display: grid;
  grid-area: appTitleBar;
  grid-template-columns: 50px 1fr 1fr 200px;
  column-gap: 20px;
  grid-template-rows: 50px;
  grid-template-areas: "titleBarLogo titleBarTabs titleBarHotkeys titleBarControls"; }

#titleBarLogo {
  background-image: url("../img/titleBar/header_icon.png");
  background-size: cover;
  grid-area: titleBarLogo; }

#titleBarTabs {
  display: grid;
  grid-area: titleBarTabs;
  grid-template-rows: 50px; }

#titleBarHotkeys {
  display: grid;
  grid-area: titleBarHotkeys;
  grid-template-rows: 50px; }

#titleBarControls {
  display: grid;
  grid-area: titleBarControls;
  grid-template-rows: 50px; }

#appContent {
  display: grid;
  grid-area: appContent;
  column-gap: 20px;
  grid-template-columns: 50px 1fr;
  grid-template-rows: 1fr;
  grid-template-areas: "appTiles tilesContent"; }

#appTiles {
  display: grid;
  grid-area: appTiles;
  grid-template-columns: 50px; }

#tilesContent {
  display: grid;
  grid-area: tilesContent;
  grid-template-columns: 1fr;
  grid-template-rows: 20px 1fr; }

#appAds {
  display: grid;
  grid-area: appAds;
  grid-template-columns: 1fr;
  grid-template-rows: 20px 1fr;
  grid-template-areas: "." "ad"; }

.tileContent {
  height: calc( 100vh - 50px - 20px );
  grid-template-columns: 1fr;
  grid-template-rows: 50px 1fr; }

.titleBarTab {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition-property: background-color, border-bottom-color;
  transition-duration: .15s;
  transition-timing-function: ease-in-out;
  color: #969696;
  border-top: none;
  border-bottom: solid 2px #323232;
  border-right: none;
  border-left: none;
  cursor: pointer; }

.titleBarTab:hover {
  background-color: #464646; }

.titleBarTab:hover,
.titleBarTab:active,
.titleBarTab.selected {
  color: #FFFFFF;
  border-bottom-color: #EFE845; }

/* Controls */
.titleBarControl {
  background: transparent;
  transition: background-color 0.15s ease-in-out;
  border: none;
  cursor: pointer; }

.titleBarControl:hover,
.titleBarControl:active {
  background: #464646; }

.titleBarControl:before {
  display: block;
  content: '';
  width: 50px;
  height: 50px;
  mask: var(--mask) center center no-repeat;
  background: #6C6C6C;
  transition: inherit; }

.titleBarControl:hover:before,
.titleBarControl:active:before {
  background: #DEDEDE; }

#discordControl:before {
  mask-size: 25px; }

#closeControl:hover,
#closeControl:active {
  background: #c21913; }

#closeControl:hover:before,
#closeControl:active:before {
  background: #DEDEDE; }

* {
  font-family: 'Open Sans Condensed', 'Noto Sans SC', 'Noto Sans KR', sans-serif; }

button,
select,
option,
img,
input,
label {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

html {
  height: 100%; }

body {
  margin: 0;
  background-color: #070707;
  color: #FFFFFF; }

#tiles {
  background-color: #212121; }

.tilesControl {
  background: transparent;
  transition: background-color 0.15s ease-in-out;
  border: none;
  cursor: pointer; }

.tilesControl:hover,
.tilesControl:active {
  background: #464646; }

.tilesControl:before {
  display: block;
  content: '';
  width: 50px;
  height: 50px;
  mask: var(--mask) center center no-repeat;
  background: #808080;
  transition: inherit; }

.tilesControl:hover:before,
.tilesControl:active:before,
.tilesControl.selected:before {
  background: #EFE845; }

.pageContent {
  background-color: #191919; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Open Sans Condensed', 'Noto Sans SC', 'Noto Sans KR', sans-serif;
  font-weight: normal;
  pointer-events: none; }

h1 {
  color: #EFE845;
  font-size: 70px; }

h2 {
  font-size: 50px; }

h3 {
  font-size: 30px; }

h4 {
  font-size: 20px; }

h5 {
  font-size: 10px; }

h6 {
  font-size: 5px; }

p {
  font-size: 20px;
  text-align: justify; }

li {
  font-size: 20px; }

ul.noBullet {
  list-style-type: none; }

.highlight {
  font-weight: 700;
  margin-right: 0.5rem; }

.helpIcon {
  width: 30px;
  height: 30px;
  margin-right: 0.5rem; }

/* width */
#tilesContent ::-webkit-scrollbar {
  height: 5px;
  width: 5px; }

/* Track */
#tilesContent ::-webkit-scrollbar-track {
  background: #191919; }

/* Handle */
#tilesContent ::-webkit-scrollbar-thumb {
  background: #808080;
  border-radius: 10px; }

/* Handle on hover */
#tilesContent ::-webkit-scrollbar-thumb:hover {
  background: #EFE845; }

a {
  padding: 2px 5px;
  vertical-align: top;
  color: white;
  text-decoration: none;
  font-weight: bold; }

div.odd {
  background-color: #191919; }

div.even {
  background-color: #292929; }

div.column {
  display: inline-block;
  vertical-align: top; }

div.column.pic {
  text-align: center; }

div.column.pic.unit {
  width: 400px; }

div.column.pic.operator {
  width: 400px; }

div.column.pic.weapon {
  width: 400px; }

div.column.desc.unit {
  width: calc(100% - 400px); }

div.column.desc.operator {
  width: calc(100% - 400px); }

div.column.desc.weapon {
  width: calc(100% - 400px); }

div.unit {
  padding-top: 5px;
  padding-bottom: 5px; }

div.info {
  color: white;
  text-align: justify;
  font-size: 20px;
  padding-right: 10px; }

p.quote {
  max-width: 1500px;
  padding-left: 20px;
  font-style: italic; }

p.paragraph {
  max-width: 1490px;
  padding-left: 30px;
  padding-right: 30px; }

img.icon {
  max-width: 20px;
  min-width: 20px;
  padding-right: 30px; }

img.badge {
  max-height: 200px;
  min-height: 200px; }

img.fullBody {
  max-height: 500px;
  max-width: 100%; }

img.avatar {
  max-height: 125px;
  min-height: 125px; }

img.smallAvatar {
  max-height: 70px;
  min-height: 70px; }

img.badgeFlag {
  max-height: 200px;
  min-height: 200px;
  border: solid white 1px; }

img.flag {
  min-height: 50px;
  max-height: 50px;
  border: solid white 1px; }

#stratMenuArea {
  background-color: #212121; }

.stratControl {
  background: transparent;
  transition: background-color 0.15s ease-in-out;
  border: none;
  cursor: pointer; }

.stratControl:hover,
.stratControl:active {
  background: #464646; }

.stratControl:before {
  display: block;
  content: '';
  width: 30px;
  height: 30px;
  mask: var(--mask) center center no-repeat;
  background: #808080;
  transition: inherit; }

.stratControl:hover:before,
.stratControl:active:before,
.stratControl.selected:before {
  background: #EFE845; }

#ad {
  background-color: #191919;
  display: flex;
  align-items: center;
  justify-content: center; }

/*# sourceMappingURL=grid.css.map */
