@import url("https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:wght@600;700&display=swap");
body {
  background-image: radial-gradient(#1F3756, #141539);
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

.fit-content {
  width: fit-content;
}

.display-not {
  display: none;
}

.modal-content {
  max-width: 400px;
  margin: auto;
  background: #FFFFFF !important;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.196706) !important;
  border-radius: 8px !important;
}

.modal-header {
  padding-bottom: 0 !important;
}
.modal-header h5 {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 32px;
  color: #3B4262;
}

.modal-body {
  padding-top: 0 !important;
  padding-bottom: 32px !important;
}
.modal-body img {
  display: block;
  margin: auto;
  max-width: 305px;
  margin-top: 48px;
}

header {
  border: 3px solid rgba(255, 255, 255, 0.289199);
  margin-top: 48px;
  border-radius: 15px;
  max-width: 700px !important;
}
header img {
  padding-top: 27.68px;
  padding-bottom: 29.64px;
  padding-left: 33.32px;
}
header .score-container {
  max-width: 150px;
  max-height: 114px;
  height: 114px;
  margin-top: 18px;
  margin-bottom: 18px;
  margin-right: 24px;
  margin-left: auto;
  background: linear-gradient(0deg, #F3F3F3 0%, #FFFFFF 100%);
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.196706);
  border-radius: 8px;
  text-align: center;
  padding-top: 16px;
}
header .score-container h6 {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 19.2px;
  letter-spacing: 2.5px;
  color: #2A45C2;
  margin: auto;
}
header .score-container span {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 64px;
  color: #565468;
}

.start-game {
  background-image: url("images/bg-triangle.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto;
  margin-top: 64px;
  max-width: 476px;
  height: 430px;
}
.start-game .row {
  justify-content: space-around;
  gap: 80px;
  position: relative;
}
.start-game .bottom-row {
  margin-top: 24px;
}
.start-game .col-before {
  position: absolute;
  z-index: -1;
  width: 100%;
  max-width: 198px;
  max-height: 194px;
  height: 100%;
  opacity: 0;
  border-radius: 100%;
  border: solid 90px #fff;
  animation-name: wave-leave;
  animation-duration: 0.5s;
}
.start-game .paper-before {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.start-game .scissors-before {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.start-game .rock-before {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.symbol {
  width: 198px;
  height: 194px;
  border-radius: 100%;
  position: relative;
  background-color: #fff;
  z-index: 1;
}
.symbol img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  z-index: -1;
}

.scissors {
  border: solid 30px #EB9F0E;
  box-shadow: 0px 5px 0px 3px #C76C1B, inset 0px 6px 3px 1px #babfd4;
}
.scissors:hover {
  cursor: pointer;
}
.scissors:hover .scissors-before {
  animation-name: wave-hover;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

.rock {
  border: solid 30px #DB2E4D;
  box-shadow: 0px 5px 0px 3px #9D1634, inset 0px 6px 3px 1px #babfd4;
}
.rock:hover {
  cursor: pointer;
}
.rock:hover .rock-before {
  animation-name: wave-hover;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

.paper {
  border: solid 30px #4664F4;
  box-shadow: 0px 5px 0px 3px #2a45c2, inset 0px 6px 3px 1px #babfd4;
}
.paper:hover {
  cursor: pointer;
}
.paper:hover .paper-before {
  animation-name: wave-hover;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

@keyframes wave-hover {
  from {
    opacity: 0;
    border-width: 90px;
  }
  to {
    opacity: 0.1;
    border-width: 140px;
  }
}
@keyframes wave-leave {
  from {
    opacity: 0.1;
    border-width: 140px;
  }
  to {
    opacity: 0;
    border-width: 90px;
  }
}
.step-two {
  max-width: 858px !important;
  margin: auto;
  margin-top: 180px;
  margin-bottom: 250px;
}
.step-two .row {
  justify-content: space-around;
  position: relative;
}
.step-two h3 {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 3px;
  color: #fff;
  text-align: center;
  margin-bottom: 63px;
  position: absolute;
  top: -115px;
}

.step-two-left {
  position: absolute;
  left: 150px;
  transition: all 3s;
}

.step-two-left-open {
  left: 0px !important;
}

.step-two-right {
  position: absolute;
  right: 150px;
  transition: right 3s;
}

.step-two-right-open {
  right: 0px;
}

.empty-symbol {
  background: rgba(0, 0, 0, 0.1);
  border: solid 30px transparent;
}

.step-two-symbol:hover {
  cursor: default !important;
}

#countdown {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 110px;
  font-weight: 700;
  line-height: 20px;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.game-result-container {
  text-align: center;
  opacity: 0;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in;
}
.game-result-container h4 {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 67.2px;
  color: #fff;
}
.game-result-container button {
  width: 220px;
  height: 48px;
  border-radius: 8px;
  border: none;
  background: linear-gradient(0deg, #F3F3F3 0%, #FFFFFF 100%);
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.196706);
  margin-top: 16px;
  color: #3B4262;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 19.2px;
  letter-spacing: 2.5px;
}
.game-result-container button:hover {
  color: #DB2E4D;
  cursor: pointer;
}

@keyframes whoWon {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0.1;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}
footer {
  display: flex;
  flex-direction: column;
}
footer .btn {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 19.2px;
  letter-spacing: 2.5px;
  text-align: center;
  width: 128px;
  height: 40px;
  background: transparent;
  border: solid 2px #fff;
  border-radius: 7px;
  color: #fff;
  margin-left: auto;
  display: block;
  margin-right: 200px;
  margin-bottom: 30px;
}
footer .btn:hover {
  color: #DB2E4D;
}

.attribution {
  font-size: 14px;
  text-align: center;
  margin-top: 20px;
  color: #fff;
}

.attribution a {
  color: #9ccfec;
}

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