@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");
body {
  margin: 0 !important;
  font-family: "Montserrat", sans-serif;
}

.penalty-game {
  position: relative;
  width: 100%;
  min-height: 1079px;
  overflow: hidden;
  background-image: url("../img/bg-des.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: #fff;
}
.brand {
  max-width: 205px;
}
.logo {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  gap: 42px;
}
.penalty-game__top {
  position: relative;
  z-index: 5;
  padding: 25px 51px 0;
}

.penalty-game__logo {
  width: 298px;
  max-width: 298px;
}

.penalty-game__progress {
  position: relative;
  width: 80%;
  max-width: 726px;
  height: 47.34px;
  margin: -114px auto 0;
  display: flex;
  gap: 128px;
  justify-content: flex-end;
  align-items: flex-start;
}

.penalty-game__progress-line {
  position: absolute;
  top: -4px;
  left: 0;
  right: 8%;
  height: 47.34px;
  border: 4px solid #fff;
  border-radius: 30px;
  overflow: hidden;
  width: 100%;
}

.penalty-game__progress-line::before {
  content: "";
  display: block;
  width: var(--progress, 0%);
  height: 100%;
  background: #ffd500;
  border-radius: inherit;
  transition: width 0.4s ease;
}

.penalty-game__step {
  position: relative;
  z-index: 2;
  text-align: center;
}
.penalty-game__progress .penalty-game__step:last-child {
  margin-right: -27px;
}
.penalty-game__step span {
  display: block;
  width: 47.34px;
  height: 47.34px;
  margin: 0 auto 0 auto;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
  width: 47.34px;
  height: 47.34px;
  background: #ffffff;
  box-shadow:
    inset 0px -12px 5px rgba(0, 0, 0, 0.03),
    inset 0px -7px 4px rgba(0, 0, 0, 0.1),
    inset 0px -3px 3px rgba(0, 0, 0, 0.17),
    inset 0px -1px 2px rgba(0, 0, 0, 0.2);
}

.penalty-game__step .ball-small {
  background: url("../img/ball-small.svg") center / cover no-repeat;
}

.penalty-game__step p {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  text-shadow:
    0 2px 0 #153c95,
    0 0 5px #153c95;
  margin-top: 12px;
}

.penalty-game__field {
  position: relative;
  z-index: 4;
  min-height: 545px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.penalty-game__gate {
  position: absolute;
  width: 100%;
  max-width: 664px;
  left: 50%;
  top: 39%;
  aspect-ratio: 2 / 1;
  transform: translateX(-50%);
}

.penalty-game__keeper {
  position: absolute;
  left: 50%;
  bottom: 2%;
  width: 226px;
  transform: translateX(-50%);
  transition: transform 0.45s ease;
  z-index: 7;
}

.penalty-game__keeper.fall-left {
  transform: translateX(-90%) rotate(-55deg);
}

.penalty-game__keeper.fall-right {
  transform: translateX(-10%) rotate(55deg);
}

.penalty-game__target {
  position: absolute;
  width: 65px;
  height: 65px;
  border: 0;
  padding: 0;
  border-radius: 50%;
  background: url("../img/ball.svg") center / cover no-repeat;
  cursor: pointer;
  z-index: 4;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.penalty-game__target:hover {
  transform: scale(1.08);
}

.target-1 {
  left: 13%;
  top: 28%;
}

.target-2 {
  right: 14%;
  top: 28%;
}
.target-5 {
  right: 45%;
  top: 12%;
}
.target-3 {
  left: 14%;
  bottom: 16%;
}

.target-4 {
  right: 14%;
  bottom: 16%;
}

.penalty-game__target.scored {
  opacity: 0;
  pointer-events: none;
}

.penalty-game__ball {
  position: absolute;
  bottom: -15px;
  width: 126px;
  height: 126px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  z-index: 8;
}

.penalty-game__ball img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.penalty-game__ball.shoot {
  animation: shootBall 0.55s ease forwards;
}

@keyframes shootBall {
  0% {
    transform: translateX(-50%) translateY(0) scale(1);
  }

  100% {
    transform: translateX(var(--shot-x, -50%)) translateY(var(--shot-y, -360px))
      scale(0.35);
    opacity: 0;
  }
}

.penalty-game__info {
  width: 70%;
  max-width: 987px;
  margin-left: auto;
  margin-right: auto;
  margin-top: -30px;
  margin-bottom: 50px;
  display: flex;
  justify-content: space-between;
  text-align: center;
}

.penalty-game__info span {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 300;
  font-size: 33.0849px;
  line-height: 40px;

  color: #ffffff;
}

.penalty-game__info b {
  display: block;
  min-width: 91px;
  border-radius: 30px;
  text-align: center;
  color: #ffffff;
  width: 286px;
  height: 62px;
  background: #000000;
  opacity: 0.7;
  border-radius: 31px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 7px;
  font-style: normal;
  font-weight: 700;
  font-size: 33.0849px;
  line-height: 40px;
  color: #ffffff;
}
.penalty-game__ball {
  position: absolute;
  background: transparent;
  border: none;
  padding: 0;
  transform: translateX(-50%);
  left: 49.5%;
  bottom: -157px;
}

.penalty-game__ball::before {
  content: "";
  position: absolute;
  inset: -12px;

  background: url("../img/border.svg") center / contain no-repeat;

  pointer-events: none;
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
}

.penalty-game__ball img {
  position: relative;
  z-index: 2;
  display: block;
}

/* POPUP */

.bonus-popup {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.35s ease;
}

.bonus-popup.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.bonus-popup__content {
  position: relative;
  width: min(520px, 100%);
  min-height: 570px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  transform: scale(0.8);
  transition: transform 0.35s ease;
}

.bonus-popup.active .bonus-popup__content {
  transform: scale(1);
}

.bonus-popup__ball {
  width: 170px;
  margin-bottom: -35px;
  z-index: 2;
}

.bonus-popup__text {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 35px 25px;
  background: #fff;
  color: #333;
  text-align: center;
  transform: rotate(-4deg);
  box-shadow: 15px 15px 0 #b0001f;
  display: none;
}

.bonus-popup__text span {
  display: inline-block;
  padding: 8px 35px;
  margin-bottom: 12px;
  background: #17bfa7;
  color: #fff;
  font-weight: 900;
  font-size: 22px;
}

.bonus-popup__text h2 {
  margin: 0;
  font-size: clamp(28px, 7vw, 46px);
  line-height: 1;
  font-weight: 900;
}

.footer a {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 20.9381px;
  line-height: 26px;
  text-decoration-line: underline;
  color: #ffffff;
}
.footer p {
  font-weight: 400;
  font-size: 15.554px;
  line-height: 19px;
  color: #ffffff;
  margin: 0;
  margin-top: 11px;
}
.footer {
  position: relative;
  bottom: 0;
  text-align: right;
  padding-right: 35px;
  bottom: 36px;
}
.penalty-game__target {
  transform: translate(0, 0) scale(1);
}

.penalty-game__target.shooting {
  animation: targetGoal 0.7s ease forwards;
  z-index: 10;
  pointer-events: none;
}

@keyframes targetGoal {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }

  70% {
    transform: translate(var(--target-x), var(--target-y)) scale(0.65);
    opacity: 1;
  }

  100% {
    transform: translate(var(--target-x), var(--target-y)) scale(0.4);
    opacity: 0;
  }
}

.penalty-game__target.scored {
  opacity: 0;
  pointer-events: none;
}

.penalty-game__keeper {
  transform-origin: center bottom;
}

.penalty-game__keeper.fall-left {
  transform: translateX(-80%) rotate(-65deg);
}

.penalty-game__keeper.fall-right {
  transform: translateX(-20%) rotate(65deg);
}

.penalty-game__step span.ball-small {
  background: url("../img/ball-small.svg") center / cover no-repeat !important;
  box-shadow: none;
}
@media (max-width: 1520px) {
  .penalty-game__keeper {
    width: 451px;
  }
}
@media (max-width: 1420px) {
  .penalty-game__keeper {
    width: 409px;
  }
}
@media (max-width: 1300px) {
  .penalty-game__keeper {
    width: 367px;
  }
}

/* MOBILE */

@media (max-width: 767px) {
  .penalty-game__top {
    padding: 35px 24px 0;
  }

  .penalty-game__progress {
    width: 78%;
    margin-top: 80px;
  }

  .penalty-game__gate {
    width: 86%;
    margin-top: 135px;
  }

  .penalty-game__target {
    width: 55px;
    height: 55px;
  }

  .penalty-game__ball {
    width: 105px;
    height: 105px;
    bottom: 135px;
  }

  .penalty-game__info {
    width: 82%;
    bottom: 85px;
  }

  .penalty-game__info b {
    min-width: 105px;
    font-size: 13px;
  }

  .bonus-popup__button {
    min-width: auto;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  .bonus-popup__button img {
    width: 100%;
    height: 100%;
  }
}

.penalty-game {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bonus-popup.active {
  background-image: url(../img/popup.png);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40px;
}

@media (max-width: 1200px) {
  .penalty-game {
    min-height: 900px;
    background-position: top;
    min-height: 1183px;
  }
  .penalty-game__field {
    margin-top: -60px;
  }
  .penalty-game__gate {
    width: 96%;
  }
  .penalty-game__keeper {
    width: 473px;
  }
  .penalty-game__progress {
    margin: -10px auto 0;
  }
  .penalty-game::before {
    content: "";
    position: absolute;
    top: -48px;
    left: 0;
    width: 100%;
    height: 400px;
    background: url(../img/flags.svg) top center / contain no-repeat;
    z-index: 0;
    pointer-events: none;
  }
}
@media (max-width: 1080px) {
  .penalty-game {
    background-position: top;
    min-height: 1830px;
    background-image: url(../img/bg.webp);
  }
  .footer {
    padding-right: 0;
  }
  .penalty-game__info {
    width: 70%;
    max-width: 100%;
  }
  .penalty-game__step span {
    width: 39.34px;
    height: 38.34px;
  }
  .bonus-popup.active {
    background-image: url(../img/popup-mob.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 40px;
  }
  .bonus-popup__content {
    position: relative;
    width: min(520px, 100%);
    min-height: 708px;
  }
  .logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .penalty-game::before {
    content: none;
  }
  .penalty-game__top {
    padding: 75px 51px 0;
  }
  .penalty-game__logo {
    width: 298px;
    max-width: 298px;
  }
  .brand {
    max-width: 205px;
  }
  .penalty-game__progress {
    margin: 266px auto 0;
  }
  .penalty-game__field {
    margin-top: -37px;
  }
  .penalty-game__info {
    margin-top: 197px;
  }
  .penalty-game__gate {
    width: 70%;
  }
  .penalty-game__keeper {
    width: 311px;
  }

  .penalty-game__ball {
    bottom: -312px;
  }

  .penalty-game__gate {
    max-width: 749px;
  }
  .footer {
    position: relative;
    left: auto;
    right: auto;
    bottom: 20px;

    width: 70%;
    max-width: 100%;
    transform: translateX(0%);
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 1012px) {
  @media (max-width: 1080px) {
    .penalty-game__field {
      margin-top: -95px;
    }
  }
}
@media (max-width: 920px) {
  .penalty-game__info {
    width: 97%;
  }
  .penalty-game__logo {
    width: 240px;
    max-width: 298px;
  }
  .brand {
    max-width: 153px;
  }
  .penalty-game__progress {
    gap: 72px;
  }
  .penalty-game__target {
    width: 62px;
    height: 62px;
  }
  .penalty-game__top {
    padding: 45px 51px 0;
  }
  .penalty-game__field {
    margin-top: 7px;
  }
  .penalty-game__gate {
    width: 92%;
  }
  .penalty-game__field {
    margin-top: -55px;
  }
  .penalty-game__keeper {
    width: 244px;
  }
}
@media (max-width: 820px) {
  .penalty-game__field {
    min-height: 646px;
  }
}

@media (max-width: 767px) {
  .penalty-game__progress {
    width: 100%;
    margin-top: 158px;
  }
  .penalty-game__progress {
    gap: 89px;
  }
  .penalty-game__field {
    min-height: 565px;
  }
  .penalty-game__gate {
    margin-top: 86px;
  }
  .penalty-game__info b {
    width: 165px;
  }
}
@media (max-width: 700px) {
  .penalty-game__keeper {
    width: 191px;
  }
  .penalty-game__target {
    width: 39px;
    height: 39px;
  }
  .penalty-game__step span {
    width: 39.34px;
    height: 38.34px;
  }
  .target-1 {
    left: 6%;
  }
  .target-2 {
    right: 8%;
  }
  .target-3 {
    left: 6%;
    bottom: 1%;
  }
  .target-4 {
    right: 9%;
    bottom: 1%;
  }
  .target-5 {
    right: 47%;
  }
  .penalty-game__gate {
    margin-top: 91px;
  }
  .penalty-game__progress {
    gap: 57px;
  }
  .penalty-game__info {
    width: 82%;
  }
}
@media (max-width: 650px) {
  .penalty-game__top {
    padding: 25px 20px 0;
  }
  .penalty-game__progress {
    width: 92%;
  }
  .penalty-game__keeper {
    width: 227px;
  }
  .penalty-game__gate {
    margin-top: 121px;
  }
  .target-1 {
    top: 11%;
  }
  .target-5 {
    top: -8%;
  }
  .target-2 {
    top: 10%;
  }
  .target-3 {
    bottom: 9%;
  }
  .target-4 {
    bottom: 9%;
  }
    .bonus-popup.active {
    background-image: url(../img/popup-mob.png);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 40px;
  }
  .bonus-popup__content {
    position: relative;
    width: min(520px, 100%);
    min-height: 326px;
  }
}
.footer a:hover{
  color: #ffd500;
}
@media (max-width: 586px) {
  .penalty-game__gate {
    margin-top: 25%;
  }
  .penalty-game__gate {
    width: 77%;
  }
  .penalty-game__progress {
    gap: 41px;
  }
  .penalty-game__info {
    width: 83%;
  }
}
@media (max-width: 535px) {
  .penalty-game__gate {
    margin-top: 27%;
  }
  .penalty-game__gate {
    width: 84%;
  }
}
@media (max-width: 505px) {
  .penalty-game__gate {
    width: 95%;
  }
}
@media (max-width: 480px) {
  .penalty-game {
    background-size: cover;
    min-height: 900px;
  }
  .penalty-game__logo {
    width: 125px;
    max-width: 298px;
  }
  .brand {
    max-width: 91px;
  }
  .penalty-game__progress {
    gap: 53px;
  }
  .penalty-game__progress {
    margin-top: 122px;
  }
  .penalty-game__progress-line {
    height: 31.34px;
  }
  .penalty-game__step span {
    width: 24.34px;
    height: 24.34px;
  }

  .penalty-game__progress .penalty-game__step p img {
    width: 35px;
    height: 35px;
    object-fit: contain;
  }
  .penalty-game__progress .penalty-game__step:last-child {
    margin-right: -6px;
  }
  .penalty-game__progress .penalty-game__step:last-child p img {
    width: 40px;
    height: 40px;
    object-fit: contain;
  }
  .penalty-game__progress .penalty-game__step:nth-of-type(4) p img {
    width: 40px;
    height: 40px;
    object-fit: contain;
  }
  .penalty-game__gate {
    margin-top: 4%;
  }
  .penalty-game__gate {
    width: 62%;
  }
  .penalty-game__keeper {
    width: 147px;
  }
  .penalty-game__field {
    min-height: 303px;
  }
  .penalty-game__ball {
    bottom: -49px;
  }
  .penalty-game__ball {
    width: 75px;
    height: 75px;
  }
  .penalty-game__info b {
    width: 146px;
    height: 31px;
  }
  .penalty-game__info span {
    font-size: 25.0849px;
  }
  .penalty-game__info {
    margin-bottom: 51px;
  }
  .footer a {
    font-size: 14.9381px;
  }
  .footer p {
    font-size: 12.554px;
  }
}
@media (max-width: 430px) {
  .penalty-game__gate {
    width: 70%;
  }
  .penalty-game__progress {
    gap: 36px;
  }
}
@media (max-width: 400px) {
  .penalty-game__gate {
    width: 77%;
  }
}
@media (max-width: 370px) {
  .penalty-game__gate {
    width: 87%;
  }
  .penalty-game__info b {
    width: 97px;
  }
  .penalty-game__progress {
    gap: 25px;
  }
}
.penalty-game__keeper.goal-animation {
  width: 226px;
}
.penalty-game__keeper.goal-animation {
  width: 226px !important;
  height: auto !important;
}

.penalty-game__keeper.goal-animation.fall-left {
  width: 226px !important;
  transform: translateX(-85%) rotate(-65deg) scale(1) !important;
}

.penalty-game__keeper.goal-animation.fall-right {
  width: 226px !important;
  transform: translateX(-15%) rotate(65deg) scale(1) !important;
}
.penalty-game__keeper {
  position: absolute;
  left: 50%;
  bottom: 2%;
  width: 226px;
  max-width: 226px;
  height: auto;
  transform: translateX(-50%);
  transform-origin: center bottom;
  transition: transform 0.45s ease;
  z-index: 7;
}

.penalty-game__keeper.goal-animation {
  width: 226px !important;
  max-width: 226px !important;
  height: auto !important;
}

.penalty-game__keeper.goal-animation.fall-left {
  width: 226px !important;
  max-width: 226px !important;
  transform: translateX(-85%) rotate(-65deg) scale(1) !important;
}

.penalty-game__keeper.goal-animation.fall-right {
  width: 226px !important;
  max-width: 226px !important;
  transform: translateX(-15%) rotate(65deg) scale(1) !important;
}
.penalty-game__keeper.goal-animation,
.penalty-game__keeper.goal-animation.fall-left,
.penalty-game__keeper.goal-animation.fall-right {
  width: 226px !important;
  min-width: 226px !important;
  max-width: 226px !important;
  height: 226px !important;
  max-height: 226px !important;
  object-fit: contain !important;
}

.penalty-game__keeper.goal-animation.fall-left {
  transform: translateX(-85%) rotate(-65deg) scale(1) !important;
}

.penalty-game__keeper.goal-animation.fall-right {
  transform: translateX(-15%) rotate(65deg) scale(1) !important;
}
html.no-scroll,
body.no-scroll {
  overflow: hidden !important;
  position: fixed;
  width: 100%;
}
@media (max-width: 1080px) {
  .penalty-game__keeper {
    width: 310px;
    max-width: 297px;
  }
}
@media (max-width: 730px) {
  .penalty-game__keeper {
    width: 259px;
    max-width: 265px;
  }
  .penalty-game__gate {
    margin-top: 116px;
  }
  .target-2,
  .target-1 {
    top: 13%;
  }
  .target-5 {
    top: 5%;
  }
  .penalty-game__ball {
    bottom: -362px;
  }
}
@media (max-width: 650px) {
  .penalty-game__gate {
    margin-top: 136px;
  }
  .target-5 {
    right: 47%;
  }
}
@media (max-width: 610px) {
  .penalty-game__gate {
    margin-top: 141px;
  }
  .target-5 {
    top: -5%;
    right: 45%;
  }
  .penalty-game {
    background-size: contain;
  }
  .penalty-game__progress {
    margin-top: 139px;
  }
  .penalty-game__gate {
    margin-top: -94px;
  }
  .penalty-game__gate {
    width: 61%;
  }
  .penalty-game__keeper {
    width: 179px;
    max-width: 266px;
  }
  .penalty-game__keeper.goal-animation,
  .penalty-game__keeper.goal-animation.fall-left,
  .penalty-game__keeper.goal-animation.fall-right {
    width: 179px !important;
    min-width: 179px !important;
    max-width: 179px !important;
    height: 155px !important;
    max-height: 226px !important;
    object-fit: contain !important;
  }
  .penalty-game__ball {
    bottom: -188px;
  }
  .penalty-game__ball {
    width: 64px;
    height: 64px;
  }
  .penalty-game__field {
    min-height: 100px;
    margin-top: 210px;
  }
  .penalty-game {
    min-height: 1079px;
  }
  .penalty-game__info {
    margin-top: 155px;
  }
  .footer {
    bottom: 22px;
  }
  .penalty-game__logo {
    width: 180px;
    max-width: 298px;
  }
}
@media (max-width: 600px) {
  .penalty-game {
    min-height: max-content;
    width: 100vw;
    background-size: cover;
  }
}
@media (max-width: 550px) {
  .penalty-game__keeper {
    width: 152px;
    max-width: 266px;
  }
  .penalty-game__keeper.goal-animation,
  .penalty-game__keeper.goal-animation.fall-left,
  .penalty-game__keeper.goal-animation.fall-right {
    width: 133px !important;
    min-width: 133px !important;
    max-width: 133px !important;
    height: 145px !important;
    max-height: 226px !important;
    object-fit: contain !important;
  }
}
@media (max-width: 530px) {
  .penalty-game__field {
    min-height: 100px;
    margin-top: 223px;
  }
}
@media (max-width: 500px) {
  .penalty-game__field {
    min-height: 100px;
    margin-top: 263px;
  }
  .penalty-game__ball {
    bottom: -121px;
  }
  .penalty-game__keeper {
    width: 183px;
    max-width: 266px;
  }
  .target-2,
  .target-1 {
    top: -17%;
  }
  .target-1 {
    left: -2%;
  }
  .target-2 {
    right: -2%;
  }
  .target-5 {
    top: -32%;
    right: 44%;
  }
  .target-3 {
    left: -4%;
  }
  .target-4 {
    right: -4%;
  }
}
@media (max-width: 465px) {
  .penalty-game__field {
    min-height: 100px;
    margin-top: 167px;
  }
  .penalty-game__keeper {
    width: 142px;
    max-width: 266px;
  }
  .target-2,
  .target-1 {
    top: 6%;
  }
  .target-1 {
    left: 6%;
  }
  .target-5 {
    top: -10%;
  }
  .target-2 {
    right: 9%;
  }
  .target-3 {
    left: 6%;
  }
  .target-4 {
    right: 10%;
  }
  .penalty-game__ball {
    bottom: -99px;
  }
  .penalty-game__info {
    margin-top: 107px;
  }
  .penalty-game__field {
    min-height: 100px;
    margin-top: 163px;
  }
  .penalty-game__ball {
    bottom: -108px;
  }
}
html,
body {
  width: 100%;
  overflow-x: hidden;
}

.penalty-game {
  position: relative;
  width: 100%;
  overflow-x: hidden;
}

.penalty-game * {
  box-sizing: border-box;
}
@media (max-width: 450px) {
  .penalty-game__field {
    min-height: 100px;
    margin-top: 211px;
  }
  .penalty-game__gate {
    width: 71%;
  }
}
@media (max-width: 370px) {
  .penalty-game__gate {
    width: 81%;
  }
}
@media (max-width: 353px) {
  .penalty-game__field {
    min-height: 100px;
    margin-top: 218px;
  }
  .penalty-game__progress {
    margin-top: 47px;
  }
  .penalty-game__gate {
    width: 90%;
  }
}
