body {
  margin: 0;
  font-family: "Rubik Mono One", monospace;
  font-weight: 400;
  font-style: normal;
}

#game {
  background: #716C69;
}

.game-container {
  height: 100vh;
}

.road-lane {
  border-style: dashed;
}

.barrier {
  position: absolute;
  background: url("img/barrier.png") no-repeat center center;
  background-size: contain;
  width: 30px;
  height: 70px;
  left: 36%;
  top: 375px;
}

#chicken {
  background: url("img/chicken.gif") no-repeat center center;
  background-size: contain;
  top: 355px;
  width: 100px;
  height: 100px;
}

#eggs-panel {
  background: #FC0;
}

.egg-empty {
  width: 45px;
  height: 56px;
  background: url("img/egg-empty.png") no-repeat;
  background-size: contain;
}
@media (max-width: 768px) {
  .egg-empty {
    width: 50px;
    height: 60px;
  }
}
.egg-collected {
  background: url("img/egg.png") no-repeat;
  background-size: contain;
}

.car-1 {
  background: url("img/car-1.png") no-repeat center center;
  -webkit-background-size: contain;
  background-size: contain;
}

.car-2 {
  background: url("img/car-2.png") no-repeat center center;
  -webkit-background-size: contain;
  background-size: contain;
}

.car-3 {
  background: url("img/car-3.png") no-repeat center center;
  -webkit-background-size: contain;
  background-size: contain;
}

.car-4 {
  background: url("img/car-4.png") no-repeat center center;
  -webkit-background-size: contain;
  background-size: contain;
}

.line {
  background: url("img/line.png") repeat-x bottom center, url("img/circle.png") no-repeat center center;
  -webkit-background-size: 300px, 50px;
  background-size: 300px, 50px;
}
.line.passed {
  background: url("img/line.png") repeat-x bottom center, url("img/circle-egg.png") no-repeat center center;
  -webkit-background-size: 300px, 50px;
  background-size: 300px, 50px;
}

.try-game-text {
  color: #FFF;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .try-game-text {
    font-size: 12px;
    margin-bottom: 10px;
    padding: 0 10px;
  }
}

#game-button {
  background: #CF0;
  color: #0A0A0A;
  text-align: center;
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  width: 100%;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
}
@media (max-width: 768px) {
  #game-button {
    font-size: 30px;
  }
}
#game-button i {
  display: inline-block;
  width: 72px;
  height: 72px;
  background: url("img/arrow.png") no-repeat center center;
  background-size: contain;
  margin: 0 55px;
}
@media (max-width: 768px) {
  #game-button i {
    width: 40px;
    height: 40px;
    margin: 0 15px;
  }
}

.button-continue {
  border-radius: 21px;
  background: #CF0;
  color: #0A0A0A;
  text-align: center;
  font-size: 43px;
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1;
  margin: 25px 0;
  align-items: center;
  justify-content: center;
  width: 100%;
  display: flex;
  padding: 25px;
  transition: background 0.3s ease;
}
@media (max-width: 768px) {
  .button-continue {
    font-size: 19px;
    padding: 20px 10px !important;
  }
}
.button-continue:hover, .button-continue:focus {
  background: #a9c72f;
}
.button-no {
  width: 100%;
  border-radius: 21px;
  color: #FFF;
  text-align: center;
  font-size: 37px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 20px 10px !important;
}
@media (max-width: 768px) {
  .button-no {
    font-size: 20px;
  }
}

i {
  display: block;
  width: 72px;
  height: 72px;
  background: url("img/telegram.png") no-repeat center center;
  background-size: contain;
  margin-left: 25px;
}
@media (max-width: 768px) {
  i {
    width: 40px;
    height: 40px;
  }
}
.telegram-logo i {
  margin-left: 0;
}

.title {
  color: #FFF;
  text-align: center;
  font-size: 47px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  width: 100%;
}
@media (max-width: 768px) {
  .title {
    font-size: 26px;
  }
}

#win-message {
  display: none;
  z-index: 9999;
}

.win-message-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  max-width: 90%;
}

#game-info {
  display: none !important;
}

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