@charset "UTF-8";

@font-face {
  font-family: ProximaNova;
  src: local("Proxima Nova Regular"), local("ProximaNova-Regular"), url(https://cdn.action-mcfr.ru/fonts/proximanova-regular-webfont.woff) format("woff");
  font-weight: 400;
  font-style: normal
}

@font-face {
  font-family: Proxima Nova Rg;
  src: local("Proxima Nova Regular Italic"), local("ProximaNova-RegularIt"), url(https://cdn.action-mcfr.ru/fonts/ProximaNova-RegularIt.woff) format("woff");
  font-weight: 400;
  font-style: italic
}

@font-face {
  font-family: ProximaNovaBold;
  src: local("Proxima Nova Bold"), local("ProximaNova-Bold"), url(https://cdn.action-mcfr.ru/fonts/proximanova-bold-webfont.woff) format("woff");
  font-weight: 700;
  font-style: normal
}

@font-face {
  font-family: Proxima Nova Rg;
  src: local("Proxima Nova Bold Italic"), local("ProximaNova-BoldIt"), url(https://cdn.action-mcfr.ru/fonts/ProximaNova-BoldIt.woff) format("woff");
  font-weight: 700;
  font-style: italic
}

@font-face {
  font-family: ProximaNovaSemibold;
  src: local("Proxima Nova Semibold"), local("ProximaNova-Semibold"), url(https://cdn.action-mcfr.ru/fonts/proximanova-semibold-webfont.woff) format("woff");
  font-weight: 600;
  font-style: normal
}

@font-face {
  font-family: Proxima Nova Rg;
  src: local("Proxima Nova Semibold Italic"), local("ProximaNova-SemiboldIt"), url(https://cdn.action-mcfr.ru/fonts/ProximaNova-SemiboldIt.woff) format("woff");
  font-weight: 600;
  font-style: italic
}

.game-progress {
  color: #8f99b6;
  font-size: 17px;
  /*font-family: ProximaNovaSemibold;*/
  position: relative;
  padding-right: 25px;
  line-height: 18px;
  margin-bottom: 20px;
}

.game-progress:before {
  content: '';
  width: 14px;
  height: 18px;
  background: url(../../i/page-icon.png) no-repeat;
  display: inline-block;
  line-height: 18px;
  margin-right: 7px;
  position: relative;
  top: 3px;
}


body {
  font-family: ProximaNova;
  margin: 0;
  padding: 0;
}

.game-container {
  font-size: 16px;
  background: #deedff;
  padding: 13px;
}
.game-container * {
  box-sizing: border-box;
  outline: none;
}
.game-container button {
  cursor: pointer;
}
.game-container button:disabled {
  cursor: default;
}
.game-container .btn {
  background: #68adff;
  box-shadow: 2px 2px 2px rgb(0 0 0 / 50%);
  display: inline-block;
  height: 30px;
  line-height: 30px;
  color: white;
  font-size: 16px;
  padding: 0 30px;
  font-weight: bold;
  text-decoration: none;
  
  border: 0 none;
  cursor: pointer;
  font-family: ProximaNova;
}

.game-container .btn-multiline {
  height: auto;
  line-height: 1;
  padding: 18px 10px;
}
.game-container .btn:hover, .game-container .btn:visited {
  color: white;
}
.game-container .btn-yellow {
  background: #ffda33;
}
.game-container .btn-red {
  background: #e2261a;
}
.game-container .btn-green {
  background: #0ba283;
}
.game-container .btn-red, .game-container .btn-green {
  color: white;
}
.game-container .btn-red:hover, .game-container .btn-red:visited, .game-container .btn-green:hover, .game-container .btn-green:visited {
  color: white;
}

.game-container {
  max-width: 650px;
  margin: 0 auto;
  position: relative;
}

.game-screen {
  min-height: 416px;
  display: none;
  position: relative;
}

.game-screen:not(:first-child) {
  user-select: none;
}
.game-screen:first-child {
  display: block;
}
.game-screen__completed {
  overflow: hidden;
  display: block;
  visibility: hidden;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  z-index: 10;
  background: #deedff;
}
.game-screen__completed.shown {
  visibility: visible;
}

.game-completed__top, .game-completed__bottom {
  top: -50%;
  height: 50%;
  position: absolute;
  left: 0;
  right: 0;
  background: #f6dd40;
  transition: top 0.5s linear;
  display: flex;
  justify-content: center;
  align-items: center;
}
.game-completed__top:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -20%;
  height: 20%;
  background: #f6dd40;
  z-index: 2;
  transform: skew(0deg, 5deg) translate(0px, -31px);
}
.game-completed__bottom {
  top: 100%;
  background: #e0eaf6;
  justify-content: flex-start;
}
.game-completed__bottom_content {
  width: 100%;
}
.game-completed__bottom:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0%;
  height: 35%;
  background: #e0eaf6;
  z-index: 1;
  transform: skew(0deg, 5deg) translate(0px, -27px);
}
.game-completed.shown .game-completed__top {
  top: 0;
}
.game-completed.shown .game-completed__bottom {
  top: 50%;
}
.game-completed__text {
  max-width: 490px;
  padding: 0 20px;
  text-align: center;
  font-size: 28px;
  font-weight: bold;
}
.game-completed__text a {
  color: black;
}
.game-completed__text.loose {
  display: none;
}

.game-completed__score {
  padding-left: 10%;
  margin-bottom: 30px;
  font-size: 24px;
}

.game-completed__score p {
  margin: 0 0 10px 0;
}
.game-completed__button {
  text-align: center;
}

.game-intro__button {
  padding: 10px 0 20px 0;
  text-align: center;
  
}

.game-02 .game-field {
  background: #7cb8ff;
  border-radius: 4px;
  background-size: cover;
  position: absolute;
  left: 0;
  right: 0;
  top: 20px;
  bottom: 0;
  overflow: hidden;
}

.game-02 .bobbles-container {
  position: absolute;
  left: 10%;
  right: 10%;
  top: 100%;
  transition-property: transform;
  transition-duration: 0s;
  transition-timing-function: linear;
  position: relative;
}
.game-02 .bobble {
  margin-bottom: 50px;
  position: relative;
  padding: 30px;
  width: min-content;
  border-radius: 50%;
  cursor: pointer;
  font-family: ProximaNovaSemibold;
  font-size: 15px;
  color: #4e607e;
 background-color: #40cdff;
   background-image: gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(255,255,255,0.5)), color-stop(70%,rgba(255,255,255,0))); 

	border-radius: 50%;
	
	
    box-shadow: inset 0 10px 20px rgba(255, 255, 255, 0.3),
	0 20px 30px rgba(0, 0, 0, 0.2),
	inset 0px 10px 20px 5px rgba(255, 255, 255, 1);

}


}
.game-02 .bobble:nth-child(2n) {
  margin-left: auto;
}
.game-02 .bobble:nth-child(3n) {
  margin-left: 25%;
}
.game-02 .bobble:nth-child(5n) {
  margin-left: 50%;
}
@media all and (max-width: 739px) {
  .game-02 .bobble:nth-child(5n) {
    margin-left: auto;
    margin-right: 90px;
  }
}
.game-02 .bobble__inner {
  width: min-content;
  min-width: 100px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.game-02 .bobble.correct {
	 
  background-color: #40ff73;
  
}
.game-02 .bobble.incorrect {
  background:  #ff9d9d;
   
}

.game-stat__score {
  text-align: center;
}

.game-stat__score span {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 4px;
  background: #cfd7e1;
  border-radius: 50%;
  position: relative;
  top: -8px;
}

.game-stat__score .correct {
  background: #0cd2a5;
}

.game-stat__score .incorrect {
  background: #d54f58;
}

.game-results {
  margin: 10px;
  max-height: 365px;
  overflow: auto;
}

.game-results table {
  font-size: 14px;
  border-collapse: collapse;
}

.game-results td, .game-results th {
  border: 1px #88B8E7 solid;
  padding: 3px 5px;
}
p {
	margin: 0 30px;
	font-size: 18px;
	color: #4e607e;
}
h3 {
	color: #4e607e;
	text-align: center;
}