@font-face {
  font-family: "TT Hoves";
  font-weight: 600;
  src:
    url("https://static.tildacdn.com/tild6663-3038-4334-b765-333434393139/TT_Hoves_DemiBold.woff") format("woff");
}
@font-face {
  font-family: "TT Hoves";
  font-weight: 500;
  src:
    url("https://static.tildacdn.com/tild3537-3930-4764-b738-623137313736/TT_Hoves_Medium.woff") format("woff");
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1470px;
    width: 100%;
    margin: 0 auto;
    position: relative;

    @media (max-width: 1100px) {
      background-color: #EDF7E2;
      padding: 0 30px;
    }
    @media (max-width: 750px) {
      padding: 0 5px;
    }

}

.wrapper {
    text-align: center;
}

/* left 1% 14.7px */
/* top 1% 11px */
.marker {
    position: absolute;
    z-index: 100;
    text-align: center;
    width: 10%;
    cursor: pointer;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;

    @media (max-width: 1100px) {
      width: 14%;
    }
    @media (max-width: 750px) {
      width: 20%;
    }
}

.marker--hidden {
  opacity: 0;
}

.marker--active {
  z-index: 200;
}

.marker--large {
    width: 16.6%;
    height: auto;

    @media (max-width: 750px) {
      width: 22%;
    }
}

.marker__platform {
    width: 100%;
    margin: 0 auto;
}
.marker--large .marker__platform {
  width: 56%;
}

.marker__sticker {
    width: 100%;
}

.marker img {
    display: block;
}

#gamer {
  position: absolute;
  z-index: 120;
  width: 3.5%;
  opacity: 1;
  transition: opacity 1s ease-in;
}

#gamer.active {
  z-index: 220;
}
#gamer.gamer--hidden {
  opacity: 0;
}

.btn {
  background: #334856;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  border-radius: 8px;
  line-height: 120%;
  width: fit-content;
  cursor: pointer;
  text-decoration: none;
  padding: 15px 31px;
  display: block;
  font-family: 'TT Hoves', arial, sans-serif;
}

.dice-btn {
  margin: 0 auto;
}

.info {
  position: absolute;
  z-index: 200;
  right: 4%;
  max-width: 370px;
  width: 25.7%;
  height: fit-content;
  max-height: 70%;
  overflow-y: auto;
  top: 8%;
  border-radius: 10px;
  background-color: #EDF7E2;
  padding: 30px 2.5% 10px;

  @media (max-width: 1100px) {
    display: none;
  }
}
.info--mobile {
  display: none;
  width: 100%;
  padding: 30px;
  background-color: #EDF7E2;

  @media (max-width: 1100px) {
    display: block;
  }
}

.field--desktop {
  display: block;
  border-radius: 32px;
  width: 100%;
  @media (max-width: 1100px) {
    display: none;
  }
}

.field--tablet {
  width: 100%;
  display: none;

  @media (max-width: 1100px) {
    display: block;
  }

  @media (max-width: 750px) {
    display: none;
  }
}

.field--mobile {
  width: 100%;
  display: none;

  @media (max-width: 750px) {
    display: block;
  }
}

.info__header {
  font-family: 'TT Hoves', arial, sans-serif;
  font-size: 28px;
  text-align:left;
  line-height: 100%;
  margin-bottom: 20px;
  font-weight: 600;
  color: #334856;
}

.info__p {
  font-family: 'TT Hoves', arial, sans-serif;
  font-size: 14px;
  text-align:left;
  line-height: 100%;
  margin-bottom: 16px;
  font-weight: 600;
  color: #334856;
}

.info__ul {
  text-align: left;
}

.info__ul li::marker {
  color: #9CD5FE;
}

.info__ul li {
  font-family: 'TT Hoves', arial, sans-serif;
  font-size: 14px;
  text-align: left;
  line-height: 100%;
  color: #334856;
  margin-bottom: 10px;
  font-weight: 600;
}

.dice-area {
  padding: 32px 30px;
  background: white;
  border-radius: 10px;
  max-width: 350px;
  text-align: center;
  @media (max-width: 1100px) {
    display: none;
  }
}
.dice-area-mobile {
  display: none;
  width: 300px;
  @media (max-width: 1100px) {
    display: block;
    z-index: 250;
    position: absolute;
    bottom: 30px;
    left: calc(50% - 150px);
  }
}

.dice {
  position: relative;
  margin: 0 auto 36px;
  height: 88px;
  width: 88px;

  @media (max-width: 750px) {
    height: 66px;
    width: 66px;
    margin: 0 auto 24px;
  }
}
.dice-area__header img {
  width: 100%;
}
.dice-area__header {
  margin-bottom: 30px;
}

.dice__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 88px;
  opacity: 1;
  z-index: 10;
  @media (max-width: 750px) {
    width: 66px;
  }
}

.dice__img--hidden {
  opacity: 0;
}

.game-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #D9D9D9;
  opacity: 0.75;
  z-index: 150;
}

.game-popup {
  position: absolute;
  top: 30%;
  left: 30%;
  width: 320px;
  background-color: white;
  border-radius: 10px;
  text-align: left;
  opacity: 0;
  z-index: 250;

  @media (max-width: 750px) {
    top: calc(50% - 150px);
    left: calc(50% - 150px);
    width: 300px;
  }
}

.game-popup__wrapper--hidden {
  display: none;
}
.game-popup__close {
  background-image: url('./close.svg');
  width: 28px;
  height: 28px;
  top: 25px;
  cursor: pointer;
  position: absolute;
  right: 25px;
}
.game-popup {
  padding: 25px;
}
.game-popup__content {
  width: 200px;
  text-align: left;
}
.game-popup__content h3 {
  margin-top: 0;
  font-family: 'TT Hoves', Arial, sans-serif;
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 100%;
  color: #000000;
}
.game-popup__content p {
  margin-top: 0;
  font-family: 'TT Hoves', Arial, sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 100%;
  color: #000000;
}
.game-popup__btn {
  margin-top: 25px;
}