@import url(fonts.css);
html {
  height: 100vh;
}
body {
  font-family: "Circe", sans-serif;
  color: #FFFFFF;
  background-size: cover;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 22px;
  text-align: left;
  height: 100vh;
}
h1 {
  text-transform: uppercase;
}
.vh-100,
.h-100 {
  height: 100dvh !important;
}
main {
  animation: myAnim 3s ease 0s 1 normal forwards;
}
#textContent {
  color: #FFFFFF !important;
}
.question__img {
  margin: auto;
  width: 100%;
  height: 100%;
  max-height: 600px;
  object-fit: contain;
}
.question__block {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-around;
  font-size: calc(3vw + 2vh + 2vmin);
  line-height: calc(3vw + 2vh + 2vmin);
  border-radius: 20px;
  text-align: center;
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF;
}
@keyframes myAnim {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.melody__block .header__block {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 30px 20px;
}
.melody__block .header__block .logo--inner {
  width: 500px;
  margin: 20px;
}
.melody__block .header__block .teams__block {
  display: flex;
  margin: auto;
}
.melody__block .header__block .teams__block .teams__item {
  width: 180px;
  height: 100px;
  margin: 1rem;
  display: flex;
  font-size: 64px;
  font-weight: bold;
  justify-content: center;
  align-items: center;
  border: 10px dotted #000000;
  outline: solid 10px var(--bg-team);
  background-color: var(--bg-team);
}
.melody__block .game__block {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFFFFF;
}
.melody__block .game__block .themes__block {
  margin: auto 0;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.melody__block .game__block .themes__block .themes__item {
  display: flex;
  align-items: center;
  position: relative;
}
.melody__block .game__block .themes__block .themes__item .themes__name {
  display: flex;
  align-items: center;
  font-size: 55px;
  line-height: 50px;
  font-weight: 700;
  width: 40%;
  height: 140px;
  border: 10px dotted #FFFFFF;
  border-left: none;
  padding: 20px 20px 20px 100px;
  position: relative;
  text-transform: uppercase;
}
.melody__block .game__block .themes__block .themes__item .themes__name--active {
  background-color: #ffffff;
  color: #000000;
}
.melody__block .game__block .themes__block .themes__item .tasks__block {
  width: 100%;
  display: flex;
  justify-content: space-around;
}
.melody__block .game__block .themes__block .themes__item .tasks__block .tasks__item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 85px;
  height: 85px;
  position: relative;
}
.melody__block .game__block .themes__block .themes__item .tasks__block .tasks__item::after {
  display: block;
  width: 170px;
  height: 190px;
  content: '';
  background: transparent url('/_img/note.png') 50% 50% no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -19px;
  left: -19px;
}
.melody__block .game__block .themes__block .themes__item .tasks__block .tasks__item--disabled {
  opacity: 0.4;
}
.melody__block .game__block .themes__block .themes__item .tasks__block .tasks__item--at::after {
  background: transparent url('/_img/note-at.png') 50% 50% no-repeat;
}
.melody__block .game__block .themes__block .themes__item .tasks__block .tasks__item--a::after {
  background: transparent url('/_img/note-a.png') 50% 50% no-repeat;
}
.melody__block .game__block .themes__block .themes__item .tasks__block .tasks__score {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 700;
  border-radius: 50%;
  width: 85px;
  height: 85px;
  position: relative;
  background-color: #c2b8d9;
}
.melody__block .game__block .themes__block .themes__item .tasks__block .tasks__score--active {
  background: #EA0029CC;
}
.melody__block .game__block .themes__block .themes__item .tasks__block .tasks__item:not(:first-of-type) .tasks__score::before {
  display: block;
  width: 120px;
  height: 10px;
  background-color: #FFFFFF;
  content: '';
  position: absolute;
  top: calc(50% - 5px);
  left: -180px;
}
.melody__block .game__block .themes__block .themes__item .tasks__block .tasks__item--noBorder .tasks__score::before {
  display: none !important;
  width: 120px;
  height: 10px;
  background-color: #ffffff;
  content: '';
  position: absolute;
  top: calc(50% - 5px);
  left: -180px;
}
.melody__block .game__block .themes__block .themes__item .tasks__block .tasks__item--noBorder:nth-child(odd) {
  transform: translateX(-50px) translateY(-200px) scale(1.8);
}
.melody__block .game__block .themes__block .themes__item .tasks__block .tasks__item--noBorder:nth-child(even) {
  transform: translateX(-50px) translateY(200px) scale(1.8);
}
#clockdiv {
  max-width: 220px;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5rem;
  height: 100%;
  color: #000000;
  padding: 10px 40px;
  border-radius: 178px;
  background: #ffffff url('/_img/phygi/timer.png') 50% 50% no-repeat;
  background-size: cover;
  position: relative;
  margin: auto;
}
#clockdiv > div {
  padding: 4px;
  border-radius: 3px;
  display: inline-block;
}
#clockdiv div > span {
  padding: 4px;
  border-radius: 3px;
  display: inline-block;
}
.stat__block {
  display: flex;
  margin: auto;
  flex-wrap: wrap;
  justify-content: space-around;
  min-width: 65vw;
}
.stat__block .stat__item {
  width: 250px;
  height: 130px;
  margin: 2rem;
  display: flex;
  flex-direction: column;
  font-size: 96px;
  font-weight: bold;
  justify-content: center;
  align-items: center;
  border: 10px dotted #000000;
  outline: solid 10px var(--bg-team);
  background-color: var(--bg-team);
}
.answer__block input {
  border: none;
  border-radius: 23px !important;
  height: 50px;
  position: relative;
}
.answer__block button.btnSubmit {
  height: 50px;
  background-color: #000000;
  color: #ffffff;
  border-radius: 50% !important;
  position: absolute !important;
  right: 0;
  border: 4px solid #ffffff;
  z-index: 999 !important;
}
.answer__block button.btnStake {
  height: 50px;
  background-color: #ffffff;
  color: #000000;
  border-radius: 50% !important;
  position: absolute !important;
  right: -100px;
  border: none;
}
.answer__block button.btnStake--checked {
  background-color: #04E061;
  color: #ffffff;
}
#progressBar {
  width: 80%;
  margin: 1rem auto;
  height: 32px;
  border-radius: 23px;
  background-color: #777777;
  color: #000000;
  font-weight: bold;
  font-size: 24px;
  position: relative;
  border: 1px solid #000;
}
#progressTime {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  color: #000000;
  text-align: center;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#progressTask {
  width: 30%;
  height: 32px;
  border-radius: 23px;
  background-color: #ffffff;
  color: #000000;
  font-weight: bold;
  font-size: 22px;
}
.stat__itemN {
  display: flex;
  flex-basis: 75%;
  align-items: center;
  margin: 24px auto;
  font-size: 36px;
}
.stat__itemN .stat__num {
  margin-right: 20px;
}
.stat__itemN .stat__bg {
  background: linear-gradient(97.27deg, #68FE7F 6.76%, #1FD756 49.13%, #3DE9FF 102.89%);
  color: #000000;
  border-radius: 10px;
  display: flex;
  width: 100%;
  padding: 20px 15px;
  justify-content: space-between;
}
.stat__itemN .stat__bg .stat__name {
  text-transform: uppercase;
}
.btn-answer {
  color: #ffffff !important;
  height: 60px;
  flex-basis: 47%;
  min-height: 60px;
  max-width: 600px;
  width: 20%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  font-size: 1.5rem;
  line-height: 1.5rem;
}
.btn-answer--1 {
  background-color: #FFFFFF !important;
  color: #000000 !important;
}
.btn-answer--2 {
  background-color: #FFFFFF !important;
  color: #000000 !important;
}
.btn-answer--3 {
  background-color: #FFFFFF !important;
  color: #000000 !important;
}
.btn-answer--4 {
  background-color: #FFFFFF !important;
  color: #000000 !important;
}
.btn-answer--5 {
  background-color: #FFFFFF !important;
  color: #000000 !important;
}
.btn-answer--6 {
  background-color: #FFFFFF !important;
  color: #000000 !important;
}
.btn-answer--tinkoff {
  background: linear-gradient(97.27deg, #8368FE 6.76%, #505FFF 49.13%, #3DE9FF 102.89%);
  border: none;
  font-size: 1rem;
  line-height: 1rem;
  min-height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn-answer--sber {
  background: linear-gradient(97.27deg, #68FE7F 6.76%, #1FD756 49.13%, #3DE9FF 102.89%);
  border: none;
  font-size: 1rem;
  line-height: 1rem;
  min-height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn-answer--diasoft {
  background-color: #007D9B !important;
  background: transparent;
  border: 2px solid #ffffff;
  color: #FFFFFF !important;
  font-size: 1rem;
  line-height: 1rem;
  min-height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px !important;
}
.btn-answer--onscreen {
  min-width: 15vw;
  margin: 2rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  font-size: 2rem;
}
