/**
  colors
 */
:root {
  --color1: #776E65FF;
  --color3: #F9F6F2FF;
  --color4: #9D948CFF;
  --color5: #BBADA0FF;
  --color6: #EDC22E7F;
  --color7: #EEE4DAFF;
  --color9: #EEE4DABA;
  --color10: #EEE4DA59;
  --color11: #f6af6c;
  --color12: #c92a1f;
  --color13: #d5b959;
  --color14: #f3cb00;
  --color15: #f4f4f4;
  --color16: #2E2E2E;
  --color17: #ffffff;
  --color18: #404040;
  --color19: #B09046;
  --color20: #808080;
  --transp1: #FFFFFF7F;
  --color22: #32323254;
  --color23: #f2b179;
  --color24: #f59563;
  --color25: #f67c5f;
  --color26: #f65e3b;
  --color27: #edcf72;
  --color28: #d4d4d4;
}

/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
body {
  margin: 0;
  font-family: sans-serif;
  font-size: 0.9em;
  line-height: 1.4em;
  overflow: hidden;
}

body * {
  box-sizing: border-box;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/* Game
   ========================================================================== */
body {
  overflow: hidden;
}

.td_block_cap_2048 {
  height: 640px;
  max-width: 800px;
  margin: 0 auto;
}

.wp2048 {
  margin: 0 auto;
  padding: 0.5em 0 0 0;
  width: 480px;
  color: var(--color1);
  font-family: Roboto, sans-serif;
}

.heading:after {
  content: "";
  display: block;
  clear: both;
}

h1.title {
  font-size: 80px;
  font-weight: bold;
  margin: 0;
  display: block;
  float: left;
}

@-webkit-keyframes move-up {
  0% {
    top: 25px;
    opacity: 1;
  }
  100% {
    top: -50px;
    opacity: 0;
  }
}
@-moz-keyframes move-up {
  0% {
    top: 25px;
    opacity: 1;
  }
  100% {
    top: -50px;
    opacity: 0;
  }
}
@keyframes move-up {
  0% {
    top: 25px;
    opacity: 1;
  }
  100% {
    top: -50px;
    opacity: 0;
  }
}
.score-container, .best-container, .sitescore-container {
  position: relative;
  display: inline-block;
  background: var(--color5);
  padding: 15px 25px;
  font-size: 25px;
  height: 25px;
  line-height: 47px;
  font-weight: bold;
  border-radius: 3px;
  color: var(--color5);
  margin-top: 8px;
  text-align: center;
}

.score-container:after, .best-container:after, .sitescore-container:after {
  position: absolute;
  width: 100%;
  top: 10px;
  left: 0;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 13px;
  text-align: center;
  color: var(--color7);
}

.score-container .score-addition, .best-container .score-addition, .sitescore-container .score-addition {
  position: absolute;
  right: 30px;
  font-size: 25px;
  line-height: 25px;
  font-weight: bold;
  color: var(--color10);
  z-index: 100;
  -webkit-animation: move-up 600ms ease-in;
  -moz-animation: move-up 600ms ease-in;
  animation: move-up 600ms ease-in;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both;
}

.score-container:after {
  content: "Punkte";
}

.best-container:after {
  content: "Highscore";
}

.sitescore-container:after {
  content: "Site Best";
}

p {
  margin-top: 0;
  margin-bottom: 10px;
  line-height: 1.65;
}

button {
  color: var(--color1);
  font-weight: bold;
  cursor: pointer;
}

strong.important {
  text-transform: uppercase;
}

hr {
  border: none;
  border-bottom: 1px solid var(--color3);
  margin-top: 20px;
  margin-bottom: 30px;
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.game-message {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--color9);
  z-index: 100;
  padding-top: 40px;
  text-align: center;
  -webkit-animation: fade-in 800ms ease 1200ms;
  -moz-animation: fade-in 800ms ease 1200ms;
  animation: fade-in 800ms ease 1200ms;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both;
}

.game-message p {
  font-size: 60px;
  font-weight: bold;
  height: 60px;
  line-height: 60px;
  margin-top: 32%;
}

.game-message > div {
  display: block;
  margin-top: 29px;
}

.game-message .high-score {
  margin-top: 52px;
}

.game-message .high-score strong {
  display: block;
  margin-bottom: 10px;
}

.game-message .high-score .high-score-email-field {
  width: 230px;
  margin-right: 5px;
}

.game-message .score-sharing {
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
}

.game-message.game-won {
  background: var(--color6);
  color: var(--color3);
}

.game-message .keep-playing-button {
  display: none;
}

.game-message.game-won .keep-playing-button {
  display: inline-block;
}

.game-message.game-won, .game-message.game-over {
  display: block;
}

.game-message.game-won p, .game-message.game-over p {
  -webkit-animation: slide-up 1.5s ease-in-out 2500ms;
  -moz-animation: slide-up 1.5s ease-in-out 2500ms;
  animation: slide-up 1.5s ease-in-out 2500ms;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both;
}

.game-message.game-won .high-score, .game-message.game-over .high-score {
  -webkit-animation: fade-in 1.5s ease-in-out 2500ms;
  -moz-animation: fade-in 1.5s ease-in-out 2500ms;
  animation: fade-in 1.5s ease-in-out 2500ms;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both;
}

.grid-container {
  position: absolute;
  z-index: 1;
}

.grid-row {
  margin-bottom: 15px;
}

.grid-row:last-child {
  margin-bottom: 0;
}

.grid-row:after {
  content: "";
  display: block;
  clear: both;
}

.grid-cell {
  width: 106px;
  height: 106px;
  margin-right: 15px;
  float: left;
  border-radius: 3px;
  background: var(--color10);
}

.grid-cell:last-child {
  margin-right: 0;
}

.tile-container {
  position: absolute;
  z-index: 2;
}

.tile, .tile .tile-inner {
  width: 107px;
  height: 107px;
  line-height: 116px;
}

.tile.tile-position-1-1 {
  -webkit-transform: translate(0px, 0px);
  -moz-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
}

.tile.tile-position-1-2 {
  -webkit-transform: translate(0px, 121px);
  -moz-transform: translate(0px, 121px);
  transform: translate(0px, 121px);
}

.tile.tile-position-1-3 {
  -webkit-transform: translate(0px, 242px);
  -moz-transform: translate(0px, 242px);
  transform: translate(0px, 242px);
}

.tile.tile-position-1-4 {
  -webkit-transform: translate(0px, 363px);
  -moz-transform: translate(0px, 363px);
  transform: translate(0px, 363px);
}

.tile.tile-position-2-1 {
  -webkit-transform: translate(121px, 0px);
  -moz-transform: translate(121px, 0px);
  transform: translate(121px, 0px);
}

.tile.tile-position-2-2 {
  -webkit-transform: translate(121px, 121px);
  -moz-transform: translate(121px, 121px);
  transform: translate(121px, 121px);
}

.tile.tile-position-2-3 {
  -webkit-transform: translate(121px, 242px);
  -moz-transform: translate(121px, 242px);
  transform: translate(121px, 242px);
}

.tile.tile-position-2-4 {
  -webkit-transform: translate(121px, 363px);
  -moz-transform: translate(121px, 363px);
  transform: translate(121px, 363px);
}

.tile.tile-position-3-1 {
  -webkit-transform: translate(242px, 0px);
  -moz-transform: translate(242px, 0px);
  transform: translate(242px, 0px);
}

.tile.tile-position-3-2 {
  -webkit-transform: translate(242px, 121px);
  -moz-transform: translate(242px, 121px);
  transform: translate(242px, 121px);
}

.tile.tile-position-3-3 {
  -webkit-transform: translate(242px, 242px);
  -moz-transform: translate(242px, 242px);
  transform: translate(242px, 242px);
}

.tile.tile-position-3-4 {
  -webkit-transform: translate(242px, 363px);
  -moz-transform: translate(242px, 363px);
  transform: translate(242px, 363px);
}

.tile.tile-position-4-1 {
  -webkit-transform: translate(363px, 0px);
  -moz-transform: translate(363px, 0px);
  transform: translate(363px, 0px);
}

.tile.tile-position-4-2 {
  -webkit-transform: translate(363px, 121px);
  -moz-transform: translate(363px, 121px);
  transform: translate(363px, 121px);
}

.tile.tile-position-4-3 {
  -webkit-transform: translate(363px, 242px);
  -moz-transform: translate(363px, 242px);
  transform: translate(363px, 242px);
}

.tile.tile-position-4-4 {
  -webkit-transform: translate(363px, 363px);
  -moz-transform: translate(363px, 363px);
  transform: translate(363px, 363px);
}

.tile {
  position: absolute;
  -webkit-transition: 100ms ease-in-out;
  -moz-transition: 100ms ease-in-out;
  transition: 100ms ease-in-out;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
}

.tile .tile-inner {
  border-radius: 3px;
  background-color: var(--color7);
  text-align: center;
  font-weight: bold;
  z-index: 10;
  font-size: 55px;
}

.tile.tile-2 .tile-inner {
  background-color: var(--color20);
  box-shadow: 0 0 30px 10px rgba(243, 215, 116, 0), inset 0 0 0 1px rgba(255, 255, 255, 0);
}

.tile.tile-4 .tile-inner {
  background-color: var(--color20);
  box-shadow: 0 0 30px 10px rgba(243, 215, 116, 0), inset 0 0 0 1px rgba(255, 255, 255, 0);
}

.tile.tile-8 .tile-inner {
  color: var(--color3);
  background-color: var(--color23);
}

.tile.tile-16 .tile-inner {
  color: var(--color3);
  background-color: var(--color24);
}

.tile.tile-32 .tile-inner {
  color: var(--color3);
  background-color: var(--color25);
}

.tile.tile-64 .tile-inner {
  color: var(--color3);
  background-color: var(--color26);
}

.tile.tile-128 .tile-inner {
  color: var(--color3);
  background-color: var(--color27);
  box-shadow: 0 0 30px 10px rgba(243, 215, 116, 0.2381), inset 0 0 0 1px rgba(255, 255, 255, 0.14286);
  font-size: 45px;
}

@media screen and (max-width: 520px) {
  .tile.tile-128 .tile-inner {
    font-size: 25px;
  }
}
.tile.tile-256 .tile-inner {
  color: var(--color3);
  background: #edcc61;
  box-shadow: 0 0 30px 10px rgba(243, 215, 116, 0.31746), inset 0 0 0 1px rgba(255, 255, 255, 0.19048);
  font-size: 45px;
}

@media screen and (max-width: 520px) {
  .tile.tile-256 .tile-inner {
    font-size: 25px;
  }
}
.tile.tile-512 .tile-inner {
  color: var(--color3);
  background: #edc850;
  box-shadow: 0 0 30px 10px rgba(243, 215, 116, 0.39683), inset 0 0 0 1px rgba(255, 255, 255, 0.2381);
  font-size: 45px;
}

@media screen and (max-width: 520px) {
  .tile.tile-512 .tile-inner {
    font-size: 25px;
  }
}
.tile.tile-1024 .tile-inner {
  color: var(--color3);
  background: #edc53f;
  box-shadow: 0 0 30px 10px rgba(243, 215, 116, 0.47619), inset 0 0 0 1px rgba(255, 255, 255, 0.28571);
  font-size: 35px;
}

@media screen and (max-width: 520px) {
  .tile.tile-1024 .tile-inner {
    font-size: 15px;
  }
}
.tile.tile-2048 .tile-inner {
  color: var(--color3);
  background: #edc22e;
  box-shadow: 0 0 30px 10px rgba(243, 215, 116, 0.55556), inset 0 0 0 1px rgba(255, 255, 255, 0.33333);
  font-size: 35px;
}

@media screen and (max-width: 520px) {
  .tile.tile-2048 .tile-inner {
    font-size: 15px;
  }
}
.tile.tile-super .tile-inner {
  color: var(--color3);
  background: #3c3a32;
  font-size: 30px;
}

@media screen and (max-width: 520px) {
  .tile.tile-super .tile-inner {
    font-size: 10px;
  }
}
@-webkit-keyframes appear {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    transform: scale(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
  }
}
@-moz-keyframes appear {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    transform: scale(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes appear {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    transform: scale(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
  }
}
.tile-new .tile-inner {
  -webkit-animation: appear 200ms ease 100ms;
  -moz-animation: appear 200ms ease 100ms;
  animation: appear 200ms ease 100ms;
  -webkit-animation-fill-mode: backwards;
  -moz-animation-fill-mode: backwards;
  animation-fill-mode: backwards;
}

@-webkit-keyframes pop {
  0% {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
  }
}
@-moz-keyframes pop {
  0% {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes pop {
  0% {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
  }
}
.tile-merged .tile-inner {
  z-index: 20;
  -webkit-animation: pop 200ms ease 100ms;
  -moz-animation: pop 200ms ease 100ms;
  animation: pop 200ms ease 100ms;
  -webkit-animation-fill-mode: backwards;
  -moz-animation-fill-mode: backwards;
  animation-fill-mode: backwards;
}

header:after {
  content: "";
  display: block;
  clear: both;
}

.game-intro {
  float: left;
  line-height: 42px;
  margin-bottom: 0;
}

.restart-button, .keep-playing-button, .retry-button {
  background: var(--color4);
  border-radius: 10px;
  padding: 5px 10px;
  text-decoration: none;
  color: var(--color3);
  line-height: 2em;
  display: block;
  text-align: center;
  margin: 2em auto;
  width: 160px;
  min-width: 160px;
  cursor: pointer;
  border-color: unset;
}

.game-explanation {
  margin-top: 50px;
}

@media screen and (max-width: 520px) {
  h1.title {
    font-size: 27px;
    margin-top: 15px;
  }
  .container {
    width: 280px;
    margin: 0 auto;
  }
  .score-container, .best-container, .sitescore-container {
    margin-top: 0;
    padding: 15px 10px;
    min-width: 30px;
  }
  .heading {
    margin-bottom: 10px;
  }
  .game-intro {
    width: 55%;
    display: block;
    box-sizing: border-box;
    line-height: 1.65;
  }
  .restart-button, .keep-playing-button, .retry-button, .fullscreen-button {
    display: block;
    box-sizing: border-box;
  }
  main {
    margin-top: 17px;
    position: relative;
    padding: 10px;
    cursor: default;
    -webkit-touch-callout: none;
    -ms-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -ms-touch-action: none;
    touch-action: none;
    background: #bbada0;
    border-radius: 6px;
    width: 280px;
    height: 280px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .game-message {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(238, 228, 218, 0.5);
    z-index: 100;
    padding-top: 40px;
    text-align: center;
    -webkit-animation: fade-in 800ms ease 1200ms;
    -moz-animation: fade-in 800ms ease 1200ms;
    animation: fade-in 800ms ease 1200ms;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    animation-fill-mode: both;
  }
  .game-message p {
    font-size: 60px;
    font-weight: bold;
    height: 60px;
    line-height: 60px;
    margin-top: 222px;
  }
  .game-message .lower {
    display: block;
    margin-top: 29px;
  }
  .game-message .high-score {
    margin-top: 52px;
  }
  .game-message .high-score strong {
    display: block;
    margin-bottom: 10px;
  }
  .game-message .high-score .high-score-email-field {
    width: 230px;
    margin-right: 5px;
  }
  .game-message .score-sharing {
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
  }
  .game-message.game-won {
    background: var(--color6);
    color: var(--color3);
  }
  .game-message.game-won .keep-playing-button {
    display: inline-block;
  }
  .game-message.game-won, .game-message.game-over {
    display: block;
  }
  .game-message.game-won p, .game-message.game-over p {
    -webkit-animation: slide-up 1.5s ease-in-out 2500ms;
    -moz-animation: slide-up 1.5s ease-in-out 2500ms;
    animation: slide-up 1.5s ease-in-out 2500ms;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    animation-fill-mode: both;
  }
  .game-message.game-won .high-score, .game-message.game-over .high-score {
    -webkit-animation: fade-in 1.5s ease-in-out 2500ms;
    -moz-animation: fade-in 1.5s ease-in-out 2500ms;
    animation: fade-in 1.5s ease-in-out 2500ms;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    animation-fill-mode: both;
  }
  .grid-container {
    position: absolute;
    z-index: 1;
  }
  .grid-row {
    margin-bottom: 10px;
  }
  .grid-row:last-child {
    margin-bottom: 0;
  }
  .grid-row:after {
    content: "";
    display: block;
    clear: both;
  }
  .grid-cell {
    width: 58px;
    height: 58px;
    margin-right: 10px;
    float: left;
    border-radius: 3px;
    background: var(--color10);
  }
  .grid-cell:last-child {
    margin-right: 0;
  }
  .tile-container {
    position: absolute;
    z-index: 2;
  }
  .tile, .tile .tile-inner {
    width: 58px;
    height: 58px;
    line-height: 68px;
  }
  .tile.tile-position-1-1 {
    -webkit-transform: translate(0px, 0px);
    -moz-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
  .tile.tile-position-1-2 {
    -webkit-transform: translate(0px, 67px);
    -moz-transform: translate(0px, 67px);
    transform: translate(0px, 67px);
  }
  .tile.tile-position-1-3 {
    -webkit-transform: translate(0px, 135px);
    -moz-transform: translate(0px, 135px);
    transform: translate(0px, 135px);
  }
  .tile.tile-position-1-4 {
    -webkit-transform: translate(0px, 202px);
    -moz-transform: translate(0px, 202px);
    transform: translate(0px, 202px);
  }
  .tile.tile-position-2-1 {
    -webkit-transform: translate(67px, 0px);
    -moz-transform: translate(67px, 0px);
    transform: translate(67px, 0px);
  }
  .tile.tile-position-2-2 {
    -webkit-transform: translate(67px, 67px);
    -moz-transform: translate(67px, 67px);
    transform: translate(67px, 67px);
  }
  .tile.tile-position-2-3 {
    -webkit-transform: translate(67px, 135px);
    -moz-transform: translate(67px, 135px);
    transform: translate(67px, 135px);
  }
  .tile.tile-position-2-4 {
    -webkit-transform: translate(67px, 202px);
    -moz-transform: translate(67px, 202px);
    transform: translate(67px, 202px);
  }
  .tile.tile-position-3-1 {
    -webkit-transform: translate(135px, 0px);
    -moz-transform: translate(135px, 0px);
    transform: translate(135px, 0px);
  }
  .tile.tile-position-3-2 {
    -webkit-transform: translate(135px, 67px);
    -moz-transform: translate(135px, 67px);
    transform: translate(135px, 67px);
  }
  .tile.tile-position-3-3 {
    -webkit-transform: translate(135px, 135px);
    -moz-transform: translate(135px, 135px);
    transform: translate(135px, 135px);
  }
  .tile.tile-position-3-4 {
    -webkit-transform: translate(135px, 202px);
    -moz-transform: translate(135px, 202px);
    transform: translate(135px, 202px);
  }
  .tile.tile-position-4-1 {
    -webkit-transform: translate(202px, 0px);
    -moz-transform: translate(202px, 0px);
    transform: translate(202px, 0px);
  }
  .tile.tile-position-4-2 {
    -webkit-transform: translate(202px, 67px);
    -moz-transform: translate(202px, 67px);
    transform: translate(202px, 67px);
  }
  .tile.tile-position-4-3 {
    -webkit-transform: translate(202px, 135px);
    -moz-transform: translate(202px, 135px);
    transform: translate(202px, 135px);
  }
  .tile.tile-position-4-4 {
    -webkit-transform: translate(202px, 202px);
    -moz-transform: translate(202px, 202px);
    transform: translate(202px, 202px);
  }
  .tile .tile-inner {
    font-size: 35px;
  }
  .game-message {
    padding-top: 0;
  }
  .game-message p {
    font-size: 30px !important;
    height: 30px !important;
    line-height: 30px !important;
    margin-top: 32% !important;
    margin-bottom: 0 !important;
  }
  .game-message .lower {
    margin-top: 10px !important;
  }
  .game-message.game-won .score-sharing {
    margin-top: 10px;
  }
  .game-message.game-over .high-score {
    margin-top: 25px;
  }
  .game-message .high-score {
    margin-top: 10px;
  }
  .game-message .high-score .high-score-email-field {
    width: 180px;
  }
}
.wp2048.custom {
  color: #2e2e2e;
}

.wp2048.custom .grid-cell,
.wp2048.custom main {
  background: var(--color3);
}

.wp2048.custom .tile.tile-2 .tile-inner {
  background-color: var(--color20);
  font-size: 16px;
}

.wp2048.custom .tile.tile-4 .tile-inner,
.wp2048.custom .tile.tile-8 .tile-inner,
.wp2048.custom .tile.tile-16 .tile-inner,
.wp2048.custom .tile.tile-32 .tile-inner {
  background: var(--color11);
  font-size: 16px;
}

.wp2048.custom .tile.tile-64 .tile-inner {
  background: var(--color12);
  font-size: 16px;
}

.wp2048.custom .tile.tile-128 .tile-inner,
.wp2048.custom .tile.tile-256 .tile-inner,
.wp2048.custom .tile.tile-512 .tile-inner {
  background: var(--color13);
  font-size: 16px;
}

.wp2048.custom .tile.tile-1024 .tile-inner,
.wp2048.custom .tile.tile-2048 .tile-inner {
  background: var(--color14);
  font-size: 16px;
}

.td_block_2048_wrapper {
  background: var(--color15);
  padding-bottom: 10px;
}

#wp2048game {
  width: auto;
  min-height: 600px;
}

header {
  text-align: center;
}

header h2.title {
  color: var(--color16);
  font-size: 17px;
  font-weight: 500;
  line-height: 24px;
  text-transform: uppercase;
  margin-bottom: 1px !important;
  margin-top: 5px;
}

header p.game-headline {
  color: var(--color16);
  font-size: 22px;
  font-weight: bold;
  line-height: 30px;
  text-transform: uppercase;
}

header p.game-manual {
  color: var(--color16);
  font-size: 14px;
  line-height: 20px;
  margin: 0 auto 20px auto !important;
}

.scores-container {
  float: none;
  text-align: center;
  margin: 30px 0 20px 0;
  display: flex;
  flex-wrap: nowrap;
  align-content: center;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
}

.scores-container > div {
  min-width: 70px;
}

.score-container,
.best-container,
.sitescore-container {
  position: relative;
  display: inline-block;
  background: none;
  padding: 0;
  font-size: 25px;
  height: 25px;
  line-height: 47px;
  font-weight: bold;
  border-radius: 3px;
  color: var(--color17);
  margin-top: 0;
  text-align: center;
}

.score-container:after,
.best-container:after,
.sitescore-container:after {
  position: absolute;
  width: 100%;
  top: -17px;
  left: 0;
  text-transform: uppercase;
  text-align: center;
  color: var(--color18);
  font-size: 10px;
  font-weight: 400;
  line-height: 10px;
}

.scores-container .score-container {
  color: var(--color19);
  font-size: 22px;
  font-weight: 400;
  line-height: 23px;
}

.score-container .score-addition,
.best-container .score-addition,
.sitescore-container .score-addition {
  position: absolute;
  right: 0;
  font-size: 22px;
  line-height: 25px;
  font-weight: 400;
  color: var(--color19);
}

.scores-container .best-container {
  color: var(--color18);
  font-size: 22px;
  font-weight: 400;
  line-height: 23px;
}

.scores-container .sitescore-container {
  color: var(--color18);
  font-size: 22px;
  font-weight: 400;
  line-height: 23px;
}

.score-container:after {
  content: "Punkte";
}

.best-container:after {
  content: "Highscore";
}

.sitescore-container:after {
  content: "Site Best";
}

span.scores-separator {
  height: 36px;
  width: 1px;
  background: var(--color18);
  margin: 0 10px;
  display: inline-block;
}

.fullscreen-button {
  display: none;
}

main {
  width: 260px;
  height: 260px;
  margin: 0 auto;
  padding: 8px;
  border: 2px solid;
  border-color: var(--color15);
  border-radius: 6px;
  user-select: none;
  cursor: grab;
  display: block;
}

/*@media (min-width: 1420px) {
  main {
    margin-left: -14px;
  }
}*/
main .game-message {
  padding-top: 0;
}

main .game-message p {
  margin-top: 22%;
  color: var(--color18);
}

.game-message .lower {
  margin-top: 84px !important;
}

.game-message a {
  background: var(--color19);
}

.game-explanation {
  color: var(--color18);
  font-size: 13px;
  line-height: 18px;
  text-align: center;
  margin: 17px auto 0 auto;
  max-width: 270px;
}

.high-score {
  display: none;
}

a.read-manual {
  color: var(--color19) !important;
  font-size: 13px;
  font-weight: 400 !important;
  line-height: 23px;
  text-decoration: none !important;
  display: block;
  text-align: center;
}

.grid-row {
  margin-bottom: 10px;
}

.grid-cell {
  width: 52px;
  height: 52px;
  margin-right: 10px;
  border-radius: 6px;
  border: 1px dashed;
  border-color: var(--color20);
}

.tile-container .tile,
.tile-container .tile .tile-inner {
  width: 52px;
  height: 52px;
  line-height: 50px;
  font-weight: 400;
  color: var(--color17);
}

.tile-container .tile .tile-inner {
  border-radius: 6px;
}

.tile.tile-position-1-1 {
  -webkit-transform: translate(0px, 0px) !important;
  -moz-transform: translate(0px, 0px) !important;
  transform: translate(0px, 0px) !important;
}

.tile.tile-position-1-2 {
  -webkit-transform: translate(0px, 62px) !important;
  -moz-transform: translate(0px, 62px) !important;
  transform: translate(0px, 62px) !important;
}

.tile.tile-position-1-3 {
  -webkit-transform: translate(0px, 124px) !important;
  -moz-transform: translate(0px, 124px) !important;
  transform: translate(0px, 124px) !important;
}

.tile.tile-position-1-4 {
  -webkit-transform: translate(0px, 186px) !important;
  -moz-transform: translate(0px, 186px) !important;
  transform: translate(0px, 186px) !important;
}

.tile.tile-position-2-1 {
  -webkit-transform: translate(62px, 0px) !important;
  -moz-transform: translate(62px, 0px) !important;
  transform: translate(62px, 0px) !important;
}

.tile.tile-position-2-2 {
  -webkit-transform: translate(62px, 62px) !important;
  -moz-transform: translate(62px, 62px) !important;
  transform: translate(62px, 62px) !important;
}

.tile.tile-position-2-3 {
  -webkit-transform: translate(62px, 124px) !important;
  -moz-transform: translate(62px, 124px) !important;
  transform: translate(62px, 124px) !important;
}

.tile.tile-position-2-4 {
  -webkit-transform: translate(62px, 186px) !important;
  -moz-transform: translate(62px, 186px) !important;
  transform: translate(62px, 186px) !important;
}

.tile.tile-position-3-1 {
  -webkit-transform: translate(124px, 0px) !important;
  -moz-transform: translate(124px, 0px) !important;
  transform: translate(124px, 0px) !important;
}

.tile.tile-position-3-2 {
  -webkit-transform: translate(124px, 62px) !important;
  -moz-transform: translate(124px, 62px) !important;
  transform: translate(124px, 62px) !important;
}

.tile.tile-position-3-3 {
  -webkit-transform: translate(124px, 124px) !important;
  -moz-transform: translate(124px, 124px) !important;
  transform: translate(124px, 124px) !important;
}

.tile.tile-position-3-4 {
  -webkit-transform: translate(124px, 186px) !important;
  -moz-transform: translate(124px, 186px) !important;
  transform: translate(124px, 186px) !important;
}

.tile.tile-position-4-1 {
  -webkit-transform: translate(186px, 0px) !important;
  -moz-transform: translate(186px, 0px) !important;
  transform: translate(186px, 0px) !important;
}

.tile.tile-position-4-2 {
  -webkit-transform: translate(186px, 62px) !important;
  -moz-transform: translate(186px, 62px) !important;
  transform: translate(186px, 62px) !important;
}

.tile.tile-position-4-3 {
  -webkit-transform: translate(186px, 124px) !important;
  -moz-transform: translate(186px, 124px) !important;
  transform: translate(186px, 124px) !important;
}

.tile.tile-position-4-4 {
  -webkit-transform: translate(186px, 186px) !important;
  -moz-transform: translate(186px, 186px) !important;
  transform: translate(186px, 186px) !important;
}

.message {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 200;
  background-color: var(--transp1);
}

.message div, .message button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 240px;
  z-index: 200;
  padding: 16px 5%;
  font-size: 1.4em;
  text-align: center;
  background-color: var(--color17);
  border: 1px solid;
  border-radius: 20px;
  box-shadow: 3px 3px 5px 0 var(--color22);
  user-select: none;
  display: block;
  cursor: pointer;
}

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