@import url(fonts.css);
html {
  height: 100vh;
}
body {
  font-family: 'GothicPro', Courier, Georgia, Times, serif !important;
  color: #FFFFFF;
  background-size: cover;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 22px;
  text-align: left;
  height: 100vh;
}
button {
  font-family: 'TTPositiveExBold', 'SBSansBold', Arial, Helvetica, sans-serif !important;
}
h1 {
  font-family: 'TTPositiveExBold', 'SBSansBold', Arial, Helvetica, sans-serif;
  text-transform: uppercase;
}
.vh-100,
.h-100 {
  height: 100dvh !important;
}
main {
  animation: myAnim 2s ease 0s 1 normal forwards;
}
.question__block {
  width: 80%;
  height: 75%;
  margin: auto;
  display: flex;
  justify-content: space-around;
  padding: 5vw;
  font-size: calc(4vw + 4vh + 2vmin);
  line-height: calc(4vw + 4vh + 2vmin);
  border: 1px solid #FFFFFF;
  border-radius: 20px;
}
@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: 200px;
  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;
}
.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;
  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: rgba(255, 255, 255, 0.5);
}
.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);
}
#progressBar {
  width: 90%;
  margin: 10px auto;
  height: 22px;
  background-color: #0A5F44;
  color: #ffffff;
  font-weight: bold;
  font-size: 22px;
}
#progressBar div {
  height: 100%;
  text-align: right;
  padding: 0 10px;
  line-height: 22px;
  /* same as #progressBar height if we want text middle aligned */
  width: 0;
  background-color: #CBEA00;
  box-sizing: border-box;
}
#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;
}
.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);
}
