a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}
* {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}
:focus {
  outline: none;
}
select::-ms-value {
  background: none;
}
a,
button,
div,
img,
input,
select,
textarea {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
#app,
body,
html {
  line-height: 1;
  margin: 0;
  padding: 0;
  overflow: hidden;
  width: 100vw;
  height: 100%;
}
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #8ac323;
  font-size: 16px;
  color: #0080b3;
}
#app {
  line-height: 1;
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}
.red {
  color: #c61f3c;
}
.blue {
  color: #0080b3;
}
.green {
  color: #8ac323;
}
.dark-green {
  color: #009b6b;
}
@font-face {
  font-family: geogrotesque;
  src: url(../assets/Geogrotesque-Regular.fd989e5b.woff) format("woff");
  src: url(../assets/Geogrotesque-Regular.fd989e5b.woff) format("woff"),
    url(../assets/Geogrotesque-Regular.5268e045.woff2) format("woff2");
}
@font-face {
  font-family: geogrotesque-semibold;
  src: url(../assets/Geogrotesque-SemiBold.22df5c75.woff) format("woff");
  src: url(../assets/Geogrotesque-SemiBold.22df5c75.woff) format("woff"),
    url(../assets/Geogrotesque-SemiBold.d9ca6c7b.woff2) format("woff2");
}
body {
  font-family: geogrotesque, "Fira Sans Condensed", sans-serif;
  line-height: 1;
}
a {
  text-decoration: none;
  color: #fff;
}
a:hover {
  text-decoration: underline;
}
h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.25rem;
}
h4 {
  font-size: 1rem;
}
h5 {
  font-size: 0.8rem;
}
h6 {
  font-size: 0.7rem;
}
p {
  font-size: 1.125rem;
  font-weight: 200;
  line-height: 1.2;
}
div,
p,
span {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.font-light {
  font-weight: 300;
}
.font-regular {
  font-weight: 400;
}
.font-heavy {
  font-weight: 700;
}
.left {
  text-align: left;
}
.right {
  text-align: right;
}
.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.justify {
  text-align: justify;
}
@-webkit-keyframes pulse_animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  30% {
    -webkit-transform: scale(1.01);
    transform: scale(1.01);
  }
  40% {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  60% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  70% {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
  }
  80% {
    -webkit-transform: scale(1.01);
    transform: scale(1.01);
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes pulse_animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  30% {
    -webkit-transform: scale(1.01);
    transform: scale(1.01);
  }
  40% {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  60% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  70% {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
  }
  80% {
    -webkit-transform: scale(1.01);
    transform: scale(1.01);
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.pulse {
  -webkit-animation: pulse_animation 1s infinite;
  animation: pulse_animation 1s infinite;
}
@-webkit-keyframes blink {
  50% {
    opacity: 0.8;
  }
}
@keyframes blink {
  50% {
    opacity: 0.8;
  }
}
.blink {
  -webkit-animation: blink 1s step-start 0s infinite;
  animation: blink 1s step-start 0s infinite;
}
.container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.row {
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}
.column,
.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
}
.column {
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
}
.flex-basis-100 {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
}
.flex-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.float-left {
  float: left;
}
.float-right {
  float: right;
}
#main-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  text-align: center;
  background: url(../assets/mobile.7524152b.svg) no-repeat scroll;
  background-position-x: center;
  background-position-y: bottom;
  background-size: cover;
  -webkit-transition: background 0.4s cubic-bezier(1, 0, 0, 1);
  transition: background 0.4s cubic-bezier(1, 0, 0, 1);
  background-color: #bed8e1;
}
.top-line .mute-button {
  display: none;
  position: absolute;
  top: 14px;
  right: 25px;
}
#share-wrapper {
  background: url(../images/bg.9b0eb0ac.jpg) no-repeat scroll;
  background-position-x: left;
  background-position-y: top;
  background-size: cover;
  -webkit-transition: background 0.4s cubic-bezier(1, 0, 0, 1);
  transition: background 0.4s cubic-bezier(1, 0, 0, 1);
}
#game-frame,
#last-frame {
  background-color: #d2e3ea;
  background: url(../images/gamebg.6feecf4d.jpg) no-repeat scroll;
  background-position-x: center;
  background-position-y: center;
}
#box-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  line-height: 1;
  width: 100%;
  margin: 0;
  padding: 0;
}
#box-wrapper,
#home-wrapper {
  text-align: center;
  height: 100%;
}
#home-wrapper {
  position: relative;
}
#share-wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  text-align: center;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 10;
  display: none;
}
#share-wrapper .bottom-line {
  background-position-x: left;
  background-position-y: top;
  background-size: cover;
}
#share-wrapper .close-button {
  position: absolute;
  right: 10px;
  top: 10px;
}
.top-line {
  padding: 7vh 20px;
  background-color: transparent;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  height: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-flow: column;
  flex-flow: column;
}
.bottom-line,
.top-line {
  overflow: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
}
.bottom-line {
  padding: 7vh 50px;
  height: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-flow: column;
  flex-flow: column;
}
#home-screen,
#share-screen {
  text-align: center;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
}
#home-screen img.logo,
#share-screen img.logo {
  max-width: 320px;
  width: 50vh;
  height: auto;
  overflow: auto;
}
#home-screen .share-header,
#share-screen .share-header {
  font-size: 22px;
  font-family: geogrotesque-semibold, Arial, sans-serif;
  text-transform: uppercase;
  color: #fff;
  max-width: 340px;
  padding-top: 7vh;
}
#game-wrapper {
  position: relative;
  width: 1080px;
  height: 90%;
  overflow: hidden;
}
.container {
  width: 100%;
  height: 100%;
  position: relative;
  background-color: #fff;
  -webkit-transition: background-color 0.05s;
  transition: background-color 0.05s;
}
.container.error-bg {
  background-color: #cc969f;
}
#last-frame {
  height: 100%;
  overflow: auto;
  -ms-flex-flow: column;
  flex-flow: column;
  -ms-flex-align: center;
  -ms-flex-pack: center;
}
#last-frame,
#last-frame .result-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
#last-frame .result-container {
  width: 100%;
  max-width: 430px;
  padding: 50px 20px 0;
  -webkit-box-flex: 2;
  -ms-flex: 2 0 auto;
  flex: 2 0 auto;
  -ms-flex-align: center;
  -ms-flex-pack: center;
  -ms-flex-flow: column;
  flex-flow: column;
}
#last-frame .result-container img {
  width: 100%;
  height: 8vh;
  max-width: 200px;
}
#last-frame .last-warn {
  color: #c61f3c;
  font-size: 17px;
  margin-top: 10px;
  padding-top: 10px;
  font-family: geogrotesque-semibold, Arial, sans-serif;
}
#last-frame .last-warn img {
  width: 14px;
  height: 14px;
}
#last-frame .last-score {
  font-size: 22px;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  margin-bottom: 65px;
  font-weight: 700;
}
#last-frame .last-score span {
  font-size: 16vh;
  display: block;
  line-height: 0.8em;
  font-weight: 400;
}
.table-wrapper {
  margin: 0 auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: auto;
  overflow: auto;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
}
.table-wrapper > .table-row-item {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 18%;
  flex: 1 0 18%;
  height: auto;
  overflow: auto;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.table-row-item {
  border-right: 1px solid #eee;
}
.table-row-item:last-child {
  border-right: 0;
}
.table__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  padding: 5px 10px;
  overflow: auto;
}
.table__item.bins {
  padding: 25px 5px 0;
}
.table__item.mistake:after {
  content: "";
  right: 10px;
  top: 10px;
  position: absolute;
  width: 20px;
  height: 20px;
  background: url(../assets/Mistake.13e617c5.svg);
}
.trash-wrapper {
  position: absolute;
  top: 0;
  left: 40%;
}
.trash__item {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  top: 0;
  left: 0;
  display: none;
  width: 160px;
  height: auto;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
.trash__item img {
  width: 100%;
  height: auto;
  max-width: 100%;
}
#rules-frame {
  position: absolute;
  top: 30%;
  left: 0;
  right: 0;
  display: none;
}
.rules-popup {
  display: inline-block;
  padding: 40px;
  font-size: 30px;
  font-family: geogrotesque-semibold, Arial, sans-serif;
  text-transform: uppercase;
}
.rules-popup span {
  display: block;
  padding: 10px 0;
}
.dark_green {
  color: #009b6b;
}
.bottom-bar {
  width: calc(100% - 60px);
  position: absolute;
  bottom: 0;
  left: 0;
  height: 50px;
  background-color: #5b615f;
  color: #fff;
  padding: 0 30px;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.bottom-bar a {
  font-size: 17px;
}
#share-screen .top-line > p {
  color: #019b6b;
}
.top-bar {
  width: calc(100% - 60px);
  position: absolute;
  top: 0;
  left: 0;
  height: 50px;
  background-color: #c61f3c;
  color: #eeaf30;
  padding: 0 30px;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.facebook-button,
.mute-button {
  margin-left: auto;
}
.count,
.facebook-button,
.mute-button {
  font-size: 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.count {
  margin: 0 auto;
}
.home-button,
.rules {
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.mute-button {
  width: 32px;
  height: 32px;
}
.mute-button img {
  display: none;
}
.mute-button .visible {
  display: block;
}
.pointer {
  cursor: pointer;
}
.bin-wrapper {
  position: absolute;
  width: 100%;
  bottom: 100px;
}
.bin-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  bottom: 100px;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.bin__item {
  display: inline-block;
  white-space: nowrap;
}
.bin__item img {
  width: 90px;
  height: 115px;
}
.bin__item img.binMistake {
  display: none;
}
.btn {
  position: relative;
  font-size: 30px;
  padding: 12px 25px;
  text-decoration: none;
  max-width: 295px;
  width: 100%;
  border: 0;
  outline: none;
  cursor: pointer;
  border: 2px solid #fff;
  color: #fff;
  text-transform: uppercase;
  display: block;
  margin: 0 auto 30px;
  font-family: geogrotesque, "Fira Sans Condensed", sans-serif;
  line-height: 1;
}
.btn.btn-pro.btn-small {
  font-size: 16px;
  max-width: 190px;
  margin: 0;
  margin-right: 50px;
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  .btn.btn-pro.btn-small {
    font-size: 16px;
    max-width: 100px;
    padding: 4px;
    margin-right: 32px;
    margin: 0;
    margin-right: 16px;
  }
}
#share-screen .btn {
  max-width: 308px;
  box-sizing: border-box;
}
a.btn.btn-pro.pulse {
  text-decoration: none;
}
#share-screen .bottom-line {
  padding: 10px 20px 0;
}
#share-screen .top-line {
  padding: 10px 20px;
}
@media only screen and (max-width: 767px) {
  .btn {
    font-size: 23px;
    padding: 12px;
    margin-bottom: 12px;
  }
}

.btn:hover {
  -webkit-animation: none !important;
  animation: none !important;
}
.btn.btn-noob {
  background-color: #009b6b;
}
.btn.btn-pro {
  background-color: #0080b3;
}
.btn-noob:hover {
  border-color: #009b6b;
  color: #009b6b;
  background-color: #fff;
}
.btn-pro:hover {
  border-color: #0080b3;
  color: #0080b3;
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  #home-screen img.logo,
  #share-screen img.logo {
    width: auto;
    max-height: 160px;
  }
  #game-frame,
  #last-frame {
    background: url(../images/mobilebg.e75e3464.jpg) no-repeat scroll;
    background-position-x: center;
    background-position-y: top;
    background-size: cover;
    height: calc(100% - 40px);
  }
  #home-wrapper,
  #share-wrapper {
    background: url(../assets/mobile.7524152b.svg) 153% 148% no-repeat scroll;
    width: 100%;
    height: 100%;
    text-align: center;
    background-position-x: center;
    background-position-y: bottom;
    background-color: #bed8e1;
    background-size: 130%;
  }
  .top-line .mute-button {
    display: block;
  }
  #last-frame .last-score {
    margin-bottom: 0;
  }
  body #main-wrapper {
    background: url(../images/bg.9b0eb0ac.jpg) no-repeat scroll;
    background-size: fit;
  }
  body #share-wrapper .bottom-line {
    background-size: fit;
  }
  body #box-wrapper {
    margin-top: 0;
    height: 100%;
  }
  body #game-wrapper {
    position: relative;
  }
  body #game-wrapper,
  body .container {
    width: 100vw;
    height: 100%;
  }
  body .bottom-bar,
  body .top-bar {
    width: calc(100% - 40px);
    padding: 0 20px;
  }
  body .top-line {
    padding: 10vh 50px 4vh;
    overflow: hidden;
  }
  body .bottom-line {
    padding: 7vh 50px;
  }
  body .trash-wrapper {
    left: 35%;
  }
  body .trash__item {
    width: 27vw;
    max-width: 160px;
  }
  body .bin-wrapper {
    bottom: 30px;
  }
  body .bin-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
  }
  body .bin__item {
    margin: 0 4px;
  }
  body .bin__item img {
    max-width: 15vw;
    width: 100%;
    height: auto;
  }
  body .last-warn {
    margin-top: 6px;
  }
  body .table__item {
    padding: 2px 11px;
  }
  body .table__item.bins {
    padding: 5px 5px 0;
  }
  body #last-frame .table-wrapper {
    width: 90%;
  }
  body #share-screen .share-header {
    padding-top: 2vh !important;
    font-size: 20px;
  }
  body #rules-frame {
    top: 20%;
  }
}
body.mobile #main-wrapper {
  background: url(../assets/mobile.7524152b.svg) 153% 148% no-repeat scroll;
  width: 100%;
  height: 100%;
  position: relative;
  text-align: center;
  background-position-x: center;
  background-position-y: bottom;
  background-color: #bed8e1;
  background-size: 130%;
}
body.mobile #box-wrapper {
  margin-top: 0;
  height: 100%;
}
body.mobile #game-wrapper {
  position: relative;
  width: 100vw;
  height: 100%;
}
body.mobile .container {
  height: 100%;
  width: 100vw;
}
body.mobile .bottom-bar,
body.mobile .top-bar {
  width: calc(100% - 40px);
  padding: 0 20px;
}
body.mobile #share-screen .share-header {
  padding-top: 7vh;
}

.bottom-bar.results {
  z-index: 2;
}
