@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Me5Q.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmYUtvAw.ttf) format('truetype');
}
* {
  box-sizing: border-box;
}
#game-ui {
  position: absolute;
  pointer-events: none;
  width: 100%;
  height: 100%;
}
.avatar {
  position: relative;
  width: auto;
  height: auto;
  display: inline-flex;
}
img,
.avatar-bg svg {
  width: 100%;
  height: 100%;
}
.avatar-inner {
  display: inline-flex;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #FAA13B;
  background: white;
  box-shadow: none;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.avatar-inner > img {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMjAgMzIwIj4KICAgIDxwYXRoIGNsYXNzPSJmYWNlIiBkPSJNMCAwaDMyMHYzMjBIMFYweiIgZmlsbD0iI2ZmZiIvPgogICAgPHBhdGggY2xhc3M9InBhdGgiCiAgICAgICAgICAgIGQ9Ik0zMjAgMEgwdjMyMGgzMjBWMHpNMTYwIDY2LjdjMjIuMSAwIDQwIDE3LjkgNDAgNDBzLTE3LjkgNDAtNDAgNDAtNDAtMTcuOS00MC00MCAxNy45LTQwIDQwLTQwem0wIDE4OS4zYy0zMy40IDAtNjIuNy0xNy4xLTgwLTQyLjkuMy0yNi41IDUzLjQtNDEuMSA4MC00MS4xczc5LjYgMTQuNiA4MCA0MS4xYy0xNy4zIDI1LjgtNDYuNiA0Mi45LTgwIDQyLjl6IgogICAgICAgICAgICBmaWxsPSIjMDAwIgogICAgLz4KPC9zdmc+);
  background-size: 100%;
  background-position: center center;
}
.avatar-inner .icon {
  font-size: initial;
}
.avatar-score {
  position: absolute;
  background-repeat: no-repeat;
  left: 50%;
  bottom: -0.625rem;
  transform: translate(-50%, 0);
  z-index: 1;
}
.avatar-score .icon {
  color: #595959;
  font-size: 1.125rem;
}
.avatar-play-with {
  width: auto;
  height: auto;
}
.avatar-play-with .avatar-inner {
  width: 4.8125rem;
  height: 4.8125rem;
}
.avatar-play-with .avatar-inner .icon {
  font-size: 4.375rem;
}
.avatar-play-with-btn {
  position: absolute;
  top: 10%;
  right: 0.625rem;
  transform: translate(0, -10%);
  z-index: 0;
  overflow: hidden;
}
.avatar-play-with-btn .btn {
  transition: width 1s ease-out;
  background-color: #fff;
  font-family: Roboto;
  font-weight: 900;
  padding: 0 0 0 1rem;
  width: 0;
  height: 2.5rem;
  justify-content: start;
}
.avatar-play-with-btn .btn .icon {
  font-size: 1.125rem;
  line-height: 0.75rem;
}
.avatar-play-with-btn .btn-border {
  border: 4px solid #FAA13B;
}
.avatar-play-with-btn-visible .btn {
  width: 10.9375rem;
}
.avatar-play-with-btn .btn-content {
  font-size: 0.6875rem;
  color: #FAA13B;
  width: 4.0625rem;
}
.avatar-play-with-btn .path {
  fill: #3A71FF;
}
.avatar-group {
  display: flex;
  justify-content: center;
  align-items: center;
}
.avatar-group-item {
  margin: 0 0.71875rem;
}
.avatar-group-separator {
  font-size: 1.125rem;
  line-height: 1.125rem;
}
.avatar-play-in-group {
  display: inline-flex;
  position: relative;
}
.avatar-play-in-group-inner {
  display: grid;
  grid-template-columns: repeat(7, 18px);
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.avatar-play-in-group-item {
  grid-row: 1;
}
.avatar-play-in-group-item:nth-child( 1 ) {
  grid-column: 1/4;
}
.avatar-play-in-group-item:nth-child( 2 ) {
  grid-column: 3/6;
  z-index: 2;
}
.avatar-play-in-group-item:nth-child( 3 ) {
  grid-column: 5/8;
}
.avatar-play-in-group .avatar-inner {
  width: 3.4375rem;
  height: 3.4375rem;
}
.avatar-play-in-group .avatar-inner .icon {
  font-size: 2.9375rem;
}
.avatar-play-in-group .avatar-score {
  bottom: -0.625rem;
  height: 1.4375rem;
  line-height: 1.4375rem;
  min-width: 6.5625rem;
  z-index: 3;
}
.btn {
  pointer-events: auto;
  background-color: transparent;
  border: none;
  border-radius: 0.625rem;
  color: #454e7d;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0.875rem 1.25rem;
}
.btn .icon {
  font-size: 1.5rem;
  line-height: 1.5rem;
}
.btn-content {
  font-size: 1.5rem;
}
.btn-circle {
  border-radius: 50%;
}
.btn-oval {
  border-radius: 3.75rem;
}
.btn-primary {
  background-color: #454e7d;
  color: white;
}
.btn-glassy {
  background-color: transparentize(grey, 0.5);
}
.btn-block {
  width: 100%;
}
.btn-revert {
  flex-direction: row-reverse;
}
.btn-border {
  border: 1px solid blue;
}
.btn:active {
  transform: scale(0.9);
}
.btn:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}
.btn:disabled > * {
  pointer-events: none;
}
.score {
  background-color: #32385A;
  border-radius: 2.75rem;
  box-shadow: none;
  min-width: 4.75rem;
  height: 1.4375rem;
  line-height: 1.4375rem;
  font-size: 0.8125rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.score-content {
  color: #595959;
  font-weight: 900;
  font-family: Roboto;
  text-align: center;
  flex-grow: 1;
}
.score .icon {
  line-height: 0.75rem;
  margin-left: 3px;
}
.score-group {
  display: inline-flex;
}
.score-group .icon {
  font-size: 1.5rem;
}
.score-group .icon + .score {
  margin-left: 0.5rem;
}
.count {
  border-radius: 50%;
  border: 2px solid #fff;
  background-color: #5485FF;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
  line-height: 0.875rem;
  width: 1.5rem;
  height: 1.5rem;
}
.avatar > .avatar-inner img,
.avatar > .avatar-inner svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#game-root {
  background: #1e2038;
  display: flex;
}
#game-canvas {
  margin: 0 auto;
  background-color: #1e2038;
}
@media all and (orientation: portrait) {
  #game-canvas {
    max-width: 600px;
  }
}
@media all and (orientation: landscape) {
  #game-canvas {
    max-width: min(1000px, 125vh);
  }
}
* {
  font-family: "Roboto", sans-serif;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.avatar > .avatar-inner {
  border: 3px solid #333957;
}
.avatar > span > img,
.avatar svg {
  width: 100%;
  height: 100%;
  max-width: 128px;
  max-height: 128px;
}
.score.avatar-score {
  background: #333957;
  border-bottom: 4px solid #2b2f4a;
}
.score .score-content {
  color: white;
}
.btn {
  outline: 0;
  background: #333957;
  border-bottom: 4px solid #2b2f4a;
  width: 5rem;
  height: 5rem;
  padding: 1.5rem;
  transition: 0.5s transform;
}
.btn > .icon {
  width: 100%;
  height: 100%;
}
.btn > .icon > svg {
  width: 100%;
  height: 100%;
}
.play-btn > .icon > svg > .path {
  fill: white;
}
.sn-ok .share_ico {
  text-shadow: 1px 2px 1px rgba(0, 0, 0, 0.5);
}
.sn-ok .share_ico > .icon > svg {
  max-width: 60%;
}
.sn-gd #banner_728x90 {
  bottom: 0;
  left: 0;
  right: 0;
}
.sn-gd #banner_120x600 {
  left: 0;
  top: 0;
  bottom: 60px;
}
.sn-gd .gameplay ~ .gd__banners_wrapper #banner_120x600 {
  visibility: visible;
  opacity: 1;
  margin: auto;
}
@media (max-width: 1200px), (max-height: 615px) {
  .sn-gd .gameplay ~ .gd__banners_wrapper #banner_120x600 {
    visibility: hidden;
    opacity: 0;
  }
}
.sn-gd .gameplay ~ .gd__banners_wrapper #banner_300x250 {
  visibility: hidden;
  opacity: 0;
}
.sn-gd .gameplay ~ .gd__banners_wrapper #banner_728x90 {
  visibility: visible;
  opacity: 1;
  bottom: 0;
  left: 0;
  right: 0;
}
@media (max-width: 732px), (max-height: 615px) {
  .sn-gd .gameplay ~ .gd__banners_wrapper #banner_728x90 {
    visibility: hidden;
    opacity: 0;
  }
}
.sn-gd .settings-overlay ~ .gameplay ~ .gd__banners_wrapper #banner_300x250 {
  visibility: visible;
  opacity: 1;
  left: 0;
  right: 0;
  top: 10px;
  bottom: 0;
}
@media (max-width: 339px), (max-height: 669px) {
  .sn-gd .settings-overlay ~ .gameplay ~ .gd__banners_wrapper #banner_300x250 {
    visibility: hidden;
    opacity: 0;
  }
}
.sn-gd .settings-overlay ~ .gameplay ~ .gd__banners_wrapper #banner_120x600 {
  visibility: hidden;
  opacity: 0;
}
.sn-gd .settings-overlay ~ .gameplay ~ .gd__banners_wrapper #banner_728x90 {
  visibility: hidden;
  opacity: 0;
}
.sn-gd .screen__game-over ~ .gd__banners_wrapper #banner_300x250 {
  visibility: hidden;
  opacity: 0;
}
.sn-gd .screen__game-over ~ .gd__banners_wrapper #banner_120x600 {
  visibility: visible;
  opacity: 1;
}
@media (max-height: 615px) {
  .sn-gd .screen__game-over ~ .gd__banners_wrapper #banner_120x600 {
    visibility: hidden;
    opacity: 0;
  }
}
.sn-gd .screen__game-over ~ .gd__banners_wrapper #banner_728x90 {
  bottom: 200px;
  visibility: visible;
  opacity: 1;
}
@media (max-width: 732px), (max-height: 615px) {
  .sn-gd .screen__game-over ~ .gd__banners_wrapper #banner_728x90 {
    visibility: hidden;
    opacity: 0;
  }
}
.sn-gd .screen__win ~ .gd__banners_wrapper #banner_300x250 {
  visibility: hidden;
  opacity: 0;
}
.sn-gd .screen__win ~ .gd__banners_wrapper #banner_120x600 {
  visibility: visible;
  opacity: 1;
}
@media (max-height: 615px) {
  .sn-gd .screen__win ~ .gd__banners_wrapper #banner_120x600 {
    visibility: hidden;
    opacity: 0;
  }
}
.sn-gd .screen__win ~ .gd__banners_wrapper #banner_728x90 {
  bottom: 200px;
  visibility: visible;
  opacity: 1;
}
@media (max-width: 732px), (max-height: 615px) {
  .sn-gd .screen__win ~ .gd__banners_wrapper #banner_728x90 {
    visibility: hidden;
    opacity: 0;
  }
}

.version__label {
  color: white;
  font-size: small;
  opacity: 0.3;
  position: absolute;
  right: 10px;
  bottom: 80px;
}

.alerts__overlay {
  position: absolute;
  width: 100vw;
  height: 100vh;
  z-index: 90000;
}
.alerts__overlay > .status-alerts-wrapper {
  pointer-events: auto;
}
.alerts__overlay .bg {
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: black;
  opacity: 0;
  transition: opacity 0.3s;
}
.alerts__overlay .bg.active {
  pointer-events: auto;
  opacity: 0.3;
}

.status-alerts-wrapper {
  position: fixed;
  z-index: 99999;
  width: 100%;
  height: 0px;
  left: 0;
  top: 0;
}
.status-alerts-wrapper * {
  box-sizing: border-box;
}
.status-alert {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-height: 600px;
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 14px;
  padding-left: 14px;
  -webkit-transition: opacity 800ms ease, max-height 800ms ease-out, -webkit-transform 500ms ease-out;
  transition: opacity 800ms ease, max-height 800ms ease-out, -webkit-transform 500ms ease-out;
  transition: transform 500ms ease-out, opacity 800ms ease, max-height 800ms ease-out;
  transition: transform 500ms ease-out, opacity 800ms ease, max-height 800ms ease-out, -webkit-transform 500ms ease-out;
}
.status-alert.is-transparent {
  max-height: 0px;
  opacity: 0;
  -webkit-transform: translate(0px, -100%);
  -ms-transform: translate(0px, -100%);
  transform: translate(0px, -100%);
}
.status-alert.is-transparent.is-hidden {
  display: none;
}
.status-alert__box {
  position: relative;
  display: block;
  min-height: 20px;
  margin-right: auto;
  margin-left: auto;
  padding: 14px 60px 17px 46px;
  border-radius: 5px;
  background-color: #464c55;
  box-shadow: 0 15px 65px -9px rgba(46, 51, 58, 0.85);
  color: #fff;
}
.status-alert__box.is-green-success {
  background-color: #107c2e;
}
.status-alert__box.is-red-error {
  background-color: #ff3b20;
}
.status-alert__box.is-orange-warning {
  background-color: #f90;
}
.status-alert__icon-holder {
  position: absolute;
  left: 0px;
  top: 0px;
  bottom: 0px;
  width: 40px;
  height: 19px;
  padding-top: 10px;
  padding-left: 11px;
}
.status-alert__text {
  font-size: 14px;
}
.status-alert__icon {
  width: 24px;
  height: 24px;
  text-align: center;
}
.status-alert__icon.is-info-icon {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0Ni4wMyA0NS45MiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiNmZmY7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5pbmZvLWljb24td2hpdGU8L3RpdGxlPjxnIGlkPSJMYXllcl8yIiBkYXRhLW5hbWU9IkxheWVyIDIiPjxnIGlkPSJMYXllcl8xLTIiIGRhdGEtbmFtZT0iTGF5ZXIgMSI+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNi43NCw2Ljc0QTIyLjE3LDIyLjE3LDAsMCwxLDIzLDAsMjIuMTksMjIuMTksMCwwLDEsMzkuMjksNi43NCwyMi4xMiwyMi4xMiwwLDAsMSw0NiwyM2EyMi4xMiwyMi4xMiwwLDAsMS02Ljc0LDE2LjIyQTIyLjE5LDIyLjE5LDAsMCwxLDIzLDQ1LjkyLDIyLjE3LDIyLjE3LDAsMCwxLDYuNzQsMzkuMTgsMjIuMTIsMjIuMTIsMCwwLDEsMCwyMywyMi4xMiwyMi4xMiwwLDAsMSw2Ljc0LDYuNzRaTTEwLDM2YTE3LjcsMTcuNywwLDAsMCwxMyw1LjM5QTE3LjY3LDE3LjY3LDAsMCwwLDM2LDM2YTE3Ljc3LDE3Ljc3LDAsMCwwLDUuMzktMTNBMTcuNzcsMTcuNzcsMCwwLDAsMzYsOS45MiwxNy42NywxNy42NywwLDAsMCwyMyw0LjUzLDE3LjcsMTcuNywwLDAsMCwxMCw5LjkyLDE3Ljc3LDE3Ljc3LDAsMCwwLDQuNjMsMjMsMTcuNzcsMTcuNzcsMCwwLDAsMTAsMzZaTTIwLjcsMTYuMDZWMTEuNDNoNC42M3Y0LjYzWm0wLDE4LjQzVjIwLjdoNC42M1YzNC40OVoiLz48L2c+PC9nPjwvc3ZnPg==);
  background-position: 50% 50%;
  background-size: 20px;
  background-repeat: no-repeat;
}
.status-alert__icon.is-close-icon {
  border-radius: 50%;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMy4wOSAzMi45OCI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiNmZmY7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5jbG9zZS1pY29uLXdoaXRlPC90aXRsZT48ZyBpZD0iTGF5ZXJfMiIgZGF0YS1uYW1lPSJMYXllciAyIj48ZyBpZD0iTGF5ZXJfMS0yIiBkYXRhLW5hbWU9IkxheWVyIDEiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTMzLjA5LDMuMzIsMTkuODEsMTYuNDksMzMuMDksMjkuNjYsMjkuNzcsMzMsMTYuNDksMTkuODEsMy4zMiwzMywwLDI5LjY2LDEzLjE3LDE2LjQ5LDAsMy4zMiwzLjMyLDAsMTYuNDksMTMuMTcsMjkuNzcsMFoiLz48L2c+PC9nPjwvc3ZnPg==);
  background-position: 50% 50%;
  background-size: 15px;
  background-repeat: no-repeat;
  cursor: pointer;
  margin: auto;
  width: 34px;
  height: 34px;
}
.status-alert__icon.is-close-icon:hover {
  background-color: hsla(0, 0%, 100%, 0.15);
}
.status-alert__icon.is-close-icon:active {
  background-color: rgba(0, 0, 0, 0.35);
}
.status-alert__icon.is-check {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0OC41IDM2Ljk5Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6I2ZmZjt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmNoZWNrLXdoaXRlPC90aXRsZT48ZyBpZD0iTGF5ZXJfMiIgZGF0YS1uYW1lPSJMYXllciAyIj48ZyBpZD0iTGF5ZXJfMS0yIiBkYXRhLW5hbWU9IkxheWVyIDEiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTE1LjM5LDI5LjM2LDQ0Ljc1LDAsNDguNSwzLjg4LDE1LjM5LDM3LDAsMjEuNmwzLjg4LTMuODhaIi8+PC9nPjwvZz48L3N2Zz4=);
  background-position: 50% 50%;
  background-size: 20px;
  background-repeat: no-repeat;
}
.status-alert__icon.is-error {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0OS44IDQzIj48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6I2ZmZjt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmVycm9yLWljb24td2hpdGU8L3RpdGxlPjxnIGlkPSJMYXllcl8yIiBkYXRhLW5hbWU9IkxheWVyIDIiPjxnIGlkPSJMYXllcl8xLTIiIGRhdGEtbmFtZT0iTGF5ZXIgMSI+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMCw0MywyNSwwLDQ5LjgsNDNaTTI3LjE4LDI3LjE4VjE4LjA1SDIyLjYxdjkuMTNabTAsOVYzMS42NEgyMi42MVYzNi4yWiIvPjwvZz48L2c+PC9zdmc+);
  background-position: 50% 50%;
  background-size: 20px;
  background-repeat: no-repeat;
}
.status-alert__icon-on-right-holder {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  width: 40px;
  height: 44px;
  padding-top: 6px;
  padding-right: 5px;
  cursor: pointer;
}
.status-alert__padding-wrapper {
  padding-top: 16px;
}
.font-icon.status-alert__icon-span {
  font-size: 20px;
}
.font-icon.status-alert__icon-span-copy {
  font-size: 20px;
}
.font-icon.status-alert__close-icon {
  top: -4px;
  width: 24px;
  height: 24px;
  padding-top: 4px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
}
.font-icon.status-alert__close-icon:hover {
  background-color: hsla(0, 0%, 100%, 0.15);
}
.font-icon.status-alert__close-icon:active {
  background-color: rgba(0, 0, 0, 0.27);
}

.pause__overlay {
  position: absolute;
  cursor: pointer;
  width: 100%;
  height: 100%;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  background: black;
  opacity: 0.8;
  color: #eee;
  font-weight: 900;
  font-size: 36px;
  transition: opacity 0.7s 1s;
}
.pause__overlay.hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.social__overlay {
  position: absolute;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  background: black;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.social__overlay.active {
  pointer-events: auto;
  opacity: 0.3;
}

.crosspromo {
  user-select: none;
  pointer-events: auto;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  display: flex;
  align-content: start;
  transition: opacity 1s;
  min-width: 250px;
  max-width: 400px;
}
.crosspromo.invisible {
  opacity: 0;
}
.crosspromo__icon {
  margin: 15px;
  width: 75px;
  height: 75px;
  border-radius: 10%;
  box-shadow: 0 3px 9px 1px rgba(0, 0, 0, 0.3);
}
.crosspromo__description {
  margin: 15px 15px 15px 0;
}
.crosspromo__description .title {
  color: white;
  font-size: 20px;
}
.crosspromo__description .subtitle {
  color: white;
  font-size: 16px;
}

.share-cont {
  position: relative;
  min-width: 100px;
  max-width: 100px;
  pointer-events: auto;
  cursor: pointer;
}
.share-cont > .share_ico {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
}
.share-cont > .screenshot {
  width: 100%;
  min-height: 70px;
  height: auto;
  border-radius: 18px;
  border: 3px solid white;
}
.share-cont.invisible {
  opacity: 0;
}

.bottom-bar {
  display: grid;
  grid-gap: 1.375rem;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  padding: 0 1.0625rem 0.8125rem;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.bottom-bar .btn {
  width: 3rem;
  height: 3rem;
  padding: 0.7rem;
}
.bottom-bar.banner-padding {
  bottom: 70px;
}
/**
* Yandex style override
*/
.sn-ya .bottom-bar {
  grid-gap: 0;
}
.sn-gd.banner_728x90-shown .bottom-bar.banner-padding {
  bottom: 92px;
}

.play-button-with-suggested {
  position: relative;
  display: block;
}
.play-button-with-suggested__button {
  position: absolute;
  z-index: 2;
  filter: drop-shadow(0 -2px 5px rgba(43, 47, 74, 0.5));
}
.play-button-with-suggested__opponent {
  transition: all 0.5s 0.5s cubic-bezier(0.35, 0.36, 0, 1.42);
  z-index: 1;
  position: absolute;
  transform: translateY(-60%);
}
.play-button-with-suggested__opponent.invisible {
  opacity: 0;
  transform: translateY(0%);
}
.play-button-with-suggested__opponent .avatar-inner {
  border: 3px solid white;
  width: 100px;
  height: 100px;
}

.screen__bottom-bar {
  padding: 0 5vw;
  width: 100vw;
  height: 6rem;
  position: absolute;
  bottom: 80px;
  display: flex;
  justify-content: space-between;
  transition: transform 0.5s;
}
.screen__bottom-bar > * {
  margin: auto;
}
.screen__bottom-bar__main-btn {
  width: 6rem;
  height: 6rem;
}
.screen__bottom-bar.invisible {
  opacity: 0;
  transform: translateY(100%);
}

.screen__game-over {
  pointer-events: auto;
  flex-direction: column;
  display: flex;
  height: calc(100vh - 6rem - 80px);
}
.screen__game-over .main,
.screen__game-over .screen__bottom-bar,
.screen__game-over .crosspromo {
  margin: auto;
  grid-column: 2;
}
.screen__game-over .main {
  height: 50%;
  display: flex;
  justify-content: center;
}
.screen__game-over .main .avatar {
  width: 117px;
  height: 117px;
}
.screen__game-over .score-avatar {
  margin: auto;
  transition-timing-function: ease-out;
  transition: transform 300ms;
}
.screen__game-over .score-avatar.invisible:nth-child( 1 ) {
  transform: translateX(-50%);
}
.screen__game-over .score-avatar.invisible:nth-child( 2 ) {
  transform: translateX(50%);
}
.screen__game-over .score-avatar__badge--global {
  padding: 2px;
}
.screen .screen__bottom-bar {
  grid-row: 3;
}
.screen .crosspromo {
  transition: opacity 1s 1s !important;
}

.claim-button {
  pointer-events: auto;
  cursor: pointer;
  color: white;
  outline: 0;
  font-weight: bold;
  font-size: 26px;
  line-height: 21px;
  background: #5CBD50;
  border: 4px solid white;
  border-radius: 60px;
  display: flex;
  vertical-align: middle;
}
.claim-button > * {
  margin: auto;
}
.claim-button .video-ad-icon {
  width: 38px;
  height: auto;
}
.claim-button .video-ad-icon svg > .path {
  fill: white;
}
.claim-button.requested {
  pointer-events: none;
  filter: grayscale();
}
.claim-button.collected {
  opacity: 10%;
}

.reward {
  position: relative;
  width: 40px;
  height: 40px;
  margin: 10px;
}
.reward .icon > svg {
  width: 100%;
  height: 100%;
}
.reward-count {
  border: 2px solid #1D1F36;
  text-align: center;
  background: #DB4850;
  position: absolute;
  filter: drop-shadow(0 1px 2px #333);
  border-radius: 50%;
  left: 0;
  bottom: 50%;
  transform: translate(-50%, 50%);
  box-sizing: border-box;
  vertical-align: center;
  color: white;
  width: 24px;
  height: 24px;
  font-weight: 900;
  font-size: 12px;
  line-height: 20px;
}

.winner_cont {
  position: relative;
  margin: auto;
}
.winner_cont .icon > svg {
  width: 100%;
  height: 100%;
}
.winner_cont-winner {
  position: relative;
}
.winner_cont-winner > .avatar {
  z-index: 2;
  position: absolute;
  width: 117px;
  height: 117px;
  top: calc(50% - 117px / 2);
  left: calc(50% - 117px / 2);
}
.winner_cont-winner > .avatar__badge {
  font-size: 18px;
  font-weight: 900;
  margin-top: -10px;
  width: 93px;
  height: 29px;
  background: #ffcf68;
  border-radius: 63px;
  padding-top: 7px;
  transition: all 0.6s 0.4s;
}
.winner_cont-winner > .avatar .avatar {
  max-width: 117px;
  max-height: 117px;
  transition: all 0.4s ease-in;
}
.winner_cont-winner > .avatar.invisible .avatar,
.winner_cont-winner > .avatar.invisible .score-avatar__badge {
  opacity: 0;
  transform: scale(0);
}
.winner_cont-winner > .avatar.invisible .score-avatar__badge {
  transform: translateY(50px);
}
.winner_cont-winner-trophy {
  position: absolute;
  top: calc(50% - 51px * 2 - 9px);
  left: calc(50% - 51px / 2);
  width: 51px;
  height: 51px;
  z-index: 2;
  transition: all 0.2s 0.5s ease-out;
}
.winner_cont-winner-trophy.invisible {
  opacity: 0;
  transform: translateY(51px) scale(0);
}
.winner_cont-winner-framing {
  z-index: 1;
  position: absolute;
  top: calc(50% - 95px);
  left: calc(50% - 200px / 2);
  width: 200px;
  height: auto;
  transition: transform 0.2s 0.3s ease-out, opacity 0.3s 0.3s;
}
.winner_cont-winner-framing.invisible {
  opacity: 0;
  transform: translateY(70%) scale(0);
}
.winner_cont-winner-star {
  position: absolute;
  width: 300px;
  height: 300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 1s 0.5s ease-out;
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
.winner_cont-winner-star > svg {
  transform: scale(3);
  animation: rotation 20s infinite linear;
}
.winner_cont-winner-star.invisible {
  opacity: 0;
  transform: translateZ(100px);
}

.screen__win {
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  height: calc(calc(100vh - 6rem - 80px) - 100px);
}
.screen__win > * {
  grid-column: 2;
}
.screen__win .content {
  grid-row: 2;
  position: relative;
  margin: auto;
  width: 100%;
  max-width: 600px;
}
.screen__win .content .loose {
  position: absolute;
  top: 60%;
  left: -30%;
  display: flex;
  width: 100%;
  justify-content: center;
}
.screen__win .content .loose > * {
  margin: auto;
}
.screen__win .content .loose > .avatar {
  width: 59px;
  height: 59px;
}
.screen__win .content .loose > .avatar > .avatar-inner {
  border: 4px solid #333957;
}
.screen__win .content .loose .score-avatar {
  margin: 0 auto auto;
  transition: all 1s 1s;
}
.screen__win .content .loose .score-avatar.invisible {
  transform: translateY(-50%);
  opacity: 0%;
}
.screen__win .content .loose .score-avatar.hidden {
  visibility: hidden;
}
.screen__win .claim-button {
  z-index: 1;
  margin: auto;
  grid-row: 3;
  transition: all 0.5s 0.5s cubic-bezier(0.39, 0.9, 0.5, 1.93);
}
.screen__win .claim-button .claim-text {
  margin-right: 10px;
}
.screen__win .claim-button.invisible {
  opacity: 0%;
  transform: scale(0);
}
.screen__win .share-cont {
  transition: all 0.3s 0.5s;
}
.screen__win .share-cont.invisible {
  opacity: 0%;
}
.screen__win .screen__bottom-bar {
  grid-row: 5;
  margin: auto;
}
.screen__win .optionals {
  grid-row: 4;
  display: flex;
}
.screen__win .optionals > * {
  margin: auto;
}
.screen__win .crosspromo {
  transition: opacity 1s 5s;
}
.screen__win .back-stars {
  visibility: hidden;
}
.screen__win .authorization {
  margin: auto;
  color: white;
}
.screen__win .authorization-text {
  margin: auto;
  padding: 8px;
  text-align: center;
}
.screen__win .authorization .claim-button {
  padding: 4px 8px;
  font-size: 16px;
  border: 2px solid white;
  border-radius: 30px;
  font-weight: normal;
}
.screen__win .authorization-btn {
  margin: auto;
}

.board__item {
  background: #5c8aff;
  background: linear-gradient(0deg, #333957, #2b2f4a);
  border-radius: 42px;
  height: 84px;
  padding: 4px;
  transition-timing-function: cubic-bezier(0.46, 1.89, 0.43, 0.73);
}
.board__item .avatar-inner > .avatar-bg > svg > .path {
  fill: #5c8aff;
}
.board__item.me {
  border: 3px dashed #6b719f;
}
.board__item .play-btn > .icon {
  transform: translate(2px, 2px);
}
.board__item .play-btn,
.board__item .reward {
  margin: auto 0;
}
.board__item.inactive .play-btn,
.board__item.me .play-btn {
  visibility: hidden;
}
.board__item > .claim-button {
  font-size: 18px;
  background: #69AE30;
  background: linear-gradient(0deg, #69AE30, #81DA32);
  color: white;
}
.board__item > .claim-button > span {
  margin: auto 20px;
}
.board__item > .claim-button .reward {
  position: relative;
}
.board__item > .claim-button .reward .icon > svg {
  width: 40px;
  height: 40px;
}
.board__item > .claim-button .reward-count {
  z-index: 1;
  font-weight: 600;
  font-size: 14px;
}
.board__item.invite {
  pointer-events: auto;
  cursor: pointer;
  background: #69AE30;
  background: linear-gradient(0deg, #69AE30, #81DA32);
}
.board__item.invite .share_ico {
  margin: 20px;
}
.board__item.invite .share_ico * {
  width: 30px;
  height: auto;
}
.board__item.invite .share_ico .st0 {
  fill: white;
  stroke: none;
}
.board__item.invite.pending {
  opacity: 0.5;
  background: #595959;
}
.board__item > .avatar > .avatar-inner {
  border: 3px solid white;
}
.board__item .info {
  position: relative;
  top: -5%;
  font-size: 14px;
  margin: auto auto auto 15px;
}
.board__item .info > * {
  color: white;
}
.board__item .info__score {
  font-size: 18px;
  font-weight: bold;
  margin-top: 5px;
}
.board__item .info__score--global::before {
  content: " ";
  margin-right: 8px;
  vertical-align: -3px;
  display: inline-block;
  width: 19px;
  min-height: 19px;
  background-image: url(536c397dba77d793.svg);
  background-position: center;
  background-repeat: no-repeat;
}
.board__item:nth-child(1) .avatar > .avatar-inner {
  border: 4px solid #ffb22c;
}
.board__item:nth-child(1) .badge {
  color: #2b2f4a;
  background: #ffb22c;
}
.board__item .badge {
  position: absolute;
  z-index: 1;
  top: calc(50% - 31px / 2);
  left: -13px;
  text-align: center;
  border-radius: 50%;
  background: #333957;
  border-bottom: 3px solid #2b2f4a;
  font-size: 13px;
  font-weight: 900;
  line-height: 15px;
  width: 31px;
  height: 31px;
  padding: 6px 3px 0 3px;
  color: white;
}
.board__item .avatar {
  width: 76px;
  border-color: white;
  filter: drop-shadow(0px 4px 12px rgba(43, 47, 74, 0.25));
}

.screen__leaderboard {
  grid-template-rows: auto auto;
  height: calc(100vh - 70px);
  transition: opacity 0.5s;
}
.screen__leaderboard > * {
  margin: auto;
  grid-column: 2;
}
.screen__leaderboard.overlay {
  background: rgba(30, 32, 56, 0.9);
  pointer-events: auto;
  height: 100%;
}
.screen__leaderboard .board {
  grid-row: 1;
  display: flex;
  flex-direction: column;
  margin: auto;
  width: 90vw;
  max-width: 90vw;
  max-height: 600px;
}
.screen__leaderboard .board__scroll {
  pointer-events: auto;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  padding: 12px;
  margin: auto;
  width: 100%;
  max-width: 600px;
  min-width: 250px;
}
.screen__leaderboard .board__scroll ::after {
  display: block;
  height: 60px;
}
.screen__leaderboard .board__item {
  -webkit-transform: translate3d(0, 0, 0);
  display: flex;
  margin: 4px auto 4px auto;
  width: 100%;
}
.screen__leaderboard .board__item.me .button {
  display: none;
}
.screen__leaderboard .board__item.inactive .button {
  display: none;
}
.screen__leaderboard .board__item .info {
  top: -5%;
  font-size: 14px;
  margin: auto auto auto 15px;
}
.screen__leaderboard .board__item .info .score {
  font-size: 18px;
  font-weight: bold;
  margin-top: 5px;
}
.screen__leaderboard .board__item .info .score--global::before {
  content: " ";
  margin-right: 8px;
  vertical-align: -3px;
  display: inline-block;
  width: 19px;
  min-height: 19px;
  background-position: center;
  background-repeat: no-repeat;
}
.screen__leaderboard .board__item.invisible {
  opacity: 0;
  transform: translateY(100vh);
}
.screen__leaderboard.invisible {
  opacity: 0;
}

.sounds-control {
  display: flex;
  justify-content: space-between;
}
.sounds-control > .btn {
  margin: 10px;
}
.sounds-control .btn {
  pointer-events: auto;
  width: 3rem;
  height: 3rem;
  transition: all 0.3s;
}
.sounds-control .btn--muted {
  opacity: 0.5;
}
.sounds-control .btn-icon {
  padding: 3rem;
  background-repeat: no-repeat;
  background-position: center;
}
.sounds-control .btn-icon__sounds {
  background-image: url(9b2fef2aaf0f4e43.svg);
}
.sounds-control .btn-icon__music {
  background-image: url(f3064d71b84ad671.svg);
}

.settings-overlay {
  pointer-events: none;
  position: relative;
  z-index: 1;
  height: 100vh;
}
.settings-overlay .btn-settings {
  pointer-events: auto;
  position: absolute;
  background: unset;
  border: unset;
  z-index: 2;
  transition: scale 0.2s;
}
@supports (-webkit-touch-callout: none) {
  .settings-overlay .btn-settings {
    /* CSS specific to iOS devices */
    top: calc(10px + 48px);
    right: 10px;
  }
}
@supports not (-webkit-touch-callout: none) {
  .settings-overlay .btn-settings {
    /* CSS for other than iOS devices */
    top: 10px;
    right: 10px;
  }
}
.settings-overlay .btn-settings > .icon {
  filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.5));
}
.settings-overlay .settings-modal {
  position: absolute;
  width: 100%;
  height: 100%;
}
.settings-overlay .settings-modal__content {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  grid-template-rows: 1fr 2fr 2fr 1fr 1fr;
  grid-gap: 1em;
  height: calc(100% - 80px);
}
.settings-overlay .settings-modal__content > * {
  z-index: 1;
  grid-column: 2;
}
.settings-overlay .settings-modal__content .sounds-control {
  grid-row: 2;
  margin: auto;
  width: 100%;
}
.settings-overlay .settings-modal__content .crosspromo {
  grid-row: 4;
  margin: auto;
  transition: opacity 1s 1s !important;
}
.settings-overlay .settings-modal__content .btn-close {
  pointer-events: auto;
  margin: auto;
  color: white;
  grid-row: 5;
}
.settings-overlay .settings-modal__background {
  pointer-events: auto;
  position: absolute;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: #1e2038;
}
.settings-overlay .version__label {
  opacity: 0.3;
}


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