/* the main entry point */

html, body {
  font-family: Verdana, sans-serif;
  font-size: 16px;
}

/* ********************************************** */

* {
   box-sizing: border-box;
}

.padding {
   margin: 0.1em;
   padding: 0.1em;
}
.padding_light {
   margin: 0.05em;
   padding: 0.05em;
}
.padding_heavy {
   margin: 0.5em;
   padding: 0.5em;
}
.padding_lr {
    margin-left: 0.15em;
    margin-right: 0.15em;
    padding-left: 0.15em;
    padding-right: 0.15em;
}

.rounded {
   border-radius: 4px;
}

.border {
   border: 0.05em solid Black;
   border-radius: 4px;
}

.stretched {
   align-items: stretch;
   align-self: stretch;
}

.tiny {
   font-size: 0.75em;
}

.small {
   font-size: 0.9em;
}

.large {
   font-size: 1.1em;
}

.centered {
   justify-content: center;
   align-content: center;
   align-self: center;
   align-items: stretch;
}

.between {
   justify-content: space-between;
}

.wrapped {
   flex-wrap: wrap;
}

.top_down {
   flex-direction: column;
   align-items: flex-start;
}

.left_right {
   flex-direction: row;
   align-items: flex-start;
}

#fg-name {
}

a {
    text-decoration : none;
}

.container {
  display: flex;
  flex-direction: column;
  align-content: center;
  flex: 1 1 auto;
}

/** using images as rsadio-input START */
/* HIDE RADIO */
[type=radio] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
/* IMAGE STYLES */
[type=radio] + img {
  cursor: pointer;
}
/** STOP */

.button {
  margin: 0.3em;
  padding: 0.2em;
  border-radius: 8px;
  color: White;
  background-color: Black;
}

.button:hover {
  color: Black;
  background-color: White;
  border-radius: 8px;
  border: 0.1em solid Black;
}

.movebutton {
}
.movebutton:hover {
}

/* ********************************************** */

.desk, .deskheader, .deskbody, .deskbody_top, .deskbody_bottom, .deskfooter {
  display: flex;
}

/* ********************************************** */

.face {
  display: flex;
}

.image {
    object-fit: contain;
}

/* ********************************************** */
.items_row, .items_col, .item {
    display: flex;
}

.items_row {
    flex-direction: row;
}
.items_col {
    flex-direction: column;
}

.item {
    flex: 1 1 auto;
}

/* ---------------------------*/

.moves {
    display: flex;
    flex-direction: column;
}

.moves_player_master {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}