@font-face {
  font-family: "Lumberjack";
  src: url("../fonts/Lumberjack.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

html,
body {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

html {
  font-family: "Lumberjack", Arial, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 400;
}

body {
  background-color: #fff;
}
body::-webkit-scrollbar {
  width: 0;
  opacity: 0;
  display: none;
}

main {
  position: relative;
  height: -moz-fit-content;
  height: fit-content;
  transition: 0.4s;
}
@media (min-width: 767px) {
  main {
    min-height: 100vh;
  }
}
main::-webkit-scrollbar {
  width: 0;
  opacity: 0;
  display: none;
}

a,
button {
  font-family: "Lumberjack", Arial, Helvetica, sans-serif;
  outline: none;
  text-decoration: none;
  background-color: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

input,
textarea {
  font-family: "Lumberjack", Arial, Helvetica, sans-serif;
  border: 0;
  outline: none;
  background: transparent;
  resize: none;
}

ul,
ol {
  padding: 0;
  list-style-type: none;
}

img,
svg {
  width: 100%;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

.btn {
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  padding: 12px 16px;
  color: #fff;
  border-radius: 6px;
  width: 100%;
}
.btn svg {
  max-width: 24px;
  margin-left: 8px;
}
.btn.__red {
  background-color: #DA272F;
}
.btn.__red:active {
  background-color: #b7181f;
}
.btn.__red.__disabled {
  background-color: #ffcfd1;
}
.btn.__sand {
  background: linear-gradient(87deg, #d2bc83 8.87%, #efdaa2 21.81%, #e9d091 26.22%, #e8ce8c 75.98%, #f6e1a6 85.41%, #e9d08f 92.07%, #ddc381 102.14%);
}
.btn.__sand:active {
  background: linear-gradient(87deg, #c2ab70 8.87%, #d8c188 21.81%, #e0c57f 26.22%, #e7c877 75.98%, #eed38c 85.41%, #ebcd7f 92.07%, #ddc381 102.14%);
}
.btn.__sand.__disabled {
  background: #f0eacd;
}
.btn.__disabled {
  pointer-events: none;
}

h1,
.h1 {
  font-weight: 400;
  font-size: 24px;
  line-height: 115%;
}
@media (min-width: 767px) {
  h1,
  .h1 {
    font-size: 60px;
  }
}

.p1 {
  font-weight: 400;
  font-size: 16px;
  line-height: 1220%;
}
@media (min-width: 767px) {
  .p1 {
    font-size: 24px;
    line-height: 115%;
  }
}

.p2 {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
}

.p3 {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
}

.hero {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 30px 16px;
  align-items: center;
  background: linear-gradient(180deg, #ab0c13 0%, #da272f 36.46%);
  text-align: center;
  transition: 0.3s ease-in-out;
}
.hero.__hidden {
  opacity: 0;
  pointer-events: none;
}
@media (min-width: 767px) {
  .hero {
    display: none;
  }
}
.hero__image {
  position: absolute;
  top: 5%;
  left: 50%;
  max-width: 100%;
  transform: translateX(-50%);
}
.hero__assets {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
}
.hero__assets img {
  position: absolute;
}
.hero__assets img:nth-child(1) {
  top: 60px;
  left: 0;
  width: 100%;
  right: 0;
  z-index: -1;
}
.hero__assets img:nth-child(2) {
  left: 0;
  bottom: 40%;
  z-index: -1;
  max-width: 182px;
}
.hero__assets img:nth-child(3) {
  right: 0;
  bottom: 10%;
  z-index: 2;
  max-width: 80%;
}
.hero__assets img:nth-child(4) {
  bottom: 0;
  right: 0;
  left: 0;
  z-index: -1;
}
.hero__assets img:nth-child(5) {
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
}
.hero p.p2 {
  position: relative;
  z-index: 3;
  margin-top: auto;
  margin-bottom: 16px;
}
.hero .btn {
  position: relative;
  z-index: 3;
}

.game {
  display: none;
  opacity: 0;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  padding-top: 16px;
  overflow: scroll;
}
.game.__active {
  opacity: 1;
  display: flex;
  pointer-events: all;
  transition-delay: 0.2s;
}
.game__line {
  width: 100vw;
  margin-left: -16px;
  margin-top: -50px;
}
.game__start {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 16px 30px;
  text-align: center;
  height: 100%;
  transition: 0.3s ease-in-out;
}
.game__start.__hidden {
  opacity: 0;
  pointer-events: none;
}
.game__start .btn {
  position: relative;
  z-index: 2;
}
.game__start .btn:not(:last-child) {
  margin-top: auto;
  margin-bottom: 12px;
}
.game__start::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 50%;
  background-image: url("../assets/snow_right.png");
  background-size: 100% 100%;
}
.game__rules {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid #DA272F;
}
.game__rules img {
  margin-bottom: 20px;
  max-width: 96px;
  width: 50%;
}
.game__rules h1 {
  margin-bottom: 8px;
  color: #DA272F;
}
.game__wrapper {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 80px;
  width: 100%;
  padding: 20px 16px 0 16px;
  transition: 0.3s ease-in-out;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
}
.game__wrapper.__active {
  opacity: 1;
  pointer-events: all;
}
.game__status {
  margin-bottom: 36px;
}
.game__progress {
  width: 100%;
  margin-bottom: 16px;
}
.game__progress__wrapper {
  position: relative;
  width: 100%;
  height: 4px;
  border-radius: 20px;
  background-color: #F4EED4;
}
.game__progress__wrapper .game__progress__apple {
  position: absolute;
  left: -12px;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
}
.game__progress__wrapper .game__progress__apple img {
  width: 34px;
  height: auto;
}
.game__progress__wrapper .game__progress__bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  right: 0;
  z-index: 1;
  right: 100%;
  background-color: #DA272F;
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
}
.game__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  color: #DA272F;
}
.game__info span,
.game__info p {
  display: inline-flex;
}
.game__info p span {
  display: contents;
}
.game__items {
  width: 100vw;
  height: 100%;
  margin-left: -16px;
  display: none;
  flex-direction: column;
  overflow: hidden;
}
.game__items.__active {
  display: flex;
}
.game__items .__bottom_btn {
  position: fixed;
  bottom: 32px;
  left: 50%;
  width: calc(100vw - 32px);
  transform: translateX(-50%);
}
.game__items[data-step="1"] .game__item:nth-child(1)::after {
  height: 88vh;
  background: url("../assets/snow_left.png") no-repeat;
  background-size: cover;
}
.game__items[data-step="1"] .game__item:nth-child(1)::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 135px;
  width: 20px;
  height: 20px;
  z-index: 6;
  background: url("../assets/hand.svg") no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  pointer-events: none;
  animation: hand infinite alternate 3s ease-in-out;
}
.game__items[data-step="1"] .game__item:nth-child(1).__cleaned::before {
  content: none;
}
@keyframes hand {
  0% {
    transform: scale(1.05);
  }
  25% {
    transform: scale(0.95);
  }
  50% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1.05);
  }
}
.game__items[data-step="1"] .game__item:nth-child(2) .game__item__hidden {
  right: 0;
}
.game__items[data-step="1"] .game__item:nth-child(2) .game__item__info {
  top: 180px;
}
.game__items[data-step="1"] .game__item:nth-child(2)::after {
  height: 87vh;
  background: url("../assets/snow_item_right.png") no-repeat;
  background-size: cover;
}
.game__items[data-step="1"] .game__item:nth-child(3) .game__item__info {
  top: 310px;
}
.game__items[data-step="1"] .game__item:nth-child(3)::after {
  height: 67vh;
  background: url("../assets/snow_left.png") no-repeat;
  background-size: cover;
}
.game__items[data-step="1"] .game__item:nth-child(4) .game__item__hidden {
  right: 0;
}
.game__items[data-step="1"] .game__item:nth-child(4) .game__item__info {
  top: 448px;
}
.game__items[data-step="1"] .game__item:nth-child(4)::after {
  height: 55vh;
  background: url("../assets/snow_item_right.png") no-repeat;
  background-size: cover;
}
.game__items[data-step="1"] .game__item:nth-child(5) .game__item__info {
  top: 448px;
}
.game__items[data-step="1"] .game__item:nth-child(5)::after {
  height: 35vh;
  background: url("../assets/snow_left.png") no-repeat;
  background-size: cover;
}
.game__items[data-step="2"] .game__item:nth-child(1) .game__item__hidden {
  right: 16px;
  top: 0;
  width: 98px;
}
.game__items[data-step="2"] .game__item:nth-child(1)::after {
  height: 88vh;
  background: url("../assets/snow_right_2.png") no-repeat;
  background-size: cover;
}
.game__items[data-step="2"] .game__item:nth-child(1) .game__item__info {
  top: 180px;
}
.game__items[data-step="2"] .game__item:nth-child(2) .game__item__info {
  top: 310px;
}
.game__items[data-step="2"] .game__item:nth-child(2)::after {
  height: 80vh;
  background: url("../assets/snow_left.png") no-repeat;
  background-size: cover;
}
.game__items[data-step="2"] .game__item:nth-child(3) .game__item__hidden {
  right: 0;
}
.game__items[data-step="2"] .game__item:nth-child(3) .game__item__info {
  top: 310px;
}
.game__items[data-step="2"] .game__item:nth-child(3)::after {
  height: 67vh;
  background: url("../assets/snow_right_2.png") no-repeat;
  background-size: cover;
}
.game__items[data-step="2"] .game__item:nth-child(4) .game__item__info {
  top: 448px;
}
.game__items[data-step="2"] .game__item:nth-child(4)::after {
  height: 55vh;
  background: url("../assets/snow_left.png") no-repeat;
  background-size: cover;
}
.game__items[data-step="2"] .game__item:nth-child(5) .game__item__hidden {
  right: 0;
}
.game__items[data-step="2"] .game__item:nth-child(5) .game__item__info {
  top: 448px;
}
.game__items[data-step="2"] .game__item:nth-child(5)::after {
  height: 35vh;
  background: url("../assets/snow_right_2.png") no-repeat;
  background-size: cover;
}
.game__item {
  position: relative;
  width: 100%;
  display: flex;
  flex-basis: calc((100% - 100px) / 5);
}
.game__item:not(:first-child) {
  pointer-events: none;
}
.game__item.__cleaned::after {
  opacity: 0;
}
.game__item.__cleaned .game__item__hidden {
  opacity: 1;
  pointer-events: all;
}
.game__item.__cleaned .game__notif {
  opacity: 1;
}
.game__item.__cleaned::before {
  content: none;
}
.game__item.__chosen {
  pointer-events: none;
}
.game__item.__chosen .game__item__hidden {
  opacity: 0;
  pointer-events: none;
}
.game__item.__chosen .game__item__info {
  opacity: 1;
}
.game__item.__chosen .game__notif {
  opacity: 0;
}
.game__item__hidden {
  position: absolute;
  top: -60%;
  width: 148px;
  height: auto;
  pointer-events: none;
  transition: 0.3s;
  opacity: 0;
}
.game__item__info {
  position: fixed;
  left: 16px;
  display: flex;
  padding: 14px 16px;
  border-radius: 16px;
  background-color: #F8FAFF;
  width: calc(100vw - 32px);
  transition: 0.3s;
  opacity: 0;
  pointer-events: none;
}
.game__item__info img {
  margin-right: 12px;
  width: 84px;
  height: auto;
}
.game__item__text .p2 {
  color: #DA272F;
  margin-bottom: 4px;
}
.game__item::after {
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  bottom: -10vh;
  z-index: 1;
  width: 100vw;
  background-size: cover;
  pointer-events: none;
  transition: 0.3s;
}
.game__notif {
  position: absolute;
  top: -50%;
  left: 16px;
  z-index: 5;
  width: 204px;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid #F4EED4;
  background: #fff;
  box-shadow: 5px 20px 20px 0px rgba(221, 226, 238, 0.2);
  transition: 0.3s;
  opacity: 0;
  pointer-events: none;
}
.game__notif svg {
  max-width: 16px;
  margin-bottom: 4px;
}
.game__receipe {
  position: absolute;
  top: 100px;
  left: 0;
  max-height: 740px;
  overflow: scroll;
  transition: 0.3s;
  opacity: 0;
  pointer-events: none;
  padding: 0 16px 41px;
  display: flex;
  flex-direction: column;
}
.game__receipe.__active {
  opacity: 1;
  pointer-events: all;
}
.game__receipe .h1 {
  margin-bottom: 36px;
  text-align: center;
}
.game__receipe .receipe__list {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 36px;
}
.game__receipe .receipe__list .receipe__item {
  display: flex;
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #DA272F;
  border-radius: 16px;
  align-items: center;
}
.game__receipe .receipe__list .receipe__item .receipe__text .p2 {
  color: #DA272F;
  margin-bottom: 4px;
}
.game__receipe .receipe__list .receipe__item .receipe__text .p3 img {
  max-width: 80px;
  margin-top: 4px;
  display: block;
}
.game__receipe .receipe__list .receipe__item:not(:last-child) {
  margin-bottom: 16px;
}
.game__receipe .receipe__list .receipe__item:last-child {
  background-color: #DA272F;
  color: #fff;
}
.game__receipe .receipe__list .receipe__item:last-child .receipe__text .p2 {
  color: #fff;
}
.game__receipe .receipe__list .receipe__item img:first-child {
  max-width: 53px;
  height: auto;
  margin-right: 20px;
}
.game__receipe .receipe__list .btn {
  width: 100%;
  margin-top: 24px;
}

.final {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  background: url("../assets/final_image.png") no-repeat #DA272F;
  background-position: center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: 0.3s ease-in-out;
  opacity: 0;
  pointer-events: none;
  color: #F4EED4;
  padding: 32px 16px 20px 16px;
}
.final.__active {
  opacity: 1;
  pointer-events: all;
}
.final__logo {
  max-width: 80vw;
  height: auto;
  margin: 0 auto;
}
.final .h1 {
  margin-top: auto;
  margin-bottom: 12px;
}
.final .p2:not(:last-child) {
  margin-bottom: 16px;
}
.final__actions {
  display: flex;
  align-items: center;
  margin: -6px -6px 10px -6px;
  width: 100%;
}
.final__actions .btn {
  flex-basis: calc(50% - 12px);
  margin: 6px !important;
  max-height: 40px;
  padding: 12px;
  white-space: nowrap;
}
.final__actions .btn:last-child {
  border: 1px solid #fff;
  color: #fff;
  background-color: transparent;
}

.placeholder {
  display: none;
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
}
.placeholder img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 767px) {
  .placeholder {
    display: block;
  }
}/*# sourceMappingURL=style.css.map */